html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f6f2eb;
  --bg-soft: #faf7f2;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #121826;
  --surface-dark-2: #1a2233;
  --text: #182033;
  --text-soft: #586073;
  --text-soft-2: #7c8392;
  --line: rgba(24, 32, 51, 0.09);
  --navy: #12233f;
  --navy-2: #20385f;
  --blue: #2f6de1;
  --gold: #c9a468;
  --gold-soft: #efe2ca;
  --success: #2d7a5a;
  --danger: #a4463c;
  --shadow-xl: 0 34px 70px rgba(17, 24, 39, 0.14);
  --shadow-lg: 0 20px 46px rgba(17, 24, 39, 0.1);
  --shadow-md: 0 12px 26px rgba(17, 24, 39, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 109, 225, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(201, 164, 104, 0.13), transparent 24%),
    linear-gradient(180deg, #fbf8f4 0%, #f3ede4 100%);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.72);
  border-bottom: 1px solid rgba(24, 32, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 24px rgba(18, 35, 63, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: 0 18px 30px rgba(18, 35, 63, 0.18);
}

.button-primary:hover {
  box-shadow: 0 22px 36px rgba(18, 35, 63, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  border-color: rgba(18, 35, 63, 0.1);
}

.button-dark {
  background: linear-gradient(135deg, #0f1625, #202f46);
  color: #fff;
  box-shadow: 0 18px 30px rgba(15, 22, 37, 0.18);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(24, 32, 51, 0.12);
}

.button-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 30px rgba(10, 12, 16, 0.18);
}

.button-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-large {
  min-height: 56px;
  padding: 0 26px;
}

.hero-section {
  position: relative;
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow.light::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 12.5ch;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 30px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-pill {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 32, 51, 0.08);
  color: var(--text-soft);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.hero-visual {
  position: relative;
  min-height: 720px;
  padding: 88px 24px 112px;
}

.showcase-panel {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(15, 22, 37, 0.96), rgba(28, 39, 60, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  isolation: isolate;
}

.showcase-panel::before,
.showcase-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.showcase-panel::before {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -90px;
  background: radial-gradient(circle, rgba(47, 109, 225, 0.28) 0%, transparent 70%);
}

.showcase-panel::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(201, 164, 104, 0.22) 0%, transparent 72%);
}

.showcase-topline,
.showcase-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.showcase-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
}

.showcase-chip.muted {
  color: rgba(255, 255, 255, 0.72);
}

.vehicle-stage {
  position: relative;
  z-index: 1;
  margin: 22px 0;
  padding: 28px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-copy p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.vehicle-copy strong {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.vehicle-illustration {
  margin: 28px auto 0;
  width: 100%;
  max-width: 420px;
}

.showcase-bottom {
  align-items: stretch;
}

.mini-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mini-card.emphasis {
  background: linear-gradient(135deg, rgba(47, 109, 225, 0.16), rgba(201, 164, 104, 0.14));
}

.mini-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1rem;
}

.mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.mini-label,
.floating-kicker {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 32, 51, 0.08);
  box-shadow: var(--shadow-lg);
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.floating-card-top {
  top: 14px;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 18px;
  max-width: 280px;
}

.section {
  padding: 34px 0 92px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 239, 230, 0.7));
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.centered {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.section h2,
.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-copy p,
.audience-copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.presentation-stack {
  display: grid;
  gap: 18px;
}

.feature-panel {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.panel-icon,
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18, 35, 63, 0.08), rgba(201, 164, 104, 0.18));
  color: var(--navy);
}

.panel-icon svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-panel h3,
.benefit-card h3,
.step-card h3,
.stat-card strong,
.testimonial-card strong {
  margin: 0;
}

.feature-panel p,
.benefit-card p,
.step-card p,
.testimonial-card span {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.steps-grid,
.benefits-grid,
.stats-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.benefit-card,
.stat-card,
.testimonial-card,
.mockup-card {
  border-radius: 28px;
  padding: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.audience-grid.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 5px rgba(47, 109, 225, 0.08);
}

.section-clients .mockup-card,
.section-garages .mockup-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 235, 0.95));
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 32, 51, 0.16);
}

.mockup-screen {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(160deg, #0f1727, #202d43);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mockup-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mockup-head span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.mockup-list {
  display: grid;
  gap: 12px;
}

.mockup-item,
.mockup-note,
.dashboard-line,
.dashboard-stat {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mockup-item.active {
  background: linear-gradient(135deg, rgba(47, 109, 225, 0.2), rgba(201, 164, 104, 0.12));
}

.mockup-item strong,
.dashboard-line strong,
.dashboard-stat strong {
  display: block;
  margin-bottom: 6px;
}

.mockup-item p,
.dashboard-line span,
.dashboard-stat span,
.mockup-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.dashboard-shell {
  display: grid;
  gap: 14px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dashboard-table {
  display: grid;
  gap: 12px;
}

.dashboard-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 35, 63, 0.92), rgba(32, 56, 95, 0.92));
  color: #fff;
}

.dashboard-line em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
}

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

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  color: var(--navy);
}

.stat-card span {
  color: var(--text-soft);
}

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

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(18, 35, 63, 0.08);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 164, 104, 0.22), transparent 34%),
    linear-gradient(140deg, #0f1727, #1a2336 55%, #25344f 100%);
  color: #fff;
  box-shadow: 0 26px 56px rgba(15, 22, 37, 0.22);
}

.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.final-cta p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 70px 0 46px;
  background: linear-gradient(180deg, #101725, #0d1420);
  color: #edf2fb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 28px;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 420px;
  margin: 0;
  color: rgba(237, 242, 251, 0.68);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(237, 242, 251, 0.72);
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .split-section,
  .audience-grid,
  .audience-grid.reverse,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .floating-card-top {
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
  }

  .steps-grid,
  .benefits-grid,
  .stats-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1 1 220px;
  }

  .steps-grid,
  .benefits-grid,
  .stats-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-row {
    grid-template-columns: 1fr;
  }

  .dashboard-line {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-section {
    padding-top: 34px;
  }

  .section {
    padding: 28px 0 68px;
  }

  .showcase-panel,
  .step-card,
  .benefit-card,
  .stat-card,
  .testimonial-card,
  .mockup-card,
  .feature-panel {
    padding: 22px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}
