:root {
  --ink: #15211c;
  --muted: #61736b;
  --line: #dfe7e2;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --green: #0f7c55;
  --green-dark: #07583b;
  --gold: #e2a72e;
  --blue: #28536b;
  --shadow: 0 24px 70px rgba(21, 33, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.92);
  box-shadow: 0 10px 30px rgba(21, 33, 28, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-button,
.lead-form button {
  color: #fff;
  background: var(--green);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 16, 0.82), rgba(5, 20, 16, 0.36)),
    linear-gradient(0deg, rgba(5, 20, 16, 0.7), rgba(5, 20, 16, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 40px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.feature-card,
.process-grid article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(21, 33, 28, 0.07);
}

.feature-card {
  min-height: 280px;
  padding: 26px;
}

.feature-icon,
.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.feature-card h3,
.process-grid h3 {
  margin: 26px 0 10px;
  font-size: 23px;
}

.feature-card p,
.copy-panel p,
.process-grid p,
.cta-section p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.split-section,
.app-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.visual-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.copy-panel {
  max-width: 580px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-top: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--gold);
}

.process-section {
  background: #eef4ef;
}

.process-grid article {
  padding: 24px;
}

.app-section {
  background: var(--green-dark);
  color: #fff;
}

.app-section .copy-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.phone-frame {
  width: min(360px, 82vw);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  background: #0d1713;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 124, 85, 0.14), transparent 42%),
    #f5f1e9;
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(32deg, transparent 43%, rgba(15, 124, 85, 0.28) 44%, transparent 46%),
    linear-gradient(138deg, transparent 34%, rgba(40, 83, 107, 0.22) 35%, transparent 37%),
    linear-gradient(88deg, transparent 56%, rgba(226, 167, 46, 0.24) 57%, transparent 59%);
}

.ride-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 33, 28, 0.16);
}

.ride-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.ride-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.store-buttons {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.store-buttons span {
  display: inline-flex;
  min-width: 116px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-weight: 800;
}

.cta-section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0d1713;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-stats,
  .feature-grid,
  .process-grid,
  .split-section,
  .app-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 100%;
  }

  .phone-screen {
    min-height: 520px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 44px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
