:root {
  --bg: #f0f2f4;
  --bg-2: #fbfcfc;
  --card: #ffffff;
  --ink: #17212a;
  --muted: #5d6772;
  --accent: #38cc34;
  --accent-2: #00b286;
  --accent-3: #cf202f;
  --dark: #051312;
  --dark-2: #0a1f1a;
  --line: rgba(18, 35, 42, 0.14);
  --line-soft: rgba(240, 250, 247, 0.22);
  --shadow: 0 14px 32px rgba(4, 16, 17, 0.1);
  --header-offset: 122px;
  --footer-green-1: #115b40;
  --footer-green-2: #0f6b4a;
  --footer-green-3: #14975b;
  --footer-green-4: #19a764;
  --footer-green-5: #1db06a;
  --footer-blush: #7e3242;
  --footer-blush-soft: rgba(126, 50, 66, 0.24);
  --footer-fog: #eff5f1;
  --footer-fog-soft: rgba(239, 245, 241, 0.54);
  --main-footer-padding: clamp(28px, 3.2vw, 42px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 18px);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: #03100f;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -10%, rgba(56, 204, 52, 0.16), transparent 40%),
    radial-gradient(circle at 88% -16%, rgba(0, 178, 134, 0.12), transparent 44%),
    linear-gradient(
      180deg,
      #03100f 0,
      #0a2c22 220px,
      #0f4232 560px,
      #d5e5de 940px,
      #d4e6de 62%,
      #c9dfd2 74%,
      #bad6c7 82%,
      #8dbca4 88%,
      #4a9a76 93%,
      #1f7353 97%,
      #0d3d2d 100%
    );
}

.bg-orb {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.32;
  z-index: -1;
}

.orb-1 {
  background: rgba(56, 204, 52, 0.45);
  top: -20vw;
  left: -15vw;
}

.orb-2 {
  background: rgba(207, 32, 47, 0.28);
  top: -22vw;
  right: -18vw;
}

.site-header {
  display: grid;
  gap: 12px;
  padding: 14px 8vw 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(14px);
  background: rgba(5, 19, 18, 0.84);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 10px 24px rgba(1, 8, 8, 0.34);
  z-index: 30;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-header.site-header--top {
  background: linear-gradient(180deg, rgba(3, 12, 11, 0.78), rgba(3, 12, 11, 0.42) 70%, rgba(3, 12, 11, 0));
  border-bottom-color: rgba(185, 217, 208, 0.12);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.site-header.site-header--hidden {
  transform: translateY(calc(-100% - 10px));
  opacity: 0;
  pointer-events: none;
}

.header-top,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-pill {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgba(233, 244, 241, 0.92);
  border: 1px solid rgba(233, 244, 241, 0.24);
  border-radius: 999px;
  padding: 3px 10px;
}

.utility-pill--alert {
  border-color: rgba(207, 32, 47, 0.52);
  color: #ffd8dc;
}

.header-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #072018;
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 6px 20px rgba(56, 204, 52, 0.32);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: #eef7f4;
}

.logo-mark-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(243, 250, 247, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(1, 10, 9, 0.24);
  flex: 0 0 auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: inherit;
  text-wrap: nowrap;
}

.logo-text span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  margin-left: 18px;
  text-decoration: none;
  color: rgba(228, 241, 237, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
  opacity: 0.85;
}

.header-cta:hover {
  filter: brightness(1.04);
}

main {
  position: relative;
  padding: calc(var(--header-offset) + 42px) 8vw var(--main-footer-padding);
  background: transparent;
}

main > * {
  position: relative;
  z-index: 1;
}

main section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-offset) + 18px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 58px clamp(20px, 3vw, 36px) 62px;
  border-radius: 30px;
  border: 1px solid rgba(173, 214, 202, 0.24);
  background:
    radial-gradient(circle at 18% 16%, rgba(88, 231, 134, 0.24), rgba(88, 231, 134, 0.07) 44%, rgba(88, 231, 134, 0) 66%),
    radial-gradient(circle at 84% 20%, rgba(241, 250, 246, 0.18), rgba(241, 250, 246, 0.04) 44%, rgba(241, 250, 246, 0) 68%),
    linear-gradient(140deg, #041914 0%, #0a3d2e 48%, #0f6b4d 100%);
  box-shadow: 0 32px 64px rgba(1, 10, 10, 0.4), inset 0 1px 0 rgba(238, 250, 244, 0.08);
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(88% 84% at 20% 8%, rgba(244, 252, 248, 0.24), rgba(244, 252, 248, 0) 76%);
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(64% 80% at 8% 70%, rgba(56, 204, 52, 0.16), rgba(56, 204, 52, 0) 76%),
    radial-gradient(56% 68% at 94% 52%, rgba(126, 50, 66, 0.14), rgba(126, 50, 66, 0) 76%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  padding: 22px 22px 20px;
  min-width: 0;
  border-radius: 22px;
  border: 1px solid rgba(216, 239, 232, 0.44);
  background: linear-gradient(160deg, rgba(2, 13, 11, 0.9), rgba(7, 34, 27, 0.78));
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: 0 14px 30px rgba(1, 9, 8, 0.4), inset 0 1px 0 rgba(236, 249, 243, 0.16);
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: rgba(184, 214, 205, 0.88);
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  max-width: 19ch;
  margin: 12px 0;
  line-height: 1.08;
  color: #f6fffb;
  text-shadow: 0 10px 26px rgba(2, 8, 7, 0.5), 0 1px 0 rgba(255, 255, 255, 0.12);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.lead {
  font-size: 18px;
  color: rgba(250, 255, 253, 0.98);
  max-width: 520px;
  text-shadow: 0 7px 18px rgba(2, 8, 7, 0.62);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 16px;
}

.hero-badges .badge {
  border-color: rgba(189, 220, 210, 0.28);
  background: rgba(16, 42, 35, 0.62);
  color: rgba(236, 248, 244, 0.94);
}

.hero-badges .badge--orange {
  background: rgba(0, 178, 134, 0.22);
  color: rgba(221, 251, 243, 0.94);
}

.hero-badges .badge--red {
  background: rgba(207, 32, 47, 0.24);
  color: rgba(255, 219, 224, 0.94);
}

.hero-badges .badge--dark {
  background: rgba(230, 246, 240, 0.14);
  color: rgba(236, 248, 244, 0.94);
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #072018;
  box-shadow: 0 16px 38px rgba(56, 204, 52, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(56, 204, 52, 0.42);
}

.btn.ghost {
  border: 1px solid rgba(227, 241, 236, 0.28);
  color: #eef8f4;
  background: rgba(238, 248, 244, 0.08);
}

.btn.ghost:hover {
  background: rgba(238, 248, 244, 0.16);
}

.hero-card {
  background: linear-gradient(150deg, rgba(4, 20, 17, 0.92), rgba(8, 43, 36, 0.78) 74%);
  min-width: 0;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(206, 232, 223, 0.34);
  box-shadow: 0 18px 36px rgba(0, 7, 7, 0.38), inset 0 1px 0 rgba(236, 250, 246, 0.14);
  display: grid;
  gap: 18px;
}

.hero-stat {
  display: grid;
  gap: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(201, 228, 220, 0.82);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-family: "Montserrat", sans-serif;
}

.stat-value {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #f3fffb;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 10px 0 40px;
}

.step-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(6, 16, 17, 0.08);
}

.panel {
  margin-top: 40px;
}

.facts .card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 239, 0.92));
}

.panel-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
  position: relative;
}

.panel-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.panel-header p {
  color: var(--muted);
  margin-top: 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.full-width {
  margin-top: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
}

input,
select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(56, 204, 52, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 204, 52, 0.22);
}

.toggle {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.manual-fields {
  display: grid;
  gap: 12px;
}

.hidden {
  display: none;
}

.helper {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.result-card {
  display: grid;
  gap: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.result-row strong {
  font-weight: 600;
}

.result-em {
  font-size: 20px;
  color: #0d1720;
}

.result-strong {
  font-size: 16px;
}

.bullet {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.product-list {
  display: grid;
  gap: 22px;
}

.product-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
  align-items: end;
}

.filter {
  display: grid;
  gap: 6px;
}

.filter.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 6px;
}

.filter.checkbox input {
  accent-color: var(--accent);
}

.product-section {
  display: grid;
  gap: 12px;
}

.product-section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-section-title h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.product-section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.pager-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.pager-btn--ghost {
  border-style: dashed;
  color: var(--muted);
}

.pager-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.car-summary {
  display: grid;
  gap: 12px;
}

.car-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 239, 0.9));
}

.car-card img,
.car-image-placeholder {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.car-image-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 204, 52, 0.2), rgba(0, 178, 134, 0.18));
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0d1720;
}

.car-meta {
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}

.car-meta strong {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.car-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.car-source {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.car-source:hover {
  color: var(--ink);
}

.car-details {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.car-details summary {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--muted);
  list-style: none;
}

.car-details summary::-webkit-details-marker {
  display: none;
}

.car-details summary::after {
  content: " +";
  font-weight: 600;
}

.car-details[open] summary::after {
  content: " −";
}

.car-details .car-grid {
  margin-top: 12px;
}

.car-detail-sections {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.car-details-full {
  display: grid;
  gap: 16px;
}

.car-details-toggle {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
}

.car-details-toggle summary {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.car-details-full-body {
  margin-top: 14px;
}

.car-detail-table {
  display: grid;
  gap: 8px;
}

.car-detail-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 31, 36, 0.05);
  border: 1px solid rgba(15, 31, 36, 0.12);
  align-items: center;
}

.car-detail-row span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
}

.car-detail-row strong {
  font-size: 14px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}

.car-detail-text {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(56, 204, 52, 0.1);
  border: 1px solid rgba(56, 204, 52, 0.24);
  display: grid;
  gap: 8px;
}

.car-detail-text span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0f6e32;
  font-family: "Montserrat", sans-serif;
}

.car-detail-text p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

.car-detail-section {
  display: grid;
  gap: 8px;
}

.car-detail-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.car-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(56, 204, 52, 0.15);
  color: #0f6e32;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 16px;
  font-size: 13px;
}

.car-stat {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 31, 36, 0.05);
  border: 1px solid rgba(15, 31, 36, 0.12);
}

.car-stat span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: "Montserrat", sans-serif;
}

.car-stat strong {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.car-stat--text {
  grid-column: 1 / -1;
}

.car-stat--text p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.18s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 31, 36, 0.12);
  will-change: transform;
}

.product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 12px;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed rgba(18, 35, 42, 0.2);
  background: linear-gradient(145deg, rgba(244, 250, 248, 0.95), rgba(228, 240, 236, 0.88));
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--muted);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}

.product-card.vool {
  border-color: rgba(23, 108, 184, 0.35);
  box-shadow: 0 12px 28px rgba(23, 108, 184, 0.12);
}

.product-card.vool .product-kicker {
  color: #0b3c6f;
}

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

.product-card.featured {
  border-color: rgba(56, 204, 52, 0.4);
  box-shadow: 0 14px 30px rgba(56, 204, 52, 0.22);
}

.product-card.accessory {
  border-color: rgba(56, 204, 52, 0.32);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  color: #0f6e32;
  margin-bottom: 4px;
}

.product-card.accessory .product-kicker {
  color: #0d5d4b;
}

.product-card h4 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card a {
  text-decoration: none;
  color: var(--ink);
}

.product-meta {
  font-size: 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}

.product-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(56, 204, 52, 0.15);
  color: #0f6e32;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid transparent;
  background: rgba(56, 204, 52, 0.14);
  color: #0f6e32;
}

.badge--orange {
  background: rgba(0, 178, 134, 0.16);
  color: #0d5d4b;
}

.badge--red {
  background: rgba(207, 32, 47, 0.15);
  color: #8e0a12;
}

.badge--vool {
  background: rgba(23, 108, 184, 0.14);
  color: #0b3c6f;
}

.badge--dark {
  background: rgba(15, 31, 36, 0.12);
  color: #122127;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding-top: clamp(52px, 6vw, 74px);
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: #d5e5df;
  border-top: 0;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 10, 0), rgba(2, 12, 10, 0.08) 45%, rgba(2, 12, 10, 0.18));
  pointer-events: none;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand-link {
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

.footer-brand-link:hover {
  opacity: 0.92;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 24px 8vw 24px;
}

.footer-brand h3,
.footer-links h4,
.footer-social h4 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  color: #f2fcf8;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(243, 250, 247, 0.96);
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(2, 12, 10, 0.24);
}

.footer-brand-head h3 {
  margin: 0;
}

.footer-brand p {
  margin: 0;
  color: rgba(214, 232, 225, 0.86);
  max-width: 360px;
}

.footer-contact {
  margin-top: 14px;
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: rgba(214, 232, 225, 0.8);
}

.footer-contact a {
  color: rgba(214, 232, 225, 0.9);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 7px;
  align-content: start;
}

.footer-links a,
.footer-mini-links a {
  color: rgba(214, 232, 225, 0.9);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.footer-mini-links a:hover {
  color: var(--accent);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #f4fffb;
  border: 1px solid rgba(214, 232, 225, 0.35);
  background: rgba(214, 232, 225, 0.08);
}

.social-row a:hover {
  border-color: rgba(56, 204, 52, 0.65);
  color: #bdf6bc;
}

.social-row a.is-disabled {
  opacity: 0.42;
  pointer-events: none;
  cursor: default;
}

.footer-bottom {
  border-top: 1px solid rgba(183, 214, 204, 0.16);
  padding: 14px 8vw 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(214, 232, 225, 0.72);
}

.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.js-animate [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animate [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  :root {
    --main-footer-padding: 24px;
  }

  .site-header {
    padding: 10px 5vw 12px;
    gap: 8px;
  }

  .header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-top {
    display: none;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 12px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    margin-left: 0;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 18px;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 18px 36px;
    border-radius: 22px;
  }

  .hero::before {
    inset: 0;
    opacity: 0.3;
  }

  .hero::after {
    inset: 0;
    opacity: 0.2;
  }

  .hero-text {
    padding: 20px 16px 18px;
    width: 100%;
    background: linear-gradient(156deg, rgba(2, 12, 10, 0.92), rgba(6, 28, 22, 0.82));
    border-color: rgba(202, 231, 221, 0.34);
    backdrop-filter: blur(3px);
  }

  h1 {
    font-size: clamp(27px, 8.4vw, 36px);
    line-height: 1.1;
  }

  .lead {
    font-size: 16px;
  }

  main {
    padding: calc(var(--header-offset) + 28px) 5vw var(--main-footer-padding);
  }

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

  .car-card {
    grid-template-columns: 1fr;
  }

  .car-card img,
  .car-image-placeholder {
    width: 100%;
    height: 180px;
  }

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

  .product-card {
    padding: 10px;
  }

  input,
  select {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 16px;
    gap: 20px;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    transition: none;
  }

  .js-animate [data-animate] {
    transition: none;
  }
}
