/* ── TOKENS ── */
:root {
  --navy:      #0B1F4B;
  --navy-mid:  #132860;
  --navy-lite: #1E3A7B;
  --orange:    #FF6B00;
  --orange-lt: #FF8C33;
  --orange-dk: #D45500;
  --orange-bg: #FFF4EC;
  --cream:     #FAFAF7;
  --white:     #FFFFFF;
  --slate:     #F1F4FA;
  --border:    #E2E8F4;
  --text-1:    #0B1F4B;
  --text-2:    #4A5780;
  --text-3:    #8A94B2;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-card: 0 8px 40px rgba(11,31,75,0.10);
  --shadow-hero: 0 24px 80px rgba(11,31,75,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate); }
::-webkit-scrollbar-thumb { background: var(--navy-lite); border-radius: 3px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,244,0.6);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(11,31,75,0.10); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
}
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(255,107,0,0.4);
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-nav-outline {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text-1);
  background: none; cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-nav-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-nav-primary {
  padding: 9px 24px; border-radius: 50px;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(255,107,0,0.35);
  transition: all 0.2s;
}
.btn-nav-primary:hover { background: var(--orange-lt); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,107,0,0.45); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Geometric background shapes */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-blob-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  right: -200px; top: -200px;
}
.hero-blob-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,31,75,0.05) 0%, transparent 70%);
  left: -100px; bottom: -100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,31,75,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,75,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-bg);
  border: 1.5px solid rgba(255,107,0,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--orange-dk);
  margin-bottom: 24px;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: live-pulse 1.5s ease infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-headline .accent-word {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-headline .accent-word::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 3px;
  opacity: 0.3;
}

.hero-sub {
  font-size: 19px; line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-lt), var(--orange-dk));
  color: #fff; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,107,0,0.5); color: #fff; }

.btn-secondary-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  background: var(--slate);
  border: 2px solid var(--border);
  color: var(--navy); font-size: 16px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary-lg:hover { border-color: var(--navy); background: white; color: var(--navy); }

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.trust-avatars {
  display: flex; align-items: center;
}
.trust-avatars .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  border: 3px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-left: -10px;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 14px; color: var(--text-2); font-weight: 500; }
.trust-text strong { color: var(--navy); }
.trust-divider { width: 1px; height: 28px; background: var(--border); }
.trust-rating { display: flex; align-items: center; gap: 6px; }
.trust-stars { color: #F59E0B; font-size: 15px; letter-spacing: 1px; }
.trust-rating-text { font-size: 14px; color: var(--text-2); font-weight: 500; }
.trust-rating-text strong { color: var(--navy); }

/* ── HERO VISUAL (right side) ── */
.hero-visual {
  position: relative;
  display: flex; justify-content: center;
}

.phone-mockup {
  width: 300px;
  background: var(--navy);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-hero), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-screen {
  background: var(--slate);
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

/* Mini app inside mockup */
.mini-status { height: 36px; background: white; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; font-size: 11px; font-weight: 700; color: var(--navy); }
.mini-header { padding: 14px 16px; background: white; border-bottom: 1px solid var(--border); }
.mini-greeting { font-size: 10px; color: var(--text-3); font-weight: 500; }
.mini-name { font-size: 16px; font-weight: 800; color: var(--navy); font-family: 'Bricolage Grotesque', sans-serif; }
.mini-loc { display: inline-flex; align-items: center; gap: 4px; background: var(--orange-bg); border-radius: 20px; padding: 3px 10px; margin-top: 6px; font-size: 10px; font-weight: 700; color: var(--orange-dk); }
.mini-search { margin: 12px 16px; background: var(--slate); border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); }
.mini-search span { font-size: 10px; color: var(--text-3); }
.mini-cats { display: flex; gap: 8px; padding: 0 16px 12px; overflow: hidden; }
.mini-cat { background: white; border: 1.5px solid var(--border); border-radius: 10px; padding: 8px 12px; display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; }
.mini-cat.a { background: var(--orange-bg); border-color: var(--orange); }
.mini-cat-icon { font-size: 16px; }
.mini-cat-name { font-size: 8px; font-weight: 700; color: var(--text-2); }
.mini-cat.a .mini-cat-name { color: var(--orange-dk); }
.mini-card { margin: 0 16px 10px; background: white; border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); }
.mini-avatar { width: 40px; height: 40px; border-radius: 11px; background: var(--slate); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; position: relative; }
.mini-online { width: 9px; height: 9px; background: #16A34A; border-radius: 50%; position: absolute; bottom: 1px; right: 1px; border: 2px solid white; }
.mini-info { flex: 1; min-width: 0; }
.mini-fn { font-size: 11px; font-weight: 700; color: var(--navy); }
.mini-role { font-size: 9px; color: var(--orange); font-weight: 700; background: var(--orange-bg); display: inline-block; padding: 1px 6px; border-radius: 5px; margin-top: 2px; }
.mini-rate { display: flex; gap: 3px; align-items: center; margin-top: 4px; }
.mini-rate .st { font-size: 9px; color: #F59E0B; }
.mini-rate span { font-size: 9px; color: var(--text-3); font-weight: 500; }
.mini-price { font-size: 13px; font-weight: 800; color: var(--navy); font-family: 'Bricolage Grotesque', sans-serif; }
.mini-book { background: var(--orange); color: white; border: none; border-radius: 8px; padding: 5px 10px; font-size: 9px; font-weight: 800; cursor: pointer; margin-top: 4px; font-family: 'DM Sans', sans-serif; }
.mini-nav { height: 54px; background: white; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-around; }
.mini-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mini-nav-icon { font-size: 16px; color: var(--text-3); }
.mini-nav-icon.active { color: var(--orange); }
.mini-nav-lbl { font-size: 8px; font-weight: 700; color: var(--text-3); }
.mini-nav-lbl.active { color: var(--orange); }
.mini-fab { width: 40px; height: 40px; background: linear-gradient(135deg, var(--orange-lt), var(--orange-dk)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: 700; margin-top: -10px; box-shadow: 0 4px 14px rgba(255,107,0,0.4); }

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  z-index: 3;
  white-space: nowrap;
}

.fc-booking {
  left: -90px; top: 80px;
  animation: float-card-1 4.5s ease-in-out infinite;
}
@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

.fc-arrive {
  right: -80px; bottom: 160px;
  animation: float-card-2 5s ease-in-out infinite;
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.fc-rating {
  left: -70px; bottom: 80px;
  animation: float-card-3 3.8s ease-in-out infinite;
}
@keyframes float-card-3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(0deg); }
}

.fc-label { font-size: 10px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.fc-value { font-size: 15px; font-weight: 800; color: var(--navy); margin-top: 3px; font-family: 'Bricolage Grotesque', sans-serif; }
.fc-sub { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.fc-dot-green { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #16A34A; margin-right: 4px; }
.fc-stars { color: #F59E0B; font-size: 13px; }

/* ══════════════════════════════════
   LOGOS STRIP
══════════════════════════════════ */
.logos-strip {
  padding: 40px 48px;
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 52px; flex-wrap: wrap;
}
.logo-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--text-3);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 0.85; }
.logo-icon { font-size: 22px; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.section { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; color: var(--text-2); line-height: 1.65;
  max-width: 560px;
}

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 64px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(33.33% - 8px); right: calc(33.33% - 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  opacity: 0.2;
  pointer-events: none;
}

.step-card {
  position: relative;
}

.step-number {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 800;
  color: white;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(11,31,75,0.25);
  transition: all 0.3s ease;
}
.step-card:hover .step-number {
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(255,107,0,0.4);
  transform: scale(1.08);
}

.step-icon-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  background: var(--orange-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: 2px solid white;
}

.step-title {
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.step-desc { font-size: 16px; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 60%);
  right: -300px; top: -200px;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.services-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  position: relative; z-index: 2;
}

.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}

.services-section .section-eyebrow { color: var(--orange); }
.services-section .section-title { color: white; }
.services-section .section-sub { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.service-card:hover::before { opacity: 1; }

.svc-emoji {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}

.svc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; font-weight: 700;
  color: white; margin-bottom: 10px;
}

.svc-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; }

.svc-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.svc-count {
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.svc-arrow {
  width: 32px; height: 32px;
  background: rgba(255,107,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 14px;
  transition: all 0.25s;
}
.service-card:hover .svc-arrow {
  background: var(--orange); color: white;
  transform: translateX(3px);
}

/* ══════════════════════════════════
   WHY CHAPCHAP
══════════════════════════════════ */
.why-section {
  padding: 100px 48px;
  background: var(--white);
}
.why-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.why-visual {
  position: relative;
}

.why-main-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.why-main-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
  right: -80px; bottom: -80px;
}

.wmc-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.wmc-avatar { font-size: 48px; }
.wmc-info {}
.wmc-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; }
.wmc-role { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.wmc-badge {
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; font-weight: 700; color: var(--orange-lt);
  display: inline-block; margin-top: 6px;
}

.progress-bar-wrap { margin-bottom: 16px; }
.pb-label { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 500; }
.pb-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.pb-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }

.wmc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; position: relative; z-index: 2; }
.wmc-stat { background: rgba(255,255,255,0.07); border-radius: 14px; padding: 14px; text-align: center; border: 1px solid rgba(255,255,255,0.06); }
.wmc-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; color: white; }
.wmc-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 3px; }

/* Floating card on why visual */
.why-float-card {
  position: absolute;
  right: -30px; top: 40px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  animation: float-card-2 4s ease-in-out infinite;
}
.wfc-label { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.wfc-val { font-size: 28px; font-weight: 800; color: var(--navy); font-family: 'Bricolage Grotesque', sans-serif; margin-top: 4px; }
.wfc-sub { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 3px; }

.why-content .section-sub { max-width: 100%; margin-bottom: 40px; }

.features-list {
  display: flex; flex-direction: column; gap: 20px;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--slate);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: default;
}
.feature-item:hover {
  border-color: var(--orange);
  background: var(--orange-bg);
  transform: translateX(4px);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(11,31,75,0.06);
}
.feature-text {}
.feature-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.feature-desc { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ══════════════════════════════════
   STATS BANNER
══════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
}
.stats-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
  position: relative; z-index: 2;
}
.stat-item {}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: white; line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: 16px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}

.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,31,75,0.12); }
.testi-card.featured {
  background: var(--navy);
  border-color: transparent;
}

.testi-quote {
  font-size: 40px; color: var(--border);
  font-family: Georgia, serif; line-height: 1;
  margin-bottom: 8px;
}
.testi-card.featured .testi-quote { color: rgba(255,107,0,0.3); }

.testi-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }

.testi-text {
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,0.75); }

.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 14px; background: var(--slate); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--navy); font-family: 'Bricolage Grotesque', sans-serif; }
.testi-card.featured .testi-name { color: white; }
.testi-role { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.testi-card.featured .testi-role { color: rgba(255,255,255,0.5); }
.testi-service {
  display: inline-block; background: var(--orange-bg);
  color: var(--orange-dk); font-size: 11px; font-weight: 700;
  border-radius: 6px; padding: 2px 8px; margin-top: 4px;
}
.testi-card.featured .testi-service { background: rgba(255,107,0,0.2); color: var(--orange-lt); }

/* ══════════════════════════════════
   APP DOWNLOAD
══════════════════════════════════ */
.download-section {
  padding: 100px 48px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.dl-eyebrow { margin-bottom: 16px; }

.dl-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

.dl-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy);
  border-radius: 16px;
  padding: 14px 22px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid transparent;
}
.dl-badge:hover { background: var(--navy-lite); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.dl-badge-icon { font-size: 28px; }
.dl-badge-text {}
.dl-badge-line1 { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.dl-badge-line2 { font-size: 17px; font-weight: 700; color: white; font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.2; }

.dl-trust { display: flex; gap: 28px; margin-top: 28px; }
.dl-trust-item { display: flex; align-items: center; gap: 8px; }
.dl-trust-item i { color: var(--orange); font-size: 18px; }
.dl-trust-item span { font-size: 14px; color: var(--text-2); font-weight: 500; }

.dl-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}

.dl-phone-wrap {
  position: relative;
  display: flex; gap: 20px; align-items: flex-end;
}

.dl-phone {
  width: 200px;
  background: var(--navy);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-hero);
}
.dl-phone:first-child { transform: rotate(-6deg) translateY(20px); }
.dl-phone:last-child { transform: rotate(4deg); z-index: 2; }

.dl-phone-screen {
  background: white;
  border-radius: 28px;
  aspect-ratio: 9/18;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.dl-screen-inner {
  flex: 1;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-lite) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 20px;
}

.dl-app-logo {
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(255,107,0,0.5);
}
.dl-app-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: white; }
.dl-app-sub { font-size: 12px; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.5; }
.dl-qr {
  width: 70px; height: 70px;
  background: white;
  border-radius: 10px;
  padding: 8px;
  margin-top: 8px;
}
.dl-qr-inner {
  width: 100%; height: 100%;
  background-image:
    repeating-linear-gradient(0deg, var(--navy) 0px, var(--navy) 2px, transparent 2px, transparent 8px),
    repeating-linear-gradient(90deg, var(--navy) 0px, var(--navy) 2px, transparent 2px, transparent 8px);
  background-size: 8px 8px;
  border-radius: 4px;
  opacity: 0.8;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section {
  background: var(--slate);
  padding: 100px 48px;
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--orange); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  transition: color 0.2s;
  gap: 16px;
}
.faq-q:hover { color: var(--orange); }

.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--slate); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-2);
  transition: all 0.25s;
}
.faq-item.open .faq-toggle { background: var(--orange); color: white; transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 16px; color: var(--text-2); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  padding: 80px 48px;
  background: white;
}
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lite) 60%, #1a3d8c 100%);
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.cta-inner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 60%);
  right: -150px; top: -150px;
}
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-content { position: relative; z-index: 2; }

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 50px; padding: 6px 18px;
  font-size: 13px; font-weight: 700; color: var(--orange-lt);
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800; color: white;
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-title span { color: var(--orange-lt); }

.cta-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 560px; margin: 0 auto 44px; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; border-radius: 50px;
  background: white; color: var(--navy);
  font-size: 16px; font-weight: 700; cursor: pointer;
  border: none; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.25); color: var(--navy); }

.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: white; font-size: 16px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); color: white; }

.cta-note { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 64px 48px 32px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}

.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800;
  color: white; margin-bottom: 16px;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.footer-tagline { font-size: 15px; line-height: 1.65; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
}
.soc-btn:hover { background: var(--orange); color: white; border-color: transparent; }

.footer-col-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700;
  color: white; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange-lt); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 28px; }
  .hero-visual { justify-content: center; }
  .phone-mockup { width: 260px; }
  .fc-booking { left: -20px; }
  .fc-arrive { right: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .why-float-card { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .download-section { grid-template-columns: 1fr; gap: 48px; }
  .stats-banner-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 28px; }
  .services-section { padding: 64px 0; }
  .services-inner { padding: 0 28px; }
  .why-section { padding: 64px 28px; }
  .why-inner { padding: 0; }
  .faq-section { padding: 64px 28px; }
  .cta-section { padding: 40px 28px; }
  .cta-inner { padding: 56px 32px; }
  .stats-banner { padding: 60px 28px; }
  .logos-strip { padding: 32px 28px; }
  footer { padding: 48px 28px 28px; }
  .download-section { padding: 64px 28px; }
}

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-headline { font-size: 40px; }
  .dl-phone-wrap { gap: 12px; }
  .dl-phone { width: 150px; }
  .cta-inner { padding: 40px 24px; }
  .cta-title { font-size: 30px; }
}
