/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1D4ED8;
  --blue-light: #3B82F6;
  --blue-dark: #1E3A8A;
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --border: #E2E8F0;
  --bg: #F8FAFF;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 60px rgba(15,23,42,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { color: var(--gray); }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .95rem; font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29,78,216,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(29,78,216,.45); }

.btn-ghost { background: transparent; color: var(--dark); }
.btn-ghost:hover { background: var(--bg); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--dark);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-white { background: var(--white); color: var(--blue); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ===== SECTION HELPERS ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(29,78,216,.08);
  color: var(--blue);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}

/* Transparent header on dark hero (not scrolled) */
.header:not(.scrolled) .logo { color: white; }
.header:not(.scrolled) .logo strong { color: var(--yellow); }
.header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.75); }
.header:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,.1); color: white; }
.header:not(.scrolled) .nav-links a.active { background: rgba(255,255,255,.12); color: white; }
.header:not(.scrolled) .btn-ghost { color: rgba(255,255,255,.85); }
.header:not(.scrolled) .btn-ghost:hover { background: rgba(255,255,255,.1); }
.header:not(.scrolled) .btn-outline { color: white; border-color: rgba(255,255,255,.4); }
.header:not(.scrolled) .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.header:not(.scrolled) .nav-burger span { background: white; }

.nav-links a.active { color: var(--blue); }

.nav {
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--dark);
  font-size: 1.15rem; font-weight: 600;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
}
.logo strong { color: var(--blue); }
.logo-white { color: white; }
.logo-white strong { color: var(--yellow); }
.logo-white .logo-icon { background: var(--yellow); color: var(--dark); }

.nav-links {
  display: flex; list-style: none; gap: 4px;
  flex: 1;
}
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover { background: var(--bg); color: var(--blue); }

.nav-cta { display: flex; gap: 8px; margin-left: auto; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark);
  transition: all .3s;
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero .btn-outline {
  color: white;
  border-color: rgba(255,255,255,.4);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: white;
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,78,216,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,78,216,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--yellow);
  bottom: -100px; left: 10%;
  opacity: .12;
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  color: rgba(255,255,255,.85);
  font-size: .82rem; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}

.hero-title { color: white; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: white; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ===== PHONE MOCKUP ===== */
.hero-visual { position: relative; display: flex; justify-content: center; }

.mockup-phone {
  width: 280px; height: 560px;
  background: var(--dark-2);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
}
.mockup-phone::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.mockup-screen { width: 100%; height: 100%; display: flex; flex-direction: column; }

/* MAP UI */
.map-ui {
  flex: 1;
  position: relative;
  background: #1a2538;
  overflow: hidden;
}
.map-bg { position: absolute; inset: 0; }
.map-road {
  position: absolute;
  background: rgba(255,255,255,.06);
}
.map-road-h { left: 0; right: 0; top: 45%; height: 18px; }
.map-road-v { top: 0; bottom: 0; left: 38%; width: 18px; }
.map-road-h2 { left: 0; right: 0; top: 72%; height: 12px; }
.map-road-v2 { top: 0; bottom: 0; left: 68%; width: 12px; }

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}
.pin-active {
  top: 45%; left: 50%;
  z-index: 5;
}
.pin-inner {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(29,78,216,.5);
}
.pin-inner svg { transform: rotate(45deg); color: white; }
.pin-pulse {
  position: absolute; inset: -8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: pulse-map 2s infinite;
  opacity: .5;
}
@keyframes pulse-map {
  0% { transform: scale(.8); opacity: .7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.pin-free, .pin-busy {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: .7rem; font-weight: 700;
}
.pin-free { background: #22C55E; color: white; }
.pin-busy { background: #EF4444; color: white; }

/* BOTTOM CARD */
.mockup-card {
  background: var(--dark-2);
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.card-info { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.card-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: white; font-size: .9rem;
  flex-shrink: 0;
}
.card-text { flex: 1; min-width: 0; }
.card-name { color: white; font-size: .8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-addr { color: rgba(255,255,255,.4); font-size: .7rem; }
.card-price { color: white; font-size: .9rem; font-weight: 800; white-space: nowrap; }
.card-price span { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.5); }

.card-slots { display: flex; gap: 4px; margin-bottom: 12px; }
.slot { width: 24px; height: 12px; border-radius: 3px; }
.slot-free { background: #22C55E; }
.slot-taken { background: rgba(255,255,255,.12); }

.card-btn { width: 100%; justify-content: center; font-size: .8rem; padding: 9px; }

/* FLOAT BADGES */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  font-size: .8rem; font-weight: 600; color: var(--dark);
  white-space: nowrap;
}
.float-badge svg { color: #22C55E; flex-shrink: 0; }
.badge-top { top: 60px; right: -40px; }
.badge-bot { bottom: 80px; left: -60px; }
.badge-ava {
  width: 24px; height: 24px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  flex-shrink: 0;
}

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.logos-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.city-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .88rem; font-weight: 600;
  color: var(--dark);
}
.city-badge svg { color: var(--blue); }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: var(--bg); }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s ease;
  opacity: 0; transform: translateY(24px);
}
.feature-card.visible { opacity: 1; transform: none; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.feature-card-accent {
  background: var(--blue);
  border-color: var(--blue);
}
.feature-card-accent h3 { color: white; }
.feature-card-accent p { color: rgba(255,255,255,.7); }

.feat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat-blue { background: rgba(29,78,216,.1); color: var(--blue); }
.feat-white { background: rgba(255,255,255,.15); color: white; }

.feature-card h3 { margin-bottom: 10px; }
.feat-check {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  background: rgba(255,255,255,.2);
  border-radius: 50px;
  font-size: .78rem; font-weight: 700; color: white;
}

/* ===== OWNERS ===== */
.owners { padding: 100px 0; }

.owners-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  opacity: 0; transform: translateY(24px); transition: all .5s ease;
}
.owners-inner.visible { opacity: 1; transform: none; }

.owners-sub { font-size: 1.05rem; margin: 16px 0 32px; }

/* EARNINGS CARD */
.earnings-card {
  background: var(--dark);
  border-radius: 24px;
  padding: 32px;
  color: white;
}
.earn-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.earn-title { font-size: .85rem; color: rgba(255,255,255,.5); }
.earn-period {
  font-size: .78rem; font-weight: 600;
  padding: 3px 10px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  color: rgba(255,255,255,.6);
}
.earn-amount { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.earn-trend {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: #22C55E;
  margin-bottom: 28px;
}

.earn-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 64px; margin-bottom: 24px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,.12);
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.chart-bar-active { background: var(--blue); }
.earnings-card:hover .chart-bar:hover { background: rgba(255,255,255,.25); }

.earn-slots { display: flex; flex-direction: column; gap: 10px; }
.earn-slot {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem;
}
.slot-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.slot-active { background: #22C55E; }
.slot-pending { background: var(--yellow); }
.earn-slot span:nth-child(2) { flex: 1; color: rgba(255,255,255,.6); }
.slot-earn { color: #22C55E; font-weight: 700; }

/* OWNERS LIST */
.owners-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.owners-list li { display: flex; gap: 14px; }
.check-icon {
  width: 28px; height: 28px;
  background: rgba(29,78,216,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.owners-list strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.owners-list span { font-size: .88rem; color: var(--gray); }

/* ===== HOW IT WORKS ===== */
.how { padding: 100px 0; background: var(--bg); }

.steps {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
}
.step {
  flex: 1; max-width: 280px;
  text-align: center; padding: 0 24px;
  opacity: 0; transform: translateY(24px); transition: all .5s ease;
}
.step.visible { opacity: 1; transform: none; }
.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(3) { transition-delay: .15s; }
.step:nth-child(5) { transition-delay: .3s; }

.step-num {
  font-size: .75rem; font-weight: 800;
  color: var(--blue); letter-spacing: .1em;
  margin-bottom: 16px;
}
.step-icon {
  width: 72px; height: 72px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
  box-shadow: var(--shadow);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: .9rem; }

.step-arrow {
  flex-shrink: 0;
  color: var(--border);
  margin-top: 28px;
}

/* ===== WHY ===== */
.why { padding: 100px 0; }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
  opacity: 0; transform: translateY(24px);
}
.why-card.visible { opacity: 1; transform: none; }
.why-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.08); }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(29,78,216,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: .88rem; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg); }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
  opacity: 0; transform: translateY(16px);
}
.faq-item.visible { opacity: 1; transform: none; }
.faq-item[open] { border-color: var(--blue); }

.faq-item summary {
  padding: 20px 24px;
  font-size: .95rem; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300; color: var(--blue);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 20px;
  font-size: .9rem; color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 60px 0 100px; }

.cta-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 32px;
  padding: 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.cta-content { position: relative; z-index: 2; max-width: 560px; }
.cta-content h2 { color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-visual { position: relative; flex-shrink: 0; }
.cta-pin {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: white;
  position: relative; z-index: 2;
}
.cta-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-ring-1 { width: 140px; height: 140px; }
.cta-ring-2 { width: 200px; height: 200px; opacity: .7; }
.cta-ring-3 { width: 260px; height: 260px; opacity: .4; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 80px; margin-bottom: 60px;
}
.footer-brand p { color: rgba(255,255,255,.4); font-size: .9rem; margin-top: 12px; }

.footer-cols { display: flex; gap: 48px; }
.footer-col h5 {
  color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none; color: rgba(255,255,255,.4);
  font-size: .9rem; transition: color .2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.3);
}

/* ===== ANIMATE ON SCROLL ===== */
.feature-card, .step, .why-card, .faq-item, .owners-inner {
  transition: opacity .5s ease, transform .5s ease;
}
.feature-card:nth-child(2) { transition-delay: .1s; }
.feature-card:nth-child(3) { transition-delay: .2s; }
.why-card:nth-child(2) { transition-delay: .08s; }
.why-card:nth-child(3) { transition-delay: .16s; }
.why-card:nth-child(4) { transition-delay: .08s; }
.why-card:nth-child(5) { transition-delay: .16s; }
.why-card:nth-child(6) { transition-delay: .24s; }
.faq-item:nth-child(2) { transition-delay: .05s; }
.faq-item:nth-child(3) { transition-delay: .1s; }
.faq-item:nth-child(4) { transition-delay: .15s; }
.faq-item:nth-child(5) { transition-delay: .2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .owners-inner { grid-template-columns: 1fr; }
  .owners-visual { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 60px 40px; }
  .cta-visual { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: white; padding: 32px 24px; gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    z-index: 99;
  }
  .nav.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    z-index: 100;
  }
  .nav.nav-open .nav-links a { padding: 14px 16px; font-size: 1rem; }

  .hero { padding: 120px 0 80px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-sep { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 8px 0; }

  .why-grid { grid-template-columns: 1fr; }

  .cta-card { padding: 48px 32px; border-radius: 20px; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}
