/* ═══════════════════════════════════════════════════════════════
   SAFARITRAILZ — Shared Design System
   Ocean Blue + Warm Orange + Tropical Green
   safari.css — v1.0
═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   GOOGLE FONTS IMPORT
────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=DM+Mono:ital,wght@0,300;0,400;1,300&family=Instrument+Serif:ital@0;1&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ──────────────────────────────────────────
   DESIGN TOKENS — DARK MODE (default)
────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
:root {
  /* Deep ocean base */
  --ocean-deepest: #050D1A;
  --ocean-deep:    #071525;
  --ocean-mid:     #0B1E35;
  --ocean-light:   #112844;
  --ocean-muted:   #1A3A5C;

  /* Warm orange accents */
  --orange-deep:   #B84A00;
  --orange-base:   #E05C00;
  --orange-bright: #FF7520;
  --orange-glow:   #FF8C42;
  --orange-dust:   #FFB380;

  /* Tropical greens */
  --green-deep:    #0A3D2B;
  --green-base:    #1A6B48;
  --green-mid:     #25A06B;
  --green-bright:  #2EC97F;
  --green-light:   #6EEAB5;

  /* Text / Neutrals */
  --sand:          #F5E8D0;
  --pearl:         #FAF5EC;
  --white:         #FFFFFF;

  /* Dark mode semantic vars */
  --bg:            var(--ocean-deepest);
  --bg2:           var(--ocean-deep);
  --bg3:           var(--ocean-mid);
  --surface:       var(--ocean-light);
  --border:        rgba(42, 120, 200, 0.15);
  --border2:       rgba(42, 120, 200, 0.28);
  --text:          var(--pearl);
  --text-2:        rgba(250, 245, 236, 0.72);
  --text-3:        rgba(250, 245, 236, 0.40);
  --accent:        var(--orange-bright);
  --accent2:       var(--orange-glow);
  --accent-glow:   rgba(255, 117, 32, 0.15);
  --green-glow:    rgba(46, 201, 127, 0.10);
  --blue-glow:     rgba(42, 120, 200, 0.12);
  --grain-op:      0.038;
  --success:       #5DB87A;

  /* Component specifics */
  --nav-bg:        rgba(5, 13, 26, 0.95);
  --card-bg:       var(--ocean-deep);
  --tag-color:     var(--orange-bright);
  --rating-color:  var(--orange-glow);
  --location-color: var(--green-bright);
}

/* ──────────────────────────────────────────
   DESIGN TOKENS — LIGHT MODE
────────────────────────────────────────── */
[data-theme="light"] {
  --bg:            #F0F7FF;
  --bg2:           #E2EEF9;
  --bg3:           #D0E4F5;
  --surface:       #B8D4EE;
  --border:        rgba(8, 80, 160, 0.14);
  --border2:       rgba(8, 80, 160, 0.26);
  --text:          #071525;
  --text-2:        #1A3A5C;
  --text-3:        #3B6080;
  --accent:        #C84800;
  --accent2:       #E05C00;
  --accent-glow:   rgba(200, 72, 0, 0.10);
  --green-glow:    rgba(26, 107, 72, 0.08);
  --blue-glow:     rgba(8, 80, 160, 0.07);
  --grain-op:      0.018;
  --nav-bg:        rgba(240, 247, 255, 0.96);
  --card-bg:       var(--bg2);
  --tag-color:     #C84800;
  --rating-color:  #B84A00;
  --location-color: #1A6B48;
}

/* ──────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  transition: background .4s, color .4s;
  min-height: 100vh;
}

/* ──────────────────────────────────────────
   FILM GRAIN OVERLAY
────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: var(--grain-op);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ──────────────────────────────────────────
   TYPOGRAPHY HELPERS
────────────────────────────────────────── */
.display { font-family: 'Playfair Display', serif; }
.serif   { font-family: 'Instrument Serif', serif; }
.mono    { font-family: 'DM Mono', monospace; }

/* ──────────────────────────────────────────
   SCROLLBAR
────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ocean-muted); border-radius: 2px; }

/* ──────────────────────────────────────────
   LAYOUT
────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
@media(max-width:1024px) { .container { padding: 0 20px; } }
@media(max-width:768px)  { .container { padding: 0 18px; } }

/* ──────────────────────────────────────────
   ORGANIC CARD
────────────────────────────────────────── */
.card-organic {
  border-radius: 4px 18px 4px 22px / 18px 4px 22px 4px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color .3s, transform .25s, box-shadow .25s;
}
.card-organic:hover {
  border-color: var(--border2);
  transform: translateY(-3px) rotate(0.2deg);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35), 0 0 0 1px var(--border2);
}
[data-theme="light"] .card-organic:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.10), 0 0 0 1px var(--border2);
}

/* ──────────────────────────────────────────
   HEADER — DESKTOP
────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: background .4s, border-color .4s;
}
.header-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50% 20% 50% 20%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  flex-shrink: 0;
  color: var(--accent);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
}
.logo-text span {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

/* Desktop nav */
.desk-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.desk-nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-2);
  padding: 7px 16px;
  border-radius: 2px 8px 2px 8px;
  transition: color .2s, background .2s;
  text-transform: uppercase;
}
.desk-nav button:hover { color: var(--accent); background: var(--accent-glow); }
.desk-nav button.active {
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 117, 32, 0.28);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   THEME TOGGLE
────────────────────────────────────────── */
.theme-toggle {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  cursor: pointer;
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}
.theme-toggle-knob {
  position: absolute;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s;
}
[data-theme="dark"]  .theme-toggle-knob { transform: translateX(3px); }
[data-theme="light"] .theme-toggle-knob { transform: translateX(25px); }

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
/* Primary — warm orange */
.btn-primary {
  background: linear-gradient(135deg, var(--orange-base), var(--orange-bright));
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 22px;
  height: 38px;
  border-radius: 2px 10px 2px 10px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 117, 32, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 22px rgba(255,117,32,0.38); }
.btn-primary:active { transform: scale(.97); }

/* Ghost — ocean blue outline */
.btn-ghost {
  background: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0 22px;
  height: 38px;
  border-radius: 2px 10px 2px 10px;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-glow); }

/* Green variant */
.btn-green {
  background: linear-gradient(135deg, var(--green-base), var(--green-mid));
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 22px;
  height: 38px;
  border-radius: 2px 10px 2px 10px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(46, 201, 127, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-green:hover { opacity: 0.9; box-shadow: 0 6px 22px rgba(46, 201, 127, 0.32); }

/* Back button */
.btn-back {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-2);
  padding: 0 20px;
  height: 44px;
  border-radius: 2px 10px 2px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-back:hover { color: var(--text); border-color: var(--accent); background: var(--accent-glow); }

/* Continue button */
.btn-continue {
  flex: 1;
  background: linear-gradient(135deg, var(--orange-base), var(--orange-bright));
  color: #fff;
  border: none;
  padding: 0 24px;
  height: 44px;
  border-radius: 2px 10px 2px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(255, 117, 32, 0.25);
}
.btn-continue:hover:not(:disabled) { opacity: 0.9; box-shadow: 0 6px 22px rgba(255,117,32,0.38); }
.btn-continue:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }

/* ──────────────────────────────────────────
   MOBILE HEADER
────────────────────────────────────────── */
.mob-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  transition: background .4s;
}

/* ──────────────────────────────────────────
   MOBILE BOTTOM NAV
────────────────────────────────────────── */
.mob-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  height: 58px;
  align-items: center;
  backdrop-filter: blur(12px);
}
.mob-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  transition: color .2s;
}
.mob-nav-btn.active { color: var(--accent); }
.mob-nav-label {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.mob-spacer { height: 58px; display: block; }

/* ──────────────────────────────────────────
   RESPONSIVE HEADER BREAKPOINTS
────────────────────────────────────────── */
@media(max-width:1024px) {
  .header-inner { padding: 0 20px; gap: 16px; }
  .desk-nav button { padding: 6px 12px; font-size: 10px; }
  .btn-primary, .btn-ghost { padding: 0 16px; height: 34px; font-size: 9.5px; }
}
@media(max-width:768px) {
  .header { display: none; }
  .mob-header { display: flex; }
  .mob-bottom-nav { display: flex; }
}

/* ──────────────────────────────────────────
   TAB PANES
────────────────────────────────────────── */
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ──────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────── */
.section-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-theme="light"] .section-eyebrow { color: var(--green-base); }
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green-bright);
  flex-shrink: 0;
}
[data-theme="light"] .section-eyebrow::before { background: var(--green-base); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  color: var(--text);
  font-weight: 400;
  margin-top: 10px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(125deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────
   SECTION SPACING
────────────────────────────────────────── */
.section { padding: clamp(44px,5.5vw,76px) 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(26px,3vw,38px);
}
.section-header-right {
  font-size: 11px;
  color: var(--green-bright);
  text-decoration: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity .2s;
}
[data-theme="light"] .section-header-right { color: var(--green-base); }
.section-header-right:hover { opacity: 0.7; }

/* ──────────────────────────────────────────
   TRUST ICON
────────────────────────────────────────── */
.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50% 20% 50% 20%;
  background: var(--blue-glow);
  border: 1px solid rgba(42,120,200,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5AADFF;
  transition: background .25s;
}
[data-theme="light"] .trust-icon { color: #1873CC; border-color: rgba(8,80,160,0.2); }

/* ──────────────────────────────────────────
   STEP ICON (How it Works)
────────────────────────────────────────── */
.step-icon {
  width: clamp(58px,6.5vw,76px);
  height: clamp(58px,6.5vw,76px);
  border-radius: 50% 20% 50% 20%;
  border: 1px solid var(--border2);
  background: var(--blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .3s, transform .25s, border-color .3s;
}
/* Step icon used in QUIZ SIDEBAR overrides to emoji size */
.quiz-sidebar .step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
}

/* ──────────────────────────────────────────
   CORNER MARKS
────────────────────────────────────────── */
.corner-mark { position: absolute; width: 28px; height: 28px; pointer-events: none; }
.corner-mark::before, .corner-mark::after { content: ''; position: absolute; background: var(--accent); }
.corner-mark.tl { top: 12px; left: 12px; }
.corner-mark.tl::before { top: 0; left: 0; width: 12px; height: 1px; }
.corner-mark.tl::after  { top: 0; left: 0; width: 1px; height: 12px; }
.corner-mark.br { bottom: 12px; right: 12px; }
.corner-mark.br::before { bottom: 0; right: 0; width: 12px; height: 1px; }
.corner-mark.br::after  { bottom: 0; right: 0; width: 1px; height: 12px; }

/* ──────────────────────────────────────────
   DOT ACCENTS
────────────────────────────────────────── */
.dot-orange {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--orange-bright);
  margin-right: 6px; vertical-align: middle;
}
.dot-green {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green-bright);
  margin-right: 6px; vertical-align: middle;
}
[data-theme="light"] .dot-green { background: var(--green-base); }

/* ──────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .6s .05s both ease-out; }
.anim-2 { animation: fadeUp .6s .18s both ease-out; }
.anim-3 { animation: fadeUp .6s .31s both ease-out; }
.anim-4 { animation: fadeUp .6s .44s both ease-out; }
.anim-5 { animation: fadeUp .6s .57s both ease-out; }

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.65); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.float { animation: float 5.5s ease-in-out infinite; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   SPLASH OVERLAY
────────────────────────────────────────── */
.splash-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(30px);
  transition: transform .5s ease-out;
}
.splash-logo-box {
  width: 64px; height: 64px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.splash-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.splash-line {
  width: 0; height: 1px;
  background: var(--accent);
  margin-bottom: 16px;
  transition: width .4s ease-out .4s;
}
.splash-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   PROFILE AVATAR
────────────────────────────────────────── */
.profile-avatar {
  width: 84px; height: 84px;
  border-radius: 50% 20% 50% 20%;
  border: 2px solid rgba(255,117,32,0.35);
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}

/* ─────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────*/
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px,58vw,640px);
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 72% 28%, rgba(42,120,200,0.18) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 18% 72%, rgba(255,117,32,0.10) 0%, transparent 52%),
    radial-gradient(ellipse 60% 70% at 40% 50%, rgba(46,201,127,0.06) 0%, transparent 65%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 80px,
    rgba(42,120,200,0.025) 80px, rgba(42,120,200,0.025) 81px
  );
  pointer-events: none;
}
.hero-img-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: clamp(300px,46%,580px);
  clip-path: polygon(8% 0%,100% 0%,100% 100%,0% 100%);
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
  transform: scale(1.04); transition: transform 10s ease;
}
.hero-img-wrap:hover img { transform: scale(1.0); }
.hero-vignette {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: clamp(300px,46%,580px);
  background: linear-gradient(to right, var(--bg) 0%, rgba(7,21,37,0.5) 22%, transparent 55%, rgba(5,13,26,0.45) 100%);
  pointer-events: none;
}
[data-theme="light"] .hero-vignette {
  background: linear-gradient(to right, var(--bg) 0%, rgba(240,247,255,0.5) 22%, transparent 55%, rgba(224,238,249,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 5;
  padding: 0 0 clamp(48px,6vw,80px) 0;
  max-width: clamp(340px,52%,640px);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-glow); margin-bottom: 22px;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2.4s infinite;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px,6.5vw,92px);
  line-height: 0.93; letter-spacing: -0.01em;
  color: var(--text); font-weight: 400;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(125deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 700; display: block;
}
.hero-sub {
  font-size: clamp(11.5px,1.15vw,13.5px); line-height: 1.8;
  color: var(--text-2); margin-top: 22px; letter-spacing: 0.02em; max-width: 420px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 9.5px; letter-spacing: 0.1em;
  color: var(--text-3); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 2px 8px 2px 8px;
  background: rgba(255,255,255,0.03);
}
.hero-trust-badge svg { color: var(--green-bright); flex-shrink: 0; }
[data-theme="light"] .hero-trust-badge { background: rgba(0,0,0,0.04); }
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--orange-base), var(--orange-bright), var(--orange-base));
  height: 34px; display: flex; align-items: center; overflow: hidden; z-index: 6;
}
.hero-ticker-inner {
  display: flex; align-items: center; gap: 0;
  animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-item {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); padding: 0 28px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ──────────────────────────────────────────
   STATS BAR
────────────────────────────────────────── */
.stats-bar { background: var(--bg2); border-bottom: 1px solid var(--border); transition: background .4s; }
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 24px 28px;
  display: flex; align-items: center; gap: 0;
}
.stat { flex: 1; text-align: center; padding: 0 16px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px,2.8vw,36px);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic; font-weight: 400; line-height: 1;
}
.stat-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3); margin-top: 6px; line-height: 1.5;
}
.stat-div { width: 1px; background: var(--border); height: 40px; flex-shrink: 0; }

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.steps-row {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 44px; position: relative;
}
.step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; position: relative; z-index: 2;
}
.step:hover .step-icon {
  background: var(--accent-glow);
  border-color: rgba(255,117,32,0.4);
  transform: rotate(6deg) scale(1.06);
}
.step-num {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 10px;
  color: var(--text-3); margin-top: 12px; letter-spacing: 0.1em;
}
.step-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); margin-top: 5px; font-weight: 400; }
.step-desc { font-size: 10.5px; color: var(--text-3); margin-top: 7px; line-height: 1.7; letter-spacing: 0.02em; max-width: 165px; }
.step-connector { flex-shrink: 0; display: flex; align-items: center; padding-bottom: 40px; }
.step-line { width: 40px; height: 1px; background: var(--border); position: relative; }
.step-line::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  border: 4px solid transparent; border-left-color: var(--border); border-right: none;
}

/* ──────────────────────────────────────────
   DESTINATION STRIP
────────────────────────────────────────── */
.dest-strip {
  display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px;
}
.dest-strip::-webkit-scrollbar { display: none; }
.dest-card {
  flex-shrink: 0; position: relative; overflow: hidden; cursor: pointer;
  border-radius: 4px 18px 4px 18px;
  width: clamp(158px,17vw,218px); height: clamp(175px,19vw,238px);
  border: 1px solid var(--border);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.dest-card:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: 0 22px 52px rgba(0,0,0,0.5); border-color: rgba(255,117,32,0.35); }
[data-theme="light"] .dest-card:hover { box-shadow: 0 22px 52px rgba(0,0,0,0.16); }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) brightness(0.83); transition: filter .4s, transform .5s;
}
.dest-card:hover img { filter: saturate(1.05) brightness(0.9); transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.92) 0%, rgba(5,13,26,0.25) 50%, transparent 100%);
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 14px 12px; }
.dest-name { font-family: 'Playfair Display', serif; font-size: clamp(14px,1.7vw,19px); color: #fff; font-weight: 400; line-height: 1.1; }
.dest-country { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-glow); margin-top: 4px; }
.dest-ops { font-size: 9px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.dest-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--green-base), var(--green-mid));
  color: #fff; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px 6px 2px 6px;
}

/* ──────────────────────────────────────────
   EXPERIENCE TILES
────────────────────────────────────────── */
.exp-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-top: 30px;
}
@media(min-width:640px) { .exp-grid { grid-template-columns: repeat(6,1fr); } }
.exp-tile {
  border: 1px solid var(--border); background: var(--card-bg);
  border-radius: 4px 14px 4px 14px; aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; transition: border-color .25s, background .25s, transform .2s;
  position: relative; overflow: hidden;
}
.exp-tile::before { content: ''; position: absolute; inset: 0; background: var(--accent-glow); opacity: 0; transition: opacity .25s; }
.exp-tile:hover::before { opacity: 1; }
.exp-tile:hover { border-color: rgba(255,117,32,0.38); transform: scale(1.04) rotate(0.5deg); }
.exp-tile-icon { color: var(--accent); position: relative; z-index: 1; }
.exp-tile-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); text-align: center; line-height: 1.45; position: relative; z-index: 1; }
.exp-tile.green .exp-tile-icon { color: var(--green-bright); }
[data-theme="light"] .exp-tile.green .exp-tile-icon { color: var(--green-base); }
.exp-tile.blue .exp-tile-icon { color: #5AADFF; }
[data-theme="light"] .exp-tile.blue .exp-tile-icon { color: #1873CC; }

/* ──────────────────────────────────────────
   TRUST CARDS
────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
@media(min-width:640px) { .trust-grid { grid-template-columns: repeat(2,1fr); } }
.trust-card {
  border: 1px solid var(--border); background: var(--card-bg);
  border-radius: 4px 18px 4px 18px; padding: 26px 24px;
  display: flex; gap: 18px; transition: border-color .25s, background .25s;
}
.trust-card:hover { border-color: var(--border2); background: var(--bg3); }
.trust-card:hover .trust-icon { background: var(--accent-glow); border-color: rgba(255,117,32,0.3); color: var(--accent); }
.trust-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); font-weight: 400; }
.trust-desc { font-size: 11px; color: var(--text-3); margin-top: 7px; line-height: 1.75; letter-spacing: 0.01em; }

/* ──────────────────────────────────────────
   OPERATOR CARDS
────────────────────────────────────────── */
.op-strip { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 6px; }
.op-strip::-webkit-scrollbar { display: none; }
.op-card {
  flex-shrink: 0; width: clamp(230px,25vw,298px);
  border: 1px solid var(--border); background: var(--card-bg);
  border-radius: 4px 18px 4px 18px; overflow: hidden; cursor: pointer;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.op-card:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(0,0,0,0.45); border-color: rgba(255,117,32,0.3); }
[data-theme="light"] .op-card:hover { box-shadow: 0 22px 52px rgba(0,0,0,0.12); }
.op-img { position: relative; height: clamp(135px,14.5vw,170px); overflow: hidden; }
.op-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.78) brightness(0.86); transition: transform .5s, filter .4s; }
.op-card:hover .op-img img { transform: scale(1.07); filter: saturate(0.95) brightness(0.9); }
.op-rating {
  position: absolute; top: 10px; right: 10px;
  background: rgba(5,13,26,0.82); border: 1px solid rgba(255,117,32,0.38);
  border-radius: 2px 8px 2px 8px; padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
}
.op-rating-num { font-size: 11.5px; color: var(--orange-glow); font-family: 'DM Mono', monospace; }
.op-body { padding: 18px 16px; }
.op-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); font-weight: 400; }
.op-loc { font-size: 9.5px; color: var(--text-3); margin-top: 5px; letter-spacing: 0.06em; display: flex; align-items: center; gap: 5px; }
.op-loc svg { color: var(--green-bright); }
[data-theme="light"] .op-loc svg { color: var(--green-base); }
.op-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.op-tag {
  font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px 6px 2px 6px;
  border: 1px solid rgba(255,117,32,0.24);
  color: var(--orange-bright); background: var(--accent-glow);
}
[data-theme="light"] .op-tag { color: var(--accent); border-color: rgba(200,72,0,0.24); }
.op-tag.green { border-color: rgba(46,201,127,0.24); color: var(--green-bright); background: var(--green-glow); }
[data-theme="light"] .op-tag.green { color: var(--green-base); border-color: rgba(26,107,72,0.24); }
.op-price { font-size: 12px; color: var(--orange-dust); margin-top: 10px; font-family: 'Playfair Display', serif; font-style: italic; }
[data-theme="light"] .op-price { color: var(--orange-deep); }

/* ──────────────────────────────────────────
   REVIEWS
────────────────────────────────────────── */
.review-strip {
  display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none;
  padding-bottom: 6px; align-items: flex-start;
}
.review-strip::-webkit-scrollbar { display: none; }
.review-card {
  flex-shrink: 0; width: clamp(228px,23vw,290px);
  border: 1px solid var(--border); background: var(--card-bg);
  border-radius: 4px 18px 4px 18px; padding: 22px 20px;
  transition: border-color .25s, box-shadow .25s;
}
.review-card:nth-child(2n) { margin-top: 26px; }
.review-card:hover { border-color: var(--border2); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
[data-theme="light"] .review-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.review-header { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50% 20% 50% 20%;
  border: 1px solid rgba(255,117,32,0.32); background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 15px; color: var(--accent); flex-shrink: 0;
}
.review-name { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text); }
.review-origin { font-size: 9.5px; color: var(--text-3); margin-top: 2px; }
.review-stars { display: flex; gap: 2px; margin-left: auto; }
.review-stars svg { color: var(--orange-glow); }
.review-text {
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 14px;
  color: var(--text-2); margin-top: 14px; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.review-location {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-bright); margin-top: 13px; display: flex; align-items: center; gap: 6px;
}
[data-theme="light"] .review-location { color: var(--green-base); }
.review-location::before { content: ''; width: 14px; height: 1px; background: var(--green-bright); }
[data-theme="light"] .review-location::before { background: var(--green-base); }

/* ──────────────────────────────────────────
   HIGHLIGHT BAND
────────────────────────────────────────── */
.highlight-band {
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-light) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: clamp(28px,4vw,48px) 0; overflow: hidden; position: relative;
}
[data-theme="light"] .highlight-band { background: linear-gradient(135deg, #D0E4F5 0%, #C0D8EE 100%); }
.highlight-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255,117,32,0.06) 0%,transparent 65%);
}
.highlight-items {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
@media(min-width:640px) { .highlight-items { grid-template-columns: repeat(4,1fr); } }
.highlight-item {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--border); border-radius: 4px 14px 4px 14px;
  padding: 18px 16px; background: rgba(255,255,255,0.03);
  transition: background .25s, border-color .25s;
}
.highlight-item:hover { background: var(--accent-glow); border-color: rgba(255,117,32,0.28); }
[data-theme="light"] .highlight-item { background: rgba(255,255,255,0.5); }
[data-theme="light"] .highlight-item:hover { background: rgba(200,72,0,0.07); }
.highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; background: var(--blue-glow);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; color: #5AADFF;
}
[data-theme="light"] .highlight-icon { color: #1873CC; }
.highlight-title { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text); letter-spacing: 0.06em; }
.highlight-val {
  font-family: 'Playfair Display', serif; font-size: 22px;
  background: linear-gradient(125deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic; font-weight: 400; line-height: 1; margin-top: 2px;
}

/* ──────────────────────────────────────────
   QUIZ CARD (CTA on homepage)
────────────────────────────────────────── */
.quiz-card {
  position: relative; overflow: hidden;
  border-radius: 8px 28px 8px 28px;
  border: 1px solid rgba(255,117,32,0.32);
  padding: clamp(28px,4vw,52px);
  background: var(--card-bg); cursor: pointer;
  transition: box-shadow .3s, transform .25s;
}
.quiz-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 0% 100%, rgba(255,117,32,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(42,120,200,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(46,201,127,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-card:hover { box-shadow: 0 28px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,117,32,0.38); transform: translateY(-2px); }
[data-theme="light"] .quiz-card:hover { box-shadow: 0 28px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(200,72,0,0.38); }
.quiz-orb {
  position: absolute; right: clamp(20px,5%,52px); top: 50%; transform: translateY(-50%);
  width: clamp(80px,11vw,128px); height: clamp(80px,11vw,128px);
  border-radius: 50%;
  background: var(--accent-glow); border: 1px solid rgba(255,117,32,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.quiz-progress { display: flex; gap: 6px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.progress-pill {
  height: 3px; width: 30px; border-radius: 2px; background: var(--border);
  transition: background .4s, width .4s;
}

/* ──────────────────────────────────────────
   BOTTOM CTA BLOCK
────────────────────────────────────────── */
.cta-block {
  border-radius: 8px 28px 8px 28px;
  border: 1px solid var(--border); background: var(--card-bg);
  padding: clamp(40px,5vw,68px) clamp(24px,5vw,60px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 110%, rgba(255,117,32,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 10%, rgba(42,120,200,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(46,201,127,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,5.2vw,66px); color: var(--text); line-height: 0.95; font-weight: 400; }
.cta-title em {
  font-style: italic;
  background: linear-gradient(125deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-desc { font-size: 12px; color: var(--text-2); margin-top: 16px; letter-spacing: 0.04em; line-height: 1.8; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); transition: background .4s; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 60px 0 44px; }
@media(min-width:640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 11.5px; color: var(--text-3); line-height: 1.85; margin-top: 16px; letter-spacing: 0.02em; }
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 50% 20% 50% 20%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-3);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.footer-col-title { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange-bright); margin-bottom: 18px; }
[data-theme="light"] .footer-col-title { color: var(--accent); }
.footer-col a { display: block; font-size: 11.5px; color: var(--text-3); text-decoration: none; margin-bottom: 11px; transition: color .2s; letter-spacing: 0.02em; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media(min-width:640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom span, .footer-bottom a { font-size: 10.5px; color: var(--text-3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ──────────────────────────────────────────
   TAB INNER HEADER
────────────────────────────────────────── */
.tab-inner-header {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  height: 58px; display: flex; align-items: center; padding: 0 24px;
  font-family: 'Playfair Display', serif; font-size: 23px; color: var(--text);
  font-style: italic; font-weight: 400;
  position: sticky; top: 64px; z-index: 10;
}
@media(max-width:768px) { .tab-inner-header { top: 56px; } }

/* ──────────────────────────────────────────
   EMPTY STATE
────────────────────────────────────────── */
.empty-state {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 40px 24px; text-align: center;
}
.empty-icon { color: var(--border2); margin-bottom: 8px; }
.empty-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 24px; color: var(--text-2); }
.empty-desc { font-size: 12px; color: var(--text-3); letter-spacing: 0.03em; line-height: 1.75; max-width: 310px; }

/* ──────────────────────────────────────────
   QUIZ PAGE — Layout
────────────────────────────────────────── */
body.quiz-page { display: flex; flex-direction: column; }
.quiz-container {
  flex: 1;
  display: flex;
  max-width: 100%;
  width: 100%;
  min-height: 0;
}
.quiz-sidebar {
  width: 260px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 40px 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: background .4s;
}
.quiz-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 40px clamp(24px,5vw,60px);
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

@media(max-width:1024px) {
  .quiz-sidebar { display: none; }
  .quiz-container { flex-direction: column; }
  .quiz-main { max-width: 100%; }
}
@media(max-width:768px) {
  .quiz-main { padding: 24px 18px; }
}

/* Progress */
.progress-section { padding: 16px 0 28px; }
.progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.progress-text { font-size: 11px; letter-spacing: 0.1em; color: var(--text-3); }
.progress-percent { font-size: 11px; letter-spacing: 0.1em; color: var(--accent); font-weight: 500; }
.progress-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange-base), var(--orange-bright)); transition: width .4s ease-out; border-radius: 2px; }

/* Sidebar steps */
.sidebar-title { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; font-weight: 700; }
.sidebar-subtitle { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); font-weight: 400; margin-bottom: 32px; }
.sidebar-step {
  margin-bottom: 4px; padding: 10px 12px;
  border-radius: 4px 14px 4px 14px;
  display: flex; gap: 12px; align-items: center;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.sidebar-step.active { background: var(--accent-glow); border-color: rgba(255,117,32,0.4); }
.sidebar-step.done .step-icon { background: rgba(93,184,122,0.12); border-color: var(--success); }
.step-number { font-size: 9px; letter-spacing: 0.15em; color: var(--text-3); font-weight: 600; }
.sidebar-step.active .step-number { color: var(--accent); }
.sidebar-step.done .step-number { color: var(--success); }
.step-info { flex: 1; min-width: 0; }
.step-label { font-size: 12px; color: var(--text-2); font-weight: 300; }
.sidebar-step.active .step-label { color: var(--text); font-weight: 500; }
.trust-note {
  margin-top: auto; padding: 14px; background: var(--accent-glow);
  border: 1px solid rgba(255,117,32,0.3); border-radius: 4px 14px 4px 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.trust-note svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.trust-note-text { font-size: 10px; color: var(--text-3); line-height: 1.5; font-weight: 300; }

/* Step content */
.step-content { flex: 1; display: none; }
.step-content.active { display: block; animation: fadeIn .4s ease-out; }
.step-header { margin-bottom: 32px; }
.step-number-header { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; font-weight: 500; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,4vw,52px); line-height: 1.05;
  color: var(--text); font-weight: 400; margin-bottom: 8px;
}
.step-subtitle { font-size: 13px; color: var(--text-3); line-height: 1.6; font-family: 'Montserrat', sans-serif; font-weight: 300; }

/* Option cards */
.option-card {
  padding: 20px; border: 1px solid var(--border);
  background: var(--card-bg); border-radius: 4px 16px 4px 16px;
  cursor: pointer; transition: all .2s; margin-bottom: 12px;
}
.option-card:hover { border-color: var(--border2); background: var(--bg3); }
.option-card.selected { background: var(--accent-glow); border-color: var(--accent); border-width: 1.5px; }
.option-row { display: flex; align-items: center; gap: 16px; }
.option-icon {
  width: 48px; height: 48px; border-radius: 4px;
  background: var(--bg3); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px;
}
.option-card.selected .option-icon { background: rgba(255,117,32,0.12); }
.option-content { flex: 1; min-width: 0; }
.option-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.option-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); font-weight: 400; }
.option-card.selected .option-name { color: var(--accent); }
.option-price { font-size: 12px; font-weight: 500; color: var(--text-3); }
.option-card.selected .option-price { color: var(--accent); }
.option-desc { font-size: 11px; color: var(--text-3); font-family: 'Montserrat', sans-serif; font-weight: 300; }

/* Experience chips */
.chips-container { display: flex; flex-wrap: wrap; gap: 10px; }
.experience-chip {
  padding: 14px 16px; border: 1px solid var(--border);
  background: var(--card-bg); border-radius: 4px 14px 4px 14px;
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px;
}
.experience-chip:hover { border-color: var(--border2); background: var(--bg3); }
.experience-chip.selected { background: var(--accent-glow); border-color: var(--accent); border-width: 1.5px; }
.chip-icon { font-size: 28px; }
.chip-label { font-size: 11px; font-weight: 500; letter-spacing: 0.3px; color: var(--text-2); }
.experience-chip.selected .chip-label { color: var(--accent); }

/* Grid options */
.grid-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
@media(max-width:640px) { .grid-options { grid-template-columns: repeat(2,1fr); } }
.grid-option {
  padding: 20px 16px; border: 1px solid var(--border);
  background: var(--card-bg); border-radius: 4px 16px 4px 16px;
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.grid-option:hover { border-color: var(--border2); background: var(--bg3); }
.grid-option.selected { background: var(--accent-glow); border-color: var(--accent); border-width: 1.5px; }
.grid-icon { font-size: 28px; }
.grid-name { font-size: 13px; font-weight: 500; color: var(--text); font-family: 'Playfair Display', serif; }
.grid-option.selected .grid-name { color: var(--accent); }
.grid-subtitle { font-size: 10px; color: var(--text-3); font-weight: 300; }

/* Tag chips */
.tag-chip {
  padding: 10px 18px; border: 1px solid var(--border);
  background: var(--card-bg); border-radius: 2px 10px 2px 10px;
  cursor: pointer; transition: all .2s;
  font-size: 12px; color: var(--text-2); display: inline-block;
  font-family: 'DM Mono', monospace;
}
.tag-chip:hover { border-color: var(--border2); background: var(--bg3); }
.tag-chip.selected { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

/* Section label */
.section-label {
  font-size: 11px; color: var(--text-3); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Quiz CTA row */
.quiz-cta {
  padding: 20px 0; border-top: 1px solid var(--border);
  display: flex; gap: 12px; align-items: center; margin-top: 32px;
}
@media(max-width:768px) {
  .quiz-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg); padding: 16px 18px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.18);
    z-index: 100; border-top: 1px solid var(--border);
  }
  .quiz-main { padding-bottom: 100px; }
}

/* ──────────────────────────────────────────
   CHAT PAGE — Full-width, responsive
────────────────────────────────────────── */
.chat-page { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.chat-page .header,
.chat-page .mob-header { flex-shrink: 0; }

.chat-layout {
  display: flex;
  flex: 1;
  min-height: 0;
  width: 100%;
}

/* Conversations sidebar */
.chat-sidebar {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width .3s ease, transform .3s ease, background .4s;
}
.chat-sidebar-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-style: italic; font-weight: 400;
  color: var(--text); margin-bottom: 14px;
}
.chat-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 2px 10px 2px 10px; padding: 8px 14px;
  transition: border-color .2s;
}
.chat-search:focus-within { border-color: var(--accent); }
.chat-search svg { color: var(--text-3); flex-shrink: 0; }
.chat-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: 'DM Mono', monospace; font-size: 12px;
  width: 100%;
}
.chat-search input::placeholder { color: var(--text-3); }

.chat-list { flex: 1; overflow-y: auto; padding: 8px 0; }
.chat-list::-webkit-scrollbar { width: 3px; }
.chat-list::-webkit-scrollbar-thumb { background: var(--border2); }

.chat-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px; cursor: pointer;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s;
}
.chat-item:hover { background: var(--bg3); }
.chat-item.active { background: var(--accent-glow); border-left-color: var(--accent); }
.chat-item-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50% 18% 50% 18%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--accent);
  position: relative;
}
.chat-item.active .chat-item-avatar { border-color: rgba(255,117,32,0.4); background: rgba(255,117,32,0.1); }
.online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-bright); border: 2px solid var(--bg2);
}
.chat-item-body { flex: 1; min-width: 0; }
.chat-item-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.chat-item-name { font-size: 13px; color: var(--text); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-item.active .chat-item-name { color: var(--accent); }
.chat-item-time { font-size: 9px; color: var(--text-3); flex-shrink: 0; letter-spacing: 0.05em; }
.chat-item-preview { font-size: 11px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.4; }
.chat-item-meta { display: flex; align-items: center; gap: 6px; margin-top: 5px; flex-wrap: wrap; }
.chat-tag {
  font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 2px 5px 2px 5px;
  border: 1px solid rgba(255,117,32,0.2); color: var(--orange-bright); background: var(--accent-glow);
}
.chat-tag.green { border-color: rgba(46,201,127,0.22); color: var(--green-bright); background: var(--green-glow); }
[data-theme="light"] .chat-tag { color: var(--accent); }
[data-theme="light"] .chat-tag.green { color: var(--green-base); }
.unread-badge {
  background: var(--accent); color: #fff;
  font-size: 9px; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Main chat area */
.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: var(--bg);
}

/* Chat topbar */
.chat-topbar {
  padding: 14px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-shrink: 0;
  transition: background .4s;
}
.chat-topbar-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.chat-back-btn {
  display: none; background: none; border: none;
  color: var(--text-2); cursor: pointer; padding: 4px;
  border-radius: 4px; transition: color .2s;
}
.chat-back-btn:hover { color: var(--accent); }
.chat-topbar-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50% 16% 50% 16%;
  background: var(--accent-glow); border: 1px solid rgba(255,117,32,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--accent);
  position: relative;
}
.chat-topbar-info { min-width: 0; }
.chat-topbar-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-topbar-status { font-size: 10px; color: var(--green-bright); letter-spacing: 0.06em; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
[data-theme="light"] .chat-topbar-status { color: var(--green-base); }
.chat-topbar-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }
[data-theme="light"] .chat-topbar-status::before { background: var(--green-base); }
.chat-topbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.chat-action-btn {
  width: 36px; height: 36px; border-radius: 2px 8px 2px 8px;
  background: none; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); cursor: pointer; transition: all .2s;
}
.chat-action-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border2); }

/* Date divider */
.date-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0; font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-3);
}
.date-divider::before, .date-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Message bubbles */
.msg-row {
  display: flex; align-items: flex-end; gap: 10px;
  margin-bottom: 2px;
}
.msg-row.sent { flex-direction: row-reverse; }
.msg-row + .msg-row.sent,
.msg-row + .msg-row:not(.sent) { margin-top: 2px; }

.msg-avatar {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%; background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 12px; color: var(--accent);
  align-self: flex-end;
}
.msg-avatar.hidden { opacity: 0; pointer-events: none; }

.msg-bubble {
  max-width: min(72%, 520px);
  padding: 10px 14px;
  font-size: 13px; line-height: 1.6;
  position: relative;
}
.msg-row:not(.sent) .msg-bubble {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 2px 14px 14px 14px; color: var(--text);
}
.msg-row.sent .msg-bubble {
  background: linear-gradient(135deg, var(--orange-base), var(--orange-bright));
  color: #fff;
  border-radius: 14px 2px 14px 14px;
}
.msg-time {
  font-size: 9px; color: var(--text-3); margin-top: 4px;
  letter-spacing: 0.06em; display: block;
}
.msg-row.sent .msg-time { text-align: right; color: rgba(255,255,255,0.6); }

/* System / info messages */
.msg-system {
  text-align: center; padding: 8px 16px;
  font-size: 10.5px; color: var(--text-3);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; align-self: center;
  max-width: 400px; line-height: 1.5; margin: 8px 0;
}

/* Typing indicator */
.typing-indicator {
  display: flex; align-items: center; gap: 10px;
  padding: 0 4px; margin-top: 4px;
}
.typing-dots { display: flex; gap: 4px; }
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3);
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
  0%,80%,100% { transform: scale(0.8); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}
.typing-name { font-size: 10px; color: var(--text-3); letter-spacing: 0.05em; }

/* Chat input */
.chat-input-area {
  padding: 16px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  transition: background .4s;
}
.chat-input-row {
  display: flex; align-items: flex-end; gap: 10px;
}
.chat-input-wrap {
  flex: 1; display: flex; align-items: flex-end;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 2px 14px 2px 14px;
  padding: 10px 14px; gap: 10px;
  transition: border-color .2s;
}
.chat-input-wrap:focus-within { border-color: var(--accent); }
.chat-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: 'DM Mono', monospace; font-size: 13px;
  resize: none; max-height: 120px; min-height: 22px; line-height: 1.5;
}
.chat-input::placeholder { color: var(--text-3); }
.chat-input-tools { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.chat-input-tool {
  width: 28px; height: 28px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  color: var(--text-3); display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.chat-input-tool:hover { color: var(--accent); }
.chat-send-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-base), var(--orange-bright));
  border: none; border-radius: 2px 12px 2px 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(255,117,32,0.3);
}
.chat-send-btn:hover { opacity: 0.9; box-shadow: 0 6px 18px rgba(255,117,32,0.4); }
.chat-send-btn:active { transform: scale(.95); }

/* Attachment pill */
.attachment-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 2px 8px 2px 8px; padding: 5px 12px;
  font-size: 11px; color: var(--text-2); margin-top: 6px;
}
.attachment-pill svg { color: var(--accent); }

/* ──────────────────────────────────────────
   CHAT RESPONSIVE
────────────────────────────────────────── */
@media(max-width:1024px) {
  .chat-sidebar { width: 280px; }
}
@media(max-width:768px) {
  .chat-layout { position: relative; }
  .chat-sidebar {
    position: absolute; inset: 0;
    width: 100%; z-index: 10;
    transform: translateX(0);
  }
  .chat-sidebar.hidden {
    transform: translateX(-100%);
    pointer-events: none;
  }
  .chat-main {
    position: absolute; inset: 0;
    width: 100%; z-index: 5;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .chat-main.visible {
    transform: translateX(0);
    z-index: 15;
  }
  .chat-back-btn { display: flex; }
  .chat-messages { padding: 16px; }
  .chat-input-area { padding: 12px 16px; }
  .msg-bubble { max-width: 85%; }
  .mob-bottom-nav {display: flex !important; }
}

.mob-menu-btn {
  background: none; border: 1px solid var(--border2);
  border-radius: 2px 8px 2px 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); cursor: pointer;
}
.mob-nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 280px;
  background: var(--bg2); border-right: 1px solid var(--border);
  z-index: 9000; transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.34,1.2,.64,1);
  padding: 20px;
}
.mob-nav-drawer.open { transform: translateX(0); }
.mob-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 8999; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mob-nav-overlay.open { opacity: 1; pointer-events: all; }
.mob-drawer-close {
  background: none; border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  color: var(--text-2); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}
.mob-drawer-item {
  background: none; border: none; text-align: left;
  font-family: 'DM Mono', monospace; font-size: 13px;
  letter-spacing: 0.06em; color: var(--text-2);
  padding: 14px 16px; border-radius: 2px 10px 2px 10px;
  cursor: pointer; transition: background .2s, color .2s; width: 100%;
}
.mob-drawer-item:hover { background: var(--accent-glow); color: var(--accent); }
@media(max-width:480px) {
  .footer-grid { gap: 28px; padding: 36px 0 28px; }
  .footer-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-col-title { grid-column: 1/-1; }
}
@media(max-width:480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-green { width: 100%; justify-content: center; }
}
@media(max-width:380px) {
  .highlight-items { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .quiz-orb { display: none; }
  .quiz-card > div { max-width: 100% !important; }
}
@media(max-width:480px) {
  .hero { min-height: 420px; }
  .hero-title { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; height: 48px; }
  .hero-trust { gap: 8px; }
  .hero-trust-badge { font-size: 8.5px; padding: 4px 9px; }
}
@media(max-width:480px) {
  .review-card { width: 220px; }
  .review-card:nth-child(2n) { margin-top: 0; }
}
@media(max-width:480px) {
  .op-card { width: 200px; }
}
@media(max-width:480px) {
  .dest-card { width: 148px; height: 170px; }
}
@media(max-width:768px) {
  .steps-row { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { display: none; }
  .step { width: 100%; max-width: 320px; }
}
@media(max-width:480px) {
  .stats-inner { flex-wrap: wrap; padding: 16px; gap: 0; }
  .stat { flex: 0 0 50%; padding: 12px 8px; }
  .stat-div { display: none; }
}