﻿
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }

:root {
  --color-bg: #E2E5EA;
  --color-bg-alt: #F7F8FA;
  --color-surface: #FFFFFF;
  --color-cyan: #0094CC;
  --color-cyan-bright: #00B8E6;
  --color-cyan-vivid: #0BA3C8;
  --color-cyan-subtle: rgba(0,148,204,0.06);
  --color-cyan-border: rgba(0,148,204,0.18);
  --gradient-cyan: linear-gradient(135deg, #0094CC 0%, #00B8E6 50%, #0BA3C8 100%);
  --color-gold: #B08A2E;
  --color-gold-bright: #D4A846;
  --color-gold-light: #E8C76A;
  --color-gold-subtle: rgba(176,138,46,0.06);
  --color-gold-border: rgba(176,138,46,0.18);
  --gradient-gold: linear-gradient(135deg, #B08A2E 0%, #D4A846 50%, #E8C76A 100%);
  --gradient-hero: linear-gradient(160deg, #0B1120 0%, #0F172A 30%, #131A2E 60%, #0F1422 100%);
  --color-text: #111827;
  --color-text-secondary: #4B5563;
  --color-text-muted: #9CA3AF;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-secondary: rgba(255,255,255,0.6);
  --color-text-on-dark-muted: rgba(255,255,255,0.35);
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-cyan-glow: 0 4px 32px rgba(0,148,204,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Pastel colors from overrule.ai */
  --pastel-blue: #E9F5FF;
  --pastel-mint: #DDFAFA;
  --pastel-purple: #F0EAFF;
  --pastel-peach: #FFF0E6;
  --pastel-rose: #FFE8EF;
  --pastel-lime: #E8F8E0;
}

body { font-family: var(--font-sans); color: var(--color-text); background: #F0F7FC; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* NAV â€” no "Free Trial" button */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 32px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-svg { height: 28px; width: auto; }
.nav-logo-svg path { fill: #279CEF; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-signup { color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; padding: 8px 20px; transition: var(--transition); background: #0BA3C8; border: 1px solid #0BA3C8; border-radius: var(--radius-sm); }
.btn-nav-signup:hover { background: #0991b3; border-color: #0991b3; transform: translateY(-2px); }
.btn-nav-login { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; text-decoration: none; padding: 8px 20px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); }
.btn-nav-login:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; position: relative; z-index: 1100; padding: 6px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 32px 60px;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero-bg-redesign.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,24,0.55) 0%, rgba(8,12,24,0.25) 25%, rgba(8,12,24,0.15) 45%, rgba(8,12,24,0.30) 70%, rgba(11,17,32,0.85) 100%);
  z-index: 1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: calc(100vh - 180px);
}
.hero-title {
  font-family: var(--font-display);
  /* Fluid scaling: 22px on tiny phones up to 72px on desktop */
  font-size: clamp(22px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1.5px;
  max-width: 100%;
  margin: 0 auto 20px;
  width: 100%;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-title-line1,
.hero-title-line2 {
  display: block;
  max-width: 100%;
}
/* Keep "Operating System" together as a unit when space allows,
   but allow it to break to its own line when the viewport is narrow */
.hero-title-line2 .highlight {
  display: inline-block;
}
.hero-title .highlight { color: #0BA3C8; -webkit-text-fill-color: #0BA3C8; text-shadow: none; }
.hero-subtitle { font-size: clamp(16px, 1.9vw, 20px); color: rgba(255,255,255,0.9); max-width: 700px; line-height: 1.72; margin: 0 auto 0; font-weight: 500; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.btn-primary { background: linear-gradient(135deg, #0094CC 0%, #00B8E6 100%); color: #fff; font-size: 16px; font-weight: 700; padding: 16px 42px; border-radius: var(--radius-sm); text-decoration: none; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; position: relative; box-shadow: 0 4px 20px rgba(0,148,204,0.35); }
.btn-primary::after { content: ""; position: absolute; top: -3px; right: -3px; bottom: -3px; left: -3px; inset: -3px; border-radius: calc(var(--radius-sm) + 3px); background: linear-gradient(135deg, #0094CC, #0BA3C8); z-index: -1; opacity: 0; filter: blur(20px); transition: var(--transition); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,148,204,0.45); }
.btn-primary:hover::after { opacity: 0.6; }
.btn-secondary-hero { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; text-decoration: none; padding: 15px 28px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.btn-secondary-hero:hover { color: #fff; border-color: rgba(11,163,200,0.4); background: rgba(11,163,200,0.08); }

/* Stats bar */
.hero-stats { margin: 24px auto 0; display: flex; gap: 1px; justify-content: center; flex-wrap: wrap; background: rgba(0,148,204,0.08); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(11,163,200,0.12); }
.hero-stat { text-align: center; padding: 28px 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(11,17,32,0.75); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); flex: 1; min-width: 160px; }
.hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #0BA3C8; letter-spacing: -1px; }
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.04em; margin-top: 4px; text-transform: uppercase; }

/* BENEFITS */
.benefits-section { background: linear-gradient(180deg, #0B1120 0%, #0F172A 100%); border-bottom: none; padding: 80px 32px 60px; position: relative; overflow: hidden; }
.benefits-section::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 3px; background: linear-gradient(90deg, #0094CC, #0BA3C8); border-radius: 0 0 4px 4px; }
.benefits-inner { max-width: 1100px; margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: normal; text-transform: none; color: #0BA3C8; -webkit-text-fill-color: #0BA3C8; margin-bottom: 16px; }
.benefits-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: #FFFFFF; line-height: 1.12; letter-spacing: -1px; margin-bottom: 18px; }
.benefits-desc { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.68; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(11,163,200,0.1); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,148,204,0.12); border-color: rgba(11,163,200,0.25); }
.benefit-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 24px; }
.benefit-card:nth-child(1) .benefit-icon { background: rgba(11,163,200,0.1); color: #0BA3C8; }
.benefit-card:nth-child(2) .benefit-icon { background: rgba(11,163,200,0.1); color: #0BA3C8; }
.benefit-card:nth-child(3) .benefit-icon { background: rgba(11,163,200,0.1); color: #0BA3C8; }
.benefit-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #FFFFFF; margin-bottom: 20px; }
.benefit-time-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.benefit-time-old { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: rgba(255,255,255,0.35); text-decoration: line-through; text-decoration-color: #EF4444; text-decoration-thickness: 2px; }
.benefit-arrow { color: #0BA3C8; font-size: 20px; }
.benefit-time-new { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.benefit-card:nth-child(1) .benefit-time-new { color: #0BA3C8; }
.benefit-card:nth-child(2) .benefit-time-new { color: #0BA3C8; }
.benefit-card:nth-child(3) .benefit-time-new { color: #0BA3C8; }
.benefit-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 12px; }

/* FEATURES */
.section { padding: 50px 32px 80px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: #0F172A; line-height: 1.12; letter-spacing: -1px; margin-bottom: 18px; }
.section-desc { font-size: 17px; color: #4B5563; max-width: 800px; margin: 0 auto; line-height: 1.68; }
.section-subtitle { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: #4B5563; line-height: 1.6; margin-top: 8px; }
.section-we-offer { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #0094CC; -webkit-text-fill-color: #0094CC; margin-top: 16px; }
.section-label { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 16px; }
.section-label i { font-size: 11px; }
.features-section, .features { background: linear-gradient(180deg, #F0F7FC 0%, #E9F5FF 100%); }
.features-header { margin-bottom: 64px; text-align: center; }
.features-header .section-desc { margin-left: auto; margin-right: auto; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: #0094CC;
  -webkit-text-fill-color: #0094CC;
  margin-bottom: 16px;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,148,204,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,148,204,0.1); border-color: rgba(0,148,204,0.2); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.feature-card:nth-child(1) .feature-icon { background: #E9F5FF; color: #0094CC; }
.feature-card:nth-child(2) .feature-icon { background: #DDFAFA; color: #0F766E; }
.feature-card:nth-child(3) .feature-icon { background: #F0EAFF; color: #6C3AED; }
.feature-card:nth-child(4) .feature-icon { background: #FFF0E6; color: #B08A2E; }
.feature-card:nth-child(5) .feature-icon { background: #FFE8EF; color: #D14D72; }
.feature-card:nth-child(6) .feature-icon { background: #E9F5FF; color: #0B1120; }
.feature-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0,148,204,0.06);
  color: #0094CC;
}

/* TESTIMONIALS */
.testimonials-section { background: linear-gradient(160deg, #0B1120 0%, #0F172A 40%, #131A2E 70%, #0F1422 100%); position: relative; overflow: hidden; }
.testimonials-section::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(11,163,200,0.06), transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(212,168,70,0.04), transparent 50%), radial-gradient(ellipse at 50% 0%, rgba(11,163,200,0.03), transparent 40%); pointer-events: none; }
.testimonials-section .section-label { color: var(--color-gold-light); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position: relative; z-index: 1; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(11,163,200,0.08); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.testimonial-card::after { content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: radial-gradient(circle at right top, rgba(11,163,200,0.05), transparent 70%); pointer-events: none; }
.testimonial-card:hover { border-color: rgba(11,163,200,0.25); background: rgba(11,163,200,0.06); }
.testimonial-stars { color: var(--color-gold-bright); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.78; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, rgba(11,163,200,0.12), rgba(212,168,70,0.08)); border: 1px solid rgba(11,163,200,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #0BA3C8; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* DEMO */
.demo-section { background: linear-gradient(180deg, #E9F5FF 0%, #F0F7FC 100%); }
.demo-card { background: #FFFFFF; border: 1px solid rgba(0,148,204,0.1); border-radius: var(--radius-xl); padding: 48px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0,148,204,0.08); }
.demo-card::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 280px; height: 3px; background: linear-gradient(90deg, #0094CC, #0BA3C8); border-radius: 0 0 4px 4px; }
.demo-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, #0094CC, #00B8E6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: 0 4px 24px rgba(0,148,204,0.25); }
.demo-title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: #0F172A; line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 16px; position: relative; z-index: 1; }
.demo-desc { font-size: 17px; color: #4B5563; max-width: 580px; margin: 0 auto 18px; line-height: 1.68; position: relative; z-index: 1; }
.btn-primary-lg { background: linear-gradient(135deg, #0094CC 0%, #00B8E6 100%); color: #fff; font-size: 16px; font-weight: 700; padding: 18px 52px; border-radius: var(--radius-sm); text-decoration: none; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 1; box-shadow: 0 4px 20px rgba(0,148,204,0.3); }
.btn-primary-lg::after { content: ""; position: absolute; top: -3px; right: -3px; bottom: -3px; left: -3px; inset: -3px; border-radius: calc(var(--radius-sm) + 3px); background: linear-gradient(135deg, #0094CC, #0BA3C8); z-index: -1; opacity: 0; filter: blur(20px); transition: var(--transition); }
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,148,204,0.4); }
.btn-primary-lg:hover::after { opacity: 0.4; }

/* FOOTER */
.footer { background: #0B1120; padding: 60px 32px 32px; border-top: 1px solid rgba(11,163,200,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-svg { height: 24px; width: auto; }
.footer-logo-svg path { fill: #279CEF; }
.footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col-links { list-style: none; }
.footer-col-links li { margin-bottom: 12px; }
.footer-col-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; font-weight: 500; transition: var(--transition); }
.footer-col-links a:hover { color: #0BA3C8; }
.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(11,163,200,0.06); border: 1px solid rgba(11,163,200,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: rgba(11,163,200,0.12); border-color: rgba(11,163,200,0.3); color: #0BA3C8; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; padding-top: 28px; }

/* RESPONSIVE */

/* Tablet landscape and below */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { letter-spacing: -1px; }
  /* Reduce hero height on tablets so the image crops less severely */
  .hero { min-height: 75vh; }
  .hero-inner { min-height: auto; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .hero-title { letter-spacing: -0.5px; }
  .hero { min-height: 70vh; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-logo-svg { height: 22px; }
  .nav-hamburger { display: flex; }
  .nav-actions { position: fixed; top: 0; right: -100%; width: 75vw; max-width: 300px; height: 100vh; background: rgba(11,17,32,0.97); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 80px 28px 40px; gap: 16px; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 1050; }
  .nav-actions.open { right: 0; }
  .hero {
    padding: 90px 18px 40px;
    /* Shorter hero on phones so `cover` can render closer to the image's native 16:9 aspect */
    min-height: 60vh;
  }
  /* Raise the image up so the CTAs don't sit on top of the car body */
  .hero-bg-image {
    background-position: center 25%;
  }
  .hero-inner {
    min-height: auto;
    /* Use space-between so title stays on top and CTAs/stats drop to the bottom */
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
  }
  /* Add extra breathing room above the CTA buttons so they sit lower on screen */
  .hero-cta-group {
    margin-top: auto;
  }
  .hero-title {
    font-size: clamp(22px, 7vw, 38px);
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
  .hero-subtitle { font-size: 15px; line-height: 1.65; padding: 12px 16px; }
  .hero-cta-group { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
  .hero-cta-group .btn-primary, .hero-cta-group .btn-secondary-hero { width: 100%; justify-content: center; text-align: center; padding: 15px 24px; font-size: 15px; }
  .hero-stats { flex-flow: wrap; gap: 0; margin-top: 60px; }
  .hero-stat { min-width: unset; width: 50%; padding: 16px 8px; }
  .hero-stat-num { font-size: clamp(22px, 5vw, 30px); }
  .benefits-section { padding: 60px 16px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 28px 20px; }
  .section { padding: 56px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }
  .demo-card { padding: 32px 16px; border-radius: var(--radius-md); }
  .btn-primary-lg { font-size: 15px; padding: 16px 36px; width: 100%; justify-content: center; max-width: 320px; }
  .footer { padding: 48px 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* Medium-small devices and below (all phones & small tablets: ≤ 768px) */
@media (max-width: 768px) {
  .hero-cta-group {
    /* Push the CTA group at least 180px down from the element above it */
    margin-top: 180px;
  }
}

/* Extra tweaks for the 481–768px range */
@media (max-width: 768px) and (min-width: 481px) {
  .hero {
    /* Taller hero on medium-small devices so the CTA group sits well below the car */
    min-height: 75vh;
    padding-bottom: 60px;
  }
  .hero-stats {
    margin-top: 40px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero {
    padding: 80px 14px 36px;
    /* Even shorter on small phones — closer to image aspect = less cropping */
    min-height: 50vh;
  }
  .hero-title {
    font-size: clamp(22px, 7.5vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.2px;
  }
  .hero-subtitle { font-size: 14px; }
  .hero-stat { width: 50%; padding: 12px 4px; }
  .hero-stat-num { font-size: 20px; }
  .section { padding: 44px 12px; }
  .benefits-section { padding: 44px 12px; }
}

