:root {
  --purple: #8A2BE2;
  --orange: #FF6B00;
  --yellow: #FFD600;
  --bg: #1A1C23;
  --bg-card: #242630;
  --bg-input: #2A2D3A;
  --text: #FFFFFF;
  --text-muted: #8B8F9E;
  --border: #3A3D4A;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 8px 32px rgba(138,43,226,0.2);
  --header-h: 72px;
  --wrap: 1180px;
}
* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html { scroll-behavior:smooth; }
html, body {
  background: var(--bg); color: var(--text); min-height: 100%;
  font-family: 'Tajawal','Segoe UI','SF Pro Display',sans-serif;
}
body {
  overflow-x: hidden;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(138,43,226,0.16), transparent 55%),
    radial-gradient(900px 420px at 0% 20%, rgba(255,107,0,0.08), transparent 50%),
    var(--bg);
}
img { max-width: 100%; display: block; }
button, a { font-family: inherit; }
a { color: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); margin-inline: auto; }
.app { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; width: 100%; padding-bottom: 108px; }
.page { padding: 28px 0 40px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
@keyframes loadBar { to { width:100%; } }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.animate-1 { animation:fadeUp .5s ease forwards; opacity:0; }
.animate-2 { animation:fadeUp .5s ease .1s forwards; opacity:0; }
.animate-3 { animation:fadeUp .5s ease .2s forwards; opacity:0; }
.animate-4 { animation:fadeUp .5s ease .3s forwards; opacity:0; }
.animate-5 { animation:fadeUp .5s ease .4s forwards; opacity:0; }
.animate-6 { animation:fadeUp .5s ease .5s forwards; opacity:0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .animate-1,.animate-2,.animate-3,.animate-4,.animate-5,.animate-6 { opacity: 1; }
}

.home-simple .site-footer, .home-simple .header-cta, .home-simple .site-nav { display: none; }
.home-simple .main { padding-bottom: 96px; }
.home-simple .page { padding: 0; min-height: calc(100vh - var(--header-h) - 96px); display:flex; flex-direction:column; justify-content:center; }

.home-center { text-align:center; padding: 28px 0 12px; }
.home-center .brand-mark { width:72px; height:72px; margin: 0 auto 16px; border-radius:20px; object-fit:cover; }
.home-center h1 { font-size: clamp(32px, 7vw, 56px); font-weight:900; line-height:1.2; margin-bottom:10px; }
.home-center p { color:var(--text-muted); font-size:16px; max-width: 22em; margin: 0 auto 28px; line-height:1.8; }
.home-center .btn-main { margin: 0 auto; max-width: 320px; font-size:18px; padding:18px; }
.home-alt { display:inline-block; margin-top:14px; color:var(--text-muted); font-weight:700; font-size:14px; }

.icon-dock {
  display:grid; grid-template-columns: repeat(4, 1fr); gap:10px;
  max-width: 520px; margin: 36px auto 0; padding-top: 8px;
}
.dock-btn {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 14px 6px 12px; color: var(--text); cursor: pointer;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  text-decoration:none; font-weight:800; font-size:12px;
}
.dock-btn:hover { border-color: var(--orange); transform: translateY(-2px); }
.dock-btn .ico { font-size:22px; line-height:1; }

.sheet { position:fixed; inset:0; z-index:400; display:none; }
.sheet.open { display:block; }
.sheet-bg { position:absolute; inset:0; background:rgba(0,0,0,.55); }
.sheet-panel {
  position:absolute; left:0; right:0; bottom:0; max-height: min(86vh, 720px);
  overflow:auto; background: #1c1e26; border-top: 1px solid var(--border);
  border-radius: 24px 24px 0 0; padding: 18px 18px 32px;
}
.sheet-head { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:14px; }
.sheet-head h2 { font-size:20px; }
.sheet-x {
  width:36px; height:36px; border-radius:10px; border:1px solid var(--border);
  background:var(--bg-card); color:#fff; font-size:20px; cursor:pointer;
}
@media (min-width: 768px) {
  .sheet-panel {
    left: 50%; right: auto; bottom: auto; top: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, calc(100% - 48px));
    max-height: 80vh; border-radius: 24px; border: 1px solid var(--border);
  }
  .icon-dock { max-width: 640px; gap: 12px; }
}
@media (min-width: 1024px) {
  .home-simple .main { padding-bottom: 40px; }
  .home-simple .page { min-height: calc(100vh - var(--header-h)); }
}

.splash { position:fixed; inset:0; background:var(--bg); z-index:9999; display:flex; flex-direction:column; align-items:center; justify-content:center; transition:opacity .6s; }
.splash.hidden { opacity:0; pointer-events:none; }
.splash-logo { width:96px; height:96px; object-fit:contain; animation:float 2s ease-in-out infinite; filter:drop-shadow(0 0 20px rgba(138,43,226,.5)); }
.splash-word { width:min(280px,70vw); margin-top:18px; }
.splash-sub { color:var(--text-muted); font-size:15px; margin-top:10px; }
.splash-bar { width:140px; height:4px; background:var(--bg-card); border-radius:4px; margin-top:28px; overflow:hidden; }
.splash-bar-inner { height:100%; width:0; background:linear-gradient(90deg,var(--purple),var(--orange),var(--yellow)); animation:loadBar 2.2s ease forwards; }

.site-header {
  position: sticky; top: 0; z-index: 200; height: var(--header-h);
  background: rgba(26,28,35,.86); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
}
.site-header .wrap { height:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; min-width:0; }
.brand-icon { width:42px; height:42px; border-radius:12px; object-fit:cover; background:#000; }
.brand-word { height:22px; width:auto; display:none; }
.brand-name { font-size:22px; font-weight:800; }
.brand-name span { color: var(--orange); }
.site-nav { display:none; align-items:center; gap:4px; flex-wrap:wrap; }
.nav-link {
  background:transparent; border:none; color:var(--text-muted); text-decoration:none;
  padding:8px 12px; border-radius:10px; font-size:14px; font-weight:700; cursor:pointer;
}
.nav-link:hover, .nav-link.active { color:var(--text); background:rgba(255,255,255,.04); }
.nav-link.active { color: var(--orange); }
.header-cta {
  display:none; border:none; cursor:pointer; color:#fff; font-weight:800; font-size:14px;
  padding:10px 18px; border-radius:12px; text-decoration:none;
  background:linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow:0 6px 18px rgba(138,43,226,.28);
}

.hero { display:grid; gap:28px; padding: 12px 0 8px; }
.hero-copy { text-align:center; }
.hero-kicker {
  display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:999px;
  font-size:13px; font-weight:700; background:rgba(138,43,226,.12); color:#d7b6ff;
  border:1px solid rgba(138,43,226,.25); margin-bottom:14px;
}
.hero-title { font-size:clamp(28px,6vw,52px); font-weight:900; line-height:1.25; margin-bottom:10px; }
.hero-sub { color:var(--text-muted); font-size:16px; line-height:1.8; max-width:38em; margin-inline:auto; }
.hero-actions { display:grid; gap:14px; }
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:16px 0 8px; }
.stat { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:16px 10px; text-align:center; }
.stat b { display:block; font-size:20px; font-weight:900; }
.stat span { font-size:12px; color:var(--text-muted); font-weight:700; }

.cta-card {
  background:linear-gradient(135deg, rgba(138,43,226,.15), rgba(255,107,0,.1));
  border:2px solid rgba(138,43,226,.3); border-radius:var(--radius);
  padding:22px; cursor:pointer; transition:.3s; text-align:right; position:relative; overflow:hidden;
  text-decoration:none; display:block; color:inherit;
}
.cta-card.alt { background:linear-gradient(135deg, rgba(255,107,0,.1), rgba(255,214,0,.05)); border-color:rgba(255,107,0,.2); }
.cta-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--orange); }
.cta-card-inner { position:relative; z-index:1; padding-left:52px; }
.cta-emoji { font-size:32px; margin-bottom:8px; }
.cta-title { font-size:18px; font-weight:800; margin-bottom:6px; }
.cta-desc { color:var(--text-muted); font-size:14px; line-height:1.7; }
.cta-arrow {
  position:absolute; top:22px; left:18px; width:40px; height:40px;
  background:linear-gradient(135deg, var(--purple), var(--orange));
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px;
}
.cta-card.alt .cta-arrow { background:linear-gradient(135deg, var(--orange), var(--yellow)); color:var(--bg); }

.section { padding: 18px 0 8px; }
.section-label { font-size:14px; font-weight:800; color:var(--text-muted); margin-bottom:12px; }
.section-title { font-size:clamp(22px,3vw,32px); font-weight:900; margin-bottom:8px; }
.section-sub { color:var(--text-muted); margin-bottom:20px; line-height:1.7; }

.feature-grid, .pillars { display:grid; gap:14px; }
.feature-card, .choice-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px; text-decoration:none; color:inherit; transition:.25s; display:block;
}
.feature-card:hover, .choice-card:hover { border-color: rgba(138,43,226,.45); transform:translateY(-3px); }
.feature-card h3, .choice-card h3 { font-size:18px; margin:8px 0 6px; }
.feature-card p, .choice-card p { color:var(--text-muted); font-size:14px; line-height:1.7; }
.feature-ico { font-size:28px; }

.steps { display:grid; gap:12px; }
.step-item { display:flex; gap:14px; background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:16px; }
.step-num {
  width:36px; height:36px; border-radius:10px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-weight:900; background:linear-gradient(135deg, var(--purple), var(--orange));
}

.choice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; }
.choice-grid.two { grid-template-columns:1fr 1fr; }
.choice-grid.one { grid-template-columns:1fr; }
.pick {
  background:var(--bg-card); border:2px solid var(--border); border-radius:var(--radius-sm);
  padding:16px 10px; text-align:center; cursor:pointer; transition:.25s; position:relative;
}
.pick:hover { border-color:var(--purple); transform:translateY(-3px); }
.pick.selected { border-color:var(--orange); background:linear-gradient(135deg, rgba(138,43,226,.15), rgba(255,107,0,.1)); }
.pick .emoji { font-size:28px; display:block; margin-bottom:8px; }
.pick .name { font-size:13px; font-weight:800; }
.pick .meta { font-size:11px; color:var(--text-muted); margin-top:4px; }
.pick.row { display:flex; align-items:center; gap:14px; text-align:right; padding:16px 18px; }
.pick.row .emoji { margin:0; font-size:28px; }

.wizard-title { font-size:clamp(22px,3vw,32px); font-weight:800; margin-bottom:6px; }
.wizard-sub { color:var(--text-muted); font-size:15px; margin-bottom:20px; }
.wizard-screen { display:none; padding:12px 0; }
.wizard-screen.active { display:block; }
.progress-bar { display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.progress-step {
  width:28px; height:28px; border-radius:50%; background:var(--bg-card); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:var(--text-muted); flex-shrink:0;
}
.progress-step.active { background:linear-gradient(135deg, var(--purple), var(--orange)); border-color:transparent; color:#fff; }
.progress-step.done { background:var(--yellow); border-color:var(--yellow); color:var(--bg); }
.progress-line { flex:1; height:2px; background:var(--border); position:relative; overflow:hidden; }
.progress-line-fill { position:absolute; inset:0; background:linear-gradient(90deg, var(--purple), var(--orange)); transform:scaleX(0); transform-origin:right; transition:transform .45s ease; }
.progress-labels { display:flex; justify-content:space-between; margin-bottom:10px; }
.progress-labels span { font-size:11px; color:var(--text-muted); font-weight:700; }
.progress-labels span.active { color: var(--orange); }

.results-header {
  background:linear-gradient(135deg, rgba(138,43,226,.15), rgba(255,107,0,.1));
  border:1px solid rgba(138,43,226,.2); border-radius:var(--radius); padding:22px; margin-bottom:20px; text-align:center;
}
.results-tags { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.chip { padding:6px 14px; border-radius:20px; font-size:12px; font-weight:700; background:rgba(138,43,226,.15); color:#c9a6ff; }
.chip.orange { background:rgba(255,107,0,.15); color:var(--orange); }
.chip.yellow { background:rgba(255,214,0,.15); color:var(--yellow); }
.chip.green { background:rgba(0,255,136,.1); color:#00FF88; }

.cards { display:grid; gap:16px; }
.exp-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; cursor:pointer; transition:.3s; display:flex; flex-direction:column; text-decoration:none; color:inherit;
}
.exp-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:rgba(138,43,226,.3); }
.exp-img { width:100%; height:180px; position:relative; }
.exp-img img { width:100%; height:100%; object-fit:cover; }
.exp-overlay { position:absolute; inset:auto 0 0 0; padding:40px 16px 12px; background:linear-gradient(to top, rgba(26,28,35,.95), transparent); }
.exp-name { font-size:17px; font-weight:800; }
.exp-meta { margin-top:6px; font-size:12px; color:var(--text-muted); }
.exp-body { padding:14px 16px; display:flex; flex-direction:column; flex:1; }
.exp-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.tag { font-size:11px; padding:4px 10px; border-radius:10px; background:rgba(138,43,226,.1); color:#c9a6ff; border:1px solid rgba(138,43,226,.15); }
.tag.orange { background:rgba(255,107,0,.1); color:var(--orange); border-color:rgba(255,107,0,.15); }
.exp-desc { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:12px; flex:1; }
.exp-footer { display:flex; align-items:center; justify-content:space-between; padding-top:10px; border-top:1px solid var(--border); gap:8px; }
.exp-price { font-size:16px; font-weight:800; color:var(--orange); }
.exp-time { font-size:12px; color:var(--text-muted); }

.btn-main, .btn-ghost {
  border-radius: var(--radius-sm); font-size:16px; font-weight:800; cursor:pointer; transition:.2s;
  display:inline-flex; align-items:center; justify-content:center; gap:10px; text-decoration:none;
}
.btn-main {
  width:100%; max-width:420px; padding:16px 18px; border:none; color:#fff;
  background:linear-gradient(135deg, var(--purple), var(--orange)); box-shadow:0 4px 20px rgba(138,43,226,.3);
}
.btn-main:hover { transform:translateY(-2px); }
.btn-main:disabled { opacity:.5; cursor:not-allowed; transform:none; }
.btn-ghost {
  padding:10px 16px; background:transparent; border:1px solid var(--border); color:var(--text-muted); font-size:14px; margin-bottom:16px;
}
.btn-ghost:hover { border-color:var(--purple); color:var(--text); }
.btn-row { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

.today-banner {
  background:linear-gradient(135deg, rgba(138,43,226,.18), rgba(255,107,0,.12));
  border:1px solid rgba(138,43,226,.25); border-radius:var(--radius); padding:24px; margin-bottom:22px;
}
.today-banner h1 { font-size:clamp(24px,4vw,36px); font-weight:900; margin:8px 0; }
.weather { display:flex; gap:16px; flex-wrap:wrap; margin-top:12px; color:var(--text-muted); font-weight:700; }

.timeline { display:grid; gap:0; }
.tl-item { display:grid; grid-template-columns: 88px 18px 1fr; gap:12px; }
.tl-time { font-weight:800; color:var(--orange); padding-top:18px; }
.tl-dot { position:relative; }
.tl-dot::before {
  content:''; position:absolute; top:24px; right:5px; width:10px; height:10px; border-radius:50%;
  background:linear-gradient(135deg, var(--purple), var(--orange));
}
.tl-dot::after { content:''; position:absolute; top:36px; bottom:-8px; right:9px; width:2px; background:var(--border); }
.tl-item:last-child .tl-dot::after { display:none; }
.tl-card { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:16px; margin-bottom:12px; }

.chat-box { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; min-height:420px; display:flex; flex-direction:column; }
.chat-log { flex:1; padding:18px; display:flex; flex-direction:column; gap:12px; max-height:480px; overflow:auto; }
.bubble { max-width:85%; padding:12px 14px; border-radius:16px; line-height:1.7; font-size:14px; }
.bubble.bot { background:#2c2f3c; align-self:flex-start; }
.bubble.user { background:linear-gradient(135deg, var(--purple), var(--orange)); align-self:flex-end; }
.chat-form { display:flex; gap:8px; padding:12px; border-top:1px solid var(--border); }
.chat-form input {
  flex:1; background:var(--bg-input); border:1px solid var(--border); color:var(--text);
  border-radius:12px; padding:12px 14px; font-size:15px; outline:none;
}
.chat-form button { border:none; border-radius:12px; padding:12px 16px; color:#fff; font-weight:800; background:linear-gradient(135deg, var(--purple), var(--orange)); cursor:pointer; }

.detail-hero { border-radius:var(--radius); overflow:hidden; position:relative; height:min(42vw, 360px); min-height:220px; margin-bottom:20px; }
.detail-hero img { width:100%; height:100%; object-fit:cover; }
.detail-hero .shade { position:absolute; inset:0; background:linear-gradient(to top, rgba(26,28,35,.92) 10%, transparent 60%); }
.detail-hero .info { position:absolute; bottom:18px; right:18px; left:18px; }
.place-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  height: 280px; margin: 16px 0 10px; background: var(--bg-card);
}
.place-map iframe { width: 100%; height: 100%; border: 0; }
.map-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.map-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-radius: 12px; font-weight: 800; font-size: 14px; text-decoration: none;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
}
.map-btn.primary { background: linear-gradient(135deg, var(--purple), var(--orange)); border: none; color: #fff; }
.map-btn:hover { border-color: var(--orange); }
.exp-footer .map-chip {
  font-size: 12px; font-weight: 800; color: var(--orange); text-decoration: none; white-space: nowrap;
}
.amenity { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:18px 0; }
.amenity div { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:12px; font-size:14px; font-weight:700; }

.pricing { display:grid; gap:14px; }
.price-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:22px; }
.price-card.featured { border-color: var(--orange); box-shadow: var(--shadow); }
.price-card h3 { margin-bottom:6px; }
.price-card .amount { font-size:28px; font-weight:900; color:var(--orange); margin:10px 0; }
.price-card ul { color:var(--text-muted); padding-right:18px; line-height:1.9; font-size:14px; }

.empty { text-align:center; padding:48px 16px; color:var(--text-muted); }
.profile { display:grid; gap:16px; }
.profile-head { display:flex; gap:16px; align-items:center; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:20px; }
.avatar { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg, var(--purple), var(--orange)); display:flex; align-items:center; justify-content:center; font-size:28px; }

.bottom-nav {
  position:fixed; bottom:0; left:0; right:0; background:rgba(26,28,35,.96); backdrop-filter:blur(20px);
  border-top:1px solid var(--border); z-index:100; display:flex; justify-content:space-around;
  padding:8px 0 calc(10px + env(safe-area-inset-bottom));
}
.nav-item { display:flex; flex-direction:column; align-items:center; gap:4px; padding:6px 8px; text-decoration:none; color:var(--text-muted); min-width:64px; }
.nav-item.active { color: var(--orange); }
.nav-icon { width:22px; height:22px; }
.nav-label { font-size:11px; font-weight:700; }

.toast {
  position:fixed; bottom:100px; left:50%; transform:translateX(-50%) translateY(100px);
  background:var(--bg-card); border:1px solid var(--border); padding:14px 24px; border-radius:var(--radius-sm);
  font-size:14px; z-index:999; opacity:0; transition:all .3s; box-shadow:var(--shadow); max-width:min(90vw,420px); text-align:center;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

.site-footer { display:block; margin-top:auto; border-top:1px solid var(--border); padding:24px 0 calc(96px + env(safe-area-inset-bottom)); color:var(--text-muted); font-size:14px; }
.footer-grid { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-brand { display:flex; align-items:center; gap:10px; color:var(--text); font-weight:800; }
.footer-brand img { width:32px; height:32px; border-radius:8px; }
.footer-links { display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a { color:var(--text-muted); text-decoration:none; font-weight:700; }

.city-switch { display:flex; gap:8px; flex-wrap:wrap; margin: 4px 0 18px; }
.city-switch button {
  border:1px solid var(--border); background:var(--bg-card); color:var(--text-muted);
  border-radius:999px; padding:10px 18px; font-weight:800; cursor:pointer;
}
.city-switch button.active {
  color:#fff; border-color:transparent;
  background:linear-gradient(135deg, var(--purple), var(--orange));
}
.hot-grid { display:grid; gap:16px; }
.hot-card {
  position:relative; border-radius:22px; overflow:hidden; min-height:280px;
  display:flex; flex-direction:column; justify-content:flex-end; text-decoration:none; color:#fff;
  border:1px solid var(--border); isolation:isolate;
}
.hot-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; transition:transform .6s ease; }
.hot-card:hover img { transform:scale(1.06); }
.hot-card .shade { position:absolute; inset:0; z-index:1; background:linear-gradient(to top, rgba(10,12,18,.92) 15%, rgba(10,12,18,.2) 70%); }
.hot-card .body { position:relative; z-index:2; padding:18px; }
.hot-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.kind-pill { font-size:12px; font-weight:800; padding:5px 10px; border-radius:999px; background:rgba(138,43,226,.35); border:1px solid rgba(255,255,255,.12); }
.hot-stars { color:var(--yellow); font-weight:800; font-size:13px; }
.hot-card h3 { font-size:20px; margin-bottom:6px; }
.hot-quote { color:rgba(255,255,255,.82); font-size:13px; line-height:1.75; }
.hot-meta { display:flex; justify-content:space-between; gap:8px; margin-top:12px; font-size:12px; color:var(--text-muted); font-weight:700; }

.product-play {
  display:grid; gap:16px;
  background: linear-gradient(180deg, rgba(138,43,226,.08), rgba(255,107,0,.04));
  border:1px solid rgba(138,43,226,.22); border-radius:28px; padding:14px;
}
.product-tabs { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.product-tab {
  text-align:right; border:1px solid var(--border); background:rgba(26,28,35,.7);
  border-radius:16px; padding:14px; cursor:pointer; color:inherit;
}
.product-tab.active { border-color: var(--orange); box-shadow: var(--shadow); background: rgba(36,38,48,.95); }
.product-tab b { display:block; margin-bottom:4px; }
.product-tab span { color:var(--text-muted); font-size:13px; line-height:1.6; }
.product-stage {
  min-height: 240px; border-radius:20px; padding:18px;
  background: var(--bg-card); border:1px solid var(--border); position:relative; overflow:hidden;
}
.fake-line { background:#2e3140; border-radius:12px; padding:10px 12px; margin-bottom:8px; font-size:13px; }
.fake-line.me { background:linear-gradient(135deg, rgba(138,43,226,.35), rgba(255,107,0,.25)); }
.fake-chip { display:inline-block; margin:4px 4px 0 0; padding:6px 10px; border-radius:999px; background:#2a2d3a; font-size:12px; font-weight:700; }

.how-play { display:grid; gap:14px; }
.how-rail { display:flex; gap:8px; }
.how-rail button {
  flex:1; border-radius:16px; border:1px solid var(--border); background:var(--bg-card);
  color:var(--text-muted); padding:14px 8px; font-weight:800; cursor:pointer;
}
.how-rail button.active { color:#fff; background:linear-gradient(135deg, var(--purple), var(--orange)); border-color:transparent; }
.how-visual {
  border-radius:24px; min-height:180px; padding:22px;
  background:
    radial-gradient(500px 180px at 80% 0%, rgba(138,43,226,.25), transparent 60%),
    var(--bg-card);
  border:1px solid var(--border);
}
.how-visual h3 { font-size:22px; margin-bottom:8px; }
.how-visual p { color:var(--text-muted); line-height:1.8; }

.review-slider { position:relative; overflow:hidden; border-radius:24px; direction:ltr; }
.review-track { display:flex; transition: transform .45s ease; }
.review-card {
  min-width:100%; background:var(--bg-card); border:1px solid var(--border);
  border-radius:24px; padding:22px; box-sizing:border-box; direction:rtl;
}
.review-card .who { display:flex; justify-content:space-between; gap:12px; margin-bottom:12px; font-weight:800; }
.review-card p { color:rgba(255,255,255,.86); line-height:1.85; font-size:15px; }
.slider-nav { display:flex; justify-content:center; gap:8px; margin-top:12px; }
.slider-nav button {
  width:8px; height:8px; border-radius:50%; border:none; background:var(--border); cursor:pointer;
}
.slider-nav button.active { background: var(--orange); width:22px; border-radius:8px; }

.contact-band {
  display:grid; gap:16px; margin-top:10px; padding:22px;
  border-radius:24px; border:1px solid rgba(255,107,0,.25);
  background: linear-gradient(135deg, rgba(138,43,226,.14), rgba(255,107,0,.08));
}
.contact-band h2 { font-size:22px; }
.socials { display:flex; flex-wrap:wrap; gap:8px; }
.socials a {
  text-decoration:none; color:#fff; font-weight:800; font-size:13px;
  padding:10px 14px; border-radius:12px; background:var(--bg-card); border:1px solid var(--border);
}
.socials a.wa { background:linear-gradient(135deg, #128C7E, #25D366); border:none; }

@media (min-width: 768px) {
  .wrap { width: min(var(--wrap), calc(100% - 48px)); }
  .brand-word { display:block; }
  .brand-name { display:none; }
  .hero-actions { grid-template-columns:1fr 1fr; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .pillars { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:repeat(3,1fr); }
  .cards { grid-template-columns:1fr 1fr; }
  .choice-grid.cats { grid-template-columns:1fr 1fr; }
  .amenity { grid-template-columns:repeat(3,1fr); }
  .pricing { grid-template-columns:repeat(3,1fr); }
  .exp-img { height:200px; }
  .place-map { height: 380px; }
  .hot-grid { grid-template-columns: repeat(3, 1fr); }
  .product-play { grid-template-columns: .9fr 1.1fr; }
  .product-tabs { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .site-nav, .header-cta { display:flex; }
  .bottom-nav { display:none; }
  .main { padding-bottom: 40px; }
  .toast { bottom:32px; }
  .hero { grid-template-columns:1.15fr .85fr; align-items:center; gap:48px; min-height: calc(70vh - var(--header-h)); padding-top:40px; }
  .hero-copy { text-align:right; }
  .hero-sub { margin-inline:0; font-size:18px; }
  .hero-actions { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:repeat(4,1fr); }
  .pillars { grid-template-columns:repeat(3,1fr); }
  .cards { grid-template-columns:repeat(3,1fr); }
  .choice-grid.cats { grid-template-columns:repeat(4,1fr); }
  .wizard-shell { width:min(920px,100%); margin-inline:auto; }
  .how-play { grid-template-columns: 210px 1fr; }
  .how-rail { flex-direction: column; }
  .site-footer { padding-bottom: 36px; }
}
@media (min-width: 1280px) {
  .cards.wide { grid-template-columns:repeat(3,1fr); }
}
