/* ═══════════════════════════════════════════════
   CurbNav Landing Page — Master Stylesheet
   Brand: Dark Navy (#0d1b2e), Red (#c0392b), White (#fff)
═══════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1b2e;
  --navy-mid:  #122540;
  --navy-light:#1a3a5c;
  --red:       #c0392b;
  --red-light: #e74c3c;
  --red-dark:  #8b1a1a;
  --white:     #ffffff;
  --off-white: #f4f6f8;
  --gray-100:  #e8ecf0;
  --gray-400:  #8a94a0;
  --gray-600:  #5a636e;
  --gold:      #f5a623;

  --font-main: 'Inter', sans-serif;
  --font-hero: 'Barlow Condensed', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.12);
  --shadow-md: 0 8px 32px rgba(0,0,0,.18);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.25);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── Typography helpers ───────────────────────── */
.accent-red { color: var(--red); }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag-light {
  color: var(--gold);
  background: rgba(245,166,35,.12);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.75); }

/* ── Buttons ──────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.4);
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-full  { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-nav-cta:hover { background: var(--red-light); }

.btn-mobile-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-mobile.open { display: flex; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a2e4a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 40%, rgba(192,57,43,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  padding-right: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,.18);
  border: 1px solid rgba(192,57,43,.4);
  color: #ff8a7a;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeDown .6s ease both;
}

.hero-headline {
  font-family: var(--font-hero);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .7s ease .1s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp .7s ease .2s both;
}
.hero-sub strong { color: var(--white); }

/* Counter strip */
.hero-counters {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 36px;
  animation: fadeUp .7s ease .3s both;
}
.counter-item {
  flex: 1;
  text-align: center;
}
.counter-num {
  display: block;
  font-family: var(--font-hero);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-hero);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.counter-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.counter-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp .7s ease .4s both;
}

/* Phone mockup */
.hero-phone-wrap {
  position: relative;
  z-index: 2;
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatUp 1s ease .3s both;
}
.hero-phone {
  width: 280px;
  height: 560px;
  background: var(--navy);
  border-radius: 40px;
  border: 6px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: rgba(0,0,0,.8);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.phone-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #1a2e4a 0%, #0f2135 40%, #112030 100%);
}

/* Map roads */
.map-road {
  position: absolute;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
}
.map-road-1 { width: 3px; height: 100%; top: 0; left: 35%; }
.map-road-2 { width: 3px; height: 100%; top: 0; left: 65%; }
.map-road-3 { height: 3px; width: 100%; top: 40%; left: 0; }
.map-road-4 { height: 3px; width: 100%; top: 68%; left: 0; }

/* Map pins */
.map-pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: pinPulse 3s ease-in-out infinite;
}
.map-pin i {
  transform: rotate(45deg);
  font-size: .7rem;
  color: var(--white);
}
.pin-dock  { background: var(--red); animation-delay: 0s; }
.pin-toll  { background: var(--gold); animation-delay: .8s; }
.pin-dot   { background: #2563eb; animation-delay: 1.6s; }
.pin-restrict { background: #7c3aed; animation-delay: 2.4s; }

.pin-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  background: rgba(0,0,0,.85);
  color: var(--white);
  font-size: .6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.map-pin:hover .pin-tooltip { opacity: 1; }

.phone-ui-bar {
  position: absolute;
  bottom: 60px;
  left: 12px;
  right: 12px;
  background: rgba(13,27,46,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  backdrop-filter: blur(10px);
}
.ui-route {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6ee7b7;
  font-size: .65rem;
  font-weight: 600;
}
.ui-eta {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
}
.ui-eta span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 3px;
}

.phone-logo-overlay {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.phone-logo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════
   PAIN STRIP
════════════════════════════════════════════════ */
.pain-strip {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pain-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.pain-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}
.pain-item i {
  color: var(--red);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,57,43,.2);
}
.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.icon-red   { background: rgba(192,57,43,.1); color: var(--red); }
.icon-navy  { background: rgba(13,27,46,.08); color: var(--navy-light); }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.feature-bullets {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
}
.feature-bullets li i { color: var(--red); font-size: .8rem; }

/* Vehicle types */
.vehicle-types {
  text-align: center;
}
.vt-label {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.vehicle-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.vchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
}
.vchip i { color: var(--red); }

/* ════════════════════════════════════════════════
   MARKET SECTION
════════════════════════════════════════════════ */
.market {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.market::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,.12) 0%, transparent 70%);
  pointer-events: none;
}

.market-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.market-stat {
  padding: 40px 28px;
  background: rgba(255,255,255,.03);
  text-align: center;
  transition: background var(--transition);
}
.market-stat:hover { background: rgba(255,255,255,.06); }
.ms-num {
  font-family: var(--font-hero);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.ms-num span {
  color: var(--red);
}
.ms-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  margin-bottom: 6px;
}
.ms-source {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

.market-insight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.insight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.insight-text {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.65;
}
.insight-text strong { color: var(--white); }
.insight-text em { color: #ff8a7a; font-style: normal; font-weight: 600; }

/* ════════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════════ */
.compare {
  padding: 100px 0;
  background: var(--off-white);
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .88rem;
}
.compare-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.compare-table thead th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
}
.compare-table thead th:first-child { text-align: left; }

.compare-table .col-curbnav {
  background: rgba(192,57,43,.06);
}
.compare-table thead .col-curbnav {
  background: var(--red);
}
.tbl-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 4px;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.compare-table tbody tr:hover { background: #fafbfc; }
.compare-table tbody td {
  padding: 14px 20px;
  text-align: center;
  color: var(--gray-600);
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--navy);
  font-weight: 500;
}
.price-highlight {
  font-weight: 700;
  color: var(--red) !important;
}

.check    { color: #16a34a; font-size: 1rem; }
.cross    { color: #dc2626; font-size: 1rem; }
.partial  { color: var(--gold); font-size: 1rem; }

.compare-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.tcard {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: var(--transition);
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tcard-featured {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.tcard-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.tcard p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
}
.tcard-featured p { color: rgba(255,255,255,.8); }
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
}
.tcard-featured .tcard-author strong { color: var(--white); }
.tcard-author span {
  font-size: .76rem;
  color: var(--gray-400);
}
.tcard-featured .tcard-author span { color: rgba(255,255,255,.5); }
.tcard-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Demand bar */
.demand-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.demand-stat {
  padding: 32px 28px;
  text-align: center;
  background: var(--navy-mid);
}
.demand-num {
  display: block;
  font-family: var(--font-hero);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.demand-stat span:last-child {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  font-family: var(--font-hero);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(13,27,46,.08);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.step p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.step-arrow {
  flex-shrink: 0;
  color: var(--gray-100);
  font-size: 1.2rem;
  margin-top: 80px;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid var(--gray-100);
  transition: var(--transition);
}
.price-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
}
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.pc-label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.price-card-featured .pc-label { color: rgba(255,255,255,.5); }
.pc-price {
  font-family: var(--font-hero);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.price-card-featured .pc-price { color: var(--white); }
.price-card-featured .pc-price span { color: rgba(255,255,255,.5); }
.pc-sub {
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.price-card-featured .pc-sub { color: rgba(255,255,255,.45); }
.pc-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--navy);
}
.pc-features li i { color: #16a34a; font-size: .85rem; flex-shrink: 0; }
.price-card-featured .pc-features li { color: rgba(255,255,255,.85); }
.price-card-featured .pc-features li i { color: #6ee7b7; }

/* ════════════════════════════════════════════════
   WAITLIST FORM
════════════════════════════════════════════════ */
.waitlist {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.wl-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 24px;
}
.wl-copy h2 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.wl-copy > p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.wl-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.wl-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.wl-benefits li i {
  width: 32px;
  height: 32px;
  background: rgba(192,57,43,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8a7a;
  font-size: .85rem;
  flex-shrink: 0;
}
.wl-counter-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.wl-count {
  font-family: var(--font-hero);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.wl-count-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-sub {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.field-group {
  margin-bottom: 16px;
}
.field-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}
.field-group input.error,
.field-group select.error {
  border-color: var(--red);
}
.field-error {
  display: block;
  font-size: .75rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}
.btn-submit {
  margin-top: 8px;
  font-size: 1rem;
  padding: 15px;
}
.form-privacy {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 12px;
}
.form-privacy i { margin-right: 4px; }

/* Success */
.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.success-icon {
  font-size: 3.5rem;
  color: #16a34a;
  margin-bottom: 20px;
}
.success-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-card p {
  font-size: .92rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.65;
}
.success-share p {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.share-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.share-twitter { background: #000; color: var(--white); }
.share-twitter:hover { background: #333; }
.share-linkedin { background: #0a66c2; color: var(--white); }
.share-linkedin:hover { background: #0052a5; }

/* ════════════════════════════════════════════════
   INVESTOR BAR
════════════════════════════════════════════════ */
.investor-bar {
  background: #0a1520;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ib-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}
.ib-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.ib-text {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.ib-text strong { color: var(--gold); }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--red); color: var(--white); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-tagline { font-style: italic; }

/* ════════════════════════════════════════════════
   FLOATING CTA
════════════════════════════════════════════════ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
}
.floating-cta .btn-primary {
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(192,57,43,.5);
  font-size: 1rem;
}

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatUp  { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes pinPulse {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50%       { transform: rotate(-45deg) scale(1.18); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-phone-wrap { animation: float 4s ease-in-out 1s infinite; }

/* ════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { padding-right: 0; max-width: 100%; }
  .hero-cta-row { justify-content: center; }
  .hero-phone-wrap { flex: none; margin-top: 40px; animation: none; }
  .hero-counters { justify-content: space-around; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }

  .market-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .demand-bar { grid-template-columns: 1fr; }
}

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

  .hero-phone-wrap { display: none; }
  .hero-counters { flex-direction: column; gap: 12px; }
  .counter-divider { width: 80%; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }

  .compare-table { font-size: .76rem; }
  .compare-table thead th, .compare-table tbody td { padding: 10px 10px; }

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

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

  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
  .wl-copy { text-align: center; }
  .wl-logo { margin: 0 auto 24px; }
  .wl-benefits li { justify-content: flex-start; text-align: left; }
  .wl-counter-box { justify-content: center; }

  .ib-inner { flex-direction: column; text-align: center; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .floating-cta { display: block; }

  .market-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .market-stats-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .share-btns { flex-direction: column; }
}
