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

:root {
  --orange: #FF9800;
  --orange-light: #FFB74D;
  --orange-bg: #FFF3E0;
  --bg: #FFFAF6; /* Creamy off-white */
  --text: #1a1a1a;
  --text-muted: #666;
  --white: #ffffff;
  
  --wa-bg: #EFEAE2;
  --wa-green: #25D366;
  --wa-teal: #128C7E;
  --wa-bubble-sent: #E7FFDB;
  --wa-bubble-recv: #FFFFFF;
  
  /* Liquid Glass Variables */
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-border-light: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
  --glass-inset: inset 0 1px 2px rgba(255, 255, 255, 0.9), inset 0 -1px 2px rgba(255, 255, 255, 0.2);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius-full: 9999px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  /* Keep layout width equal for fixed nav + in-flow content (avoids slight left shift) */
  scrollbar-gutter: stable;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll reveals (one-shot — never reset on scroll-out; that kills momentum) ── */

[data-reveal] {
  --d: 0s;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .how-bubble,
  .how-chat.is-in .how-bubble {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .coverage-map__pin-pulse {
    animation: none;
    opacity: 0.35;
  }
}

/* ── Splash ── */

.splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
}

.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-build {
  position: relative;
  width: min(260px, 62vw);
  aspect-ratio: 1024 / 984;
}

.logo-build__mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  /* Soft radial reveal from the Wi‑Fi origin — wide feather so it never looks stepped */
  -webkit-mask-image: radial-gradient(
    circle at 50% 66%,
    #000 0%,
    #000 28%,
    transparent 78%
  );
  mask-image: radial-gradient(
    circle at 50% 66%,
    #000 0%,
    #000 28%,
    transparent 78%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 66%;
  mask-position: 50% 66%;
  -webkit-mask-size: 0% 0%;
  mask-size: 0% 0%;
  will-change: mask-size, -webkit-mask-size, opacity, transform;
}

.logo-build.is-charging .logo-build__mark {
  /* Linear mask = constant charge speed, no mid-animation stall */
  animation:
    wifi-charge-mask 0.65s linear forwards,
    wifi-charge-soft 0.65s ease-out forwards;
}

.logo-build.is-charging.is-done .logo-build__mark {
  will-change: auto;
}

@keyframes wifi-charge-mask {
  from {
    -webkit-mask-size: 0% 0%;
    mask-size: 0% 0%;
  }
  to {
    -webkit-mask-size: 200% 200%;
    mask-size: 200% 200%;
  }
}

@keyframes wifi-charge-soft {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-build.is-charging .logo-build__mark {
    animation: none;
    opacity: 1;
    transform: none;
    -webkit-mask-size: 200% 200%;
    mask-size: 200% 200%;
  }
}

/* ── Layout ── */

.page {
  position: relative;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.page.visible {
  opacity: 1;
}

/* Content column — wash is clipped to this, so orange ends at the footer line */
.page-main {
  position: relative;
  z-index: 0;
}

/* Orange wash — fills .page-main to its bottom edge (footer starts after). */
.page-wash {
  position: absolute;
  top: 52vh; /* refined once by JS to the showcase */
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  max-width: min(1400px, 100%);
  margin-inline: auto;
  z-index: 0;
  pointer-events: none;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(
    180deg,
    var(--orange-light) 0%,
    var(--orange) 22%,
    var(--orange) 100%
  );
}

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

/* ── Nav ── */

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  max-width: 100%;
  padding: 14px 18px;
  z-index: 100;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 14px 8px 12px;
  width: 100%;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.nav__brand {
  display: flex;
  align-items: center;
  height: 28px;
  overflow: visible;
}

.nav__logo {
  /* Tight-cropped mark (logo-nav.png) — full brand orange, no fade */
  width: 48px;
  height: auto;
  display: block;
  margin-top: -8px;
  margin-bottom: -8px;
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav__links a:hover {
  opacity: 0.7;
}

.nav__short {
  display: none;
}

.nav__cta {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.8) 0%, rgba(255, 152, 0, 0.95) 100%);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 3px 10px rgba(255, 152, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nav__cta:hover {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.9) 0%, rgba(255, 152, 0, 1) 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7), 0 6px 16px rgba(255, 152, 0, 0.3);
}

/* ── Hero ── */

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 160px 24px 80px; 
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  justify-content: center;
  box-sizing: border-box;
}

.hero > .btn-primary {
  position: relative;
  z-index: 3;
}

.hero__title {
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
  padding: 0.08em 0.06em 0.22em;
  color: #FF9800;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.8) 0%, rgba(255, 152, 0, 0.95) 100%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 152, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.9) 0%, rgba(255, 152, 0, 1) 100%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.6), 0 12px 32px rgba(255, 152, 0, 0.35);
}

/* ── Showcase (WhatsApp Mockup) ── */

.hero__showcase {
  position: relative;
  margin-top: 80px;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
}

.tablet-mockup,
.coverage-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(20px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vw, 22px);
}

.coverage-panel__text {
  text-align: left;
  max-width: 36rem;
}

.coverage-panel__label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.coverage-panel__title {
  margin: 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  -webkit-font-smoothing: auto;
}

.coverage-panel__title span {
  color: var(--orange);
}

.coverage-panel__copy {
  margin: 10px 0 0;
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
}

.coverage-panel__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.05 / 1;
  border-radius: 22px;
  background: #fff3e0;
  border: 1px solid rgba(255, 152, 0, 0.15);
  overflow: hidden;
}

.coverage-map {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map__countries path {
  fill: #FF9800;
  fill-opacity: 0.78;
  stroke: rgba(255, 250, 246, 0.95);
  stroke-width: 0.55px;
}

.coverage-map__pin-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: coverage-pulse 3.2s ease-out infinite;
}

.coverage-map__pin:nth-child(1) .coverage-map__pin-pulse { animation-delay: 0s; }
.coverage-map__pin:nth-child(2) .coverage-map__pin-pulse { animation-delay: 0.3s; }
.coverage-map__pin:nth-child(3) .coverage-map__pin-pulse { animation-delay: 0.6s; }
.coverage-map__pin:nth-child(4) .coverage-map__pin-pulse { animation-delay: 0.9s; }
.coverage-map__pin:nth-child(5) .coverage-map__pin-pulse { animation-delay: 1.2s; }
.coverage-map__pin:nth-child(6) .coverage-map__pin-pulse { animation-delay: 1.5s; }
.coverage-map__pin:nth-child(7) .coverage-map__pin-pulse { animation-delay: 1.8s; }

@keyframes coverage-pulse {
  0% { transform: scale(0.45); opacity: 0.85; }
  70% { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}

.coverage-panel__regions {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
}

.coverage-panel__regions li {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-left: 14px;
}

.coverage-panel__regions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .coverage-panel {
    border-radius: 24px;
    padding: 18px;
  }

  .coverage-panel__map-wrap {
    aspect-ratio: 1.7 / 1;
    border-radius: 16px;
  }

  .coverage-panel__regions li {
    font-size: 0.68rem;
  }
}

.chat-input-send {
  width: 44px;
  height: 44px;
  background: var(--wa-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── New Sections ── */

.section {
  padding: 120px 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border-light);
  border-left: 1px solid var(--glass-border-light);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 64px rgba(255, 152, 0, 0.1), var(--glass-inset);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.glass-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}


/* ── Flight Ticket Cards ── */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 40px auto 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.flight-ticket {
  position: relative;
  flex: 0 1 340px;
  width: min(100%, 360px);
  max-width: 360px;
  box-sizing: border-box;
  background: #fdfdfd; /* Off-white paper look */
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  --cutout-y: 110px;
  --cutout-r: 16px;
  -webkit-mask-image: radial-gradient(circle at 0 var(--cutout-y), transparent var(--cutout-r), black calc(var(--cutout-r) + 0.5px)),
                      radial-gradient(circle at 100% var(--cutout-y), transparent var(--cutout-r), black calc(var(--cutout-r) + 0.5px));
  -webkit-mask-composite: source-in;
  mask-image: radial-gradient(circle at 0 var(--cutout-y), transparent var(--cutout-r), black calc(var(--cutout-r) + 0.5px)),
              radial-gradient(circle at 100% var(--cutout-y), transparent var(--cutout-r), black calc(var(--cutout-r) + 0.5px));
  mask-composite: intersect;
  text-align: left;
}

.flight-ticket:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(255, 152, 0, 0.15);
}

/* Orange side bands */
.flight-ticket::before,
.flight-ticket::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 16px;
  background: var(--orange);
  z-index: 0;
}
.flight-ticket::before { left: 0; }
.flight-ticket::after { right: 0; }

.ticket-content {
  position: relative;
  z-index: 1;
  padding: 0 16px; /* space for bands */
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Top Stub */
.ticket-stub {
  height: var(--cutout-y);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
}

.ticket-barcode-top {
  text-align: center;
  font-family: monospace;
  font-size: 1.2rem; /* Reduced to fit better */
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.ticket-stub-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: monospace;
  font-size: 0.6rem; /* Slightly smaller */
  font-weight: 600;
  color: #1a1a1a;
}

.ticket-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}

.ticket-checklist li:first-child {
  margin-bottom: 4px;
  font-weight: 800;
}

.ticket-quote {
  text-align: right;
  max-width: 90px; /* Tighter constraints */
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 800;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ticket-divider {
  height: 0;
  border-top: 2px dashed rgba(0,0,0,0.2);
  margin: 0;
  position: relative;
}

/* Main Body */
.ticket-main {
  padding: 24px 16px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ticket-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.ticket-city {
  background: #1a1a1a;
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  padding: 4px 12px;
  line-height: 1;
  letter-spacing: 1px;
}

.ticket-flight-info {
  text-align: right;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ticket-flight-info span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.ticket-main-body {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  flex: 1;
}

.ticket-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.7rem; /* Reduced to ensure it doesn't crash into details */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-align: left;
  margin: 0;
  line-height: 1;
}

.ticket-details {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px; /* Slightly reduced vertical gap */
  align-content: center;
}

.ticket-detail-item span {
  display: block;
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 2px;
}

.ticket-detail-item strong {
  display: block;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
}

.ticket-desc {
  font-size: 0.75rem; /* Slightly smaller to give more breathing room */
  color: #444;
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: monospace;
  text-transform: uppercase;
}

.ticket-barcode-bottom {
  text-align: center;
  font-family: monospace;
  font-size: 1.5rem; /* Reduced from 1.8rem to prevent overflow */
  letter-spacing: 2px; /* Reduced tracking */
  line-height: 1;
  font-weight: 800;
  opacity: 0.8;
  margin-top: auto;
  white-space: nowrap; /* Prevent wrapping */
  overflow: hidden; /* Hide excess if the container gets too small */
}

/* ── How it works ── */

.how {
  max-width: 1100px;
}

.how-stage {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  text-align: left;
  margin-top: 8px;
  width: 100%;
  max-width: 100%;
}

.how-chat {
  background: #efeae2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.how-chat__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.how-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  padding: 5px;
  background: #FFF6EC;
  border: 1px solid rgba(255, 152, 0, 0.2);
  flex-shrink: 0;
}

.how-chat__who {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.how-chat__who strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.how-chat__who span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.how-chat__thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px 24px;
  min-height: 280px;
}

.how-bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.98);
}

.how-chat.is-in .how-bubble {
  animation: how-bubble-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.how-bubble--out {
  align-self: flex-end;
  background: #dcf8c6;
  border-bottom-right-radius: 4px;
}

.how-bubble--in {
  align-self: flex-start;
  background: #fff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.how-bubble--final {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(255, 152, 0, 0.35);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.12);
}

.how-bubble--final strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.how-plan-line {
  font-size: 0.86rem;
  line-height: 1.35;
  color: #333;
}

.how-plan-cta {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e65100;
}

.how-chat.is-in .how-bubble:nth-child(1) { animation-delay: 0.12s; }
.how-chat.is-in .how-bubble:nth-child(2) { animation-delay: 0.28s; }
.how-chat.is-in .how-bubble:nth-child(3) { animation-delay: 0.44s; }
.how-chat.is-in .how-bubble:nth-child(4) { animation-delay: 0.6s; }

@keyframes how-bubble-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 8px 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.how-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.how-step:last-child {
  border-bottom: none;
}

.how-step:hover {
  transform: translateX(4px);
}

.how-step__index {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e65100;
  line-height: 1.2;
}

.how-step__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.how-step__body p {
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

.how__cta {
  margin-top: 40px;
  background: #ffffff;
  color: var(--orange);
  border: 1px solid rgba(255, 152, 0, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.how__cta:hover {
  background: #ffffff;
  color: #e68900;
  border-color: rgba(255, 152, 0, 0.55);
  box-shadow: 0 12px 28px rgba(255, 152, 0, 0.15);
}

@media (max-width: 860px) {
  .how-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    justify-items: center;
  }

  .how-chat,
  .how-steps {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .how-steps {
    padding-inline: 22px;
  }
}

/* ── Partners (legacy) ── */
.partners {
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.partners span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partners-logos strong {
  font-size: 1.5rem;
  color: #888;
  font-weight: 700;
  transition: color 0.3s;
  cursor: default;
}

.partners-logos strong:hover {
  color: var(--orange);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 72px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
}

.footer__logo {
  display: block;
  height: 128px;
  width: auto;
  margin: 0 auto 28px;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Inner pages ── */

.page-header {
  padding: 160px 24px 48px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--orange);
  -webkit-font-smoothing: auto;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.content {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 48px;
  margin-bottom: 80px;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  color: var(--text);
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.content ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.content li {
  margin-bottom: 8px;
}

/* ── Support page ── */

.support {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 40px;
}

.support__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.support__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.support__title {
  margin: 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--orange);
  -webkit-font-smoothing: auto;
}

.support__subtitle {
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 34rem;
}

.support__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.support__faqs {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  padding: 28px 28px 12px;
}

.support__section-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 152, 0, 0.12);
  padding: 18px 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item summary {
  font-weight: 650;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255, 152, 0, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: rgba(255, 152, 0, 0.18);
}

.faq-item p {
  margin-top: 12px;
  margin-bottom: 4px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.support__card {
  position: sticky;
  top: 110px;
  background: rgba(255, 252, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 28px;
  text-align: left;
}

.support__card-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.support__card-title {
  margin: 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.support__card-copy {
  margin: 12px 0 24px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.support__card-cta {
  width: 100%;
}

.support__card-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.support__card-link:hover {
  text-decoration: underline;
}

.support-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 152, 0, 0.12);
}

.support-cta p {
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .support__layout {
    grid-template-columns: 1fr;
  }

  .support__card {
    position: static;
  }
}

/* ── Pricing page ── */

.page-wash--pricing {
  top: min(480px, 52vh);
  max-width: none;
  left: 0;
  right: 0;
  margin-inline: 0;
  border-radius: 40px 40px 0 0;
}

.pricing {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 132px 24px 88px;
  box-sizing: border-box;
}

.pricing__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.pricing__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.pricing__title {
  margin: 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--orange);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.pricing__subtitle {
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 32rem;
}

/* One shell — map + estimate sit in place together */
.pricing__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 340px);
  align-items: stretch;
  width: 100%;
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.pricing__map {
  min-width: 0;
  padding: 22px 22px 24px;
  border-right: 1px solid rgba(255, 152, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.pricing__map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pricing__map-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.pricing__map-hint {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

.pricing__map-stage {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 2 / 1;
  border-radius: 18px;
  background: #fff3e0;
  border: 1px solid rgba(255, 152, 0, 0.12);
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: 100%;
  display: block;
}

.country-path {
  fill: #ffb74d;
  fill-opacity: 0.72;
  stroke: #fffaf6;
  stroke-width: 0.55;
  cursor: pointer;
  transition: fill 0.18s ease, fill-opacity 0.18s ease;
}

.country-path:hover {
  fill: #ff9800;
  fill-opacity: 1;
}

.country-path.is-selected {
  fill: #e65100;
  fill-opacity: 1;
  stroke: #ffffff;
  stroke-width: 1.1;
}

.map-fallback {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}

.pricing__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 22px;
  background: transparent;
  text-align: left;
}

.pricing__panel-title {
  margin: 0 0 2px;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  -webkit-font-smoothing: auto;
}

.pricing__panel-copy {
  margin: -4px 0 2px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.pricing-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-field__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pricing-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-input::placeholder {
  color: #a3988e;
}

.pricing-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.16);
}

.pricing-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF9800' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #ffffff;
  padding-right: 38px;
}

#days-text {
  -moz-appearance: textfield;
}

#days-text::-webkit-outer-spin-button,
#days-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pricing-range {
  margin-top: 2px;
  width: 100%;
  accent-color: var(--orange);
  cursor: pointer;
  height: 1.25rem;
}

.pricing-range-hints {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pricing-summary {
  margin-top: 4px;
  padding: 16px 14px;
  border-radius: 16px;
  text-align: left;
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.16);
}

.pricing-summary__label {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.pricing-summary__trip {
  margin: 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
  -webkit-font-smoothing: auto;
}

.pricing-summary__region {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.pricing-summary__region:empty {
  display: none;
}

.pricing-quote__note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 14px 24px;
  font-size: 1rem;
}

.pricing-cta.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
}

.nav__links a.active {
  color: var(--orange);
}

@media (max-width: 960px) {
  .pricing__stage {
    grid-template-columns: 1fr;
  }

  .pricing__map {
    order: 2;
    border-right: none;
    border-top: 1px solid rgba(255, 152, 0, 0.12);
    padding-top: 20px;
  }

  .pricing__panel {
    order: 1;
    padding-bottom: 20px;
  }

  .pricing__map-stage {
    min-height: 220px;
    aspect-ratio: 1.75 / 1;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 8px 10px;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    padding: 6px 8px;
    border-radius: 20px;
  }

  .nav__brand {
    height: 22px;
  }

  .nav__logo {
    width: 42px;
    margin-top: -8px;
    margin-bottom: -8px;
    opacity: 1;
  }

  .footer__logo {
    height: 112px;
  }

  .nav__cta {
    padding: 6px 11px;
    font-size: 0.72rem;
  }

  .nav__links {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 2px;
    margin: 0;
    padding: 4px 2px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav__links a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .nav__full {
    display: none;
  }

  .nav__short {
    display: inline;
  }

  .hero {
    padding-top: 108px;
  }

  .content {
    padding: 32px 24px;
  }

  .page-wash {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    margin-inline: 0;
    border-radius: 28px 28px 0 0;
  }

  /* Lighter blur on mobile — heavy backdrop-filter stalls scroll */
  .nav,
  .coverage-panel,
  .how-steps,
  .tablet-mockup {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }

  .section {
    padding: 88px 20px;
  }

  .features-grid {
    gap: 24px;
  }

  .flight-ticket {
    flex: 0 1 100%;
    width: min(100%, 400px);
    max-width: 400px;
  }

  .how-step:hover {
    transform: none;
  }

  .pricing {
    padding: 110px 20px 72px;
  }

  .pricing__panel {
    padding: 24px 20px;
  }
}
