*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1B6BF3;
  --blue-dark: #1254CC;
  --blue-light: #E8F0FE;
  --coral: #FF6B4A;
  --coral-dark: #E85A3A;
  --coral-light: #FFF0EC;
  --emerald: #00B87A;
  --emerald-light: #E6F9F1;
  --purple: #7C3AED;
  --purple-dark: #6D28D9;
  --purple-light: #F0E9FF;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --dark: #0B0F1A;
  --dark-card: #141828;
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --text: #0F1629;
  --text-secondary: #5B6078;
  --text-tertiary: #9CA0B4;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Utility ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Dot pattern bg ── */
.dot-bg {
  background-image: radial-gradient(circle, rgba(27,107,243,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,251,255,0.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(27,107,243,0.06);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(250,251,255,0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900;
  text-decoration: none; letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 10px 28px;
  border-radius: 50px; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(27,107,243,0.25);
}
.nav-cta:hover {
  background: var(--blue-dark); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,107,243,0.35);
}
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; position: absolute; left: 5px;
  transition: all 0.3s;
}
.nav-mobile-toggle span:nth-child(1) { top: 9px; }
.nav-mobile-toggle span:nth-child(2) { top: 15px; }
.nav-mobile-toggle span:nth-child(3) { top: 21px; }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(250,251,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 999;
  flex-direction: column; gap: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.nav-mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--blue); color: #fff;
  text-align: center; border-radius: 50px;
  padding: 14px; font-weight: 700;
}
.nav-mobile-menu .mobile-cta:hover { background: var(--blue-dark); }

/* Hamburger active state */
.nav-mobile-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 30% 30%, rgba(27,107,243,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 90%, rgba(255,107,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  backdrop-filter: blur(12px);
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--emerald); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 28px; letter-spacing: -1.5px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 40%, #F472B6 70%, var(--coral) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  padding: 16px 40px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(27,107,243,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark); transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(27,107,243,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 16px 40px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.hero-trust .stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 500px;
}
.hero-phone {
  position: relative; z-index: 2;
  width: 280px;
  border-radius: 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-phone:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,107,243,0.3) 0%, rgba(124,58,237,0.15) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
.hero-floating-pill {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  white-space: nowrap;
  animation: floatBadge 5s ease-in-out infinite;
}
.hero-floating-pill:nth-child(3) { top: 15%; right: -10%; animation-delay: -1s; }
.hero-floating-pill:nth-child(4) { bottom: 20%; left: -8%; animation-delay: -2.5s; }
.hero-floating-pill:nth-child(5) { top: 60%; right: -15%; animation-delay: -4s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.store-icon { width: 22px; height: 22px; }

/* ── Stats Bar ── */
.stats-bar {
  padding: 56px 0;
  background: var(--surface);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.stats-grid {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.stat { text-align: center; min-width: 120px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 11px; color: var(--text-tertiary); margin-top: 8px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.stat-divider {
  width: 1px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.08), transparent);
  align-self: stretch;
}

/* ── Features Bento ── */
.features {
  padding: 120px 0;
  position: relative;
}
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.bento-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.bento-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-card.bento-featured {
  background: linear-gradient(145deg, #1a1f35, #0f1320);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}
.bento-card.bento-featured p { color: rgba(255,255,255,0.6); }
.bento-card.bento-featured:hover {
  box-shadow: 0 20px 60px rgba(27,107,243,0.15);
}

.bento-screenshot {
  position: absolute;
  bottom: -20px; right: -10px;
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transform: rotate(6deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-screenshot {
  transform: rotate(3deg) translateY(-4px);
}

.bento-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 3px 3px 0 0;
}

/* ── AI Itinerary Section ── */
.itinerary-section {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #1e0f4d 0%, #1a1250 30%, #0f1835 60%, #0d1a3a 100%);
  position: relative;
  overflow: hidden;
}
.itinerary-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.itinerary-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: 0.06;
  pointer-events: none;
}
.itinerary-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative; z-index: 2;
}
.itinerary-text { color: #fff; padding-bottom: 20px; }
.itinerary-text .section-label { color: #A78BFA; }
.itinerary-text .section-heading {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 52px);
}
.itinerary-text .section-sub { color: rgba(255,255,255,0.6); }

.itinerary-steps {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 36px;
}
.step-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 14px 24px;
  color: #fff;
  font-size: 15px; font-weight: 500;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  width: fit-content;
}
.step-pill:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
}
.step-pill .num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}

.itinerary-visual {
  position: relative;
  display: flex; justify-content: center;
}
.itinerary-phone {
  width: 300px;
  border-radius: 32px;
  box-shadow:
    0 -40px 100px rgba(124,58,237,0.3),
    0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.itinerary-phone-glow {
  position: absolute;
  bottom: -40px;
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, transparent 70%);
  left: 50%; transform: translateX(-50%);
  z-index: 1;
}

/* ── Transport & Accommodation Split ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
}
.split-half {
  padding: 80px 60px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.split-transport {
  background: linear-gradient(145deg, #EEF4FF 0%, #DBEAFE 100%);
}
.split-accommodation {
  background: linear-gradient(145deg, #FFF5F2 0%, #FFE8E0 100%);
}
.split-half .section-label { margin-bottom: 12px; }
.split-half h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; margin-bottom: 16px;
}
.split-half p {
  font-size: 16px; color: var(--text-secondary);
  max-width: 380px; line-height: 1.7; margin-bottom: 28px;
}
.split-phone {
  width: 220px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-phone:hover {
  transform: scale(1.03) translateY(-6px);
}
.split-features {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
}

.split-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  min-width: 200px;
}
.split-center-badge h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  color: var(--text);
}
.decision-flow {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.decision-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
}
.decision-step .circle {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.decision-arrow {
  width: 2px; height: 12px;
  background: linear-gradient(180deg, var(--blue), var(--coral));
  border-radius: 2px;
}

/* ── Gallery ── */
.gallery-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gallery-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 460px;
}
.gallery-collage {
  width: 100%; max-width: 400px;
  border-radius: 16px;
  transform: rotate(2deg);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.12));
}
.gallery-phone {
  width: 200px;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  position: absolute; right: -10px; bottom: 10px; z-index: 3;
  transform: rotate(-3deg);
}

.feature-list { margin-top: 32px; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.feature-list-item:last-child { border-bottom: none; }
.feature-list-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.feature-list-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.feature-list-item p { font-size: 13px; color: var(--text-secondary); }

/* ── Expenses ── */
.expenses-section {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.expenses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.expenses-features {
  display: flex; flex-direction: column; gap: 12px;
}
.expenses-feat {
  display: flex; align-items: center; gap: 12px;
}
.expenses-feat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.expenses-feat-title { font-size: 14px; font-weight: 700; }
.expenses-feat-desc { font-size: 13px; color: var(--text-secondary); }
.expenses-img {
  max-width: 340px; border-radius: 20px; width: 100%;
}

/* ── AI Assistant (dark) ── */
.ai-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(27,107,243,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ai-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.ai-header .section-label { color: #60A5FA; }
.ai-header .section-heading { color: #fff; }
.ai-header .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto; }

.ai-phones {
  display: flex; justify-content: center; gap: 48px;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
.ai-phone-wrap {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.ai-phone {
  width: 260px;
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-phone:hover {
  transform: translateY(-8px);
}
.ai-phone-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(60px);
}
.glow-blue { background: rgba(27,107,243,0.2); }
.glow-purple { background: rgba(124,58,237,0.2); }
.ai-phone-label {
  margin-top: 24px;
  font-size: 15px; font-weight: 700; color: #fff;
}
.ai-phone-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-align: center; max-width: 220px; margin-top: 6px;
}


/* ── How It Works ── */
.how-section {
  padding: 120px 0;
  position: relative;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--coral), var(--emerald));
  border-radius: 3px;
}
.how-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.how-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--blue);
  margin: 0 auto 24px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 24px rgba(27,107,243,0.12);
  transition: all 0.3s;
}
.how-step:hover .how-step-num {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}
.how-step:nth-child(2) .how-step-num { border-color: var(--purple); color: var(--purple); }
.how-step:nth-child(2):hover .how-step-num { background: var(--purple); color: #fff; }
.how-step:nth-child(3) .how-step-num { border-color: var(--coral); color: var(--coral); }
.how-step:nth-child(3):hover .how-step-num { background: var(--coral); color: #fff; }
.how-step:nth-child(4) .how-step-num { border-color: var(--emerald); color: var(--emerald); }
.how-step:nth-child(4):hover .how-step-num { background: var(--emerald); color: #fff; }

.how-step h4 {
  font-size: 17px; font-weight: 800; margin-bottom: 8px;
}
.how-step p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}

/* ── Languages ── */
.languages-section {
  padding: 80px 0;
  background: var(--surface);
}
.lang-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 40px;
}
.lang-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 50px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 14px; font-weight: 600;
  transition: all 0.3s;
  text-decoration: none; color: inherit;
}
.lang-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: var(--blue);
}
.lang-flag { font-size: 20px; }

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
}
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-item summary {
  padding: 24px 0;
  font-size: 17px; font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; font-weight: 300;
  color: var(--text-tertiary);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--blue); }
.faq-item .faq-answer {
  padding: 0 0 24px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
}

/* ── Download CTA ── */
.cta-section {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,15,26,0.88) 0%, rgba(27,50,100,0.82) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 640px; padding: 60px 24px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.cta-content p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; line-height: 1.7;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── Store buttons ── */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
}
.store-apple {
  background: #fff; color: var(--text);
}
.store-apple:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.store-google {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.store-google:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

/* ── Footer ── */
.footer {
  padding: 48px 0;
  background: var(--dark);
  color: rgba(255,255,255,0.4);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-langs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin: 16px 0;
  width: 100%;
}
.footer-langs a {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-langs a:hover { color: rgba(255,255,255,0.8); }
.footer-langs a.active { font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-langs-sep { color: rgba(255,255,255,0.15); }
.footer-copy { font-size: 12px; width: 100%; text-align: center; margin-top: 16px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15,18,32,0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  display: none;
  align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.7); }
.cookie-banner a { color: #60A5FA; }
.cookie-btn {
  padding: 10px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.3s;
}
.cookie-accept { background: var(--blue); color: #fff; }
.cookie-accept:hover { background: var(--blue-dark); }
.cookie-decline { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.cookie-decline:hover { background: rgba(255,255,255,0.12); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; min-height: 400px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-floating-pill { display: none; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 1; }

  .itinerary-inner { grid-template-columns: 1fr; text-align: center; }
  .itinerary-text { padding-bottom: 40px; }
  .itinerary-text .section-sub { margin: 0 auto; }
  .itinerary-steps { align-items: center; }
  .itinerary-visual { justify-content: center; }

  .split-section { grid-template-columns: 1fr; }
  .split-center-badge { display: none; }

  .gallery-inner { grid-template-columns: 1fr; text-align: center; }
  .gallery-visual { order: -1; min-height: 360px; }

  .expenses-grid { grid-template-columns: 1fr; text-align: center; }
  .expenses-grid .section-heading { text-align: center !important; }
  .expenses-img { margin: 0 auto; }

  .ai-phones { gap: 32px; }

  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-phone { width: 220px; }
  .hero-glow { width: 280px; height: 280px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

  .stats-bar { padding: 40px 0; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 36px; }
  .stat-divider { display: none; }

  .features { padding: 80px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-screenshot { width: 140px; }

  .itinerary-section { padding: 80px 0 60px; }
  .itinerary-phone { width: 240px; }
  .step-pill { font-size: 14px; padding: 12px 18px; }

  .split-half { padding: 60px 24px; }
  .split-phone { width: 180px; }

  .gallery-section { padding: 80px 0; }
  .gallery-inner { gap: 40px; }
  .gallery-collage { max-width: 280px; }
  .gallery-phone { width: 140px; right: -5px; bottom: 0; }

  .expenses-section { padding: 80px 0; }
  .expenses-grid { gap: 32px; }
  .expenses-img { max-width: 260px; }

  .ai-section { padding: 80px 0; }
  .ai-phone { width: 200px; }
  .ai-phones { gap: 24px; }

  .how-section { padding: 80px 0; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-step-num { width: 64px; height: 64px; font-size: 24px; }

  .languages-section { padding: 60px 0; }
  .lang-badges { gap: 8px; }
  .lang-badge { padding: 10px 18px; font-size: 13px; }

  .faq-section { padding: 80px 0; }
  .faq-item summary { font-size: 15px; padding: 20px 0; }

  .cta-section { min-height: 420px; }
  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }

  .footer { padding: 32px 0; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; gap: 16px; }

  .cookie-banner { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 30px; }
  .hero-badge { font-size: 12px; padding: 6px 16px; }
  .hero-phone { width: 200px; }
  .stat { min-width: 80px; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 10px; }
  .section-heading { font-size: 28px; }
  .section-sub { font-size: 16px; }
  .bento-card { padding: 24px 20px; }
  .gallery-collage { max-width: 240px; }
  .gallery-phone { width: 120px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step-num { width: 56px; height: 56px; font-size: 20px; }
}
