:root {
  --bg: #07111f;
  --bg-soft: #0d1a2f;
  --panel: rgba(14, 27, 49, 0.82);
  --panel-strong: #0f1f37;
  --panel-light: rgba(255, 255, 255, 0.06);
  --text: #f5f8ff;
  --muted: #9bb0d3;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #2e7df6;
  --primary-strong: #1f66d8;
  --accent: #7bc4ff;
  --success: #76f0c4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 125, 246, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(123, 196, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #050b14 0%, #091322 36%, #07111f 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(46, 125, 246, 0.38);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a:hover,
.topnav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.form-note a:hover,
.form-note a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 64px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(123, 196, 255, 0.24);
  background: rgba(123, 196, 255, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-text,
.section-heading p,
.policy-hero p,
.policy-card p,
.policy-card li,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  box-shadow: 0 18px 34px rgba(46, 125, 246, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-metrics,
.trustband,
.feature-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.hero-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.hero-metrics article,
.feature-card,
.contact-card,
.contact-form,
.highlight-card,
.timeline-item,
.policy-card,
.trustband div {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 18px;
  border-radius: 20px;
}

.hero-metrics strong,
.trustband strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-metrics span,
.trustband span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.88;
}

.glow-one {
  top: 6%;
  left: 10%;
  width: 170px;
  height: 170px;
  background: rgba(46, 125, 246, 0.35);
}

.glow-two {
  right: 8%;
  bottom: 12%;
  width: 210px;
  height: 210px;
  background: rgba(123, 196, 255, 0.24);
}

.phone-mockup {
  position: relative;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.phone-head {
  width: 120px;
  height: 8px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(123, 196, 255, 0.18), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
  color: #0c1830;
}

.screen-card,
.screen-route,
.screen-stats {
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 34px rgba(28, 56, 112, 0.12);
}

.screen-card {
  padding: 18px;
}

.vehicle-photo-frame {
  width: 100%;
  height: 210px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #dbe7fb 0%, #edf3ff 100%);
}

.vehicle-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.screen-card h3 {
  margin: 14px 0 8px;
  font-size: 1.3rem;
}

.screen-card p,
.screen-route span,
.screen-stats span {
  color: #5b6882;
}

.screen-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 125, 246, 0.1);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.screen-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
}

.route-arrow {
  color: var(--primary);
  font-weight: 800;
}

.screen-route strong {
  color: #122347;
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.screen-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #0c1830;
}

.trustband {
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 8px;
}

.trustband div {
  padding: 22px;
  border-radius: 22px;
}

.section,
.policy-page {
  padding: 88px 0 0;
}

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

.section-heading.compact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
}

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial-stars {
  color: #ffd76a;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.feature-card h3,
.timeline-item h3,
.highlight-card h2,
.contact-card .contact-mail,
.policy-card h2 {
  margin: 0 0 14px;
}

.feature-card p,
.timeline-item p,
.highlight-card p,
.check-list li {
  color: var(--muted);
  line-height: 1.75;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(46, 125, 246, 0.16);
  color: var(--accent);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
}

.highlight-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at right top, rgba(123, 196, 255, 0.12), transparent 30%),
    var(--panel-strong);
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li + li {
  margin-top: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(118, 240, 196, 0.08);
}

.contact-layout {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 28px;
  border-radius: var(--radius);
}

.contact-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-mail {
  display: inline-block;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7e8ead;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(123, 196, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(123, 196, 255, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 84px 0 36px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  justify-items: end;
}

.policy-page {
  max-width: 860px;
  margin: 0 auto;
}

.policy-hero {
  padding-top: 56px;
}

.policy-hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.policy-card {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius);
}

.policy-card h2 {
  font-size: 1.35rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .highlight-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .testimonial-grid,
  .trustband {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar,
  .topnav,
  .hero-actions,
  .hero-metrics,
  .feature-grid,
  .testimonial-grid,
  .trustband,
  .field-row,
  .screen-stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar,
  .topnav,
  .hero-actions,
  .footer {
    display: grid;
  }

  .topbar {
    border-radius: 28px;
    padding: 18px;
  }

  .topnav {
    gap: 12px;
  }

  .hero h1,
  .section-heading h2,
  .policy-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .screen-route {
    grid-template-columns: 1fr auto;
  }

  .screen-route span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-links {
    justify-items: start;
  }
}
