/* ============================================
   NEWMAN — LANDING PAGE
   ============================================ */

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

:root {
  --bg:           #09090F;
  --bg-2:         #0F0F1A;
  --bg-card:      #12121E;
  --bg-card-2:    #161626;
  --border:       rgba(255,255,255,0.07);
  --border-soft:  rgba(255,255,255,0.04);

  --blue:         #4F6EF7;
  --blue-light:   #6B87FF;
  --blue-dim:     rgba(79,110,247,0.15);
  --purple:       #9810FA;
  --purple-dim:   rgba(152,16,250,0.15);
  --teal:         #2DD4BF;
  --teal-dim:     rgba(45,212,191,0.12);
  --orange:       #F97316;
  --orange-dim:   rgba(249,115,22,0.12);
  --red:          #EF4444;
  --red-dim:      rgba(239,68,68,0.12);
  --green:        #22C55E;
  --green-dim:    rgba(34,197,94,0.12);

  --text-1:       #FFFFFF;
  --text-2:       #A0A0C0;
  --text-3:       #60607A;

  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(79,110,247,0);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(79,110,247,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text-1);
  border-color: rgba(255,255,255,0.15);
}

.btn-sm  { font-size: 13px; padding: 9px 20px; }
.btn-lg  { font-size: 15px; padding: 14px 28px; }

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-header p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.section-label {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

/* ============================================
   NAV
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-wrapper.scrolled {
  background: rgba(9,9,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo-img--footer {
  height: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }

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

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile li a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-soft);
}
.nav-mobile li:last-child { margin-top: 16px; }
.nav-mobile .btn { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 68px; /* nav height only — no extra space */
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Left column — image natural size, no stretching */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Right column — starts at top, no centering dead space */
.hero-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 0;
  max-width: 680px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid rgba(79,110,247,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
  background: linear-gradient(160deg, #fff 40%, rgba(255,255,255,0.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

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

/* Chat window */
.hero-chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chat-window {
  width: 100%;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card-2);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.chat-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chat-name { font-size: 14px; font-weight: 600; }
.chat-status { font-size: 11px; color: var(--green); font-weight: 500; }
.chat-time { font-size: 11px; color: var(--text-3); }

.chat-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}

.chat-prompt {
  background: var(--blue-dim);
  border: 1px solid rgba(79,110,247,0.2);
  border-radius: var(--radius) var(--radius) var(--radius) 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-1);
  max-width: 85%;
}

.chat-user-msg {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 4px var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-2);
  max-width: 85%;
  align-self: flex-end;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}
.chat-typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.9); }
  30% { opacity: 1; transform: scale(1.1); }
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-card-2);
}
.chat-input-bar input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font);
  outline: none;
}
.chat-send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(79,110,247,0.3);
  color: var(--blue-light);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-more-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-light);
  transition: color 0.2s;
}
.learn-more-link:hover { color: #fff; }

/* Glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,110,247,0.18) 0%, transparent 70%);
  top: -100px; left: -200px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,92,247,0.15) 0%, transparent 70%);
  bottom: -80px; right: -100px;
}
.hero-glow-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,110,247,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-inner { position: relative; z-index: 1; }

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-lead {
  font-size: 18px;
  color: var(--text-2);
  margin-top: 24px;
  line-height: 1.7;
}

.problem-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.problem-body {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 14px;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.tag:hover {
  border-color: rgba(79,110,247,0.4);
  color: var(--text-1);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon--blue   { background: var(--blue-dim);   color: var(--blue-light); }
.feature-icon--purple { background: var(--purple-dim); color: var(--purple); }
.feature-icon--teal   { background: var(--teal-dim);   color: var(--teal); }
.feature-icon--orange { background: var(--orange-dim); color: var(--orange); }
.feature-icon--red    { background: var(--red-dim);    color: var(--red); }
.feature-icon--green  { background: var(--green-dim);  color: var(--green); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(79,110,247,0.3); }
.step-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}
.step-card--wide p { margin-top: 0; }

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid rgba(79,110,247,0.25);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step-card--wide .step-num { margin-bottom: 0; }

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   DRIVERS
   ============================================ */
.drivers {
  padding: 100px 0;
}

.drivers-header {
  text-align: center;
  margin-bottom: 56px;
}
.drivers-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  max-width: 640px;
  margin: 0 auto 20px;
}

.drivers-cta-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  margin-top: 4px;
  transition: color 0.2s;
}
.drivers-cta-link:hover { color: #fff; }

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.driver-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}
.driver-card:hover {
  border-color: rgba(79,110,247,0.3);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}

.driver-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.driver-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.driver-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================
   TRUST
   ============================================ */
.trust {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.trust-content h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.trust-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

.trust-stats {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-value {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--blue-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-3);
}

.trust-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-card > p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 36px;
}

/* Coming soon state */
.coming-soon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(152,16,250,0.1);
  border: 1px solid rgba(152,16,250,0.3);
  border-radius: 100px;
  padding: 7px 16px;
}

.cs-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 0 rgba(152,16,250,0.5);
  animation: cs-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

.cs-dot--sm {
  width: 6px;
  height: 6px;
}

@keyframes cs-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(152,16,250,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(152,16,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(152,16,250,0); }
}

.coming-soon-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 20px;
  width: 100%;
  max-width: 440px;
  color: var(--text-3);
  font-size: 14px;
}

.cs-lock {
  color: var(--text-3);
  flex-shrink: 0;
}

.cs-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(152,16,250,0.12);
  border: 1px solid rgba(152,16,250,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  flex-shrink: 0;
}

.footer-coming-soon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 16px;
}

.cta-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--text-1);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: var(--text-3); }
.cta-form input:focus { border-color: rgba(79,110,247,0.5); }

.cta-fine {
  font-size: 12px;
  color: var(--text-3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 24px;
}

.footer-subscribe {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-subscribe input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-1);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.footer-subscribe input::placeholder { color: var(--text-3); }
.footer-subscribe input:focus { border-color: rgba(79,110,247,0.5); }

.footer-avail {
  font-size: 12px;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .drivers-grid  { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { padding-top: 68px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-image-col { justify-content: center; }
  .hero-img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }
  .hero-right-col {
    padding: 0 24px 48px;
    max-width: 100%;
  }
  .hero-badge   { justify-content: center; display: flex; }
  .hero-sub     { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .step-card--wide .step-num { margin-bottom: 0; }

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-card { padding: 40px 24px; }
  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .trust-divider { width: 80px; height: 1px; }

  .footer-links { gap: 32px; }
}
