/* =============================================
   WANDORA — Premium Landing Page v5
   ============================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --amber: #D97706;
  --amber-dark: #B45309;
  --amber-light: #FDE68A;
  --amber-glow: rgba(217, 119, 6, 0.1);
  --purple: #7C3AED;
  --pink: #DB2777;
  --emerald: #059669;
  --blue: #2563EB;
  --orange: #EA580C;
  --red: #DC2626;

  --bg: #FAFAF8;
  --bg-subtle: #F5F5F0;
  --surface: #FFFFFF;
  --surface-2: #F9F9F6;
  --surface-glass: rgba(255, 255, 255, 0.8);

  --border: rgba(0, 0, 0, 0.06);
  --border-2: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);
  --border-amber: rgba(217, 119, 6, 0.2);

  --text: #1A1A1A;
  --text-2: #555555;
  --text-3: #8C8C8C;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Serif font for headings — premium feel */
h1, h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  z-index: 101;
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: 10px !important;
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background: var(--amber-dark) !important;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 15px;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
  border-radius: 14px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Atmospheric background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Subtle grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 70%);
}

/* Warm glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px;
  height: 500px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(253, 230, 138, 0.35) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.2) 0%, transparent 70%);
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: -100px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.15) 0%, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Countdown Timer */
.countdown-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 16px;
  padding: 10px 24px;
  margin-bottom: 16px;
}
.countdown-label {
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}
.countdown-unit span {
  font-size: 22px;
  font-weight: 800;
  color: #78350F;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-unit small {
  font-size: 10px;
  color: rgba(120,53,15,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.countdown-sep {
  font-size: 20px;
  color: rgba(120,53,15,0.4);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 16px 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 4px rgba(245, 158, 11, 0.3); }
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}

.avatar-stack span:first-child { margin-left: 0; }

.social-proof-text {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
}

.social-proof-text strong {
  color: var(--text);
  font-weight: 700;
}

/* =============================================
   HERO PHONE MOCKUP
   ============================================= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.phone-wrapper {
  position: relative;
}

.phone-frame {
  width: 290px;
  height: 600px;
  background: linear-gradient(180deg, #1C1C1E 0%, #111113 100%);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 46px;
  padding: 6px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 16px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.phone-frame:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0A0A0F;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone UI — kept dark (phones look natural in dark mode) */
.pui-header { padding: 48px 16px 8px; }
.pui-greeting { font-size: 11px; color: #6E6E86; }
.pui-city { font-size: 18px; font-weight: 800; font-family: 'Inter', sans-serif; color: #F4F4F8; }

.pui-search {
  margin: 8px 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 11px;
  color: #6E6E86;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pui-chips { display: flex; gap: 4px; padding: 4px 16px 10px; overflow: hidden; }

.pui-chip {
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #6E6E86;
  white-space: nowrap;
}

.pui-chip-active { background: #F59E0B; color: #000; }

.pui-card {
  margin: 0 12px 6px;
  background: #14141C;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.pui-card-img { height: 76px; position: relative; }
.pui-card-img-1 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.pui-card-img-2 { background: linear-gradient(135deg, #1a1a2e, #2d1b69, #11998e); }

.pui-card-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  padding: 2px 7px;
  font-size: 7px;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.9);
  color: #000;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pui-card-tag-purple { background: rgba(139, 92, 246, 0.9); color: #fff; }

.pui-card-body { padding: 7px 10px; }
.pui-card-name { font-size: 12px; font-weight: 700; font-family: 'Inter', sans-serif; color: #F4F4F8; }
.pui-card-meta { font-size: 9px; color: #6E6E86; display: flex; align-items: center; gap: 3px; }
.pui-star { color: #F59E0B; }

.pui-navbar {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0 14px;
  display: flex;
}

.pui-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: #6E6E86;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.pui-tab-active { color: #F59E0B; }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card strong { display: block; font-size: 12px; font-weight: 700; font-family: 'Inter', sans-serif; }
.float-card span { display: block; font-size: 10px; color: var(--text-3); }

.fc-1 { top: 50px; left: -130px; }
.fc-2 { top: 240px; right: -130px; animation-delay: 2s; }
.fc-3 { bottom: 100px; left: -120px; animation-delay: 4s; }

.fi-purple { background: linear-gradient(135deg, var(--purple), #6366F1); }
.fi-amber { background: linear-gradient(135deg, var(--amber), var(--orange)); }
.fi-emerald { background: linear-gradient(135deg, var(--emerald), #059669); }

/* Phone glow effect behind */
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(253, 230, 138, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* =============================================
   LOGOS / MARQUEE
   ============================================= */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-subtle);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-items {
  display: flex;
  align-items: center;
}

.marquee-items span {
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* =============================================
   STATS
   ============================================= */
.stats {
  padding: 90px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 100px;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features {
  padding: 120px 0;
  position: relative;
}

/* Subtle background accent */
.features::before {
  content: '';
  position: absolute;
  top: 200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 20%, rgba(217, 119, 6, 0.15), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.span-2 { grid-column: span 2; }
.feature-card.span-3 { grid-column: span 3; }

.feature-card.span-3-row {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 32px;
}

.feature-card.span-2-layout {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.icon-purple { background: rgba(124, 58, 237, 0.08); color: var(--purple); }
.icon-emerald { background: rgba(5, 150, 105, 0.08); color: var(--emerald); }
.icon-pink { background: rgba(219, 39, 119, 0.08); color: var(--pink); }
.icon-amber { background: rgba(217, 119, 6, 0.08); color: var(--amber); }
.icon-blue { background: rgba(37, 99, 235, 0.08); color: var(--blue); }
.icon-orange { background: rgba(234, 88, 12, 0.08); color: var(--orange); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Chat mockup */
.chat-mockup {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.chat-user { text-align: right; margin-bottom: 12px; }

.chat-user span {
  display: inline-block;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 14px 14px 4px 14px;
  max-width: 90%;
  line-height: 1.5;
  text-align: left;
}

.chat-ai {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.chat-bubble {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 8px 14px;
  margin-left: 34px;
  width: fit-content;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Mini map */
.mini-map {
  position: relative;
  height: 100px;
  margin-top: 16px;
  background: var(--bg-subtle);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: dot-ping 2s ease-out infinite;
}

@keyframes dot-ping {
  0% { transform: scale(1); opacity: 0.6; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

.map-dot-1 { background: var(--amber); top: 30%; left: 25%; }
.map-dot-1::after { background: rgba(245, 158, 11, 0.2); }
.map-dot-2 { background: var(--purple); top: 55%; left: 55%; }
.map-dot-2::after { background: rgba(139, 92, 246, 0.2); }
.map-dot-3 { background: var(--emerald); top: 35%; left: 78%; }
.map-dot-3::after { background: rgba(16, 185, 129, 0.2); }

.map-line {
  position: absolute;
  top: 35%;
  left: 30%;
  width: 100px;
  height: 40px;
  border: 2px dashed rgba(245, 158, 11, 0.2);
  border-radius: 30px;
  transform: rotate(-10deg);
}

/* Trip timeline */
.trip-timeline { margin-top: 16px; }

.trip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-left: 2px solid var(--border);
  margin-left: 8px;
  position: relative;
}

.trip-item::before {
  content: '';
  position: absolute;
  left: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  border: 2px solid var(--surface);
}

.trip-item.active { border-left-color: var(--amber); }
.trip-item.active::before { background: var(--amber); box-shadow: 0 0 8px rgba(245, 158, 11, 0.4); }

.trip-time { font-size: 11px; color: var(--text-3); font-weight: 600; min-width: 36px; }
.trip-place { font-size: 13px; font-weight: 600; }

/* Toolkit pills */
.toolkit-pills { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.25s;
  white-space: nowrap;
}

.pill:hover {
  background: rgba(217, 119, 6, 0.06);
  border-color: var(--border-amber);
  color: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   CITIES
   ============================================= */
.cities {
  padding: 120px 0 80px;
  position: relative;
}

.city-scroll {
  overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.city-scroll::-webkit-scrollbar { display: none; }

.city-row {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-bottom: 8px;
}

.city-tile {
  position: relative;
  width: 195px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.city-tile:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.1);
}

.city-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.city-tile:hover .city-bg { transform: scale(1.08); }

.city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 60%);
}

.city-info h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.city-info span { font-size: 11px; color: rgba(255, 255, 255, 0.5); }

.city-more {
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
  margin-top: 28px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step {
  text-align: center;
  max-width: 260px;
  padding: 0 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.2);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.si-amber { background: rgba(217, 119, 6, 0.08); color: var(--amber); }
.si-purple { background: rgba(124, 58, 237, 0.08); color: var(--purple); }
.si-emerald { background: rgba(5, 150, 105, 0.08); color: var(--emerald); }

.step h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 55px;
  opacity: 0.35;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253, 230, 138, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.35s;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testi-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-card.featured {
  border-color: rgba(217, 119, 6, 0.15);
  background: linear-gradient(180deg, rgba(253, 230, 138, 0.08) 0%, rgba(196, 181, 253, 0.04) 100%);
}

.testi-card.featured:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

.testi-stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card blockquote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
}

.testi-where {
  font-size: 11px;
  color: var(--text-3);
}

/* =============================================
   CTA
   ============================================= */
.cta {
  padding: 120px 0;
  position: relative;
}

.cta-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-subtle) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 400px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(253, 230, 138, 0.25);
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
  background: rgba(196, 181, 253, 0.12);
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: 80px 40px;
}

.cta-inner h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-inner > p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #333;
}

.store-btn small { color: rgba(255, 255, 255, 0.6); }
.store-btn strong { color: #fff; }

.store-btn small { display: block; font-size: 10px; opacity: 0.5; text-align: left; line-height: 1; }
.store-btn strong { display: block; font-size: 15px; text-align: left; line-height: 1.2; }

.cta-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { max-width: 270px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 12px; color: var(--text-3); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure content visible without JS */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .float-card { display: none; }
  .feature-card.span-2-layout { grid-template-columns: 1fr; }
  .feature-card.span-3-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 18px !important; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 48px; min-height: auto; }
  .hero h1 { font-size: 38px; }
  .phone-frame { width: 230px; height: 480px; transform: none; }
  .phone-frame:hover { transform: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.span-2, .feature-card.span-3, .feature-card.span-3-row, .feature-card.span-2-layout { grid-column: span 1; }

  .steps { flex-direction: column; align-items: center; gap: 20px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }

  .testi-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: 48px 20px; }
  .store-buttons { flex-direction: column; align-items: center; }
  .trust-items { flex-direction: column; align-items: center; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .phone-frame { width: 210px; height: 440px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pill { padding: 8px 12px; font-size: 12px; }
}

/* =============================================
   HERO STORE BADGES
   ============================================= */
.hero-store-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.store-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.store-badge-chip:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.store-badge-chip strong {
  color: var(--text);
  font-weight: 700;
}

/* =============================================
   WHY WANDORA — VS SECTION
   ============================================= */
.vs-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: center;
}

.vs-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
}

.vs-old {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vs-new {
  background: linear-gradient(160deg, rgba(253,230,138,0.1) 0%, rgba(217,119,6,0.04) 100%);
  border: 1px solid rgba(217,119,6,0.18);
  box-shadow: 0 4px 24px rgba(217,119,6,0.06);
}

.vs-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

.vs-old .vs-label { color: var(--text-3); }
.vs-new .vs-label { color: var(--amber); }

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}

.vs-old .vs-list li { font-size: 14px; color: var(--text-3); }
.vs-new .vs-list li { font-size: 14px; color: var(--text); font-weight: 500; }

.vs-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-icon-x {
  background: rgba(220, 38, 38, 0.08);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.vs-icon-check {
  background: rgba(217, 119, 6, 0.08);
  color: var(--amber);
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.vs-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vs-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
  flex-shrink: 0;
}

/* =============================================
   TRAVELER PERSONAS
   ============================================= */
.personas {
  padding: 120px 0;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.persona-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.persona-card:hover {
  border-color: rgba(217, 119, 6, 0.18);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.persona-card:hover::before { opacity: 1; }

.persona-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.persona-type {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

.persona-card blockquote {
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
  padding: 0;
  border: none;
}

.persona-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-card ul li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.persona-card ul li::before {
  content: '→';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* Responsive — new sections */
@media (max-width: 1024px) {
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vs-grid { grid-template-columns: 1fr; gap: 16px; }
  .vs-divider { transform: rotate(90deg); }
  .vs-card { padding: 28px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-store-badges { gap: 8px; }
}

@media (max-width: 480px) {
  .persona-grid { grid-template-columns: 1fr; }
  .vs-card { padding: 20px; }
}

/* =============================================
   WAITLIST SECTION
   ============================================= */
.waitlist {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(253,230,138,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.waitlist-inner > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.waitlist-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.waitlist-proof .avatar-stack span { width: 28px; height: 28px; font-size: 10px; }

.waitlist-proof-text {
  font-size: 13px;
  color: var(--text-3);
}

.waitlist-proof-text strong { color: var(--text); font-weight: 700; }

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--amber);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-3);
}

.waitlist-form button {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.25);
}

.waitlist-note {
  font-size: 12px;
  color: var(--text-3);
}

.waitlist-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.waitlist-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}

@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
}

.pricing-toggle-label.active { color: var(--text); }

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--border-2);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
}

.toggle-switch.on { background: var(--amber); }

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s;
}

.toggle-switch.on::after { transform: translateX(22px); }

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(5,150,105,0.1);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: rgba(217,119,6,0.3);
  background: linear-gradient(180deg, rgba(253,230,138,0.08) 0%, var(--surface) 100%);
  box-shadow: 0 8px 32px rgba(217,119,6,0.1);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.pricing-card.popular .pricing-tier { color: var(--amber); }

.pricing-price {
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-annual-note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
  min-height: 18px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.pricing-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(5,150,105,0.08);
  border: 1.5px solid rgba(5,150,105,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #059669;
}

.pricing-features li .check-x {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--text-3);
}

.pricing-features li.muted { color: var(--text-3); }

.pricing-cta-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.pricing-cta-btn.outline {
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text);
}

.pricing-cta-btn.outline:hover {
  border-color: var(--border-hover);
  background: var(--bg-subtle);
}

.pricing-cta-btn.solid {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(217,119,6,0.2);
}

.pricing-cta-btn.solid:hover {
  box-shadow: 0 6px 24px rgba(217,119,6,0.3);
  transform: translateY(-1px);
}

.pricing-compare {
  overflow-x: auto;
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.pricing-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-compare th,
.pricing-compare td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-compare th:first-child,
.pricing-compare td:first-child {
  text-align: left;
  color: var(--text-2);
}

.pricing-compare th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  background: var(--bg-subtle);
}

.pricing-compare th.highlight { color: var(--amber); }

.pricing-compare tr:last-child td { border-bottom: none; }

.pricing-compare .check-green { color: #059669; font-size: 16px; }
.pricing-compare .dash { color: var(--border-hover); }

.pricing-faq {
  margin-top: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

.faq-answer {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* =============================================
   BLOG INDEX
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.blog-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-card-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img-bg { transform: scale(1.05); }

.blog-card-category {
  position: absolute;
  bottom: 14px;
  left: 16px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  color: #fff;
}

.cat-travel { background: rgba(217,119,6,0.9); }
.cat-guide { background: rgba(124,58,237,0.9); }
.cat-tips { background: rgba(5,150,105,0.9); }
.cat-apps { background: rgba(37,99,235,0.9); }
.cat-culture { background: rgba(219,39,119,0.9); }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 10px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more { gap: 10px; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ARTICLE CONTENT
   ============================================= */
.article-hero {
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 70%);
}

.article-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  width: 600px;
  height: 400px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(253,230,138,0.3) 0%, transparent 70%);
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.article-category {
  display: inline-block;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.article-hero-inner h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}

.article-hero-meta span { display: flex; align-items: center; gap: 5px; }

.article-img {
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  border: 1px solid var(--border);
}

.article-content {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
}

.article-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  line-height: 1.25;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

.article-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 20px 24px;
}

.article-content li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--text);
  font-weight: 700;
}

.article-tip {
  background: rgba(217,119,6,0.05);
  border: 1px solid rgba(217,119,6,0.15);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 28px 0;
}

.article-tip-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 6px;
}

.article-tip p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text);
}

.article-related {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card-img {
  height: 140px;
}

.related-card-body { padding: 18px; }

.related-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .article-img { height: 240px; }
}

/* =============================================
   PRESS PAGE
   ============================================= */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.press-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.press-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.color-palette {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.color-swatch-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.color-swatch-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.press-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.press-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.press-stat-n {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.press-stat-l {
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.press-stat-sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.screenshot-placeholder {
  aspect-ratio: 9/19;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  margin-right: 8px;
  margin-bottom: 8px;
}

.download-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(217,119,6,0.04);
}

.press-desc-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.press-desc-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.press-desc-box p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .press-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Footer responsive — 5 cols */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--amber);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

/* =============================================
   BLOG CATEGORY FILTERS
   ============================================= */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.blog-filter-chip {
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.blog-filter-chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.blog-filter-chip.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

.blog-card.hidden {
  display: none;
}

/* =============================================
   BLOG BREADCRUMB & SOCIAL SHARE
   ============================================= */
.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 24px;
  transition: color 0.2s;
}

.article-breadcrumb:hover {
  color: var(--amber);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.article-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s;
}

.share-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(217,119,6,0.04);
}

.share-btn.copied {
  border-color: #059669;
  color: #059669;
  background: rgba(5,150,105,0.04);
}

/* =============================================
   STORE BUTTON COMING SOON BADGE
   ============================================= */
.store-btn {
  position: relative;
}

.store-coming-soon {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 2px 8px;
  background: var(--amber);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   SKIP TO CONTENT
   ============================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--amber);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* =============================================
   DARK MODE TOGGLE
   ============================================= */
.dark-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s;
  margin-left: 8px;
  flex-shrink: 0;
}

.dark-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.dark-toggle .icon-sun { display: none; }
.dark-toggle .icon-moon { display: block; }

/* =============================================
   FOOTER SOCIAL LINKS
   ============================================= */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  color: var(--text-3);
  transition: all 0.25s;
}

.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(217,119,6,0.04);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.form-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.25);
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-search {
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.faq-search input:focus {
  border-color: var(--amber);
}

.faq-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
}

.faq-category-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin: 40px 0 16px;
  font-family: 'Inter', sans-serif;
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.about-section:nth-child(even) {
  background: var(--bg-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-2);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
}

.timeline-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}

.team-role {
  font-size: 12px;
  color: var(--text-3);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-value-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,119,6,0.08);
  border-radius: 10px;
  color: var(--amber);
  margin-bottom: 16px;
}

.about-value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.about-value-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.about-stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--amber);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   DARK MODE
   ============================================= */
[data-theme="dark"] {
  --bg: #0F0F12;
  --bg-subtle: #16161A;
  --surface: #1C1C22;
  --surface-2: #22222A;
  --surface-glass: rgba(28, 28, 34, 0.85);

  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);

  --text: #F4F4F8;
  --text-2: #A0A0B0;
  --text-3: #6E6E80;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(15, 15, 18, 0.9);
}

[data-theme="dark"] .nav-links {
  /* mobile menu dark */
}

@media (max-width: 768px) {
  [data-theme="dark"] .nav-links {
    background: rgba(15, 15, 18, 0.97);
  }
}

[data-theme="dark"] .dark-toggle .icon-sun { display: block; }
[data-theme="dark"] .dark-toggle .icon-moon { display: none; }

[data-theme="dark"] .countdown-unit span {
  color: #fff;
}

[data-theme="dark"] .vs-old {
  background: var(--surface);
}

[data-theme="dark"] .store-btn {
  background: #2A2A32;
}

[data-theme="dark"] .store-btn:hover {
  background: #3A3A44;
}

[data-theme="dark"] .hamburger span {
  background: var(--text);
}

[data-theme="dark"] .chat-user span {
  color: #000;
}

[data-theme="dark"] .pricing-card.popular {
  background: linear-gradient(180deg, rgba(217,119,6,0.08) 0%, var(--surface) 100%);
}

[data-theme="dark"] .pricing-compare th {
  background: var(--bg-subtle);
}

[data-theme="dark"] .blog-filter-chip {
  background: var(--surface);
  color: var(--text-2);
}

[data-theme="dark"] .blog-filter-chip.active {
  background: var(--amber);
  color: #fff;
}

/* Auto dark mode from system preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F0F12;
    --bg-subtle: #16161A;
    --surface: #1C1C22;
    --surface-2: #22222A;
    --surface-glass: rgba(28, 28, 34, 0.85);
    --border: rgba(255, 255, 255, 0.06);
    --border-2: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.14);
    --text: #F4F4F8;
    --text-2: #A0A0B0;
    --text-3: #6E6E80;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.5);
  }

  :root:not([data-theme="light"]) .nav.scrolled {
    background: rgba(15, 15, 18, 0.9);
  }

  :root:not([data-theme="light"]) .dark-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .dark-toggle .icon-moon { display: none; }

  :root:not([data-theme="light"]) .hamburger span { background: #F4F4F8; }

  :root:not([data-theme="light"]) .store-btn { background: #2A2A32; }
  :root:not([data-theme="light"]) .store-btn:hover { background: #3A3A44; }

  :root:not([data-theme="light"]) .chat-user span { color: #000; }

  @media (max-width: 768px) {
    :root:not([data-theme="light"]) .nav-links {
      background: rgba(15, 15, 18, 0.97);
    }
  }
}
