:root {
  --bg: #efeee9;
  --surface: #ffffff;
  --surface-soft: #f7f5ef;
  --line: rgba(20, 24, 21, 0.1);
  --line-strong: rgba(20, 24, 21, 0.18);
  --ink: #151914;
  --muted: #62675f;
  --green: #1f5a39;
  --green-deep: #153926;
  --green-soft: #dce8df;
  --gold: #c7a04e;
  --shadow: 0 18px 42px rgba(17, 22, 18, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 90, 57, 0.06), transparent 18%),
    linear-gradient(180deg, #f7f5f0 0%, #ece9e1 100%);
}

body.menu-open,
body.drawer-open,
body.product-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.shell-hero-wide {
  width: 100%;
}

.site-topbar {
  display: none;
}

.topbar-track {
  display: flex;
  gap: 28px;
  width: max-content;
  min-height: 30px;
  align-items: center;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.topbar-track span {
  position: relative;
}

.topbar-track span::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-50%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px) saturate(1.08);
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-header .shell {
  width: min(100% - 84px, 1780px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  overflow: visible;
  position: relative;
  padding: 4px 0;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(178px, 12vw, 212px);
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.45vw, 28px);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav a,
.header-link {
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  font-weight: 750;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(21, 25, 20, 0.82);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link--dropdown::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  opacity: 0.34;
  transform: translateY(-3px) rotate(45deg);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-link {
  color: rgba(21, 25, 20, 0.68);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.site-header .button-primary {
  min-height: 46px;
  padding: 0 25px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(21, 57, 38, 0.58);
  border-radius: 7px;
  box-shadow: none;
}

.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.account-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(21, 25, 20, 0.92);
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.account-button svg {
  width: 25px;
  height: 25px;
}

.account-button:hover,
.account-button:focus-visible {
  color: var(--green);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(21, 25, 20, 0.14);
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(21, 25, 20, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero-section,
.featured-section,
.catalog-section,
.variants-section,
.compare-section,
.faq-section,
.contact-section {
  padding: 54px 0 0;
}

.hero-layout,
.featured-layout,
.variants-layout,
.faq-layout,
.contact-layout {
  display: grid;
  gap: 30px;
}

.hero-section--showroom {
  padding: 0;
}

.hero-showroom--single {
  position: relative;
  min-height: calc(100vh - 76px);
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #0f1212;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
}

.hero-showroom--single::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 148px;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0) 0%, rgba(8, 10, 9, 0.4) 100%);
  pointer-events: none;
}

.hero-showroom-sheen {
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(60, 185, 96, 0.12), transparent 28%),
    linear-gradient(116deg, transparent 0 14%, rgba(60, 185, 96, 0.16) 14.1%, transparent 14.35%, transparent 22%, rgba(60, 185, 96, 0.05) 22.1%, transparent 22.35%),
    linear-gradient(70deg, transparent 0 84%, rgba(60, 185, 96, 0.12) 84.1%, transparent 84.35%);
  opacity: 0.78;
  transform: translate3d(calc(var(--hero-shift-x) * -0.4), calc(var(--hero-shift-y) * -0.4), 0);
  transition: transform 180ms ease-out, opacity 220ms ease;
}

.hero-showroom-image {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 76px);
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.045) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transform-origin: center center;
}

.hero-showroom-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: 72px 72px 132px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 10, 0.82) 0%,
    rgba(8, 10, 10, 0.64) 18%,
    rgba(8, 10, 10, 0.26) 38%,
    rgba(8, 10, 10, 0.02) 62%
  );
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: transform 180ms ease-out;
}

.hero-showroom-overlay .eyebrow,
.hero-showroom-overlay h1,
.hero-showroom-overlay .hero-text {
  position: relative;
  z-index: 1;
}

.hero-showroom-overlay h1 {
  margin: 0;
  max-width: 4.4ch;
  color: #ffffff;
  font-family: "Arial Narrow", "Bahnschrift SemiCondensed", "Impact", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(4.1rem, 7vw, 7.25rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-showroom-overlay h1 span {
  display: block;
}

.hero-showroom-overlay .hero-text {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.66;
}

.hero-showroom-overlay .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-showroom-overlay .button-primary {
  box-shadow: 0 18px 34px rgba(11, 31, 20, 0.26);
}

.hero-showroom-overlay .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-benefits--band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 26px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(21, 25, 20, 0.08);
  backdrop-filter: blur(12px);
  transform: translate3d(calc(var(--hero-copy-x) * 0.35), 0, 0);
  transition: transform 180ms ease-out;
}

/* Hero slider refresh inspired by Kayen's motion language */
.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide .hero-showroom-image {
  transition:
    transform 0.75s ease,
    filter 0.75s ease,
    opacity 0.75s ease;
}

.hero-slide.is-active .hero-showroom-image {
  filter: saturate(1.02) contrast(1.02);
}

.hero-showroom-copy {
  display: grid;
  gap: 14px;
  max-width: 32rem;
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-showroom-overlay--promo {
  background: linear-gradient(
    90deg,
    rgba(45, 12, 21, 0.6) 0%,
    rgba(32, 9, 16, 0.34) 20%,
    rgba(14, 8, 10, 0.04) 54%,
    rgba(14, 8, 10, 0) 100%
  );
}

.hero-slide-stage {
  position: absolute;
  inset: 0;
}

.hero-slide--promo {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(90deg, #151517 0%, #1d1718 28%, #241618 62%, #181416 100%);
}

.hero-slide--promo .hero-showroom-image,
.hero-slide--promo .hero-showroom-overlay {
  display: none;
}

.hero-slide-stage--promo {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 22px;
  padding: 86px 78px 132px;
}

.hero-promo-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  max-width: 34rem;
}

.hero-promo-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Narrow", "Bahnschrift SemiCondensed", "Impact", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(3.05rem, 5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-promo-copy h2 span {
  display: block;
}

.hero-promo-copy .hero-text {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-promo-button {
  justify-self: start;
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3c7e, #e40046);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(106, 8, 36, 0.26);
}

.hero-promo-media {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.hero-promo-media::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: min(620px, 48vw);
  height: min(620px, 24vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 169, 181, 0.38) 0%, rgba(255, 169, 181, 0.1) 38%, rgba(255, 169, 181, 0) 72%);
  transform: translateX(-50%);
  filter: blur(16px);
}

.hero-promo-image {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 220px);
  object-fit: contain;
  object-position: center right;
  display: block;
  transform: translate3d(calc(var(--hero-shift-x) * 0.8), calc(var(--hero-shift-y) * 0.8), 0);
  transition: transform 0.22s ease-out;
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 12, 12, 0.24);
  color: #ffffff;
  font-size: 2rem;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hero-slider-nav:hover,
.hero-slider-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.12);
}

.hero-slider-nav--prev {
  left: 22px;
}

.hero-slider-nav--next {
  right: 22px;
}

.hero-slider-dots {
  position: absolute;
  left: 72px;
  bottom: 98px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-slider-dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-slider-dot.is-active {
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-slide-stage--promo {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 90px 22px 132px;
  }

  .hero-promo-copy {
    max-width: 30rem;
  }

  .hero-promo-copy h2 {
    font-size: clamp(2.35rem, 8vw, 4rem);
    line-height: 0.96;
  }

  .hero-promo-copy .hero-text {
    max-width: 28rem;
    font-size: 0.94rem;
  }

  .hero-promo-media {
    min-height: 300px;
  }

  .hero-promo-image {
    width: min(100%, 760px);
    max-height: 42vh;
  }

  .hero-slider-dots {
    left: 22px;
    bottom: 86px;
  }
}

@media (max-width: 640px) {
  .hero-slider-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .hero-slider-nav--prev {
    left: 12px;
  }

  .hero-slider-nav--next {
    right: 12px;
  }

  .hero-slide-stage--promo {
    padding: 84px 16px 126px;
  }

  .hero-promo-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-promo-button {
    width: 100%;
    justify-content: center;
  }
}

.hero-benefits--band article {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-right: 1px solid rgba(21, 25, 20, 0.1);
}

.hero-benefits--band article:last-child {
  border-right: none;
}

.hero-benefits--band strong {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow-light {
  color: rgba(236, 243, 238, 0.78);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-copy,
.hero-card,
.featured-copy,
.featured-stage,
.product-card,
.variants-copy,
.variant-card,
.compare-table-wrap,
.faq-copy,
.faq-list details,
.contact-copy,
.contact-card,
.site-footer {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  gap: 24px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 56px rgba(17, 22, 18, 0.06);
}

.hero-copy h1,
.featured-copy h2,
.section-header h2,
.variants-copy h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-text,
.section-text,
.product-specs li,
.faq-list p,
.contact-card p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.featured-actions,
.toolbar-actions,
.drawer-actions,
.footer-row,
.footer-links,
.hero-points,
.hero-side,
.featured-swatches,
.product-grid,
.variants-grid,
.contact-cards {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-points article {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.hero-points strong,
.spec-pill strong,
.small-label,
.product-price,
.contact-card strong {
  font-weight: 800;
}

.hero-points span,
.spec-pill span,
.card-kicker,
.small-label,
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.featured-stage {
  padding: 24px;
  border-radius: calc(var(--radius-lg) + 4px);
}

.hero-card {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 238, 0.96)),
    var(--surface);
}

.hero-badge,
.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badge {
  justify-self: start;
  background: rgba(21, 57, 38, 0.08);
  color: var(--green);
}

.hero-image {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: contain;
  object-position: center;
}

.hero-card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.card-kicker {
  margin: 0 0 6px;
  color: var(--green);
}

.hero-card-info h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.05;
}

.hero-price {
  text-align: right;
}

.hero-price span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-price strong {
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-side {
  align-content: start;
}

.spec-pill {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: var(--shadow);
}

.spec-pill span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.featured-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.catalog-section--lead {
  padding: 54px 0 74px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 244, 240, 0.98)),
    #f6f4ee;
  border-top: 1px solid rgba(20, 24, 21, 0.08);
  border-bottom: 1px solid rgba(20, 24, 21, 0.08);
}

.catalog-section--lead .shell,
.benefits-strip .shell {
  width: min(1520px, calc(100% - 64px));
}

.section-header-catalog {
  align-items: end;
  margin-bottom: 28px;
}

.section-header-catalog--simple {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-header-catalog--simple > * {
  max-width: 860px;
}

.section-header-catalog--simple h2 {
  max-width: none;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: none;
}

.section-header-catalog--simple .eyebrow {
  color: var(--green);
  letter-spacing: 0.12em;
}

.section-header-catalog--simple .section-text {
  max-width: 52rem;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  text-wrap: balance;
}

.lineup-showcase {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.lineup-stage {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 620px) 1fr;
  align-items: end;
  justify-items: center;
}

.lineup-vehicle {
  border: 0;
  padding: 0;
  background: transparent;
}

.lineup-vehicle img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lineup-vehicle--side {
  width: min(100%, 350px);
  align-self: center;
  opacity: 0.54;
  filter: blur(1px);
  transform: translateY(34px) scale(0.82);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lineup-vehicle--side:hover {
  opacity: 0.7;
}

.lineup-vehicle--left {
  justify-self: start;
}

.lineup-vehicle--right {
  justify-self: end;
}

.lineup-vehicle--active {
  width: min(100%, 620px);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.lineup-vehicle--active img {
  filter: drop-shadow(0 26px 28px rgba(17, 22, 18, 0.16));
}

.lineup-nav {
  position: absolute;
  top: 46%;
  z-index: 3;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(17, 22, 18, 0.08);
  color: #111612;
  font-size: 1.8rem;
}

.lineup-nav--prev {
  left: -20px;
}

.lineup-nav--next {
  right: -20px;
}

.lineup-info {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: -6px;
}

.lineup-info-accent {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.lineup-info h3 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lineup-info p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.lineup-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lineup-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 25, 20, 0.18);
}

.lineup-dot.is-active {
  width: 22px;
  background: var(--green);
}

.lineup-specs {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 25, 20, 0.06);
  box-shadow: 0 18px 36px rgba(17, 22, 18, 0.06);
}

.lineup-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(21, 25, 20, 0.08);
}

.lineup-spec-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--green);
  border: 1.5px solid rgba(31, 90, 57, 0.42);
  background: rgba(31, 90, 57, 0.03);
}

.lineup-spec-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.lineup-spec-copy {
  display: grid;
  gap: 2px;
}

.lineup-spec-label {
  color: #111612;
  font-size: 0.9rem;
  font-weight: 500;
}

.lineup-spec-value {
  color: #111612;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-grid--data-source {
  display: none !important;
}

.featured-highlight {
  padding: 46px 0 24px;
}

.featured-highlight-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  grid-template-areas: "copy media";
  gap: clamp(12px, 1.8vw, 32px);
  align-items: center;
  min-height: 736px;
  padding: clamp(40px, 5vw, 76px) clamp(42px, 5vw, 84px) clamp(40px, 5vw, 76px) clamp(52px, 6vw, 92px);
  padding-right: clamp(300px, 22vw, 368px);
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(150deg, transparent 0 38%, rgba(21, 25, 20, 0.035) 38% 62%, transparent 62% 100%),
    linear-gradient(350deg, transparent 0 58%, rgba(21, 25, 20, 0.045) 58% 76%, transparent 76% 100%),
    radial-gradient(circle at 65% 58%, rgba(17, 22, 18, 0.06), transparent 34%),
    #f7f7f5;
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 26px 56px rgba(17, 22, 18, 0.08);
}

.featured-highlight-card::before,
.featured-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.featured-highlight-card::before {
  background:
    linear-gradient(112deg, transparent 0 45%, rgba(255, 255, 255, 0.72) 45% 47%, transparent 47%),
    linear-gradient(18deg, transparent 0 70%, rgba(255, 255, 255, 0.58) 70% 72%, transparent 72%);
}

.featured-highlight-card::after {
  background: linear-gradient(90deg, rgba(247, 247, 245, 0.96) 0%, rgba(247, 247, 245, 0.72) 27%, rgba(247, 247, 245, 0.08) 52%, rgba(247, 247, 245, 0.86) 100%);
  opacity: 0.58;
}

.featured-highlight-media {
  grid-area: media;
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  place-items: center;
  margin: 0 -18px 0 -30px;
}

.featured-highlight-media::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 8%;
  bottom: 48px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(8, 12, 10, 0.18), rgba(8, 12, 10, 0) 70%);
  filter: blur(7px);
  transform: skewX(-10deg);
}

.featured-highlight-media img {
  position: relative;
  z-index: 1;
  width: min(900px, 122%);
  max-height: 700px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 34px 26px rgba(8, 16, 12, 0.2));
  transform: scale(1.04) translateX(-8px) translateY(8px);
}

.featured-highlight-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  color: var(--ink);
}

.featured-highlight-copy h2 {
  margin: 0;
  font-family: "Impact", "Arial Black", "Bahnschrift Condensed", sans-serif;
  font-size: clamp(5rem, 9vw, 9.5rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
  color: #050606;
}

.featured-highlight-copy h2 span {
  color: #e0162b;
}

.featured-highlight-text {
  margin: 0;
  max-width: 25rem;
  color: #090b0a;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2.05rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.featured-highlight-text span {
  color: #e0162b;
}

.featured-highlight-specs {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 355px;
  padding-top: 14px;
  border-top: 1px solid rgba(21, 25, 20, 0.12);
}

.featured-highlight-specs article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 6px 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(21, 25, 20, 0.12);
}

.featured-highlight-specs strong {
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  font-weight: 800;
  line-height: 1;
  color: #080a09;
}

.featured-highlight-specs article > span:not(.featured-spec-icon) {
  grid-column: 2;
  color: rgba(21, 25, 20, 0.82);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.featured-spec-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  position: relative;
  color: #e0162b;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.featured-spec-icon::before,
.featured-spec-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.featured-spec-icon--battery {
  border-radius: 9px;
}

.featured-spec-icon--battery::before {
  inset: 8px 13px;
  border-radius: 2px;
}

.featured-spec-icon--battery::after {
  top: -8px;
  right: 11px;
  bottom: auto;
  left: 11px;
  height: 5px;
  border: none;
  border-radius: 3px;
  background: currentColor;
}

.featured-spec-icon--speed {
  border-bottom-color: transparent;
  transform: rotate(-8deg);
}

.featured-spec-icon--speed::before {
  inset: auto auto 8px 18px;
  width: 16px;
  height: 2px;
  border: none;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-38deg);
  transform-origin: left center;
}

.featured-spec-icon--speed::after {
  display: none;
}

.featured-spec-icon--load {
  border-radius: 7px;
}

.featured-spec-icon--load::before {
  inset: -12px 10px auto;
  height: 18px;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.featured-spec-icon--load::after {
  display: none;
}

.featured-highlight-actions {
  position: absolute;
  top: 50%;
  right: clamp(30px, 4vw, 52px);
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: 20px;
  width: min(270px, calc(100% - 84px));
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.featured-highlight-price {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
  width: auto;
}

.featured-highlight-price span {
  color: #070908;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.featured-highlight-price strong {
  font-family: "Impact", "Arial Black", "Bahnschrift Condensed", sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #e0162b;
}

.featured-highlight-price em {
  color: #070908;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  font-style: italic;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.featured-highlight-actions .button-primary {
  min-height: 46px;
  width: auto;
  padding-inline: 22px;
  color: #ffffff;
  background: #111614;
  border-color: #111614;
  border-radius: 4px;
  white-space: nowrap;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-icon--whatsapp {
  color: #25d366;
}

.benefits-strip {
  padding: 28px 0 0;
}

.benefits-strip-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 46px);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(31, 90, 57, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 241, 0.98));
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 22px 48px rgba(17, 22, 18, 0.07);
}

.benefits-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 40%, rgba(31, 90, 57, 0.04));
  pointer-events: none;
}

.benefits-strip-head,
.benefits-strip-grid {
  position: relative;
  z-index: 1;
}

.benefits-strip-head {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.benefits-strip-head h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: none;
}

.benefits-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-item {
  display: grid;
  gap: 14px;
  justify-items: start;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border-radius: 999px;
  background: rgba(31, 90, 57, 0.08);
  border: 1px solid rgba(31, 90, 57, 0.1);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-item strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.featured-copy,
.variants-copy,
.faq-copy,
.contact-copy {
  padding: 34px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
}

.featured-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.featured-price-row > div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.small-label,
.contact-label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.featured-price-row strong {
  font-size: 1.3rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.featured-stage {
  display: grid;
  gap: 18px;
}

.featured-image-frame {
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f5f1 100%);
  border: 1px solid rgba(21, 25, 20, 0.08);
}

.featured-image-frame img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.featured-swatches {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swatch-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 12px;
  background: var(--surface-soft);
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: var(--radius-md);
}

.swatch-card.is-active {
  border-color: rgba(21, 57, 38, 0.28);
  background: #eff4f0;
}

.swatch-card strong {
  font-size: 0.9rem;
}

.swatch-tone {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(21, 25, 20, 0.08);
}

.swatch-red {
  background: #b4332f;
}

.swatch-black {
  background: #181818;
}

.swatch-pink {
  background: #d78bad;
}

.swatch-graphite {
  background: #30363a;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.section-header > * {
  max-width: 720px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 0 0 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.quick-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(21, 25, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-tab.is-active {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.toolbar-actions {
  grid-auto-flow: column;
  align-items: end;
}

.sort-control {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sort-control select,
.drawer-group input,
.drawer-group select {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(21, 25, 20, 0.12);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 28px;
}

.product-card {
  display: grid;
  gap: 16px;
  overflow: visible;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.24s ease;
}

.status-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: #ffffff;
  background: var(--green-deep);
  border: none;
  border-radius: 999px;
  min-height: 28px;
  padding: 0 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card {
  position: relative;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
}

.status-tag-olive {
  background: #ecf3ec;
  color: var(--green);
}

.status-tag-soft {
  background: #f6efe2;
  color: #8b6325;
}

.status-tag-gold {
  background: #f4ead1;
  color: #8b6325;
}

.product-media {
  aspect-ratio: 1.02 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  padding: 32px 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 242, 0.98)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.96) 0%, rgba(236, 240, 236, 0.96) 48%, rgba(226, 231, 225, 0.98) 100%);
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.product-media::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 15%;
  height: 1px;
  background: rgba(21, 25, 20, 0.08);
}

.product-media::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 11%;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 16, 14, 0.14) 0%, rgba(12, 16, 14, 0) 72%);
  filter: blur(11px);
  opacity: 0.7;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: min(98%, 540px);
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.04);
  transition: transform 0.28s ease;
}

.product-card:hover .product-media,
.product-card:focus-within .product-media {
  border-color: rgba(21, 57, 38, 0.18);
  box-shadow: 0 26px 52px rgba(17, 22, 18, 0.1);
  transform: translateY(-6px);
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: translateY(-2px) scale(1.01);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 0 6px;
  background: transparent;
}

.product-type {
  display: inline-flex;
  color: rgba(21, 25, 20, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 1.7vw, 1.95rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.product-body-top,
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-copy {
  display: grid;
  gap: 8px;
}

.product-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-availability {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-status--olive {
  color: var(--green);
  background: #ecf3ec;
}

.product-status--soft {
  color: #8b6325;
  background: #f6efe2;
}

.faq-section--compact {
  padding: 42px 0 0;
}

.faq-compact-card {
  padding: 28px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 18px 38px rgba(17, 22, 18, 0.06);
}

.faq-compact-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.faq-compact-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.faq-compact-list {
  display: grid;
  gap: 12px;
}

.faq-compact-list details {
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  padding: 0;
}

.faq-compact-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-size: 1rem;
  font-weight: 700;
}

.faq-compact-list summary::-webkit-details-marker {
  display: none;
}

.faq-compact-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-compact-list details[open] summary::after {
  content: "-";
}

.faq-compact-list p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.product-price,
.product-specs,
.product-body .button {
  display: none;
}

.product-card::after {
  content: none;
}

.product-price {
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-link::after {
  content: "\2192";
  font-size: 0.95rem;
  line-height: 1;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.variants-layout {
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
}

.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(9, 12, 10, 0.3);
  backdrop-filter: blur(6px);
}

.product-panel {
  position: fixed;
  inset: 0;
  z-index: 61;
  width: 100vw;
  height: 100dvh;
  background: linear-gradient(180deg, #faf9f5 0%, #ebe7df 100%);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    visibility 0.26s ease;
}

.product-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-panel-shell {
  width: min(1540px, calc(100% - 42px));
  margin: 0 auto;
  padding: 0 0 42px;
}

.product-panel-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: 18px 0 18px;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 25, 20, 0.07);
}

.product-panel-return {
  justify-self: start;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(21, 25, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-panel-brand {
  justify-self: center;
}

.product-panel-brand img {
  width: 196px;
  max-width: 100%;
  height: auto;
}

.product-panel-close {
  justify-self: end;
}

.product-showroom {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  gap: 54px;
  align-items: start;
}

.product-panel-stage {
  display: grid;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-panel-stage-media {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.95) 0%, rgba(241, 243, 239, 0.94) 34%, rgba(229, 234, 229, 0.98) 100%);
  border: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 18px 42px rgba(17, 22, 18, 0.06);
}

.product-panel-stage-media img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.03);
}

.product-panel-swatches-wrap {
  display: grid;
  gap: 14px;
}

.product-panel-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 18px 0 0;
}

.product-panel-copy-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.product-panel-copy-head h2 {
  margin: 10px 0 0;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 4.4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-panel-copy-head .status-tag {
  position: static;
  flex-shrink: 0;
  border-radius: 999px;
}

.product-panel-summary {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.72;
}

.product-panel-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-panel-meta > div {
  padding: 16px 0 14px;
  border-top: 1px solid rgba(21, 25, 20, 0.1);
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  border-left: none;
  border-right: none;
  border-radius: 0;
  background: transparent;
}

.product-panel-meta strong {
  display: block;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.62rem;
  line-height: 1.1;
}

.product-panel-availability {
  min-height: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--green-deep);
  text-transform: none;
}

.product-panel-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-swatch {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0;
  box-shadow: none;
}

.product-swatch-dot {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--swatch-color, #d8ddd8);
  box-shadow: inset 0 0 0 1px rgba(17, 22, 18, 0.14);
  flex-shrink: 0;
}

.product-swatch-label {
  display: none;
}

.product-swatch.is-active {
  border-color: var(--green-deep);
  background: transparent;
  box-shadow: 0 0 0 3px rgba(31, 90, 57, 0.14);
}

.product-panel-specs {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.68;
  border-top: 1px solid rgba(21, 25, 20, 0.1);
}

.product-panel-specs li {
  padding: 15px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
}

.product-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.product-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.variants-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.variant-card {
  padding: 18px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 14px;
}

.variant-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
}

.variant-card strong,
.variant-card span {
  display: block;
}

.variant-card span {
  color: var(--muted);
  margin-top: 4px;
}

.compare-table-wrap {
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  text-align: left;
}

.compare-table th {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.faq-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius-md);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding-top: 14px;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(17, 22, 18, 0.08);
}

.contact-mini-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.contact-mini-social {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(21, 25, 20, 0.04);
}

.contact-mini-social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.site-footer {
  margin-top: 72px;
  padding: 0 0 18px;
  color: #f2efe8;
  background:
    radial-gradient(circle at top right, rgba(31, 90, 57, 0.12), transparent 22%),
    linear-gradient(180deg, #101512 0%, #0a0f0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-frame {
  padding: 34px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid-compact {
  padding: 0;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 224px;
}

.footer-mark-image {
  width: 100%;
  height: auto;
  display: block;
}

.footer-note {
  max-width: 260px;
  color: rgba(242, 239, 232, 0.56);
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.footer-social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-social-icon--instagram img {
  width: 19px;
  height: 19px;
  border-radius: 6px;
}

.footer-column a,
.footer-contact p {
  color: rgba(242, 239, 232, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-contact {
  gap: 14px;
}

.footer-contact-link,
.footer-contact-meta {
  display: grid;
  gap: 4px;
}

.footer-contact-link span,
.footer-contact-meta span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.48);
}

.footer-contact-link strong,
.footer-contact-meta strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.44);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 16px 28px rgba(21, 57, 38, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
}

.floating-whatsapp-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  color: #ffffff;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(15, 20, 17, 0.44);
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 39;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 26px 24px 30px;
  background: #f9f7f2;
  border-left: 1px solid rgba(21, 25, 20, 0.1);
  box-shadow: -24px 0 40px rgba(16, 22, 18, 0.15);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.filter-drawer.is-open {
  transform: translateX(0);
}

.filter-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-drawer-head h2 {
  margin: 8px 0 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 25, 20, 0.12);
  border-radius: 999px;
  background: #ffffff;
  font-size: 1.1rem;
}

.drawer-group {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(21, 25, 20, 0.08);
}

.drawer-label,
.drawer-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.drawer-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.drawer-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-deep);
}

.drawer-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

@media (max-width: 1160px) {
  .hero-layout,
  .featured-layout,
  .variants-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-showroom {
    grid-template-columns: 1fr;
  }

  .featured-highlight-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "price";
    gap: 26px;
    min-height: auto;
  }

  .featured-highlight-specs {
    max-width: none;
  }

  .featured-highlight-media {
    min-height: 470px;
    margin: 0;
  }

  .featured-highlight-media img {
    width: min(760px, 106%);
    transform: scale(1.03);
  }

  .featured-highlight-actions {
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    justify-items: start;
  }

  .featured-highlight-price {
    justify-items: start;
    text-align: left;
  }

  .benefits-strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefits-strip-card {
    grid-template-columns: 1fr;
  }

  .benefits-strip-head h2 {
    max-width: none;
  }

  .benefit-item {
    min-height: 0;
  }

  .hero-showroom--single {
    min-height: 620px;
  }

  .hero-showroom-image {
    min-height: 620px;
  }

  .hero-benefits--band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .variants-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 920px) {
  .site-header .shell {
    width: min(100% - 32px, 100%);
  }

  .header-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
  }

  .brand {
    width: auto;
    height: auto;
  }

  .brand-logo {
    width: 196px;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 22px;
    background: rgba(249, 247, 242, 0.98);
    border: 1px solid rgba(21, 25, 20, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: grid;
    justify-items: start;
  }

  .header-actions .header-link,
  .header-actions .account-button,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-showroom--single {
    min-height: 620px;
    border-radius: 0;
  }

  .hero-showroom-image {
    min-height: 620px;
    object-position: 78% center;
  }

  .hero-showroom-overlay {
    align-content: end;
    padding: 42px 34px 112px;
  }

  .hero-showroom-overlay h1 {
    max-width: 4.8ch;
    font-size: clamp(3.3rem, 10vw, 5rem);
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-highlight-actions {
    flex-direction: column;
    align-items: start;
  }

  .toolbar-actions {
    grid-auto-flow: row;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 100%);
  }

  .shell-hero-wide {
    width: 100%;
  }

  .brand {
    width: auto;
    height: auto;
  }

  .brand-logo {
    width: 178px;
  }

  .hero-copy,
  .featured-copy,
  .featured-stage,
  .variants-copy,
  .faq-copy,
  .contact-copy,
  .contact-card,
  .compare-table-wrap {
    padding: 22px;
  }

  .footer-frame {
    padding: 22px 0 0;
  }

  .featured-highlight-card,
  .benefits-strip-card,
  .faq-compact-card {
    padding: 22px;
  }

  .hero-copy h1,
  .featured-copy h2,
  .section-header h2,
  .variants-copy h2,
  .faq-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-actions,
  .hero-points,
  .featured-price-row,
  .drawer-actions {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .variants-grid,
  .contact-cards,
  .hero-benefits--band {
    grid-template-columns: 1fr;
  }

  .catalog-section--lead .shell,
  .benefits-strip .shell {
    width: min(100% - 28px, 100%);
  }

  .catalog-section--lead {
    padding: 34px 0 46px;
  }

  .product-media {
    aspect-ratio: 1.08 / 1;
  }

  .featured-highlight-card,
  .benefits-strip-grid,
  .featured-highlight-specs {
    grid-template-columns: 1fr;
  }

  .featured-highlight-copy h2 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .featured-highlight-text {
    font-size: clamp(1.1rem, 6vw, 1.55rem);
  }

  .featured-highlight-specs article {
    grid-template-columns: 50px 1fr;
    gap: 6px 16px;
  }

  .featured-highlight-price em {
    text-align: left;
  }

  .product-panel-meta {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 30px;
  }

  .product-body {
    gap: 10px;
    padding: 0 2px;
  }

  .product-body-top,
  .product-card-footer {
    align-items: start;
    flex-direction: column;
  }

  .hero-image {
    height: 300px;
  }

  .featured-image-frame {
    min-height: 320px;
  }

  .product-panel-shell {
    padding: 20px;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: 560px;
  }

  .hero-showroom-overlay {
    gap: 14px;
    padding: 30px 22px 122px;
    background: linear-gradient(
      180deg,
        rgba(10, 14, 12, 0.14) 0%,
        rgba(10, 14, 12, 0.28) 42%,
        rgba(10, 14, 12, 0.72) 100%
      );
  }

  .hero-showroom-overlay h1 {
    max-width: 4.9ch;
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .hero-showroom-overlay .hero-text {
    max-width: 21rem;
    font-size: 0.94rem;
  }

  .hero-showroom-overlay .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-showroom-overlay .button {
    width: 100%;
  }

  .hero-benefits--band {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 16px;
  }

  .product-panel-shell {
    width: min(100% - 28px, 100%);
    padding: 14px 0 28px;
  }

  .product-panel-head {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 0 16px;
  }

  .product-panel-brand {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .product-panel-brand img {
    width: 194px;
  }

  .product-panel-return {
    order: 2;
    justify-self: start;
  }

  .product-panel-close {
    order: 1;
  }

  .product-panel-stage-media {
    min-height: 360px;
    padding: 18px;
  }

  .product-panel-copy {
    padding: 0;
  }

  .product-panel-copy-head {
    flex-direction: column;
    align-items: start;
  }

  .product-panel-copy-head h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-location-frame {
    height: 216px;
  }

  .featured-highlight-media {
    min-height: 300px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* Product detail: clean showroom layout with centered vehicle and swatches rail. */
.product-panel {
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.96), rgba(239, 236, 228, 0.98)),
    #f2eee5;
}

.product-panel-shell {
  width: min(1840px, calc(100% - 22px));
  padding-bottom: 18px;
}

.product-panel-head {
  margin-bottom: 0;
  padding: 14px 0 18px;
  background: rgba(250, 249, 245, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
}

.product-panel-return,
.product-panel-close {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(21, 25, 20, 0.14);
}

.product-showroom {
  min-height: calc(100dvh - 122px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.52fr);
  grid-template-areas:
    "stage copy"
    "specs copy";
  gap: clamp(22px, 2vw, 34px);
  align-items: start;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(18, 23, 19, 0.08);
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
    url("assets/backgrounds/product-detail-bg.png") center / cover no-repeat;
  box-shadow: 0 28px 72px rgba(17, 22, 18, 0.08);
}

.product-showroom::before,
.product-showroom::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-showroom::before {
  inset: 0;
  background:
    radial-gradient(circle at 38% 48%, rgba(255, 255, 255, 0.58), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.36), transparent 34%);
}

.product-showroom::after {
  left: 18%;
  right: 26%;
  bottom: 8%;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(16, 20, 18, 0.16), rgba(16, 20, 18, 0) 72%);
  filter: blur(18px);
  opacity: 0.7;
}

.product-panel-stage,
.product-panel-copy,
.product-panel-specs,
.product-panel-rail {
  position: relative;
  z-index: 1;
}

.product-panel-stage {
  grid-area: stage;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: clamp(460px, 62vh, 760px);
}

.product-panel-stage-media {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-panel-stage-media img {
  width: min(100%, 900px);
  max-height: min(72vh, 760px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.03) drop-shadow(0 28px 26px rgba(17, 22, 18, 0.16));
  transform: scale(1.04);
}

.product-panel-rail {
  position: absolute;
  top: clamp(92px, 11vh, 128px);
  right: clamp(340px, 22vw, 420px);
  z-index: 2;
  width: auto;
  pointer-events: none;
}

.product-panel-swatches-wrap {
  display: grid;
  gap: 12px;
  pointer-events: auto;
}

.product-panel-swatches-wrap .small-label {
  display: none;
}

.product-panel-swatches {
  display: grid;
  gap: 10px;
}

.product-swatch {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.12), 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.product-swatch-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--swatch-color, #d7ddd8);
}

.product-swatch-label {
  display: none;
}

.product-swatch.is-active {
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.14), 0 0 0 5px rgba(255, 255, 255, 0.9), 0 0 0 8px rgba(226, 24, 45, 0.9);
}

.product-panel-copy {
  grid-area: copy;
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 18px 0 0;
}

.product-panel-copy-head {
  display: grid;
  gap: 14px;
}

.product-panel-copy-head h2 {
  margin: 6px 0 0;
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: #070907;
}

.product-panel-copy .eyebrow {
  color: rgba(17, 22, 18, 0.64);
  letter-spacing: 0.2em;
}

.product-panel-copy-head .status-tag {
  position: static;
  justify-self: start;
  background: #163f2b;
  color: #ffffff;
}

.product-panel-summary {
  max-width: 18rem;
  margin: 0;
  color: #151914;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 600;
  line-height: 1.58;
  text-transform: none;
}

.product-panel-summary::first-letter {
  color: inherit;
}

.product-panel-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-panel-meta > div {
  padding: 0;
  border: 0;
}

.product-panel-meta .small-label {
  color: rgba(17, 22, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-panel-meta strong {
  margin-top: 8px;
  display: block;
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(3.1rem, 4.8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #e2182d;
}

.product-panel-meta > div:nth-child(2) strong {
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: 0;
  color: #111612;
}

.product-panel-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-panel-actions .button {
  width: 100%;
  border-radius: 8px;
}

.product-panel-actions .button-secondary {
  display: none;
}

.product-panel-specs {
  grid-area: specs;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 920px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-panel-specs li {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(21, 25, 20, 0.08);
  color: #141914;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-panel-specs li::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #e2182d;
}

@media (max-width: 1280px) {
  .product-showroom {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  }

  .product-panel-rail {
    right: 300px;
  }

  .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .product-showroom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "specs";
    min-height: auto;
  }

  .product-panel-copy {
    padding-top: 0;
  }

  .product-panel-stage {
    min-height: 420px;
  }

  .product-panel-rail {
    position: absolute;
    top: auto;
    right: 18px;
    bottom: max(180px, 22%);
  }

  .product-panel-copy-head h2 {
    font-size: clamp(3.8rem, 14vw, 6.6rem);
  }

  .product-panel-summary {
    max-width: 32rem;
  }
}

@media (max-width: 680px) {
  .product-panel-shell {
    width: min(100% - 14px, 100%);
  }

  .product-showroom {
    padding: 22px 18px 26px;
    border-radius: 0 0 18px 18px;
  }

  .product-panel-stage {
    min-height: 320px;
  }

  .product-panel-stage-media img {
    width: min(100%, 620px);
    max-height: 420px;
    transform: scale(1.01);
  }

  .product-panel-rail {
    position: static;
    order: 4;
    width: 100%;
    margin-top: -4px;
  }

  .product-panel-swatches-wrap {
    justify-content: start;
  }

  .product-panel-swatches {
    grid-auto-flow: column;
    justify-content: start;
  }

  .product-panel-summary {
    font-size: 1rem;
  }

  .product-panel-meta strong {
    font-size: 3.1rem;
  }

  .product-panel-specs {
    grid-template-columns: 1fr;
  }
}

/* Product detail override: centered vehicle, color squares on the side, copy below. */
.product-panel-head {
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}

.product-panel-brand {
  display: none;
}

.product-showroom {
  grid-template-columns: 1fr;
  grid-template-areas:
    "stage"
    "copy"
    "specs";
  min-height: auto;
  gap: 24px;
  padding: clamp(28px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.58)),
    url("assets/backgrounds/product-detail-bg.png") center / cover no-repeat;
}

.product-showroom::after {
  left: 24%;
  right: 24%;
  bottom: 20%;
  height: 68px;
}

.product-panel-stage {
  min-height: clamp(420px, 58vh, 680px);
}

.product-panel-stage-media img {
  width: min(100%, 860px);
  max-height: min(66vh, 660px);
  transform: scale(1.02);
}

.product-panel-rail {
  position: absolute;
  top: 21%;
  right: clamp(20px, 3vw, 42px);
}

.product-panel-swatches {
  gap: 12px;
}

.product-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.12), 0 0 0 4px rgba(255, 255, 255, 0.88);
}

.product-swatch-dot {
  border-radius: 4px;
}

.product-swatch.is-active {
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.14), 0 0 0 4px rgba(255, 255, 255, 0.94), 0 0 0 7px rgba(226, 24, 45, 0.82);
}

.product-panel-copy {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  grid-template-areas:
    "head meta"
    "summary actions";
  gap: 18px 28px;
  align-items: start;
  max-width: 1080px;
  padding: 0;
}

.product-panel-copy-head {
  grid-area: head;
  gap: 10px;
}

.product-panel-copy-head h2 {
  margin-top: 4px;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: none;
}

.product-panel-copy .eyebrow {
  color: rgba(17, 22, 18, 0.58);
  letter-spacing: 0.16em;
}

.product-panel-copy-head .status-tag {
  position: static;
  justify-self: start;
}

.product-panel-summary {
  grid-area: summary;
  max-width: 42rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
}

.product-panel-meta {
  grid-area: meta;
  align-self: start;
}

.product-panel-meta .small-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.product-panel-meta strong {
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
}

.product-panel-meta > div:nth-child(2) strong {
  font-size: 1.25rem;
}

.product-panel-actions {
  grid-area: actions;
  justify-self: start;
  width: min(100%, 280px);
}

.product-panel-actions .button {
  border-radius: 6px;
}

.product-panel-specs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1080px);
  gap: 14px;
}

.product-panel-specs li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(21, 25, 20, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .product-panel-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "summary"
      "meta"
      "actions";
    max-width: none;
  }

  .product-panel-actions {
    width: 100%;
    max-width: 320px;
  }

  .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 680px) {
  .product-showroom {
    padding: 22px 18px 26px;
  }

  .product-panel-rail {
    position: static;
    order: 2;
    margin-top: -4px;
  }

  .product-panel-swatches {
    grid-auto-flow: column;
    justify-content: start;
  }

  .product-panel-stage {
    min-height: 300px;
  }

  .product-panel-stage-media img {
    max-height: 380px;
  }

  .product-panel-specs {
    grid-template-columns: 1fr;
  }
}

/* Final product detail layout: reference-inspired centered stage. */
.product-panel-shell {
  width: min(1720px, calc(100% - 18px));
  padding-bottom: 14px;
}

.product-panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px 12px;
  margin-bottom: 0;
  background: transparent;
  border-bottom: 0;
}

.product-panel-return,
.product-panel-close {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(21, 25, 20, 0.1);
  box-shadow: 0 12px 24px rgba(17, 22, 18, 0.06);
}

.product-panel-return {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.product-panel-brand {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.product-panel-top-model {
  color: #111612;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-panel-top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(17, 22, 18, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-showroom {
  grid-template-columns: 1fr;
  grid-template-areas:
    "stage"
    "copy"
    "specs";
  gap: 20px;
  min-height: auto;
  padding: 20px 28px 28px;
  border: 1px solid rgba(21, 25, 20, 0.06);
  border-radius: 28px;
  background: url("assets/backgrounds/product-detail-bg.png") center / cover no-repeat;
  box-shadow: 0 30px 72px rgba(17, 22, 18, 0.08);
}

.product-showroom::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.product-showroom::after {
  left: 36%;
  right: 36%;
  bottom: 21%;
  height: 54px;
  background: radial-gradient(ellipse at center, rgba(16, 20, 18, 0.12), rgba(16, 20, 18, 0) 72%);
  filter: blur(14px);
  opacity: 0.7;
}

.product-panel-stage {
  grid-area: stage;
  min-height: clamp(420px, 56vh, 640px);
  padding: 0 150px 0 0;
}

.product-panel-stage-media img {
  width: min(100%, 620px);
  max-height: min(60vh, 520px);
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 22px 24px rgba(17, 22, 18, 0.16));
  transform: scale(0.98);
}

.product-panel-rail {
  position: absolute;
  top: 42%;
  right: 72px;
  transform: translateY(-50%);
  z-index: 2;
}

.product-panel-swatches-wrap {
  display: grid;
  gap: 12px;
}

.product-panel-swatches-wrap .small-label {
  display: none;
}

.product-panel-swatches {
  display: grid;
  gap: 10px;
}

.product-swatch {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.12), 0 0 0 4px rgba(255, 255, 255, 0.92);
}

.product-swatch-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--swatch-color, #d7ddd8);
}

.product-swatch-label {
  display: none;
}

.product-swatch.is-active {
  box-shadow: 0 0 0 1px rgba(21, 25, 20, 0.12), 0 0 0 4px rgba(255, 255, 255, 0.98), 0 0 0 7px rgba(226, 24, 45, 0.86);
}

.product-panel-copy {
  grid-area: copy;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "meta actions";
  align-items: center;
  gap: 18px 24px;
  width: min(100%, 760px);
  justify-self: center;
  padding: 0;
}

.product-panel-copy-head,
.product-panel-summary {
  display: none;
}

.product-panel-meta {
  grid-area: meta;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 42px;
  width: 100%;
}

.product-panel-meta > div {
  text-align: center;
}

.product-panel-meta .small-label {
  color: rgba(17, 22, 18, 0.46);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-panel-meta strong {
  display: block;
  margin-top: 5px;
  color: #e2182d;
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.product-panel-meta > div:nth-child(2) strong {
  color: #111612;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-panel-actions {
  grid-area: actions;
  width: auto;
  justify-self: end;
}

.product-panel-actions .button {
  min-height: 40px;
  border-radius: 999px;
}

.product-panel-actions .button-primary {
  padding-inline: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d5b3a 0%, #123825 100%);
  border-color: rgba(18, 56, 37, 0.96);
  box-shadow: 0 14px 30px rgba(18, 56, 37, 0.18);
}

.product-panel-actions .button-secondary {
  display: none;
}

.product-panel-specs {
  grid-area: specs;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 760px);
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
}

.product-panel-specs li {
  display: grid;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
  justify-items: center;
}

.product-panel-specs li::before {
  display: none;
}

.product-spec-value {
  color: #111612;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-spec-label {
  color: rgba(17, 22, 18, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .product-panel-head {
    grid-template-columns: 1fr auto;
  }

  .product-panel-brand {
    grid-column: 1 / -1;
  }

  .product-showroom {
    padding: 22px 20px 26px;
  }

  .product-panel-stage {
    min-height: 360px;
    padding-right: 86px;
  }

  .product-panel-stage-media img {
    width: min(100%, 520px);
    max-height: 420px;
  }

  .product-panel-rail {
    right: 28px;
  }

  .product-panel-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "actions";
    width: 100%;
  }

  .product-panel-actions {
    justify-self: center;
  }

  .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 680px) {
  .product-panel-shell {
    width: min(100% - 12px, 100%);
  }

  .product-panel-head {
    grid-template-columns: 1fr auto;
    padding: 12px 8px 10px;
  }

  .product-panel-return {
    padding-inline: 14px;
    font-size: 0.64rem;
  }

  .product-panel-top-nav {
    gap: 10px;
    font-size: 0.56rem;
  }

  .product-showroom {
    padding: 18px 14px 22px;
    border-radius: 22px;
  }

  .product-panel-stage {
    min-height: 280px;
    padding-right: 0;
  }

  .product-panel-stage-media img {
    width: min(100%, 360px);
    max-height: 280px;
  }

  .product-panel-rail {
    position: static;
    transform: none;
    order: 2;
    justify-self: center;
  }

  .product-panel-swatches {
    grid-auto-flow: column;
    justify-content: center;
  }

  .product-panel-meta {
    gap: 20px;
    flex-wrap: wrap;
  }

  .product-panel-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Main catalog lineup: adapted to the requested centered showroom reference. */
.catalog-section--lead {
  padding: 68px 0 88px;
}

.section-header-catalog {
  margin-bottom: 34px;
}

.section-header-catalog--simple h2 {
  font-size: clamp(3.1rem, 5.6vw, 5.05rem);
  line-height: 0.96;
}

.section-header-catalog--simple .section-text {
  max-width: 46rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.lineup-showcase {
  gap: 22px;
}

.lineup-stage {
  min-height: 670px;
  padding: 42px 56px 12px;
  grid-template-columns: minmax(220px, 0.82fr) minmax(420px, 640px) minmax(220px, 0.82fr);
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    url("assets/backgrounds/product-detail-bg.png") center/cover no-repeat;
}

.lineup-stage::before,
.lineup-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lineup-stage::before {
  background:
    radial-gradient(circle at 16% 86%, rgba(232, 93, 108, 0.12), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(31, 90, 57, 0.08), transparent 24%);
  z-index: 0;
}

.lineup-stage::after {
  inset: auto 18% 26px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 16, 14, 0.16) 0%, rgba(12, 16, 14, 0) 72%);
  filter: blur(10px);
  z-index: 0;
}

.lineup-vehicle {
  position: relative;
  z-index: 1;
}

.lineup-vehicle img {
  max-height: 520px;
}

.lineup-vehicle--side {
  width: min(100%, 340px);
  opacity: 0.34;
  filter: blur(1.8px) saturate(0.92);
  transform: translateY(32px) scale(0.84);
}

.lineup-vehicle--left {
  justify-self: start;
  transform: translate(26px, 34px) scale(0.84);
}

.lineup-vehicle--right {
  justify-self: end;
  transform: translate(-26px, 34px) scale(0.84);
}

.lineup-vehicle--active {
  width: min(100%, 640px);
}

.lineup-vehicle--active img {
  max-height: 560px;
  filter: drop-shadow(0 24px 28px rgba(17, 22, 18, 0.16));
}

.lineup-nav {
  top: 44%;
  width: 58px;
  height: 58px;
  font-size: 1.65rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 24px rgba(17, 22, 18, 0.08);
}

.lineup-nav--prev {
  left: 14px;
}

.lineup-nav--next {
  right: 14px;
}

.lineup-info {
  gap: 10px;
  margin-top: -4px;
}

.lineup-info-accent {
  width: 34px;
  height: 4px;
}

.lineup-info h3 {
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.lineup-info p {
  font-size: 1rem;
}

.lineup-dots {
  gap: 9px;
}

.lineup-dot {
  width: 11px;
  height: 11px;
  background: rgba(17, 22, 18, 0.16);
}

.lineup-dot.is-active {
  width: 20px;
}

.lineup-specs {
  width: min(100%, 1180px);
  padding: 18px 26px;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(17, 22, 18, 0.07);
}

.lineup-spec {
  gap: 14px;
  padding: 8px 18px;
}

.lineup-spec-icon {
  width: 50px;
  height: 50px;
}

.lineup-spec-label {
  font-size: 0.88rem;
}

.lineup-spec-value {
  font-size: 1rem;
}

@media (max-width: 1160px) {
  .catalog-section--lead {
    padding: 56px 0 76px;
  }

  .section-header-catalog--simple h2 {
    font-size: clamp(2.9rem, 6vw, 4.3rem);
  }

  .lineup-stage {
    min-height: 560px;
    padding: 30px 34px 8px;
    grid-template-columns: minmax(150px, 0.8fr) minmax(360px, 560px) minmax(150px, 0.8fr);
  }

  .lineup-vehicle img {
    max-height: 460px;
  }

  .lineup-vehicle--side {
    width: min(100%, 250px);
  }

  .lineup-vehicle--left {
    transform: translate(18px, 24px) scale(0.8);
  }

  .lineup-vehicle--right {
    transform: translate(-18px, 24px) scale(0.8);
  }

  .lineup-vehicle--active {
    width: min(100%, 560px);
  }

  .lineup-vehicle--active img {
    max-height: 500px;
  }

  .lineup-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 20px;
  }

  .lineup-spec {
    padding: 14px 16px;
  }

  .lineup-spec + .lineup-spec {
    border-left: none;
  }

  .lineup-spec:nth-child(odd) {
    border-right: 1px solid rgba(21, 25, 20, 0.08);
  }

  .lineup-spec:nth-child(n + 3) {
    border-top: 1px solid rgba(21, 25, 20, 0.08);
  }
}

@media (max-width: 920px) {
  .lineup-showcase {
    gap: 18px;
  }

  .lineup-stage {
    min-height: 470px;
    padding: 26px 48px 0;
    grid-template-columns: 1fr;
    background-position: center top;
  }

  .lineup-vehicle--side {
    display: none;
  }

  .lineup-vehicle--active {
    width: min(100%, 500px);
  }

  .lineup-vehicle--active img {
    max-height: 430px;
  }

  .lineup-nav {
    top: 42%;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .lineup-nav--prev {
    left: 4px;
  }

  .lineup-nav--next {
    right: 4px;
  }

  .lineup-info h3 {
    font-size: clamp(2.3rem, 6vw, 3.1rem);
  }

  .lineup-info p {
    font-size: 0.94rem;
  }
}

@media (max-width: 680px) {
  .catalog-section--lead {
    padding: 40px 0 54px;
  }

  .section-header-catalog {
    margin-bottom: 22px;
  }

  .section-header-catalog--simple h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    line-height: 0.98;
  }

  .section-header-catalog--simple .section-text {
    font-size: 0.98rem;
  }

  .lineup-showcase {
    gap: 16px;
  }

  .lineup-stage {
    min-height: 340px;
    padding: 18px 34px 0;
    border-radius: 24px;
  }

  .lineup-stage::after {
    inset: auto 14% 18px;
    height: 30px;
  }

  .lineup-vehicle--active {
    width: min(100%, 340px);
  }

  .lineup-vehicle--active img {
    max-height: 300px;
  }

  .lineup-nav {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .lineup-info {
    gap: 8px;
  }

  .lineup-info h3 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .lineup-info p {
    font-size: 0.9rem;
  }

  .lineup-specs {
    grid-template-columns: 1fr;
    padding: 8px 14px;
  }

  .lineup-spec {
    padding: 14px 4px;
  }

  .lineup-spec:nth-child(odd) {
    border-right: none;
  }

  .lineup-spec:nth-child(n + 2) {
    border-top: 1px solid rgba(21, 25, 20, 0.08);
  }
}

/* Product detail final concept: close to the scooter reference, adapted to Dorcas. */
body.product-open .site-header,
body.product-open .site-topbar,
body.product-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

.product-panel {
  background: #eeeae2;
}

.product-panel-shell {
  position: relative;
  width: min(1536px, calc(100% - 20px));
  min-height: 100dvh;
  padding: 8px 0 18px;
}

.product-panel-head {
  position: absolute;
  top: 30px;
  left: 42px;
  right: 42px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.product-panel-brand {
  display: none;
}

.product-panel-return {
  width: 82px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: url("assets/brand/dorcas-logo-transparent.png") left center / auto 52px no-repeat;
  box-shadow: none;
  color: transparent;
  font-size: 0;
}

.product-panel-close {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(#101411, #101411) center 17px / 28px 3px no-repeat,
    linear-gradient(#101411, #101411) center 26px / 18px 3px no-repeat,
    linear-gradient(#101411, #101411) center 35px / 28px 3px no-repeat;
  box-shadow: none;
  color: transparent;
  font-size: 0;
}

.product-showroom {
  min-height: calc(100dvh - 26px);
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(470px, 1.36fr) minmax(210px, 0.48fr);
  grid-template-rows: minmax(560px, 1fr) auto;
  grid-template-areas:
    "copy stage side"
    "specs specs specs";
  gap: 20px 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 104px 70px 46px;
  border: 1px solid rgba(18, 23, 19, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 249, 245, 0.5)),
    url("assets/backgrounds/product-detail-bg.png") center / cover no-repeat;
  box-shadow: 0 26px 58px rgba(17, 22, 18, 0.08);
}

.product-showroom::before {
  content: "D";
  position: absolute;
  top: 0;
  right: 7%;
  z-index: 0;
  color: rgba(17, 22, 18, 0.035);
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 35rem;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
}

.product-showroom::after {
  content: "";
  position: absolute;
  left: 34%;
  right: 20%;
  bottom: 154px;
  z-index: 0;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(11, 15, 13, 0.16), rgba(11, 15, 13, 0) 70%);
  filter: blur(18px);
  pointer-events: none;
}

.product-panel-stage,
.product-panel-copy,
.product-panel-rail,
.product-panel-specs {
  position: relative;
  z-index: 1;
}

.product-panel-stage {
  grid-area: stage;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 0;
}

.product-panel-stage-media {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-panel-stage-media img {
  width: min(100%, 730px);
  max-height: 590px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 26px rgba(17, 22, 18, 0.16));
  transform: none;
}

.product-panel-copy {
  grid-area: 1 / 1 / 2 / 4;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(470px, 1.36fr) minmax(210px, 0.48fr);
  grid-template-areas:
    "head . meta"
    "head . actions";
  align-content: center;
  align-items: center;
  gap: 18px 28px;
  padding: 0;
  pointer-events: none;
}

.product-panel-copy-head {
  grid-area: head;
  display: grid;
  gap: 14px;
  max-width: 330px;
  pointer-events: auto;
}

.product-panel-copy .eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-panel-copy-head h2 {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #101411;
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 4.9rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-panel-title-main,
.product-panel-title-accent {
  display: block;
}

.product-panel-title-accent {
  color: var(--green);
}

.product-panel-copy-head .status-tag,
.product-panel-summary {
  display: none;
}

.product-panel-rail {
  grid-area: side;
  align-self: center;
  justify-self: start;
  margin-top: -94px;
  width: auto;
  pointer-events: auto;
}

.product-panel-swatches-wrap {
  display: grid;
  gap: 0;
}

.product-panel-swatches-wrap .small-label {
  display: none;
}

.product-panel-swatches {
  display: grid;
  gap: 14px;
}

.product-swatch {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.product-swatch-dot {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--swatch-color, #d7ddd8);
  box-shadow: inset 0 0 0 1px rgba(17, 22, 18, 0.14);
}

.product-swatch-label {
  display: none;
}

.product-swatch.is-active {
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.94), 0 0 0 9px rgba(226, 24, 45, 0.9);
}

.product-panel-meta {
  grid-area: meta;
  align-self: center;
  justify-self: start;
  display: grid;
  gap: 18px;
  margin-top: 118px;
  padding: 0;
  pointer-events: auto;
}

.product-panel-meta > div {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.product-panel-meta .small-label {
  display: block;
  color: #101411;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-panel-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-family: Impact, "Arial Black", "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 3.05rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

#productPanelPrice::after {
  content: "AL CONTADO";
  display: block;
  margin-top: 8px;
  color: #101411;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.product-panel-meta > div:nth-child(2) strong {
  color: #101411;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-panel-actions {
  grid-area: actions;
  align-self: center;
  justify-self: start;
  display: grid;
  width: 210px;
  margin-top: 12px;
  pointer-events: auto;
}

.product-panel-actions .button-primary {
  min-height: 44px;
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(18, 56, 37, 0.96);
  border-radius: 999px;
  background: linear-gradient(135deg, #1d5b3a 0%, #123825 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 56, 37, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.product-panel-actions .button-primary:hover,
.product-panel-actions .button-primary:focus-visible {
  background: linear-gradient(135deg, #236845 0%, #15452d 100%);
  border-color: rgba(21, 69, 45, 0.96);
  color: #ffffff;
}

.product-panel-actions .button-secondary {
  display: none;
}

.product-panel-specs {
  grid-area: specs;
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-self: center;
  gap: 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.product-panel-specs li {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: start;
  gap: 14px;
  min-height: 0;
  padding: 0 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.product-panel-specs li::before {
  content: "";
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 90, 57, 0.96) 0%, rgba(93, 166, 96, 0.7) 100%);
  display: block;
}

.product-spec-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 90, 57, 0.12);
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(31, 90, 57, 0.06);
}

.product-spec-icon svg {
  width: 20px;
  height: 20px;
}

.product-spec-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(19%) saturate(1158%) hue-rotate(95deg) brightness(93%) contrast(90%);
  opacity: 0.98;
}

.product-spec-copy {
  display: grid;
  gap: 10px;
  width: 100%;
}

.product-spec-label {
  order: 1;
  color: rgba(16, 20, 17, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec-value {
  order: 2;
  color: #101411;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.66rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

@media (max-width: 1180px) {
  .product-panel-shell {
    width: min(100% - 14px, 100%);
  }

  .product-panel-head {
    top: 24px;
    left: 28px;
    right: 28px;
  }

  .product-showroom {
    grid-template-columns: minmax(220px, 0.75fr) minmax(380px, 1.18fr) minmax(180px, 0.42fr);
    padding: 94px 38px 38px;
  }

  .product-panel-copy {
    grid-template-columns: minmax(220px, 0.75fr) minmax(380px, 1.18fr) minmax(180px, 0.42fr);
  }

  .product-panel-copy-head h2 {
    font-size: 4rem;
  }

  .product-panel-stage,
  .product-showroom {
    min-height: 560px;
  }

  .product-panel-stage-media img {
    max-height: 510px;
  }

  .product-panel-meta strong {
    font-size: 2.55rem;
  }

  .product-panel-actions {
    width: 190px;
  }

  .product-panel-specs li {
    padding: 0 18px;
  }
}

@media (max-width: 920px) {
  .product-panel {
    overflow-y: auto;
  }

  .product-panel-head {
    position: fixed;
    left: 22px;
    right: 22px;
  }

  .product-showroom {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "copy"
      "stage"
      "side"
      "specs";
    align-items: start;
    min-height: auto;
    padding: 96px 24px 32px;
  }

  .product-panel-copy {
    grid-area: copy;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "meta"
      "actions";
    pointer-events: auto;
  }

  .product-showroom::before {
    right: -4%;
    font-size: 22rem;
  }

  .product-showroom::after {
    left: 16%;
    right: 16%;
    bottom: 258px;
  }

  .product-panel-copy {
    max-width: none;
    justify-self: start;
  }

  .product-panel-copy-head h2 {
    font-size: 3.7rem;
  }

  .product-panel-stage {
    min-height: 380px;
  }

  .product-panel-stage-media img {
    width: min(100%, 560px);
    max-height: 390px;
  }

  .product-panel-rail {
    grid-area: side;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .product-panel-swatches {
    grid-auto-flow: column;
  }

  .product-panel-meta {
    grid-area: meta;
    justify-self: end;
    margin: 0;
  }

  .product-panel-actions {
    grid-area: actions;
    justify-self: end;
    margin-top: 0;
  }

  .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-panel-specs li:nth-child(odd) {
    border-left: 1px solid rgba(18, 24, 19, 0.08);
  }

  .product-panel-specs li:nth-child(n + 3) {
    border-top: 1px solid rgba(18, 24, 19, 0.08);
  }
}

@media (max-width: 640px) {
  .product-panel-shell {
    width: 100%;
    padding: 0;
  }

  .product-panel-head {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .product-panel-return {
    width: 70px;
    height: 46px;
    min-height: 46px;
    background-size: auto 44px;
  }

  .product-panel-close {
    width: 46px;
    height: 46px;
  }

  .product-showroom {
    min-height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 86px 18px 28px;
    gap: 18px;
  }

  .product-showroom::before {
    top: 28px;
    right: -18%;
    font-size: 17rem;
  }

  .product-showroom::after {
    left: 10%;
    right: 10%;
    bottom: 328px;
    height: 54px;
  }

  .product-panel-copy .eyebrow {
    font-size: 0.72rem;
  }

  .product-panel-copy-head h2 {
    font-size: 3.05rem;
  }

  .product-panel-stage {
    min-height: 310px;
  }

  .product-panel-stage-media img {
    max-height: 310px;
  }

  .product-panel-meta {
    justify-self: start;
    margin-top: 0;
  }

  .product-panel-meta strong {
    font-size: 2.7rem;
  }

  .product-panel-actions {
    justify-self: start;
    width: min(100%, 230px);
    margin-top: 0;
  }

  .product-panel-specs {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }

  .product-panel-specs li {
    min-height: 136px;
    padding: 18px 16px;
  }

  .product-panel-specs li + li {
    border-left: 0;
    border-top: 1px solid rgba(18, 24, 19, 0.08);
  }

  .product-spec-icon {
    width: 48px;
    height: 48px;
  }
}

/* Final catalog carousel: clean premium showroom, matching the requested reference. */
.catalog-section--lead {
  padding: 64px 0 82px;
  background: linear-gradient(180deg, #fbfbfa 0%, #f7f8f6 100%);
  border-top: 0;
  border-bottom: 1px solid rgba(16, 20, 18, 0.06);
}

.catalog-section--lead .shell {
  width: min(1540px, calc(100% - 56px));
}

.section-header-catalog {
  margin-bottom: 10px;
}

.section-header-catalog--simple {
  text-align: center;
}

.section-header-catalog--simple > div {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.section-header-catalog--simple .eyebrow {
  margin: 0 0 12px;
  color: #2f7a2d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-header-catalog--simple h2 {
  margin: 0;
  max-width: 10.5ch;
  color: #101a14;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-header-catalog--simple .section-text {
  max-width: 640px;
  margin: 16px auto 0;
  color: #646a65;
  font-size: 1.02rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.lineup-showcase {
  --lineup-number-left: 29.5%;
  --lineup-number-top: 116px;
  --lineup-shadow-left: 33%;
  --lineup-shadow-right: 30%;
  --lineup-copy-left: 29.7%;
  --lineup-copy-top: 244px;
  --lineup-copy-width: 360px;
  --lineup-title-size: 2.25rem;
  --lineup-title-max: 420px;
  --lineup-type-max: 320px;
  --lineup-active-width: min(100%, 650px);
  --lineup-active-height: 520px;
  --lineup-active-shift: 0px;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  min-height: 790px;
  padding-top: 8px;
  overflow: hidden;
}

.lineup-showcase::before {
  content: attr(data-lineup-index);
  position: absolute;
  left: var(--lineup-number-left);
  top: var(--lineup-number-top);
  z-index: 0;
  color: rgba(16, 20, 18, 0.035);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 7.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.lineup-stage {
  position: relative;
  width: 100%;
  min-height: 558px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 0.98fr) minmax(280px, 0.78fr);
  align-items: end;
  justify-items: center;
  padding: 34px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  isolation: isolate;
}

.lineup-stage::before {
  display: none;
}

.lineup-stage::after {
  content: "";
  position: absolute;
  left: var(--lineup-shadow-left);
  right: var(--lineup-shadow-right);
  bottom: 22px;
  z-index: 0;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(14, 18, 16, 0.16), rgba(14, 18, 16, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.lineup-vehicle {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 0;
  transition: opacity 0.32s ease, filter 0.32s ease, transform 0.32s ease;
}

.lineup-vehicle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.lineup-vehicle--active {
  width: var(--lineup-active-width);
  align-self: end;
  cursor: pointer;
  transform: translateX(var(--lineup-active-shift)) translateY(0) scale(1);
}

.lineup-vehicle--active img {
  max-height: var(--lineup-active-height);
  filter: drop-shadow(0 26px 24px rgba(16, 20, 18, 0.13));
}

.lineup-vehicle--side {
  width: min(100%, 430px);
  align-self: center;
  opacity: 0.42;
  filter: blur(2px) saturate(0.92);
  transform: translateY(48px) scale(0.78);
}

.lineup-vehicle--side:hover {
  opacity: 0.58;
}

.lineup-vehicle--left {
  justify-self: start;
  transform: translateX(-18px) translateY(54px) scale(0.78);
}

.lineup-vehicle--right {
  justify-self: end;
  transform: translateX(18px) translateY(54px) scale(0.78);
}

.lineup-nav {
  position: absolute;
  top: 396px;
  z-index: 5;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #101a14;
  box-shadow: 0 16px 28px rgba(16, 20, 18, 0.1);
  font-size: 1.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lineup-nav:hover,
.lineup-nav:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(16, 20, 18, 0.14);
}

.lineup-nav--prev {
  left: 18px;
}

.lineup-nav--next {
  right: 18px;
}

.lineup-info {
  position: absolute;
  left: var(--lineup-copy-left);
  top: var(--lineup-copy-top);
  z-index: 3;
  display: grid;
  justify-items: start;
  gap: 8px;
  width: min(100%, var(--lineup-copy-width));
  min-width: 260px;
  margin: 0;
  text-align: left;
  pointer-events: none;
}

.lineup-info-accent {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #3f8f37;
}

.lineup-info h3 {
  margin: 0;
  color: #101a14;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  max-width: var(--lineup-title-max);
  font-size: var(--lineup-title-size);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.lineup-info p {
  margin: 0;
  max-width: var(--lineup-type-max);
  color: #676d69;
  font-size: 1.04rem;
  line-height: 1.35;
}

.lineup-showcase[data-lineup-layout="balanced"] {
  --lineup-number-left: 16%;
  --lineup-copy-left: 10%;
  --lineup-copy-width: 300px;
  --lineup-title-size: 2rem;
  --lineup-title-max: 10ch;
  --lineup-type-max: 260px;
  --lineup-active-width: min(100%, 620px);
  --lineup-active-height: 500px;
  --lineup-active-shift: 24px;
  --lineup-shadow-left: 37%;
  --lineup-shadow-right: 24%;
}

.lineup-showcase[data-lineup-layout="wide-copy"] {
  --lineup-number-left: 8%;
  --lineup-copy-left: 6%;
  --lineup-copy-top: 236px;
  --lineup-copy-width: 290px;
  --lineup-title-size: 1.92rem;
  --lineup-title-max: 8.5ch;
  --lineup-type-max: 250px;
  --lineup-active-width: min(100%, 610px);
  --lineup-active-height: 500px;
  --lineup-active-shift: 54px;
  --lineup-shadow-left: 41%;
  --lineup-shadow-right: 21%;
}

.lineup-showcase[data-lineup-layout="bike-compact"] {
  --lineup-number-left: 11%;
  --lineup-copy-left: 7%;
  --lineup-copy-top: 228px;
  --lineup-copy-width: 248px;
  --lineup-title-size: 1.85rem;
  --lineup-title-max: 7ch;
  --lineup-type-max: 220px;
  --lineup-active-width: min(100%, 500px);
  --lineup-active-height: 470px;
  --lineup-active-shift: 26px;
  --lineup-shadow-left: 39%;
  --lineup-shadow-right: 25%;
}

.lineup-dots {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -18px;
  margin-bottom: 30px;
}

.lineup-dot {
  width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d2d4d2;
  transition: background 0.22s ease, transform 0.22s ease, width 0.22s ease;
}

.lineup-dot.is-active {
  width: 18px;
  background: #4d963f;
}

.lineup-specs {
  width: min(100%, 970px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  justify-self: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lineup-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 44px;
  background: transparent;
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(16, 20, 18, 0.1);
}

.lineup-spec-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4d7d55;
  border: 1.4px solid rgba(77, 125, 85, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.lineup-spec-icon svg {
  width: 24px;
  height: 24px;
}

.lineup-spec-copy {
  display: grid;
  gap: 5px;
}

.lineup-spec-label {
  color: #6f7771;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.lineup-spec-value {
  color: #101a14;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-grid--data-source {
  display: none !important;
}

@media (max-width: 1180px) {
  .catalog-section--lead .shell {
    width: min(100% - 36px, 100%);
  }

  .section-header-catalog--simple h2 {
    max-width: 11ch;
    font-size: 3.1rem;
  }

  .lineup-showcase {
    --lineup-number-left: 24%;
    --lineup-number-top: 120px;
    --lineup-copy-left: 24%;
    --lineup-copy-top: 242px;
    --lineup-active-width: min(100%, 560px);
    --lineup-active-height: 470px;
    min-height: 720px;
  }

  .lineup-showcase::before {
    font-size: 6.5rem;
  }

  .lineup-stage {
    min-height: 505px;
    grid-template-columns: minmax(190px, 0.7fr) minmax(430px, 1fr) minmax(190px, 0.7fr);
  }

  .lineup-vehicle--side {
    width: min(100%, 320px);
  }

  .lineup-showcase[data-lineup-layout="balanced"] {
    --lineup-number-left: 13%;
    --lineup-copy-left: 6%;
    --lineup-copy-top: 236px;
    --lineup-copy-width: 270px;
    --lineup-title-size: 1.85rem;
    --lineup-active-width: min(100%, 540px);
    --lineup-active-height: 448px;
    --lineup-active-shift: 18px;
    --lineup-shadow-left: 37%;
    --lineup-shadow-right: 23%;
  }

  .lineup-showcase[data-lineup-layout="wide-copy"] {
    --lineup-number-left: 6%;
    --lineup-copy-left: 3.5%;
    --lineup-copy-top: 230px;
    --lineup-copy-width: 236px;
    --lineup-title-size: 1.68rem;
    --lineup-title-max: 8ch;
    --lineup-type-max: 220px;
    --lineup-active-width: min(100%, 520px);
    --lineup-active-height: 438px;
    --lineup-active-shift: 30px;
    --lineup-shadow-left: 40%;
    --lineup-shadow-right: 19%;
  }

  .lineup-showcase[data-lineup-layout="bike-compact"] {
    --lineup-number-left: 8%;
    --lineup-copy-left: 4.8%;
    --lineup-copy-top: 222px;
    --lineup-copy-width: 214px;
    --lineup-title-size: 1.62rem;
    --lineup-title-max: 6.6ch;
    --lineup-type-max: 196px;
    --lineup-active-width: min(100%, 430px);
    --lineup-active-height: 392px;
    --lineup-active-shift: 12px;
    --lineup-shadow-left: 41%;
    --lineup-shadow-right: 22%;
  }

  .lineup-nav {
    top: 365px;
  }

  .lineup-spec {
    padding: 0 24px;
  }
}

@media (max-width: 860px) {
  .catalog-section--lead {
    padding: 48px 0 62px;
  }

  .section-header-catalog--simple .eyebrow {
    font-size: 0.8rem;
  }

  .section-header-catalog--simple h2 {
    max-width: 11ch;
    font-size: 2.4rem;
  }

  .section-header-catalog--simple .section-text {
    max-width: 560px;
    font-size: 0.98rem;
  }

  .lineup-showcase {
    min-height: auto;
    padding-top: 4px;
    overflow: visible;
  }

  .lineup-showcase::before {
    left: 7%;
    top: 114px;
    font-size: 5.1rem;
  }

  .lineup-stage {
    min-height: 420px;
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .lineup-stage::after {
    left: 18%;
    right: 18%;
    bottom: 24px;
    height: 42px;
  }

  .lineup-vehicle--side {
    display: none;
  }

  .lineup-vehicle--active {
    width: min(100%, 460px);
    transform: translateX(0) translateY(0) scale(1);
  }

  .lineup-vehicle--active img {
    max-height: 370px;
  }

  .lineup-info {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    justify-items: center;
    min-width: 0;
    margin-top: -10px;
    text-align: center;
  }

  .lineup-info h3 {
    font-size: 2rem;
  }

  .lineup-dots {
    margin-top: 18px;
    margin-bottom: 24px;
  }

  .lineup-nav {
    top: 330px;
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .lineup-nav--prev {
    left: 8px;
  }

  .lineup-nav--next {
    right: 8px;
  }

  .lineup-specs {
    grid-template-columns: 1fr;
    width: min(100%, 480px);
    padding-top: 6px;
  }

  .lineup-spec {
    min-height: 68px;
    padding: 14px 0;
  }

  .lineup-spec + .lineup-spec {
    border-left: 0;
    border-top: 1px solid rgba(16, 20, 18, 0.1);
  }
}

@media (max-width: 520px) {
  .catalog-section--lead .shell {
    width: min(100% - 26px, 100%);
  }

  .section-header-catalog--simple h2 {
    font-size: 2.05rem;
  }

  .lineup-showcase::before {
    top: 102px;
    font-size: 4.2rem;
  }

  .lineup-stage {
    min-height: 330px;
  }

  .lineup-vehicle--active {
    width: min(100%, 340px);
  }

  .lineup-vehicle--active img {
    max-height: 300px;
  }

  .lineup-nav {
    top: 292px;
  }
}

/* Product screen cleanup: full-viewport detail, mark-only logo, no decorative D backdrop. */
.product-overlay {
  background: transparent;
  backdrop-filter: none;
}

.product-panel {
  overflow-y: auto;
}

.product-panel-shell {
  width: 100%;
  min-height: 100dvh;
  padding: 0;
}

.product-panel-head {
  position: fixed;
  top: 24px;
  left: 26px;
  right: 26px;
  z-index: 20;
}

.product-panel-return {
  width: 56px;
  height: 56px;
  min-height: 56px;
  background: url("assets/brand/dorcas-logo-mark.png") center / 128% auto no-repeat;
}

.product-showroom {
  min-height: 100dvh;
  padding: 104px 64px 40px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-showroom::before {
  display: none;
}

.product-showroom::after {
  left: 34%;
  right: 22%;
  bottom: 146px;
}

@media (max-width: 1180px) {
  .product-panel-head {
    left: 22px;
    right: 22px;
  }

  .product-showroom {
    padding: 100px 36px 34px;
  }
}

@media (max-width: 920px) {
  .product-showroom {
    padding: 94px 24px 30px;
  }

  .product-showroom::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-panel-head {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .product-panel-return {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .product-showroom {
    padding: 82px 18px 26px;
  }

  .product-showroom::before {
    display: none;
  }
}

/* Product screen fit pass: cleaner transparent mark and tighter viewport composition. */
.product-panel-head {
  top: 28px;
  left: 34px;
  right: 34px;
}

.product-panel-return {
  width: 64px;
  height: 64px;
  min-height: 64px;
  background: url("assets/brand/dorcas-logo-transparent.png") left center / 172px auto no-repeat;
}

.product-showroom {
  padding: 94px 56px 24px;
  gap: 10px 24px;
}

.product-showroom::after {
  left: 35%;
  right: 23%;
  bottom: 122px;
  height: 58px;
}

.product-panel-stage {
  min-height: 480px;
}

.product-panel-stage-media img {
  width: min(100%, 660px);
  max-height: 500px;
}

.product-panel-copy-head h2 {
  font-size: 4.3rem;
}

.product-panel-meta {
  margin-top: 86px;
  gap: 14px;
}

.product-panel-meta strong {
  font-size: 2.8rem;
}

.product-panel-actions {
  width: 196px;
}

  .product-panel-specs {
    width: min(100%, 1060px);
    margin-top: 0;
    padding-top: 0;
  }

  .product-panel-specs li {
    min-height: 68px;
    padding: 16px 18px;
  }

  .product-spec-icon {
    width: 34px;
    height: 34px;
  }

@media (max-width: 1180px) {
  .product-panel-head {
    top: 22px;
    left: 24px;
    right: 24px;
  }

  .product-panel-return {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }

  .product-showroom {
    padding: 92px 34px 22px;
  }

  .product-panel-stage {
    min-height: 430px;
  }

  .product-panel-stage-media img {
    max-height: 450px;
  }

  .product-panel-copy-head h2 {
    font-size: 3.9rem;
  }

  .product-panel-meta {
    margin-top: 72px;
  }

  .product-panel-meta strong {
    font-size: 2.45rem;
  }
}

@media (max-width: 920px) {
  .product-panel-head {
    left: 20px;
    right: 20px;
  }

  .product-panel-return {
    width: 52px;
    height: 52px;
    min-height: 52px;
    background-size: 156px auto;
  }

  .product-showroom {
    padding: 88px 22px 24px;
    gap: 14px;
  }

  .product-showroom::after {
    left: 18%;
    right: 18%;
    bottom: 236px;
  }

  .product-panel-stage {
    min-height: 340px;
  }

  .product-panel-stage-media img {
    width: min(100%, 520px);
    max-height: 360px;
  }

  .product-panel-meta {
    margin-top: 0;
  }

  .product-panel-specs {
    padding-top: 10px;
  }
}

@media (max-width: 640px) {
  .product-panel-head {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .product-panel-return {
    width: 46px;
    height: 46px;
    min-height: 46px;
    background-size: 138px auto;
  }

  .product-showroom {
    padding: 78px 18px 22px;
  }

  .product-showroom::after {
    left: 12%;
    right: 12%;
    bottom: 300px;
  }

  .product-panel-copy-head h2 {
    font-size: 3rem;
  }

  .product-panel-stage {
    min-height: 286px;
  }

  .product-panel-stage-media img {
    max-height: 292px;
  }

  .product-panel-meta strong {
    font-size: 2.45rem;
  }

  .product-panel-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-panel-availability {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .product-panel-specs li {
    min-height: 60px;
    padding: 12px 0;
  }
}

/* Product detail polish: isolate the D mark and separate the right-side meta from color swatches. */
.product-panel-head {
  top: 24px;
  left: 28px;
  right: 28px;
}

.product-panel-return {
  width: 68px;
  height: 68px;
  min-height: 68px;
  background: url("assets/brand/dorcas-logo-mark.png") left center / 60px auto no-repeat;
}

.product-showroom {
  grid-template-columns: minmax(250px, 0.72fr) minmax(500px, 1.28fr) minmax(264px, 0.66fr);
  padding: 96px 58px 24px;
}

.product-panel-copy {
  grid-template-columns: minmax(250px, 0.72fr) minmax(500px, 1.28fr) minmax(264px, 0.66fr);
}

.product-panel-rail {
  justify-self: end;
  align-self: center;
  width: 28px;
  margin-top: 52px;
}

.product-panel-swatches-wrap {
  justify-items: center;
}

.product-panel-swatches {
  gap: 18px;
}

.product-swatch {
  width: 20px;
  height: 20px;
  min-height: 20px;
}

.product-swatch.is-active {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.96), 0 0 0 7px rgba(226, 24, 45, 0.9);
}

.product-panel-meta {
  width: min(100%, 218px);
  gap: 22px;
  margin-top: 88px;
}

.product-panel-meta > div:nth-child(2) {
  padding-right: 46px;
}

.product-panel-meta > div:nth-child(2) strong {
  max-width: 140px;
}

.product-panel-actions {
  width: 240px;
  margin-top: 0;
}

@media (max-width: 1180px) {
  .product-panel-head {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .product-panel-return {
    width: 60px;
    height: 60px;
    min-height: 60px;
    background-size: 54px auto;
  }

  .product-showroom {
    grid-template-columns: minmax(220px, 0.72fr) minmax(430px, 1.2fr) minmax(236px, 0.68fr);
    padding: 92px 34px 22px;
  }

  .product-panel-copy {
    grid-template-columns: minmax(220px, 0.72fr) minmax(430px, 1.2fr) minmax(236px, 0.68fr);
  }

  .product-panel-rail {
    margin-top: 42px;
  }

  .product-panel-meta {
    width: min(100%, 204px);
    margin-top: 76px;
  }

  .product-panel-meta > div:nth-child(2) {
    padding-right: 38px;
  }

  .product-panel-actions {
    width: 220px;
  }
}

@media (max-width: 920px) {
  .product-panel-return {
    width: 52px;
    height: 52px;
    min-height: 52px;
    background-size: 46px auto;
  }

  .product-panel-rail {
    justify-self: center;
    width: auto;
    margin-top: 0;
  }

  .product-panel-swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .product-panel-meta {
    width: min(100%, 280px);
    margin-top: 0;
  }

  .product-panel-meta > div:nth-child(2) {
    padding-right: 0;
  }

  .product-panel-meta > div:nth-child(2) strong {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .product-panel-return {
    width: 46px;
    height: 46px;
    min-height: 46px;
    background-size: 40px auto;
  }
}

/* Final mobile optimization: preserve the desktop feel with cleaner spacing and stronger hierarchy. */
@media (max-width: 920px) {
  .site-topbar {
    display: none;
  }

  .site-header .shell {
    width: min(100% - 24px, 100%);
  }

  .header-row {
    min-height: 66px;
    gap: 14px;
  }

  .brand-logo {
    width: 168px;
  }

  .site-nav {
    top: 74px;
    left: 12px;
    right: 12px;
    gap: 10px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: calc(100svh - 66px);
  }

  .hero-showroom-image {
    object-position: 74% center;
  }

  .hero-showroom-overlay {
    align-content: end;
    gap: 14px;
    padding: 34px 20px 126px;
    background: linear-gradient(
      90deg,
      rgba(8, 10, 10, 0.86) 0%,
      rgba(8, 10, 10, 0.66) 22%,
      rgba(8, 10, 10, 0.22) 50%,
      rgba(8, 10, 10, 0.02) 72%
    );
  }

  .hero-showroom-overlay h1 {
    max-width: 5.2ch;
    font-size: clamp(2.9rem, 10.5vw, 4.6rem);
    line-height: 0.86;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 22rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-benefits--band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 10px;
  }

  .hero-benefits--band article {
    min-height: 52px;
    padding: 10px 12px;
    border-right: 1px solid rgba(21, 25, 20, 0.08);
    border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  }

  .hero-benefits--band article:nth-child(2n) {
    border-right: none;
  }

  .hero-benefits--band article:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .catalog-section--lead {
    padding: 42px 0 48px;
  }

  .catalog-section--lead .shell {
    width: min(100% - 24px, 100%);
  }

  .section-header-catalog {
    margin-bottom: 18px;
  }

  .section-header-catalog--simple > div {
    max-width: 560px;
  }

  .section-header-catalog--simple .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .section-header-catalog--simple h2 {
    max-width: 10.5ch;
    font-size: clamp(2.3rem, 9.8vw, 3.4rem);
    line-height: 0.95;
  }

  .section-header-catalog--simple .section-text {
    max-width: 32ch;
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .lineup-showcase {
    min-height: auto;
    gap: 18px;
    padding-top: 6px;
  }

  .lineup-showcase::before {
    left: 4%;
    top: 108px;
    font-size: 4.5rem;
  }

  .lineup-stage {
    min-height: 352px;
    padding: 8px 44px 0;
  }

  .lineup-stage::after {
    left: 16%;
    right: 16%;
    bottom: 10px;
    height: 34px;
  }

  .lineup-vehicle--active {
    width: min(100%, 390px);
  }

  .lineup-vehicle--active img {
    max-height: 300px;
  }

  .lineup-info {
    width: min(100%, 290px);
    margin-top: 2px;
    gap: 6px;
  }

  .lineup-info h3 {
    font-size: clamp(1.75rem, 7.6vw, 2.25rem);
    line-height: 0.98;
  }

  .lineup-info p {
    font-size: 0.92rem;
  }

  .lineup-dots {
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .lineup-nav {
    top: 214px;
    width: 48px;
    height: 48px;
    font-size: 1.28rem;
  }

  .lineup-nav--prev {
    left: 2px;
  }

  .lineup-nav--next {
    right: 2px;
  }

  .lineup-specs {
    width: 100%;
    max-width: 420px;
    padding-top: 0;
  }

  .lineup-spec {
    min-height: 62px;
    padding: 14px 6px;
  }

  .lineup-spec-icon {
    width: 44px;
    height: 44px;
  }

  .lineup-spec-value {
    font-size: 0.98rem;
  }

  .product-panel-head {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .product-panel-return,
  .product-panel-close {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .product-panel-return {
    background-size: 38px auto;
  }

  .product-panel-close {
    background:
      linear-gradient(#101411, #101411) center 13px / 22px 2px no-repeat,
      linear-gradient(#101411, #101411) center 21px / 14px 2px no-repeat,
      linear-gradient(#101411, #101411) center 29px / 22px 2px no-repeat;
  }

  .product-showroom {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "copy"
      "stage"
      "side"
      "specs";
    min-height: auto;
    gap: 18px;
    padding: 74px 16px 24px;
  }

  .product-showroom::after {
    left: 18%;
    right: 18%;
    bottom: 176px;
    height: 40px;
  }

  .product-panel-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "meta"
      "actions";
    gap: 14px;
    align-content: start;
    justify-items: start;
    height: auto;
    pointer-events: auto;
  }

  .product-panel-copy-head {
    max-width: 100%;
    gap: 10px;
  }

  .product-panel-copy-head h2 {
    font-size: clamp(2.55rem, 11vw, 3.6rem);
    line-height: 0.9;
  }

  .product-panel-stage {
    min-height: 286px;
  }

  .product-panel-stage-media img {
    width: min(100%, 430px);
    max-height: 300px;
  }

  .product-panel-rail {
    justify-self: start;
    width: 100%;
  }

  .product-panel-swatches-wrap {
    justify-items: start;
    gap: 10px;
  }

  .product-panel-swatches-wrap .small-label {
    display: block;
    color: #101411;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .product-panel-swatches {
    justify-content: flex-start;
    gap: 12px;
  }

  .product-swatch {
    width: 18px;
    height: 18px;
    min-height: 18px;
  }

  .product-swatch.is-active {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.96), 0 0 0 6px rgba(226, 24, 45, 0.9);
  }

  .product-panel-meta {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 0;
  }

  .product-panel-meta > div {
    min-width: 0;
  }

  .product-panel-meta > div:nth-child(2) {
    padding-right: 0;
  }

  .product-panel-meta strong {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .product-panel-meta > div:nth-child(2) strong {
    max-width: none;
    font-size: 1rem;
    line-height: 1.15;
  }

  .product-panel-actions {
    width: 100%;
    max-width: 320px;
  }

  .product-panel-specs {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 4px;
    padding-top: 0;
    gap: 12px;
    border-radius: 0;
  }

  .product-panel-specs li {
    min-height: 0;
    padding: 18px 16px;
  }

  .product-panel-specs li + li {
    border-left: 0;
    border-top: 1px solid rgba(18, 24, 19, 0.08);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 152px;
  }

  .hero-showroom-overlay {
    padding: 30px 16px 118px;
  }

  .hero-showroom-overlay h1 {
    max-width: 5.4ch;
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .hero-showroom-overlay .hero-text {
    max-width: 19rem;
    font-size: 0.9rem;
  }

  .hero-benefits--band strong {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .catalog-section--lead {
    padding: 36px 0 42px;
  }

  .section-header-catalog--simple h2 {
    font-size: clamp(2rem, 10.2vw, 2.7rem);
  }

  .lineup-showcase::before {
    top: 100px;
    font-size: 3.8rem;
  }

  .lineup-stage {
    min-height: 312px;
    padding: 4px 38px 0;
  }

  .lineup-vehicle--active {
    width: min(100%, 320px);
  }

  .lineup-vehicle--active img {
    max-height: 252px;
  }

  .lineup-nav {
    top: 184px;
    width: 44px;
    height: 44px;
  }

  .lineup-info {
    width: min(100%, 250px);
  }

  .lineup-info h3 {
    font-size: 1.58rem;
  }

  .product-showroom {
    padding: 70px 14px 22px;
  }

  .product-panel-copy-head h2 {
    font-size: clamp(2.2rem, 11.6vw, 3rem);
  }

  .product-panel-stage-media img {
    max-height: 258px;
  }

  .product-panel-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-panel-actions {
    max-width: none;
  }
}

/* Final lineup polish: tighter viewport fit, calmer headline hierarchy, and specs visible sooner. */
.catalog-section--lead {
  padding: clamp(16px, 2vw, 26px) 0 clamp(34px, 3.2vw, 48px);
}

.catalog-section--lead .shell {
  width: min(1440px, calc(100% - 56px));
}

.section-header-catalog {
  margin-bottom: 0;
}

.section-header-catalog--simple > div {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.section-header-catalog--simple .eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.section-header-catalog--simple h2 {
  max-width: 11.8ch;
  font-size: clamp(2.3rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.section-header-catalog--simple .section-text {
  max-width: 40rem;
  margin: 6px 0 0;
  color: #5e6660;
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  line-height: 1.42;
  text-wrap: balance;
}

.lineup-showcase {
  gap: 0;
  margin-top: -64px;
}

.lineup-stage {
  min-height: clamp(290px, 28vw, 360px);
  padding: 0 52px 0;
  grid-template-columns: minmax(160px, 0.72fr) minmax(300px, 520px) minmax(160px, 0.72fr);
  align-items: center;
  transform: translateY(-10px);
}

.lineup-stage::after {
  inset: auto 23% 6px;
  height: 28px;
  filter: blur(9px);
}

.lineup-vehicle--side {
  width: min(100%, 235px);
  opacity: 0.25;
  filter: blur(2px) saturate(0.88);
}

.lineup-vehicle--left {
  transform: translate(12px, -4px) scale(0.74);
}

.lineup-vehicle--right {
  transform: translate(-12px, -4px) scale(0.74);
}

.lineup-vehicle--active {
  width: min(100%, 455px);
  transform: translateY(-8px);
}

.lineup-vehicle--active img {
  max-height: clamp(258px, 24vw, 332px);
  filter: drop-shadow(0 16px 22px rgba(17, 22, 18, 0.13));
}

.lineup-nav {
  top: 50%;
  transform: translateY(-54%);
  width: 54px;
  height: 54px;
}

.lineup-info {
  gap: 6px;
  margin-top: -66px;
}

.lineup-info h3 {
  font-size: clamp(1.95rem, 2.9vw, 3rem);
}

.lineup-info p {
  font-size: 0.98rem;
}

.lineup-dots {
  gap: 8px;
  margin-top: -6px;
  margin-bottom: 6px;
}

.lineup-dot {
  width: 10px;
  height: 10px;
}

.lineup-dot.is-active {
  width: 18px;
}

.lineup-specs {
  width: min(100%, 1120px);
  margin-top: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 30px rgba(17, 22, 18, 0.06);
  backdrop-filter: blur(14px);
}

.lineup-spec {
  min-height: 72px;
  gap: 12px;
  padding: 6px 16px;
}

.lineup-spec-icon {
  width: 48px;
  height: 48px;
}

.lineup-spec-label {
  font-size: 0.84rem;
}

.lineup-spec-value {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

@media (max-width: 900px) {
  .catalog-section--lead {
    padding: 34px 0 40px;
  }

  .catalog-section--lead .shell {
    width: min(100% - 24px, 100%);
  }

  .section-header-catalog {
    margin-bottom: 16px;
  }

  .section-header-catalog--simple h2 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 8.8vw, 3rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 31ch;
    font-size: 0.92rem;
  }

  .lineup-stage {
    min-height: 320px;
    padding: 6px 40px 0;
    grid-template-columns: 1fr;
  }

  .lineup-stage::after {
    left: 17%;
    right: 17%;
    bottom: 8px;
    height: 26px;
  }

  .lineup-vehicle--side {
    display: none;
  }

  .lineup-vehicle--active {
    width: min(100%, 320px);
  }

  .lineup-vehicle--active img {
    max-height: 242px;
  }

  .lineup-nav {
    top: 182px;
    width: 46px;
    height: 46px;
  }

  .lineup-info {
    width: min(100%, 246px);
    gap: 4px;
    margin-top: 0;
  }

  .lineup-info h3 {
    font-size: clamp(1.72rem, 7.1vw, 2.15rem);
  }

  .lineup-dots {
    margin-bottom: 12px;
  }

  .lineup-specs {
    width: 100%;
    padding: 10px 12px;
    grid-template-columns: 1fr;
  }

  .lineup-spec {
    min-height: 0;
    padding: 10px 6px;
  }

  .lineup-spec + .lineup-spec {
    border-left: 0;
    border-top: 1px solid rgba(17, 22, 18, 0.08);
  }
}

@media (max-width: 640px) {
  .section-header-catalog--simple .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .section-header-catalog--simple h2 {
    font-size: clamp(1.95rem, 9.4vw, 2.6rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 30ch;
    font-size: 0.9rem;
  }

  .lineup-stage {
    min-height: 302px;
    padding: 4px 36px 0;
  }

  .lineup-vehicle--active {
    width: min(100%, 300px);
  }

  .lineup-vehicle--active img {
    max-height: 226px;
  }

  .lineup-nav {
    top: 174px;
    width: 42px;
    height: 42px;
  }

  .lineup-info {
    width: min(100%, 232px);
  }
}

.income-section {
  padding: 40px 0 18px;
}

.income-shell {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(21, 57, 38, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 246, 240, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(17, 22, 18, 0.08);
}

.income-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.income-head .eyebrow {
  margin: 0;
}

.income-head h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.income-head .section-text {
  margin: 0;
  max-width: 58ch;
  color: #5d655f;
  font-size: 1rem;
  line-height: 1.62;
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.income-card,
.income-proof-panel {
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(17, 22, 18, 0.06);
}

.income-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.income-card:hover,
.income-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(31, 90, 57, 0.18);
  box-shadow: 0 24px 40px rgba(17, 22, 18, 0.09);
}

.income-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.income-avatar {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(160deg, #1f5a39 0%, #0a0f2c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.income-meta {
  display: grid;
  gap: 5px;
}

.income-meta strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.income-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.income-meta span svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.income-stars {
  color: #1f5a39;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
}

.income-card p {
  margin: 0;
  color: #212721;
  font-size: 1rem;
  line-height: 1.68;
}

.income-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  padding: 24px;
}

.income-proof-copy {
  display: grid;
  gap: 10px;
}

.income-proof-copy .eyebrow,
.income-proof-copy h3,
.income-proof-copy p {
  margin: 0;
}

.income-proof-copy h3 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.income-proof-copy p {
  max-width: 34ch;
  color: #5d655f;
  line-height: 1.65;
}

.income-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.income-form label {
  display: grid;
  gap: 8px;
  color: #364037;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.income-form input,
.income-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f6f5f0;
  border: 1px solid rgba(21, 25, 20, 0.1);
  border-radius: 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.income-form input:focus,
.income-form textarea:focus {
  border-color: rgba(31, 90, 57, 0.38);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 90, 57, 0.08);
}

.income-form-message,
.income-form button {
  grid-column: 1 / -1;
}

.income-form textarea {
  resize: vertical;
  min-height: 128px;
}

.income-form .button {
  justify-self: start;
  padding-inline: 24px;
}

.income-footer {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.income-cta {
  min-width: min(100%, 320px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .income-grid {
    grid-template-columns: 1fr;
  }

  .income-proof-panel {
    grid-template-columns: 1fr;
  }

  .income-proof-copy h3,
  .income-proof-copy p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .income-section {
    padding: 26px 0 10px;
  }

  .income-shell {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .income-head h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .income-head .section-text {
    font-size: 0.94rem;
  }

  .income-card {
    padding: 18px;
  }

  .income-card p {
    font-size: 0.95rem;
  }

  .income-proof-panel {
    padding: 18px;
  }

  .income-form {
    grid-template-columns: 1fr;
  }

  .income-form .button {
    width: 100%;
    justify-self: stretch;
  }
}

.faq-section--conversion {
  padding: 34px 0 0;
}

.faq-shell {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(31, 90, 57, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 245, 239, 0.98) 100%);
  box-shadow: 0 24px 52px rgba(17, 22, 18, 0.08);
}

.faq-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.faq-head .eyebrow,
.faq-head h2,
.faq-head .section-text {
  margin: 0;
}

.faq-head h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.faq-head .section-text {
  max-width: 46ch;
  color: #5e6660;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  overflow: hidden;
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(17, 22, 18, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.faq-card:hover,
.faq-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(31, 90, 57, 0.16);
  box-shadow: 0 20px 38px rgba(17, 22, 18, 0.08);
}

.faq-card summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 52px 20px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-question-copy {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.faq-card summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(21, 25, 20, 0.58);
  border-bottom: 2px solid rgba(21, 25, 20, 0.58);
  transform: translateY(-64%) rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.faq-card[open] summary::after {
  border-color: var(--green);
  transform: translateY(-36%) rotate(225deg);
}

.faq-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: rgba(31, 90, 57, 0.09);
  border: 1px solid rgba(31, 90, 57, 0.1);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 21px;
  height: 21px;
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-card[open] .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 20px 20px 20px;
  color: #58615b;
  font-size: 0.97rem;
  line-height: 1.68;
}

.faq-answer-inner strong {
  color: var(--ink);
  font-weight: 800;
}

.faq-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  background:
    linear-gradient(135deg, rgba(21, 57, 38, 0.07) 0%, rgba(255, 255, 255, 0.95) 52%);
  box-shadow: 0 16px 36px rgba(17, 22, 18, 0.06);
}

.faq-cta-copy {
  display: grid;
  gap: 8px;
}

.faq-cta-copy h3,
.faq-cta-copy p {
  margin: 0;
}

.faq-cta-copy h3 {
  max-width: 34ch;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.faq-cta-copy p {
  color: #5e6660;
  line-height: 1.6;
}

.faq-cta-button {
  min-height: 56px;
  padding-inline: 22px;
  border-radius: 16px;
  gap: 10px;
  background: linear-gradient(135deg, #1f5a39 0%, #153926 100%);
  border-color: #153926;
  box-shadow: 0 16px 28px rgba(21, 57, 38, 0.2);
}

.faq-cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.faq-cta-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 920px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-cta-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .faq-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .faq-section--conversion {
    padding: 24px 0 0;
  }

  .faq-shell {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .faq-head h2 {
    max-width: 10ch;
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .faq-head .section-text {
    font-size: 0.93rem;
  }

  .faq-card summary {
    gap: 12px;
    padding: 18px 46px 18px 16px;
  }

  .faq-question-copy {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .faq-answer-inner p {
    padding: 0 16px 18px;
    font-size: 0.94rem;
  }

  .faq-cta-card {
    padding: 18px;
  }
}


/* Hero readability pass after reverting the last premium visual layer. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
  transition:
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    backdrop-filter 0.26s ease;
}

.site-header .shell {
  width: min(100% - 56px, 1780px);
}

.site-header .header-row {
  min-height: 84px;
}

.site-header .brand-logo {
  width: clamp(176px, 11vw, 204px);
}

.site-header .site-nav a,
.site-header .header-link,
.site-header .account-button {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .header-link:hover,
.site-header .header-link:focus-visible,
.site-header .account-button:hover,
.site-header .account-button:focus-visible {
  color: #ffffff;
}

.site-header .button-primary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.site-header .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.site-header .menu-toggle span {
  background: #ffffff;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(18px) saturate(1.04);
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  box-shadow: 0 14px 30px rgba(17, 22, 18, 0.08);
}

.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .header-link,
.site-header.is-scrolled .account-button {
  color: rgba(21, 25, 20, 0.84);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .header-link:hover,
.site-header.is-scrolled .header-link:focus-visible,
.site-header.is-scrolled .account-button:hover,
.site-header.is-scrolled .account-button:focus-visible {
  color: var(--green);
}

.site-header.is-scrolled .button-primary {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(21, 57, 38, 0.28);
}

.site-header.is-scrolled .button-primary:hover,
.site-header.is-scrolled .button-primary:focus-visible {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 25, 20, 0.12);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}

.hero-showroom--single {
  min-height: 100vh;
}

.hero-showroom-image {
  min-height: 100vh;
}

.hero-showroom-overlay {
  gap: 16px;
  padding: 116px 56px 128px;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 10, 0.9) 0%,
    rgba(8, 10, 10, 0.72) 20%,
    rgba(8, 10, 10, 0.3) 44%,
    rgba(8, 10, 10, 0.04) 70%
  );
}

.hero-showroom-overlay h1 {
  max-width: 5.2ch;
  font-size: clamp(3.5rem, 6.2vw, 5.95rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero-showroom-overlay .hero-text {
  max-width: 25rem;
  font-size: 1rem;
  line-height: 1.62;
}

@media (max-width: 920px) {
  .site-header .shell {
    width: min(100% - 20px, 100%);
  }

  .site-header .header-row {
    min-height: 70px;
  }

  .site-header .brand-logo {
    width: 160px;
  }

  .site-header .menu-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .site-header.is-scrolled .menu-toggle {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(21, 25, 20, 0.1);
  }

  .site-nav {
    top: 78px;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: 100svh;
  }

  .hero-showroom-overlay {
    align-content: end;
    padding: 98px 20px 126px;
  }

  .hero-showroom-overlay h1 {
    max-width: 5.4ch;
    font-size: clamp(2.8rem, 10vw, 4.4rem);
    line-height: 0.88;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 22rem;
    font-size: 0.94rem;
  }
}

/* Clean lineup + FAQ pass: remove ghost number and heavy card treatment. */
.lineup-showcase::before {
  content: none !important;
  display: none !important;
}

.lineup-info {
  gap: 10px;
  margin-top: 2px;
}

.lineup-info h3 {
  font-size: clamp(2.35rem, 3.8vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.lineup-info p {
  color: #66706a;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.faq-shell {
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-head {
  gap: 10px;
  max-width: 700px;
}

.faq-head h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.faq-head .section-text {
  max-width: 50ch;
  font-size: 0.98rem;
  line-height: 1.62;
}

.faq-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-card {
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-card:first-child {
  border-top: 1px solid rgba(21, 25, 20, 0.08);
}

.faq-card:hover,
.faq-card:focus-within {
  transform: none;
  border-color: rgba(21, 25, 20, 0.08);
  box-shadow: none;
}

.faq-card summary {
  gap: 12px;
  padding: 20px 34px 20px 0;
}

.faq-question-copy {
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.faq-card summary::after {
  right: 6px;
  width: 9px;
  height: 9px;
  border-right-width: 1.8px;
  border-bottom-width: 1.8px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--green);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

.faq-answer-inner p {
  max-width: 74ch;
  padding: 0 0 20px 36px;
  color: #5d665f;
  font-size: 0.97rem;
  line-height: 1.68;
}

.faq-cta-card {
  max-width: 980px;
  gap: 18px;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-cta-copy h3 {
  max-width: 30ch;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.faq-cta-copy p {
  max-width: 56ch;
  color: #5e6660;
  font-size: 0.96rem;
}

.faq-cta-button {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 999px;
  box-shadow: none;
}

@media (max-width: 920px) {
  .faq-shell {
    gap: 16px;
  }

  .faq-head h2 {
    max-width: 10.5ch;
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .faq-card summary {
    padding: 18px 30px 18px 0;
  }

  .faq-answer-inner p {
    padding: 0 0 18px 32px;
    font-size: 0.94rem;
  }

  .faq-cta-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .faq-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .lineup-info h3 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .faq-question-copy {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer-inner p {
    padding-left: 0;
  }
}

/* Google-style testimonials pass */
.income-section {
  padding: 54px 0 18px;
}

.income-shell--google {
  display: grid;
  gap: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.income-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(280px, 0.92fr);
  align-items: center;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto 8px;
}

.income-title-stack {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
  justify-self: end;
}

.income-head--split .eyebrow,
.income-head--split h2,
.income-head--split .income-kicker {
  margin: 0;
}

.income-head--split h2 {
  max-width: 11ch;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.income-head--split::after {
  content: "";
  grid-column: 2;
  align-self: stretch;
  width: 1px;
  background: rgba(21, 25, 20, 0.72);
}

.income-kicker {
  grid-column: 3;
  max-width: 32ch;
  padding-top: 10px;
  color: #616862;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.review-carousel {
  position: relative;
  padding-inline: 52px;
  max-width: 1400px;
  margin: 0 auto;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  align-items: stretch;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 292px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(21, 25, 20, 0.04);
  background: #f7f7f7;
  box-shadow: none;
  scroll-snap-align: start;
  transition:
    transform 0.34s var(--ease-premium),
    background 0.34s var(--ease-premium),
    border-color 0.3s ease;
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-4px);
  background: #fcfcfc;
  border-color: rgba(21, 25, 20, 0.08);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

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

.review-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  color: #545c57;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  border: 1px solid rgba(21, 25, 20, 0.08);
}

.review-meta {
  min-width: 0;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.review-meta span {
  margin-top: 4px;
  color: #7a807b;
  font-size: 0.94rem;
}

.review-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  color: #4285f4;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-stars {
  color: #f4b400;
  font-size: 1.14rem;
  letter-spacing: 0.08em;
}

.review-verified {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #3b82f6;
  position: relative;
}

.review-verified::before {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-1px) rotate(-45deg);
}

.review-card p {
  margin: 0;
  color: #202522;
  font-size: 0.98rem;
  line-height: 1.48;
  letter-spacing: -0.015em;
  max-width: 31ch;
}

.review-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 25, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(17, 22, 18, 0.08);
  color: var(--ink);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.review-nav--prev {
  left: 32px;
}

.review-nav--next {
  right: 32px;
}

@media (max-width: 1100px) {
  .review-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .review-nav--prev {
    left: 12px;
  }

  .review-nav--next {
    right: 12px;
  }
}

@media (max-width: 860px) {
  .income-head--split {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .income-head--split::after {
    display: none;
  }

  .income-kicker {
    grid-column: auto;
    max-width: 40ch;
    padding-top: 0;
  }

  .income-title-stack {
    justify-items: start;
    text-align: left;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .income-section {
    padding: 34px 0 8px;
  }

  .income-head--split h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .income-kicker {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .review-track {
    grid-auto-columns: 88%;
    gap: 16px;
    padding-right: 8px;
  }

  .review-card {
    min-height: 264px;
    padding: 18px;
    border-radius: 22px;
  }

  .review-meta strong {
    font-size: 0.96rem;
  }

  .review-meta span,
  .review-card p {
    font-size: 0.92rem;
  }

  .review-source {
    min-width: 20px;
    min-height: 20px;
    font-size: 1rem;
  }

  .review-nav {
    display: none;
  }

}

/* Emotos-inspired motion pass: cleaner depth, spotlight, and calmer premium animation. */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-glide: cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes dorcasHeroGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: translate3d(12px, -10px, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes dorcasHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.035);
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(1.05);
  }
}

@keyframes dorcasHeroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes dorcasLineupFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes dorcasLineupSwap {
  from {
    opacity: 0.18;
    transform: translate3d(0, 24px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes dorcasShadowBreath {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.75;
    transform: translateX(-50%) scaleX(1.08);
  }
}

.site-nav a {
  position: relative;
  transition:
    color 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.7;
  transition: transform 0.34s var(--ease-premium);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button,
.menu-toggle,
.lineup-nav,
.product-card,
.featured-highlight-media img,
.product-media img,
.product-panel-stage-media img,
.product-swatch {
  transition:
    transform 0.38s var(--ease-premium),
    box-shadow 0.38s var(--ease-premium),
    border-color 0.32s ease,
    background 0.32s ease,
    opacity 0.32s ease,
    filter 0.38s var(--ease-premium);
}

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

.hero-showroom--single::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 50%;
  width: min(48vw, 760px);
  height: min(48vw, 760px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.1) 26%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(circle at 50% 60%, rgba(31, 90, 57, 0.2) 0%, rgba(31, 90, 57, 0) 70%);
  transform: translateX(-2%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
  animation: dorcasHeroGlow 8s ease-in-out infinite;
}

.hero-showroom-image {
  animation: dorcasHeroFloat 10s ease-in-out infinite;
  will-change: transform;
}

.hero-showroom-overlay h1 span,
.hero-showroom-overlay .hero-text,
.hero-benefits--band {
  opacity: 0;
  animation: dorcasHeroCopyIn 0.9s var(--ease-glide) forwards;
}

.hero-showroom-overlay h1 span:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-showroom-overlay h1 span:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-showroom-overlay h1 span:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-showroom-overlay .hero-text {
  animation-delay: 0.42s;
}

.hero-benefits--band {
  animation-delay: 0.56s;
  background:
    linear-gradient(90deg, rgba(15, 18, 18, 0.52) 0%, rgba(15, 18, 18, 0.24) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.16);
  box-shadow: 0 -18px 38px rgba(0, 0, 0, 0.12);
}

.hero-benefits--band article {
  position: relative;
  overflow: hidden;
  border-right-color: rgba(255, 255, 255, 0.12);
}

.hero-benefits--band article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-premium);
}

.hero-benefits--band article:hover::before,
.hero-benefits--band article:focus-within::before {
  transform: translateX(130%);
}

.hero-benefits--band strong {
  color: rgba(255, 255, 255, 0.92);
}

.featured-highlight-card {
  overflow: hidden;
}

.featured-highlight-card::before {
  animation: dorcasHeroGlow 10s ease-in-out infinite;
}

.featured-highlight-media img {
  filter: drop-shadow(0 30px 34px rgba(17, 22, 18, 0.18));
}

.featured-highlight-card:hover .featured-highlight-media img,
.featured-highlight-card:focus-within .featured-highlight-media img {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 36px 40px rgba(17, 22, 18, 0.22));
}

.featured-highlight-specs article {
  transition:
    transform 0.34s var(--ease-premium),
    box-shadow 0.34s var(--ease-premium),
    border-color 0.34s ease;
}

.featured-highlight-specs article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(17, 22, 18, 0.08);
}

.lineup-showcase {
  gap: 14px;
}

.lineup-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: min(620px, 46vw);
  height: min(620px, 46vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.lineup-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: min(420px, 38vw);
  height: 48px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 22, 18, 0.22) 0%, rgba(17, 22, 18, 0) 72%);
  filter: blur(18px);
  z-index: 0;
  animation: dorcasShadowBreath 8s ease-in-out infinite;
}

.lineup-vehicle--side {
  opacity: 0.46;
  filter: blur(1.4px) saturate(0.9);
  transform: translateY(38px) scale(0.76);
}

.lineup-vehicle--side:hover,
.lineup-vehicle--side:focus-visible {
  opacity: 0.7;
  filter: blur(0.6px) saturate(0.95);
  transform: translateY(24px) scale(0.81);
}

.lineup-vehicle--active {
  animation: dorcasLineupFloat 8s ease-in-out infinite;
}

.lineup-vehicle--active img {
  filter: drop-shadow(0 34px 34px rgba(17, 22, 18, 0.18));
}

.lineup-showcase.is-switching .lineup-vehicle--active,
.lineup-showcase.is-switching .lineup-info {
  animation: dorcasLineupSwap 0.52s var(--ease-premium);
}

.lineup-nav {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(21, 25, 20, 0.1);
  backdrop-filter: blur(16px) saturate(1.04);
}

.lineup-nav:hover,
.lineup-nav:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 34px rgba(17, 22, 18, 0.12);
}

.lineup-dot {
  transform: scale(1);
}

.lineup-dot.is-active {
  width: 28px;
  box-shadow: 0 10px 18px rgba(31, 90, 57, 0.18);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 44px rgba(17, 22, 18, 0.12);
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 24px 30px rgba(17, 22, 18, 0.16));
}

.product-panel {
  background: rgba(9, 11, 10, 0.6);
  backdrop-filter: blur(14px);
}

.product-panel-shell {
  box-shadow: 0 34px 64px rgba(0, 0, 0, 0.22);
}

.product-panel.is-open .product-panel-shell {
  animation: dorcasLineupSwap 0.52s var(--ease-premium);
}

.product-panel-stage-media img {
  filter: drop-shadow(0 30px 38px rgba(17, 22, 18, 0.18));
  animation: dorcasLineupFloat 8.8s ease-in-out infinite;
}

.product-swatch {
  box-shadow: 0 10px 20px rgba(17, 22, 18, 0.08);
}

.product-swatch:hover,
.product-swatch:focus-visible,
.product-swatch.is-active {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 24px rgba(17, 22, 18, 0.14);
}

.reveal-on-scroll {
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-glide),
    transform 0.7s var(--ease-glide);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 980px) {
  .hero-showroom--single::before {
    inset: 22% auto auto 50%;
    width: min(76vw, 520px);
    height: min(76vw, 520px);
  }

  .hero-showroom-image {
    animation-duration: 11s;
  }

  .hero-benefits--band {
    background: linear-gradient(180deg, rgba(15, 18, 18, 0.46) 0%, rgba(15, 18, 18, 0.62) 100%);
  }

  .lineup-stage::before {
    width: min(86vw, 520px);
    height: min(86vw, 520px);
  }
}

@media (max-width: 720px) {
  .site-nav a::after {
    bottom: -6px;
  }

  .hero-showroom--single::before {
    inset: 24% auto auto 50%;
    width: min(94vw, 460px);
    height: min(94vw, 460px);
    transform: translateX(-50%);
  }

  .hero-showroom-overlay h1 span,
  .hero-showroom-overlay .hero-text,
  .hero-benefits--band {
    animation-duration: 0.78s;
  }

  .lineup-vehicle--side {
    opacity: 0.38;
    filter: blur(1px) saturate(0.9);
    transform: translateY(24px) scale(0.72);
  }

  .lineup-vehicle--active {
    animation-duration: 7.2s;
  }
}

/* FAQ dark editorial pass inspired by Kayen-style composition */
.faq-section--conversion {
  padding: 68px 0 26px;
}

.faq-shell--kayen {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 44px;
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 16%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(114deg, transparent 0 12.8%, rgba(91, 255, 87, 0.28) 13%, transparent 13.25%, transparent 17.8%, rgba(91, 255, 87, 0.08) 18%, transparent 18.2%),
    linear-gradient(66deg, transparent 0 82.5%, rgba(91, 255, 87, 0.32) 82.7%, transparent 82.95%, transparent 89%, rgba(91, 255, 87, 0.1) 89.2%, transparent 89.45%),
    linear-gradient(180deg, #090b0d 0%, #111417 54%, #0b0d10 100%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
}

.faq-shell--kayen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.74) 0%, rgba(4, 7, 10, 0.34) 42%, rgba(4, 7, 10, 0.76) 100%),
    radial-gradient(circle at 14% 86%, rgba(224, 174, 32, 0.16), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(91, 255, 87, 0.06), transparent 18%);
  pointer-events: none;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 1px minmax(0, 0.95fr);
  align-items: start;
  gap: 26px;
  max-width: 1220px;
  margin: 0 auto;
}

.faq-head--kayen h2,
.faq-head--kayen .section-text {
  margin: 0;
}

.faq-head--kayen h2 {
  justify-self: center;
  max-width: 11ch;
  color: #ffffff;
  font-family: "Arial Narrow", "Bahnschrift SemiCondensed", "Impact", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-align: center;
}

.faq-head--kayen::after {
  content: "";
  grid-column: 2;
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.74);
}

.faq-head--kayen .section-text {
  grid-column: 3;
  max-width: 31ch;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.97rem;
  line-height: 1.72;
  letter-spacing: 0.02em;
}

.faq-grid--kayen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 38px;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-card--kayen {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.faq-card--kayen summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 0;
}

.faq-card--kayen summary::before {
  content: "+";
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-2px);
  transition: color 0.24s ease, transform 0.24s ease;
}

.faq-card--kayen[open] summary::before {
  content: "-";
  color: #f0bf24;
}

.faq-card--kayen summary::after {
  display: none;
}

.faq-card--kayen .faq-question-copy {
  color: #ffffff;
  font-family: "Arial Narrow", "Bahnschrift SemiCondensed", "Impact", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #ffd439;
}

.faq-card--kayen .faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 18px;
  transition: grid-template-rows 0.32s ease;
}

.faq-card--kayen[open] .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-card--kayen .faq-answer-inner {
  overflow: hidden;
}

.faq-card--kayen .faq-answer-inner p {
  max-width: none;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(6, 10, 14, 0.3);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    justify-self: start;
    max-width: 9.8ch;
    text-align: left;
  }

  .faq-head--kayen .section-text {
    grid-column: auto;
    max-width: 36ch;
    padding-top: 0;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .faq-section--conversion {
    padding: 40px 0 14px;
  }

  .faq-shell--kayen {
    gap: 28px;
    padding: 26px 18px;
  }

  .faq-head--kayen h2 {
    max-width: 9.4ch;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .faq-head--kayen .section-text {
    font-size: 0.9rem;
    line-height: 1.64;
  }

  .faq-column {
    gap: 16px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.2rem;
  }

  .faq-card--kayen summary::before {
    font-size: 1.7rem;
  }

  .faq-card--kayen .faq-answer-inner p {
    padding: 14px 14px 16px;
    font-size: 0.9rem;
  }
}

/* FAQ size pass: make the section wider, taller, and less boxed-in. */
.faq-section--conversion {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 68px 0 26px;
}

.faq-shell--kayen {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 1040px;
  padding: clamp(40px, 4.2vw, 64px);
}

.faq-head--kayen {
  max-width: 1320px;
  gap: 34px;
}

.faq-grid--kayen {
  gap: 28px 54px;
}

.faq-column {
  gap: 22px;
}

.faq-card--kayen .faq-question-copy {
  font-size: clamp(1.65rem, 2.35vw, 2.15rem);
}

.faq-card--kayen .faq-answer-inner p {
  padding: 18px 20px 20px;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .faq-shell--kayen {
    min-height: auto;
    padding: 32px 22px;
  }
}

/* Service complete section replacing the old featured highlight. */
.service-complete {
  padding: 54px 0 28px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(247, 245, 239, 0.96) 0%, rgba(243, 241, 235, 0.98) 100%);
}

.service-complete-shell {
  display: grid;
  gap: clamp(40px, 4vw, 70px);
}

.service-complete-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.service-complete-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
}

.service-complete-title::after {
  content: "";
  width: 1px;
  height: 112px;
  background: rgba(21, 25, 20, 0.14);
}

.service-complete-title h2 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.2vw, 4.95rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.service-complete-title h2 span {
  display: block;
}

.service-complete-accent {
  color: var(--green);
}

.service-complete-kicker {
  margin: 0;
  max-width: 23ch;
  color: #3a433d;
  font-family: "Consolas", "Lucida Console", monospace;
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  line-height: 1.95;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.service-complete-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-complete-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 2vw, 34px) 0;
  text-align: center;
}

.service-complete-card + .service-complete-card {
  border-left: 1px solid rgba(21, 25, 20, 0.08);
}

.service-complete-icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.service-complete-icon svg {
  width: 88px;
  height: 88px;
}

.service-complete-card h3 {
  margin: 0;
  color: #171b17;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2vw, 2.45rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-complete-line {
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.service-complete-card p {
  margin: 0;
  max-width: 14ch;
  color: #59625c;
  font-size: clamp(1.02rem, 1.24vw, 1.15rem);
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .service-complete {
    padding: 46px 0 20px;
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-kicker {
    max-width: 36ch;
    line-height: 1.75;
    letter-spacing: 0.22em;
  }

  .service-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    padding-top: 34px;
    border-top: 1px solid rgba(21, 25, 20, 0.08);
  }
}

@media (max-width: 720px) {
  .service-complete {
    padding: 34px 0 8px;
  }

  .service-complete-shell {
    gap: 28px;
  }

  .service-complete-title h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.96;
  }

  .service-complete-kicker {
    max-width: 26ch;
    font-size: 0.82rem;
    line-height: 1.8;
    letter-spacing: 0.18em;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-card {
    justify-items: start;
    text-align: left;
    padding: 24px 0;
  }

  .service-complete-card + .service-complete-card,
  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(21, 25, 20, 0.08);
    padding-top: 24px;
  }

  .service-complete-icon {
    width: 74px;
    height: 74px;
  }

  .service-complete-icon svg {
    width: 74px;
    height: 74px;
  }

  .service-complete-card h3 {
    font-size: clamp(1.62rem, 7vw, 2rem);
  }

  .service-complete-card p {
    max-width: 28ch;
    font-size: 0.98rem;
    line-height: 1.68;
  }
}

/* Service complete reference pass. */
.service-complete .shell {
  width: min(1540px, calc(100% - 88px));
}

.service-complete-shell {
  gap: clamp(58px, 5vw, 84px);
}

.service-complete-head {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(34px, 4vw, 68px);
}

.service-complete-title {
  gap: clamp(24px, 2.4vw, 42px);
}

.service-complete-title::after {
  height: 124px;
  background: rgba(21, 25, 20, 0.12);
}

.service-complete-title h2 {
  font-size: clamp(3.4rem, 5.7vw, 5.55rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.service-complete-kicker {
  max-width: 25ch;
  color: #424a44;
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  line-height: 2.1;
  letter-spacing: 0.36em;
}

.service-complete-grid {
  align-items: start;
}

.service-complete-card {
  gap: 20px;
  padding: 8px clamp(26px, 2vw, 42px) 0;
}

.service-complete-card h3 {
  font-size: clamp(2.05rem, 2vw, 2.42rem);
  line-height: 1.02;
}

.service-complete-card p {
  max-width: 13.5ch;
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.88;
}

@media (max-width: 1180px) {
  .service-complete .shell {
    width: min(100% - 40px, 100%);
  }

  .service-complete-shell {
    gap: 42px;
  }

  .service-complete-head {
    gap: 22px;
  }

  .service-complete-kicker {
    max-width: 34ch;
    line-height: 1.8;
    letter-spacing: 0.22em;
  }

  .service-complete-card {
    padding-inline: 20px;
  }
}

@media (max-width: 720px) {
  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-shell {
    gap: 26px;
  }

  .service-complete-head {
    gap: 18px;
  }

  .service-complete-title h2 {
    font-size: clamp(2.05rem, 8.8vw, 3rem);
  }

  .service-complete-kicker {
    max-width: 28ch;
    font-size: 0.8rem;
    line-height: 1.82;
    letter-spacing: 0.18em;
  }

  .service-complete-card {
    gap: 16px;
    padding: 22px 0;
  }

  .service-complete-card h3 {
    max-width: 9ch;
  }

  .service-complete-card p {
    max-width: 26ch;
    font-size: 0.96rem;
    line-height: 1.72;
  }
}

/* Final service-complete layout to match the provided reference more closely. */
.service-complete {
  padding: 58px 0 20px;
}

.service-complete .shell {
  width: min(1580px, calc(100% - 92px));
}

.service-complete-shell {
  gap: 64px;
}

.service-complete-head {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: center;
}

.service-complete-title {
  gap: 38px;
}

.service-complete-title::after {
  height: 108px;
  background: rgba(21, 25, 20, 0.14);
}

.service-complete-title h2 {
  font-size: clamp(3.15rem, 4.7vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.service-complete-title h2 span {
  white-space: nowrap;
}

.service-complete-kicker {
  max-width: 33ch;
  color: #49514b;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 2.02;
  letter-spacing: 0.34em;
  text-align: left;
}

.service-complete-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.service-complete-card {
  gap: 18px;
  padding: 4px 30px 0;
}

.service-complete-icon {
  width: 86px;
  height: 86px;
}

.service-complete-icon svg {
  width: 86px;
  height: 86px;
}

.service-complete-card h3 {
  max-width: 8.4ch;
  font-size: clamp(1.7rem, 1.8vw, 2.05rem);
  line-height: 1.02;
}

.service-complete-card p {
  max-width: 14.2ch;
  color: #5a635d;
  font-size: clamp(0.98rem, 1.08vw, 1.05rem);
  line-height: 1.78;
}

@media (max-width: 1180px) {
  .service-complete .shell {
    width: min(100% - 40px, 100%);
  }

  .service-complete-shell {
    gap: 40px;
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-title h2 span {
    white-space: normal;
  }

  .service-complete-kicker {
    max-width: 34ch;
    line-height: 1.78;
    letter-spacing: 0.22em;
  }
}

@media (max-width: 720px) {
  .service-complete {
    padding: 36px 0 8px;
  }

  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-shell {
    gap: 28px;
  }

  .service-complete-head {
    gap: 18px;
  }

  .service-complete-title h2 {
    font-size: clamp(2.02rem, 8.8vw, 2.95rem);
    line-height: 0.95;
  }

  .service-complete-kicker {
    max-width: 28ch;
    font-size: 0.8rem;
    line-height: 1.78;
    letter-spacing: 0.18em;
  }

  .service-complete-card {
    gap: 16px;
    padding: 22px 0;
  }

  .service-complete-icon,
  .service-complete-icon svg {
    width: 74px;
    height: 74px;
  }

  .service-complete-card h3 {
    max-width: none;
    font-size: clamp(1.58rem, 7vw, 1.95rem);
  }

  .service-complete-card p {
    max-width: 26ch;
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

/* Final hero + lineup cleanup. */
.hero-benefits--band {
  display: none !important;
}

.hero-showroom-overlay {
  padding-bottom: 86px;
}

.catalog-section--lead {
  padding: 46px 0 52px;
}

.section-header-catalog {
  margin-bottom: 8px;
}

.section-header-catalog--simple h2 {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.section-header-catalog--simple .section-text {
  max-width: 44rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.5;
}

.lineup-showcase {
  margin-top: -88px;
  gap: 8px;
}

.lineup-stage {
  min-height: clamp(420px, 42vw, 520px);
  align-items: center;
}

.lineup-vehicle--active {
  transform: translateY(-26px);
}

.lineup-vehicle--active img {
  max-height: clamp(300px, 31vw, 410px);
}

.lineup-vehicle--left {
  transform: translate(12px, 4px) scale(0.76);
}

.lineup-vehicle--right {
  transform: translate(-12px, 4px) scale(0.76);
}

.lineup-info {
  margin-top: -102px;
  gap: 6px;
}

.lineup-info h3 {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 3.7vw, 3.2rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lineup-info p {
  font-size: 0.98rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .catalog-section--lead {
    padding: 34px 0 34px;
  }

  .lineup-showcase {
    margin-top: -34px;
  }

  .lineup-stage {
    min-height: 286px;
  }

  .lineup-vehicle--active {
    transform: translateY(-8px);
  }

  .lineup-vehicle--active img {
    max-height: 226px;
  }

  .lineup-info {
    margin-top: -18px;
  }
}

/* Final exact pass for the service section based on the provided reference. */
.service-complete {
  padding: 64px 0 18px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #faf8f2 0%, #f3f0e8 100%);
}

.service-complete .shell {
  width: min(1640px, calc(100% - 96px));
}

.service-complete-shell {
  gap: 74px;
}

.service-complete-head {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.service-complete-title {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.service-complete-title::after {
  width: 1px;
  height: 102px;
  background: rgba(21, 25, 20, 0.14);
}

.service-complete-title h2 {
  max-width: none;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.55rem, 4.9vw, 5.05rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.service-complete-title h2 span {
  display: block;
  white-space: nowrap;
}

.service-complete-kicker {
  max-width: none;
  color: #3d453f;
  font-family: "Consolas", "Lucida Console", monospace;
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 2;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.service-complete-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.service-complete-card {
  gap: 18px;
  padding: 0 28px;
  justify-items: center;
  text-align: center;
}

.service-complete-card + .service-complete-card {
  border-left: 1px solid rgba(21, 25, 20, 0.08);
}

.service-complete-icon,
.service-complete-icon svg {
  width: 94px;
  height: 94px;
}

.service-complete-card h3 {
  max-width: 8.5ch;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 1.95vw, 2.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.service-complete-line {
  width: 56px;
  height: 4px;
}

.service-complete-card p {
  max-width: 15.5ch;
  color: #5b635d;
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  line-height: 1.82;
}

@media (max-width: 1260px) {
  .service-complete .shell {
    width: min(100% - 48px, 100%);
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-title h2 span {
    white-space: normal;
  }

  .service-complete-kicker {
    max-width: 38ch;
    line-height: 1.75;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 900px) {
  .service-complete {
    padding: 38px 0 8px;
  }

  .service-complete-shell {
    gap: 34px;
  }

  .service-complete-title h2 {
    font-size: clamp(2.3rem, 9.2vw, 3.2rem);
    line-height: 0.95;
  }

  .service-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    padding-top: 28px;
    border-top: 1px solid rgba(21, 25, 20, 0.08);
  }
}

@media (max-width: 640px) {
  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-card {
    justify-items: start;
    text-align: left;
    padding: 22px 0;
  }

  .service-complete-card + .service-complete-card,
  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(21, 25, 20, 0.08);
    padding-top: 22px;
  }

  .service-complete-icon,
  .service-complete-icon svg {
    width: 76px;
    height: 76px;
  }

  .service-complete-card h3,
  .service-complete-card p {
    max-width: none;
  }
}

/* Service section polish based on the visual reference in elementos-visuales. */
.service-complete {
  min-height: clamp(720px, 53vw, 914px);
  padding: clamp(112px, 9.7vw, 170px) 0 clamp(96px, 7.4vw, 132px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 7%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #fbfbf9 0%, #f5f5f1 100%);
}

.service-complete .shell {
  width: min(1640px, calc(100% - 96px));
}

.service-complete-shell {
  gap: clamp(84px, 6vw, 104px);
}

.service-complete-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  gap: 58px;
  padding-inline: clamp(36px, 4.2vw, 72px) clamp(24px, 2.3vw, 40px);
  align-items: center;
}

.service-complete-title {
  grid-template-columns: minmax(0, max-content) auto;
  gap: clamp(46px, 4.2vw, 72px);
  align-items: center;
}

.service-complete-title::after {
  display: block;
  width: 1px;
  height: 112px;
  background: rgba(21, 25, 20, 0.22);
}

.service-complete-title h2 {
  margin: 0;
  color: #181b18;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 4.55rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-title h2 span {
  display: block;
  white-space: nowrap;
}

.service-complete-accent {
  color: #236337;
}

.service-complete-kicker {
  margin: 0;
  width: max-content;
  max-width: 100%;
  color: #343935;
  font-family: "Consolas", "Lucida Console", monospace;
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.36em;
  text-align: left;
  text-transform: uppercase;
}

.service-complete-kicker span {
  display: block;
}

.service-complete-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.service-complete-card {
  position: relative;
  gap: 20px;
  padding: 0 clamp(34px, 3.2vw, 70px);
  justify-items: center;
  text-align: center;
}

.service-complete-card + .service-complete-card {
  border-left: 0;
}

.service-complete-card + .service-complete-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  bottom: 22px;
  width: 1px;
  background: rgba(21, 25, 20, 0.1);
}

.service-complete-icon,
.service-complete-icon svg {
  width: 96px;
  height: 96px;
}

.service-complete-icon {
  margin-bottom: 12px;
  color: #236337;
}

.service-complete-icon svg * {
  vector-effect: non-scaling-stroke;
}

.service-complete-card h3 {
  max-width: 13ch;
  margin: 0;
  color: #202321;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-line {
  width: 54px;
  height: 3px;
  border-radius: 0;
  background: #236337;
}

.service-complete-card p {
  max-width: 29ch;
  margin: 0;
  color: #4e5650;
  font-size: 1.18rem;
  line-height: 1.72;
}

@media (max-width: 1260px) {
  .service-complete {
    min-height: auto;
    padding: 86px 0 82px;
  }

  .service-complete .shell {
    width: min(100% - 48px, 100%);
  }

  .service-complete-shell {
    gap: 62px;
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: 0;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-title h2 {
    font-size: 3.5rem;
  }

  .service-complete-title h2 span {
    white-space: normal;
  }

  .service-complete-kicker {
    width: auto;
    max-width: 44rem;
    font-size: 0.95rem;
    line-height: 1.9;
    letter-spacing: 0.22em;
  }

  .service-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    padding-top: 42px;
    border-top: 1px solid rgba(21, 25, 20, 0.1);
  }

  .service-complete-card:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .service-complete {
    padding: 58px 0 54px;
  }

  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-shell {
    gap: 42px;
  }

  .service-complete-title h2 {
    font-size: 2.45rem;
    line-height: 0.98;
  }

  .service-complete-kicker {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.8;
    letter-spacing: 0.16em;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .service-complete-card {
    padding: 28px 0;
    text-align: center;
    justify-items: center;
  }

  .service-complete-card + .service-complete-card,
  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    border-top: 1px solid rgba(21, 25, 20, 0.1);
    padding-top: 28px;
  }

  .service-complete-card + .service-complete-card::before {
    display: none;
  }

  .service-complete-icon,
  .service-complete-icon svg {
    width: 78px;
    height: 78px;
  }

  .service-complete-icon {
    margin-bottom: 4px;
  }

  .service-complete-card h3 {
    max-width: 13ch;
    font-size: 1.65rem;
  }

  .service-complete-card p {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Exact visual block from the provided reference image. */
.service-complete {
  padding: 48px 0 18px;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, #faf9f5 0%, #f4f1e9 100%);
}

.service-complete .shell {
  width: min(1721px, calc(100% - 40px));
}

.service-complete-visual {
  margin: 0;
}

.service-complete-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .service-complete {
    padding: 24px 0 8px;
  }

  .service-complete .shell {
    width: min(100% - 20px, 100%);
  }
}

/* Interactive rebuild of the service section using real text and the reference icon assets. */
.service-complete {
  padding: 68px 0 28px;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #fbfaf7 0%, #f3efe7 100%);
}

.service-complete .shell {
  width: min(1640px, calc(100% - 92px));
}

.service-complete-shell {
  display: grid;
  gap: 86px;
}

.service-complete-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(410px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.service-complete-title {
  display: grid;
  grid-template-columns: minmax(0, max-content) 1px;
  gap: 36px;
  align-items: center;
}

.service-complete-title::after {
  content: "";
  width: 1px;
  height: 112px;
  background: rgba(21, 25, 20, 0.12);
}

.service-complete-title h2 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.45rem, 4.7vw, 4.9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-title h2 span {
  display: block;
  white-space: nowrap;
}

.service-complete-accent {
  color: #2c7a3f;
}

.service-complete-kicker {
  margin: 0;
  color: #343935;
  font-family: "Consolas", "Lucida Console", monospace;
  font-size: clamp(0.92rem, 0.96vw, 0.99rem);
  line-height: 2.2;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.service-complete-kicker span {
  display: block;
}

.service-complete-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-complete-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
  cursor: default;
}

.service-complete-card + .service-complete-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 16px;
  width: 1px;
  background: rgba(21, 25, 20, 0.1);
}

.service-complete-icon {
  width: 116px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
}

.service-complete-icon img,
.service-complete-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-complete-icon img {
  object-position: center;
}

.service-complete-icon svg {
  color: #2c7a3f;
}

.service-complete-card h3 {
  margin: 0;
  max-width: 8.4ch;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 1.62vw, 1.92rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-line {
  width: 56px;
  height: 3px;
  background: #2c7a3f;
}

.service-complete-card p {
  margin: 0;
  max-width: 16.2ch;
  color: #515851;
  font-size: clamp(0.96rem, 0.95vw, 1rem);
  line-height: 1.66;
}

@media (max-width: 1180px) {
  .service-complete {
    padding: 54px 0 18px;
  }

  .service-complete .shell {
    width: min(100% - 48px, 100%);
  }

  .service-complete-shell {
    gap: 56px;
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-title h2 span {
    white-space: normal;
  }

  .service-complete-kicker {
    max-width: 38ch;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }

  .service-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .service-complete-card {
    padding: 0 24px;
  }

  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    padding-top: 40px;
    border-top: 1px solid rgba(21, 25, 20, 0.1);
  }

  .service-complete-card:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .service-complete {
    padding: 38px 0 8px;
  }

  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-shell {
    gap: 34px;
  }

  .service-complete-title h2 {
    font-size: clamp(2.25rem, 8.9vw, 3rem);
    line-height: 0.95;
  }

  .service-complete-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    line-height: 1.7;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .service-complete-card {
    padding: 28px 0;
  }

  .service-complete-card + .service-complete-card::before {
    display: none;
  }

  .service-complete-card + .service-complete-card,
  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    border-top: 1px solid rgba(21, 25, 20, 0.1);
    padding-top: 28px;
  }

  .service-complete-icon {
    width: 104px;
    height: 78px;
  }

  .service-complete-card h3 {
    font-size: 1.68rem;
  }

  .service-complete-card p {
    max-width: 27ch;
    font-size: 1rem;
    line-height: 1.64;
  }
}

/* FAQ premium refresh */
.faq-section--conversion {
  margin-left: 0;
  margin-right: 0;
  padding: 78px 0 34px;
  background: transparent;
}

.faq-shell--kayen {
  width: min(1760px, calc(100% - 12px));
  min-height: auto;
  margin: 0 auto;
  gap: 56px;
  padding: clamp(40px, 4vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(115deg, transparent 0 14%, rgba(61, 173, 91, 0.18) 14.1%, transparent 14.35%, transparent 20%, rgba(61, 173, 91, 0.05) 20.1%, transparent 20.35%),
    linear-gradient(67deg, transparent 0 83%, rgba(61, 173, 91, 0.16) 83.1%, transparent 83.35%, transparent 90%, rgba(61, 173, 91, 0.04) 90.1%, transparent 90.35%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0d10 0%, #111418 52%, #0a0c0f 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.faq-shell--kayen::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.84) 0%, rgba(7, 10, 12, 0.38) 43%, rgba(7, 10, 12, 0.82) 100%),
    radial-gradient(circle at 18% 82%, rgba(255, 211, 72, 0.08), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(61, 173, 91, 0.08), transparent 18%);
}

.faq-head--kayen {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.52fr);
  gap: 72px;
  max-width: 1240px;
  align-items: end;
}

.faq-head--kayen h2 {
  max-width: 6.6ch;
  justify-self: start;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(3.15rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: left;
  text-wrap: pretty;
}

.faq-head--kayen::after {
  display: none;
}

.faq-head--kayen .section-text {
  max-width: 23ch;
  padding: 2px 0 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.faq-grid--kayen {
  gap: 28px 56px;
}

.faq-column {
  gap: 24px;
}

.faq-card--kayen summary {
  gap: 18px;
}

.faq-card--kayen summary::before {
  font-size: 2.2rem;
  font-weight: 500;
}

.faq-card--kayen .faq-question-copy {
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.7rem, 2.15vw, 2.3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 16px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 20px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.74;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 42px 0 18px;
  }

  .faq-shell--kayen {
    width: min(100% - 20px, 100%);
    gap: 36px;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    justify-self: start;
    max-width: 7.8ch;
    font-size: clamp(2.45rem, 9vw, 3.6rem);
    text-align: left;
  }

  .faq-head--kayen .section-text {
    max-width: 31ch;
    padding: 0 0 0 16px;
    border-left-width: 1px;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-column {
    gap: 18px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.28rem;
  }

  .faq-card--kayen .faq-answer-inner p {
    padding: 16px 16px 18px;
    font-size: 0.92rem;
  }
}

/* FAQ layout pass aligned to the latest visual reference */
.faq-shell--kayen {
  width: min(1440px, calc(100% - 36px));
  gap: 38px;
  padding: clamp(28px, 2.6vw, 40px);
}

.faq-head--kayen {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: none;
}

.faq-head--kayen::after {
  display: none;
}

.faq-head--kayen h2 {
  flex: 0 0 auto;
  width: 494px;
  max-width: none;
  margin-right: 24px;
  font-size: 55px;
  line-height: 0.96;
  text-align: right;
  text-wrap: initial;
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  flex: 0 0 520px;
  max-width: none;
  padding: 4px 0 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: left;
  align-self: center;
}

.faq-head--kayen .section-text span {
  display: block;
  white-space: nowrap;
}

.faq-grid--kayen {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}

.faq-column {
  gap: 16px;
}

.faq-card--kayen summary {
  gap: 14px;
}

.faq-card--kayen summary::before {
  font-size: 1.9rem;
  transform: translateY(-1px);
}

.faq-card--kayen .faq-question-copy {
  font-size: clamp(1.08rem, 1.4vw, 1.42rem);
  line-height: 1.18;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 12px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px 16px;
  font-size: 0.9rem;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .faq-shell--kayen {
    width: min(100% - 20px, 100%);
    gap: 30px;
    padding: 24px 18px;
  }

  .faq-head--kayen {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 16px;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    width: auto;
    margin-right: 0;
    max-width: 9.2ch;
    justify-self: start;
    font-size: clamp(2.1rem, 8vw, 3rem);
    text-align: left;
  }

  .faq-head--kayen h2 span,
  .faq-head--kayen .section-text span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    flex: none;
    max-width: 32ch;
    padding: 0;
    border-left: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
  }

.faq-card--kayen .faq-question-copy {
    font-size: 1.08rem;
  }
}

/* TRUE FINAL TIKTOK RESTORE */
#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 14px !important;
}

#videos .tiktok-shell > :not(.tiktok-carousel):not(.tiktok-dots) {
  display: none !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: flex !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-card > :not(.tiktok-video-frame) {
  display: none !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

#videos .tiktok-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

#videos .tiktok-dot {
  width: 34px !important;
  height: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(17, 20, 19, 0.12) !important;
  cursor: pointer !important;
}

#videos .tiktok-dot.is-active {
  background: #111413 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-video-card {
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    gap: 18px !important;
  }

  #videos .tiktok-video-card {
    flex-basis: 100% !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }

  #videos .tiktok-dot {
    width: 26px !important;
  }
}

/* Legal pages refresh. */
.legal-page {
  background: #ffffff;
  color: #151914;
}

.legal-page-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 32;
  background: rgba(247, 245, 239, 0.76) !important;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  box-shadow: 0 10px 28px rgba(17, 22, 18, 0.06);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.legal-page-header .shell {
  width: min(100% - 42px, 1560px);
}

.legal-page-header .header-row {
  min-height: 86px;
}

.legal-page-header .brand-logo {
  width: clamp(176px, 10vw, 220px);
}

.legal-page-header .site-nav {
  justify-content: center;
  gap: clamp(20px, 1.5vw, 34px);
}

.legal-page-header .site-nav .nav-link {
  color: rgba(21, 25, 20, 0.82);
  text-shadow: none;
}

.legal-page-header .site-nav .nav-link:hover,
.legal-page-header .site-nav .nav-link:focus-visible {
  color: var(--green-deep);
}

.legal-page-header .button-primary {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
  backdrop-filter: none;
}

.legal-page-header .button-primary:hover,
.legal-page-header .button-primary:focus-visible {
  color: #ffffff;
  background: #0f6a3d;
  border-color: #0f6a3d;
}

.legal-page-main {
  background: #ffffff;
}

.legal-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
}

.legal-hero-shell {
  display: grid;
  gap: 28px;
}

.legal-back-link {
  width: fit-content;
  color: rgba(21, 25, 20, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  color: var(--green-deep);
}

.legal-title-wrap {
  max-width: 960px;
}

.legal-meta {
  margin: 0 0 14px;
  color: #df3a33;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-title-wrap h1 {
  margin: 0;
  max-width: 11ch;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 4.6vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-summary {
  max-width: 720px;
  margin: 22px 0 0;
  color: #58645c;
  font-size: 1.03rem;
  line-height: 1.75;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 68px;
  padding: 52px 0 84px;
}

.legal-body {
  display: grid;
  gap: 34px;
}

.legal-section {
  padding-top: 24px;
  border-top: 1px solid rgba(21, 25, 20, 0.08);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  color: #5a645e;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-section p,
.legal-section ul {
  margin: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 20px;
}

.legal-side {
  display: grid;
  gap: 28px;
  align-content: start;
}

.legal-side-card {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-side-kicker {
  margin: 0;
  color: #df3a33;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-side-card h2 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.legal-side-card p {
  margin: 0;
  color: #657068;
  line-height: 1.72;
}

.legal-side-links {
  display: grid;
  gap: 12px;
}

.legal-side-links a {
  display: block;
  padding: 0 0 12px;
  color: rgba(21, 25, 20, 0.74);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  border-radius: 0;
  transition: color 180ms ease, border-color 180ms ease, padding-left 180ms ease;
}

.legal-side-links a:hover,
.legal-side-links a:focus-visible {
  color: var(--green-deep);
  border-color: rgba(17, 94, 56, 0.28);
  padding-left: 4px;
}

.legal-side-links a.is-active {
  color: #111413;
  border-color: rgba(17, 94, 56, 0.34);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 980px) {
  .legal-page-header .site-nav {
    display: none;
  }

  .legal-page-header .header-row {
    grid-template-columns: 1fr auto;
  }

  .legal-hero {
    padding: 42px 0 28px;
  }

  .legal-title-wrap h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .legal-layout {
    padding: 38px 0 68px;
  }
}

/* Final responsive polish */
@media (max-width: 920px) {
  .site-topbar {
    display: none;
  }

  .site-header .shell {
    width: min(100% - 24px, 100%);
  }

  .site-header .header-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 74px;
  }

  .site-header .brand-logo {
    width: clamp(158px, 30vw, 192px);
  }

  .site-header .site-nav {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    z-index: 45;
    display: none;
    gap: 14px;
    padding: 18px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 25, 20, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 40px rgba(17, 22, 18, 0.14);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    backdrop-filter: blur(18px);
  }

  body.menu-open .site-header .site-nav {
    display: grid;
  }

  .site-header .site-nav .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
    line-height: 1.25;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  }

  .site-header .site-nav .nav-link:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .site-header .menu-toggle {
    display: inline-flex;
  }

  .site-header .header-actions .account-button,
  .site-header .header-actions .button-primary {
    display: none;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: 640px;
  }

  .hero-showroom-image {
    object-position: 64% center;
  }

  .hero-showroom-overlay {
    padding: 34px 22px 112px;
    align-content: end;
  }

  .hero-showroom-copy {
    max-width: 100%;
  }

  .hero-showroom-overlay h1 {
    max-width: 5.1ch;
    font-size: clamp(2.9rem, 11vw, 4.2rem);
  }

  .hero-showroom-overlay .hero-text {
    max-width: 26rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-benefits--band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .hero-benefits--band article {
    min-height: 58px;
  }

  .catalog-toolbar,
  .toolbar-actions {
    align-items: stretch;
  }

  .product-grid--data-source,
  .contact-cards,
  .journal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lineup-stage {
    min-height: 300px;
    padding: 0 22px;
  }

  .lineup-info {
    text-align: center;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
  }

  .service-complete-card + .service-complete-card::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell,
  .claims-page-header .shell,
  .legal-page-header .shell {
    width: min(100% - 18px, 100%);
  }

  .site-header .site-nav {
    top: 74px;
    left: 9px;
    right: 9px;
    padding: 16px 14px 18px;
  }

  .site-header .brand-logo,
  .claims-page .brand-logo,
  .legal-page-header .brand-logo {
    width: clamp(146px, 38vw, 172px);
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: 560px;
  }

  .hero-showroom-image {
    object-position: 68% center;
  }

  .hero-showroom-overlay {
    padding: 22px 14px 104px;
  }

  .hero-showroom-overlay h1 {
    max-width: 5.3ch;
    font-size: clamp(2.15rem, 10.2vw, 3.15rem);
  }

  .hero-showroom-overlay .hero-text {
    max-width: 17rem;
    font-size: 0.84rem;
    line-height: 1.58;
  }

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

  .hero-benefits--band article {
    min-height: 50px;
  }

  .hero-benefits--band strong {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .lineup-stage {
    min-height: 260px;
    padding: 0 16px;
  }

  .service-complete-title h2,
  .journal-head h2,
  .faq-head--kayen h2,
  .legal-title-wrap h1,
  .claims-hero-shell h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .service-complete-card,
  .journal-card,
  .faq-card--kayen,
  .product-card {
    border-radius: 18px;
  }

  .claims-grid--consumer,
  .claims-grid--detail {
    grid-template-columns: 1fr;
  }

  .claims-form-shell,
  .claims-form-shell--simple {
    padding-inline: 0;
  }

  .footer-frame {
    padding-top: 24px;
  }

  .footer-column a,
  .footer-contact p,
  .footer-note {
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .claims-page-header .site-nav {
    display: none;
  }

  .claims-page-header .header-row {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .claims-page .brand-logo {
    width: clamp(158px, 34vw, 196px);
  }

  .claims-hero {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .claims-hero-shell h2 {
    margin: 0;
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .claims-page-header .shell,
  .legal-page-header .shell {
    width: min(100% - 20px, 100%);
  }

  .claims-page-header .button-primary,
  .legal-page-header .button-primary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .claims-hero-shell {
    width: min(100% - 24px, 100%);
  }

  .claims-intro {
    font-size: 0.84rem;
    line-height: 1.58;
  }
}

/* Store locator: two-column layout with web typography. */
.locations-section {
  position: relative;
  padding: clamp(48px, 6vw, 86px) 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 90, 57, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf6 0%, #ffffff 54%, #f6f5f0 100%);
  border-top: 1px solid rgba(21, 25, 20, 0.08);
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.locations-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.locations-eyebrow,
.location-row-meta,
.locations-current span {
  margin: 0;
  color: rgba(31, 90, 57, 0.92);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.locations-copy h2 {
  margin: 0;
  max-width: 9ch;
  color: #111413;
  font-family: "Barlow Condensed", "Arial Narrow", "Bahnschrift SemiCondensed", sans-serif;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.028em;
  text-transform: uppercase;
}

.locations-copy > p {
  margin: 0;
  max-width: 46ch;
  color: #5e645f;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.72;
}

.locations-list {
  display: grid;
  margin-top: clamp(12px, 2vw, 26px);
  border-top: 1px solid rgba(21, 25, 20, 0.14);
}

.location-row {
  position: relative;
  display: grid;
  width: 100%;
  gap: 8px;
  padding: 22px 0 22px 26px;
  color: #5e645f;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 20, 0.12);
  box-shadow: none;
}

.location-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: transparent;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.location-row strong {
  color: #111413;
  font-family: "Barlow Condensed", "Arial Narrow", "Bahnschrift SemiCondensed", sans-serif;
  font-size: clamp(1.62rem, 2vw, 2.28rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.location-row > span:last-child {
  max-width: 32ch;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.62;
}

.location-row:hover strong,
.location-row:focus-visible strong,
.location-row.is-active strong {
  color: var(--green-deep);
}

.location-row:hover::before,
.location-row:focus-visible::before,
.location-row.is-active::before {
  background: var(--green);
  transform: scaleY(1.08);
}

.location-row:focus-visible {
  outline: 2px solid rgba(31, 90, 57, 0.24);
  outline-offset: 4px;
}

.locations-map-panel {
  display: grid;
  gap: 18px;
}

.locations-map-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(21, 25, 20, 0.14);
}

.locations-current {
  display: grid;
  gap: 8px;
}

.locations-current strong {
  color: #111413;
  font-family: "Barlow Condensed", "Arial Narrow", "Bahnschrift SemiCondensed", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.locations-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}

.locations-action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--green-deep);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.locations-action:hover,
.locations-action:focus-visible {
  color: #0c2417;
  transform: translateY(-2px);
}

.locations-action--ghost {
  color: #515954;
  border-bottom-color: rgba(81, 89, 84, 0.24);
}

.locations-map-frame {
  width: 100%;
  min-height: clamp(340px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(21, 25, 20, 0.12);
  border-radius: 24px;
  background: #e9ece7;
  box-shadow: 0 28px 54px rgba(17, 22, 18, 0.1);
}

.locations-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.05) saturate(0.95) contrast(1.03);
}

@media (max-width: 980px) {
  .locations-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .locations-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .locations-section {
    padding: 40px 0 50px;
  }

  .locations-layout {
    width: min(100% - 28px, 100%);
  }

  .locations-map-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .locations-actions {
    justify-content: flex-start;
  }

  .location-row {
    padding-left: 20px;
  }

  .locations-map-frame {
    min-height: 320px;
    border-radius: 18px;
  }
}

/* Blog article page. */
.blog-page {
  background: #ffffff;
  color: #151914;
}

.blog-page-header {
  position: relative !important;
  top: auto !important;
  z-index: 12;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  box-shadow: none;
}

.blog-page-header .site-nav a,
.blog-page-header .header-link {
  color: rgba(21, 25, 20, 0.68);
}

.blog-page-header .site-nav a:hover,
.blog-page-header .site-nav a:focus-visible {
  color: var(--green);
}

.blog-page-header .button-primary {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.blog-page-main {
  background: #ffffff;
}

.blog-article-hero {
  padding: 62px 0 38px;
  background: #ffffff;
  color: #151914;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
}

.blog-article-hero-shell {
  display: grid;
  gap: 30px;
}

.blog-back-link {
  width: fit-content;
  color: rgba(21, 25, 20, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-back-link:hover,
.blog-back-link:focus-visible {
  color: var(--green);
}

.blog-article-title-wrap {
  max-width: 1040px;
}

.blog-article-meta {
  margin: 0 0 16px;
  color: #df3a33;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-article-title-wrap h1 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  max-width: 14ch;
  color: #111413;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-article-summary {
  max-width: 680px;
  margin: 24px 0 0;
  color: #56615a;
  font-size: 1.06rem;
  line-height: 1.75;
}

.blog-article-media {
  margin-top: 34px;
  aspect-ratio: 16 / 6.4;
  overflow: hidden;
  border-radius: 8px;
  background: #eef0ed;
  box-shadow: 0 18px 42px rgba(17, 22, 18, 0.08);
}

.blog-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  padding: 58px 0 86px;
}

.blog-article-body {
  display: grid;
  gap: 42px;
  max-width: 800px;
}

.blog-content-section {
  display: grid;
  gap: 16px;
}

.blog-content-section h2 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-content-section p,
.blog-content-section li {
  color: #515a54;
  font-size: 1rem;
  line-height: 1.86;
}

.blog-content-section p,
.blog-content-section ul {
  margin: 0;
}

.blog-content-section ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-article-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.blog-aside-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-article-aside h2 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.blog-related-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(17, 20, 19, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #111413;
}

.blog-related-card:hover,
.blog-related-card:focus-visible,
.blog-related-card.is-active {
  border-color: rgba(31, 90, 57, 0.34);
  background: #f7faf7;
}

.blog-related-card img {
  grid-row: span 2;
  width: 76px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.blog-related-card span {
  color: #ef4040;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-related-card strong {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .blog-article-title-wrap h1 {
    font-size: 3.15rem;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .blog-article-aside {
    position: static;
  }

}

@media (max-width: 680px) {
  .blog-page-header .site-nav {
    display: none;
  }

  .blog-page-header .header-row {
    grid-template-columns: 1fr auto;
  }

  .blog-article-hero {
    padding: 44px 0 34px;
  }

  .blog-article-title-wrap h1 {
    font-size: 2.45rem;
  }

  .blog-article-media {
    margin-top: 28px;
    aspect-ratio: 4 / 3;
  }

  .blog-article-layout {
    padding: 40px 0 64px;
  }

  .blog-content-section h2 {
    font-size: 1.55rem;
  }
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 28;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.social-rail-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(14, 18, 16, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.social-rail-link:hover,
.social-rail-link:focus-visible {
  transform: translateX(-4px) scale(1.04);
  box-shadow: 0 20px 34px rgba(14, 18, 16, 0.24);
  filter: saturate(1.06);
}

.social-rail-link svg {
  width: 24px;
  height: 24px;
}

.social-rail-link--facebook {
  background: #1f6fd2;
}

.social-rail-link--instagram {
  background: linear-gradient(180deg, #ff2f90 0%, #de197f 100%);
}

.social-rail-link--whatsapp {
  background: #41cf1d;
}

.social-rail-link--tiktok {
  background: #080808;
}

@media (max-width: 980px) {
  .social-rail {
    right: 12px;
    gap: 10px;
  }

  .social-rail-link {
    width: 46px;
    height: 46px;
  }

  .social-rail-link svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 720px) {
  .social-rail {
    display: none;
  }

  .floating-whatsapp {
    display: inline-flex !important;
  }
}

@media (min-width: 721px) {
  .floating-whatsapp {
    display: none !important;
  }
}

.claims-entry-section {
  padding: 26px 0 0;
}

.claims-entry-shell {
  width: min(1280px, calc(100% - 56px));
}

.claims-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border: 1px solid rgba(18, 24, 20, 0.08);
  border-radius: 26px;
  background: linear-gradient(135deg, #111518 0%, #1b2227 100%);
  box-shadow: 0 24px 56px rgba(7, 12, 11, 0.18);
}

.claims-entry-copy {
  display: grid;
  gap: 10px;
}

.claims-entry-kicker {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.claims-entry-copy h2,
.claims-hero-shell h2,
.claims-block h3 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
}

.claims-entry-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.claims-entry-copy p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.claims-entry-book,
.claims-mini-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f8ff;
}

.claims-entry-book svg {
  width: 104px;
  height: 104px;
  filter: drop-shadow(0 14px 24px rgba(24, 110, 255, 0.18));
}

.claims-section {
  padding: 40px 0 0;
}

.claims-section--page {
  padding-top: 0;
  background: #ffffff;
}

.claims-page-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 32;
  background: rgba(247, 245, 239, 0.76) !important;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  box-shadow: 0 10px 28px rgba(17, 22, 18, 0.06);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.claims-page-header .shell {
  width: min(100% - 42px, 1560px);
}

.claims-page-header .header-row {
  min-height: 86px;
}

.claims-page-header .site-nav {
  justify-content: center;
  gap: clamp(20px, 1.5vw, 34px);
}

.claims-page-header .site-nav a {
  color: rgba(21, 25, 20, 0.82);
  text-shadow: none;
}

.claims-page-header .button-primary {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
  backdrop-filter: none;
}

.claims-page-header .button-primary:hover,
.claims-page-header .button-primary:focus-visible {
  color: #ffffff;
  background: #0f6a3d;
  border-color: #0f6a3d;
}

.claims-page .brand-logo {
  opacity: 1;
  filter: none;
  width: clamp(176px, 10vw, 220px);
}

.claims-page-header .site-nav a:hover,
.claims-page-header .site-nav a:focus-visible {
  color: var(--green-deep);
}

.claims-hero {
  background:
    linear-gradient(180deg, rgba(33, 33, 33, 0.98), rgba(47, 47, 47, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 34%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  padding-bottom: 10px;
}

.claims-hero-shell {
  width: min(1220px, calc(100% - 56px));
  padding: 0;
  display: block;
}

.claims-hero-kicker--simple {
  display: none;
}

.claims-hero-shell h2 {
  color: #ffffff;
  width: min(100%, 860px);
  margin: 0 auto;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: -0.03em;
}

.claims-layout-shell {
  width: min(1220px, calc(100% - 56px));
  padding: 26px 0 36px;
}

.claims-layout-shell--simple {
  display: block;
}

.claims-form-shell {
  padding: 28px 30px 34px;
  border: 1px solid rgba(18, 24, 20, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 248, 244, 0.96)),
    #ffffff;
  box-shadow: 0 24px 54px rgba(17, 21, 19, 0.08);
}

.claims-form-shell--simple {
  max-width: 980px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
}

.claims-intro {
  margin: 0 0 20px;
  color: #7b7f83;
  font-size: 0.9rem;
  line-height: 1.6;
}

.claims-form {
  display: grid;
  gap: 22px;
}

.claims-block {
  display: grid;
  gap: 18px;
  padding: 0;
}

.claims-block + .claims-block {
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}

.claims-block h3 {
  color: #12171c;
  font-size: clamp(1.4rem, 1.9vw, 1.85rem);
  line-height: 1.05;
}

.claims-grid {
  display: grid;
  gap: 12px 20px;
}

.claims-grid--consumer,
.claims-grid--detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.claims-field {
  display: grid;
  gap: 8px;
}

.claims-field--full {
  grid-column: 1 / -1;
}

.claims-field input,
.claims-field select,
.claims-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: #12171c;
  background: #ffffff;
  border: 1px solid #ff2a1f;
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  font-size: 0.86rem;
  line-height: 1.3;
}

.claims-field textarea {
  resize: vertical;
  min-height: 96px;
}

.claims-field input:focus,
.claims-field select:focus,
.claims-field textarea:focus {
  border-color: #d32018;
  box-shadow: 0 0 0 2px rgba(255, 58, 49, 0.08);
}

.claims-choice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.claims-choice label,
.claims-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.claims-choice--simple label {
  align-items: center;
  gap: 6px;
  color: #666b70;
  font-size: 0.88rem;
}

.claims-choice input,
.claims-check input {
  margin-top: 2px;
}

.claims-notes {
  display: grid;
  gap: 10px;
  padding: 0;
  color: #505a64;
  line-height: 1.62;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.claims-notes p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.68;
}

.claims-notes--simple strong {
  color: #2f3439;
}

.claims-check {
  padding: 0;
  color: #4f5963;
  line-height: 1.6;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.claims-check--simple {
  gap: 8px;
  color: #5d6368;
  font-size: 0.82rem;
  line-height: 1.68;
}

.claims-submit {
  min-height: 62px;
  padding: 0 26px;
  justify-self: start;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1208, #d30e07);
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(196, 18, 11, 0.18);
}

.claims-submit--simple {
  min-height: 44px;
  width: 420px;
  max-width: 100%;
  justify-self: start;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.claims-submit:hover,
.claims-submit:focus-visible {
  background: #e51007;
  transform: translateY(-1px);
}

.claims-footer-link-copy strong,
.terms-footer-link-copy strong {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  line-height: 1;
  text-transform: uppercase;
}

.terms-footer-link-copy small {
  max-width: 320px;
  color: rgba(242, 239, 232, 0.62);
  font-size: 0.86rem;
  line-height: 1.65;
}

.claims-footer-link-media {
  display: inline-flex;
  width: 112px;
  height: 72px;
  align-items: center;
  justify-content: center;
}

.claims-footer-link-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(16, 119, 255, 0.14));
}

.terms-footer-link-media {
  display: inline-flex;
  min-width: 112px;
  min-height: 72px;
  padding: 14px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.terms-footer-link-media span {
  color: #f2efe8;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terms-page {
  background: #ffffff;
  color: #151914;
}

.terms-page-header {
  position: relative !important;
  top: auto !important;
  z-index: 12;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
}

.terms-page-header .site-nav a {
  color: rgba(21, 25, 20, 0.68);
}

.terms-page-header .site-nav a:hover,
.terms-page-header .site-nav a:focus-visible {
  color: var(--green);
}

.terms-page-header .button-primary {
  color: #ffffff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.terms-page-main {
  background: #ffffff;
}

.terms-hero {
  padding: 62px 0 38px;
  border-bottom: 1px solid rgba(21, 25, 20, 0.08);
}

.terms-hero-shell {
  display: grid;
  gap: 24px;
}

.terms-back-link {
  width: fit-content;
  color: rgba(21, 25, 20, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-back-link:hover,
.terms-back-link:focus-visible {
  color: var(--green);
}

.terms-hero-meta {
  margin: 0 0 14px;
  color: #df3a33;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-hero-title {
  margin: 0;
  max-width: 13ch;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.terms-hero-summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: #56615a;
  font-size: 1.03rem;
  line-height: 1.8;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  padding: 52px 0 88px;
}

.terms-content {
  display: grid;
  gap: 22px;
}

.terms-card {
  display: grid;
  gap: 14px;
  padding: 26px 28px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 20, 19, 0.05);
}

.terms-card h2 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.terms-card p,
.terms-card li {
  margin: 0;
  color: #515a54;
  font-size: 0.98rem;
  line-height: 1.82;
}

.terms-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.terms-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  background: #f6f4ee;
}

.terms-aside-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terms-aside h2 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.terms-aside p,
.terms-aside li {
  margin: 0;
  color: #56615a;
  font-size: 0.94rem;
  line-height: 1.72;
}

.terms-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.terms-cta {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #0f1612, #15221a);
  color: #f2efe8;
}

.terms-cta span {
  color: rgba(242, 239, 232, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-cta strong {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.terms-cta p {
  color: rgba(242, 239, 232, 0.76);
}

.terms-cta .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .terms-aside {
    position: static;
  }

  .terms-hero-title {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .terms-card {
    padding: 22px 20px;
  }
}

@media (max-width: 980px) {
  .claims-hero-shell,
  .claims-layout-shell {
    width: min(100% - 24px, 100%);
  }

  .claims-grid--consumer,
  .claims-grid--detail {
    grid-template-columns: 1fr;
  }

  .claims-page-header .header-row {
    min-height: 72px;
  }

  .claims-page-header .site-nav {
    gap: 14px;
  }

  .claims-hero-shell h2 {
    width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    text-align: center;
  }

  .claims-page-header .site-nav {
    gap: 12px;
  }

  .claims-page-header .site-nav a {
    font-size: 0.7rem;
  }

  .claims-form-shell--simple {
    max-width: 100%;
  }

  .claims-submit--simple {
    width: 100%;
  }
}


/* TikTok polish only: keep structure, refine aesthetics */
#videos.tiktok-section {
  padding: 28px 0 6px !important;
}

#videos .shell {
  width: min(1260px, calc(100% - 52px)) !important;
}

#videos .tiktok-shell {
  gap: 12px !important;
}

#videos .tiktok-carousel {
  max-width: 1140px !important;
  margin: 0 auto !important;
  gap: 16px !important;
}

#videos .tiktok-arrow {
  width: 42px !important;
  height: 42px !important;
  border-color: rgba(17, 20, 19, 0.07) !important;
  box-shadow: 0 8px 22px rgba(17, 20, 19, 0.06) !important;
}

#videos .tiktok-arrow svg {
  width: 18px !important;
  height: 18px !important;
}

#videos .tiktok-viewport {
  max-width: 1040px !important;
  margin: 0 auto !important;
}

#videos .tiktok-track {
  gap: 20px !important;
}

#videos .tiktok-video-card {
  flex: 0 0 calc((100% - 40px) / 3) !important;
}

#videos .tiktok-video-frame {
  border-radius: 24px !important;
  box-shadow: 0 16px 30px rgba(17, 20, 19, 0.07) !important;
}

#videos .tiktok-dots {
  gap: 8px !important;
  margin-top: 4px !important;
}

#videos .tiktok-dot {
  width: 28px !important;
  height: 3px !important;
  background: rgba(17, 20, 19, 0.1) !important;
}

@media (max-width: 1100px) {
  #videos .shell {
    width: min(980px, calc(100% - 36px)) !important;
  }

  #videos .tiktok-carousel {
    max-width: 860px !important;
  }

  #videos .tiktok-viewport {
    max-width: 760px !important;
  }

  #videos .tiktok-video-card {
    flex-basis: calc((100% - 20px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 4px !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    max-width: 100% !important;
    gap: 10px !important;
  }

  #videos .tiktok-viewport {
    max-width: 100% !important;
  }

  #videos .tiktok-video-frame {
    max-width: 320px !important;
    border-radius: 22px !important;
  }

  #videos .tiktok-dot {
    width: 22px !important;
  }
}

/* ABSOLUTE FINAL TIKTOK RESTORE */
#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: block !important;
}

#videos .tiktok-shell > :not(.tiktok-carousel) {
  display: none !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-carousel > :not(.tiktok-arrow):not(.tiktok-viewport) {
  display: none !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 48px) / 3) !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  display: block !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-card > :not(.tiktok-video-frame) {
  display: none !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-track {
    grid-auto-columns: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    grid-auto-columns: 100% !important;
    gap: 18px !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }
}

/* Absolute final TikTok restore to the screenshot layout */
#videos > .shell > .tiktok-shell > :not(.tiktok-carousel) {
  display: none !important;
}

#videos .tiktok-carousel > :not(.tiktok-arrow):not(.tiktok-viewport) {
  display: none !important;
}

#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #fff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: block !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 48px) / 3) !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  display: block !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-card > :not(.tiktok-video-frame) {
  display: none !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: none !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-track {
    grid-auto-columns: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    grid-auto-columns: 100% !important;
    gap: 18px !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }
}

/* Final hard restore for TikTok section */
#videos .tiktok-head,
#videos .tiktok-video-copy,
#videos .tiktok-editorial-grid,
#videos .tiktok-editorial-cta {
  display: none !important;
}

#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 46px)) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 0 !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 20px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 48px) / 3) !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  scroll-snap-align: start !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-track {
    grid-auto-columns: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    grid-auto-columns: 100% !important;
    gap: 18px !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }
}

/* Restore original TikTok carousel exactly */
#videos.tiktok-section {
  padding: 24px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 0 !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 48px) / 3) !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  scroll-snap-align: start !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: 0 18px 36px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-track {
    grid-auto-columns: calc((100% - 26px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 42px 0 8px !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    grid-auto-columns: 100% !important;
    gap: 18px !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }
}

/* TikTok subtle polish, keep original layout */
#videos.tiktok-section {
  padding: 52px 0 22px !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(100% - 34px, 1460px) !important;
}

#videos .tiktok-shell {
  gap: 18px !important;
}

#videos .tiktok-carousel {
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-arrow {
  width: 54px !important;
  height: 54px !important;
  border: 1px solid rgba(19, 26, 21, 0.08) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 12px 26px rgba(18, 25, 21, 0.06) !important;
}

#videos .tiktok-viewport {
  padding: 6px 2px 8px !important;
}

#videos .tiktok-track {
  gap: 20px !important;
}

#videos .tiktok-video-card {
  min-width: 0 !important;
}

#videos .tiktok-video-frame {
  border-radius: 26px !important;
  overflow: hidden !important;
  background: #efede8 !important;
  box-shadow: 0 18px 36px rgba(18, 25, 21, 0.08) !important;
}

#videos .tiktok-video-frame iframe {
  display: block !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  #videos.tiktok-section {
    padding: 40px 0 16px !important;
  }

  #videos .shell {
    width: min(100% - 22px, 100%) !important;
  }

  #videos .tiktok-carousel {
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    width: 42px !important;
    height: 42px !important;
  }

  #videos .tiktok-track {
    gap: 14px !important;
  }

  #videos .tiktok-video-frame {
    border-radius: 22px !important;
  }
}

/* Editorial TikTok section */
#videos.tiktok-section {
  padding: 62px 0 26px !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(100% - 40px, 1260px) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 30px !important;
}

#videos .tiktok-head--editorial {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

#videos .tiktok-head--editorial h2 {
  width: 500px !important;
  margin: 0 24px 0 0 !important;
  color: #111714 !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.035em !important;
  text-align: right !important;
}

#videos .tiktok-head--editorial h2 span {
  display: block !important;
  white-space: nowrap !important;
}

#videos .tiktok-head--editorial .tiktok-kicker {
  flex: 0 0 370px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 4px 0 4px 24px !important;
  border-left: 1px solid rgba(17, 23, 20, 0.2) !important;
  color: #69726d !important;
  font-family: "Consolas", "Courier New", monospace !important;
  font-size: 0.92rem !important;
  line-height: 1.68 !important;
  text-align: left !important;
}

#videos .tiktok-editorial-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: start !important;
}

#videos .tiktok-editorial-card {
  display: grid !important;
  gap: 14px !important;
  color: inherit !important;
  text-decoration: none !important;
}

#videos .tiktok-editorial-card:hover .tiktok-editorial-media,
#videos .tiktok-editorial-card:focus-visible .tiktok-editorial-media {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 44px rgba(17, 22, 18, 0.12) !important;
}

#videos .tiktok-editorial-media {
  position: relative !important;
  display: block !important;
  aspect-ratio: 4 / 5 !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  background: #f2f0eb !important;
  box-shadow: 0 18px 36px rgba(17, 22, 18, 0.08) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

#videos .tiktok-editorial-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.12) 0%, rgba(11, 15, 13, 0.02) 34%, rgba(11, 15, 13, 0.12) 100%) !important;
}

#videos .tiktok-editorial-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#videos .tiktok-editorial-play {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 1 !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: 999px !important;
  background: rgba(15, 19, 17, 0.42) !important;
  backdrop-filter: blur(8px) !important;
  transform: translate(-50%, -50%) !important;
}

#videos .tiktok-editorial-play::before {
  content: "" !important;
  position: absolute !important;
  left: 30px !important;
  top: 22px !important;
  border-left: 18px solid #ffffff !important;
  border-top: 12px solid transparent !important;
  border-bottom: 12px solid transparent !important;
}

#videos .tiktok-editorial-copy {
  display: grid !important;
  gap: 4px !important;
  padding: 0 2px !important;
}

#videos .tiktok-editorial-copy strong {
  color: #151b17 !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

#videos .tiktok-editorial-copy span {
  color: #68716b !important;
  font-size: 0.92rem !important;
  line-height: 1.56 !important;
}

#videos .tiktok-editorial-cta {
  display: flex !important;
  justify-content: center !important;
  margin-top: 4px !important;
}

#videos .tiktok-editorial-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(17, 23, 20, 0.12) !important;
  border-radius: 999px !important;
  color: #111714 !important;
  background: #ffffff !important;
  box-shadow: 0 12px 24px rgba(17, 22, 18, 0.05) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  #videos .shell {
    width: min(100% - 28px, 100%) !important;
  }

  #videos .tiktok-head--editorial {
    display: grid !important;
    justify-content: start !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  #videos .tiktok-head--editorial h2 {
    width: auto !important;
    max-width: 8.2ch !important;
    margin: 0 !important;
    font-size: clamp(2.15rem, 8vw, 3rem) !important;
    text-align: left !important;
  }

  #videos .tiktok-head--editorial h2 span {
    white-space: normal !important;
  }

  #videos .tiktok-head--editorial .tiktok-kicker {
    flex: none !important;
    max-width: 30ch !important;
    padding: 0 !important;
    border-left: 0 !important;
    font-size: 0.86rem !important;
  }

  #videos .tiktok-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 42px 0 18px !important;
  }

  #videos .tiktok-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #videos .tiktok-editorial-media {
    aspect-ratio: 4 / 4.8 !important;
    border-radius: 22px !important;
  }

  #videos .tiktok-editorial-play {
    width: 62px !important;
    height: 62px !important;
  }

  #videos .tiktok-editorial-play::before {
    left: 26px !important;
    top: 19px !important;
    border-left-width: 16px !important;
    border-top-width: 11px !important;
    border-bottom-width: 11px !important;
  }

  #videos .tiktok-editorial-copy strong {
    font-size: 1rem !important;
  }

  #videos .tiktok-editorial-copy span {
    font-size: 0.86rem !important;
  }
}

/* Final TikTok section override */
#videos.tiktok-section {
  padding: 64px 0 26px !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(100% - 42px, 1280px) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 28px !important;
}

#videos .tiktok-head--curated {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  max-width: 960px !important;
  margin: 0 auto !important;
}

#videos .tiktok-title-stack {
  flex: 0 0 auto !important;
}

#videos .tiktok-head--curated h2 {
  width: 500px !important;
  max-width: none !important;
  margin: 0 24px 0 0 !important;
  color: #101612 !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: clamp(2.8rem, 4.3vw, 4.7rem) !important;
  font-weight: 800 !important;
  line-height: 0.92 !important;
  text-align: right !important;
  letter-spacing: -0.03em !important;
}

#videos .tiktok-head--curated h2 span {
  display: block !important;
  white-space: nowrap !important;
}

#videos .tiktok-head--curated .tiktok-kicker {
  flex: 0 0 350px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 4px 0 4px 24px !important;
  border-left: 1px solid rgba(18, 24, 20, 0.22) !important;
  color: #69726d !important;
  font-family: "Consolas", "Courier New", monospace !important;
  font-size: 0.92rem !important;
  line-height: 1.68 !important;
  text-align: left !important;
  white-space: normal !important;
}

#videos .tiktok-carousel {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  width: 46px !important;
  height: 46px !important;
  border: 1px solid rgba(20, 28, 22, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #161d18 !important;
  box-shadow: 0 12px 28px rgba(18, 25, 21, 0.06) !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  padding: 6px 2px 10px !important;
}

#videos .tiktok-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(0, calc((100% - 22px) / 2)) !important;
  gap: 22px !important;
  align-items: start !important;
}

#videos .tiktok-video-card {
  display: grid !important;
  gap: 12px !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-frame {
  overflow: hidden !important;
  border-radius: 24px !important;
  background: #f2f1ed !important;
  box-shadow: 0 18px 34px rgba(18, 25, 21, 0.08) !important;
}

#videos .tiktok-video-frame iframe {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 9 / 16 !important;
  height: auto !important;
  min-height: 0 !important;
  border: 0 !important;
}

#videos .tiktok-video-copy {
  display: grid !important;
  gap: 4px !important;
  padding: 0 2px !important;
}

#videos .tiktok-video-copy strong {
  color: #151b16 !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

#videos .tiktok-video-copy span {
  color: #68716b !important;
  font-size: 0.88rem !important;
  line-height: 1.52 !important;
}

@media (max-width: 900px) {
  #videos.tiktok-section {
    padding: 46px 0 20px !important;
  }

  #videos .shell {
    width: min(100% - 24px, 100%) !important;
  }

  #videos .tiktok-head--curated {
    display: grid !important;
    justify-content: start !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  #videos .tiktok-head--curated h2 {
    width: auto !important;
    max-width: 8.2ch !important;
    margin: 0 !important;
    font-size: clamp(2rem, 8.6vw, 3rem) !important;
    text-align: left !important;
  }

  #videos .tiktok-head--curated h2 span {
    white-space: normal !important;
  }

  #videos .tiktok-head--curated .tiktok-kicker {
    flex: none !important;
    max-width: 28ch !important;
    padding: 0 !important;
    border-left: 0 !important;
    font-size: 0.86rem !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-track {
    grid-auto-columns: minmax(0, 100%) !important;
    gap: 16px !important;
  }

  #videos .tiktok-video-frame {
    border-radius: 22px !important;
  }

  #videos .tiktok-video-copy strong {
    font-size: 0.98rem !important;
  }

  #videos .tiktok-video-copy span {
    font-size: 0.84rem !important;
  }
}

/* TikTok section curated redesign */
.tiktok-section {
  padding: 62px 0 30px !important;
  background: #ffffff !important;
}

.tiktok-section .shell {
  width: min(100% - 40px, 1380px) !important;
}

.tiktok-shell {
  display: grid;
  gap: 28px !important;
}

.tiktok-head--curated {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.tiktok-head--curated .tiktok-title-stack {
  flex: 0 0 auto;
}

.tiktok-head--curated h2 {
  width: 510px;
  margin: 0;
  color: #101612;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(2.9rem, 4.5vw, 4.9rem);
  font-weight: 800;
  line-height: 0.92;
  text-align: right;
  letter-spacing: -0.035em;
}

.tiktok-head--curated h2 span {
  display: block;
}

.tiktok-head--curated .tiktok-kicker {
  flex: 0 0 360px;
  max-width: none;
  margin: 0;
  padding: 6px 0 6px 24px;
  border-left: 1px solid rgba(18, 24, 20, 0.24);
  color: #6a726d;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: left;
}

.tiktok-carousel {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px !important;
}

.tiktok-arrow {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(20, 28, 22, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 12px 28px rgba(18, 25, 21, 0.06) !important;
}

.tiktok-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 10px;
}

.tiktok-track {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc((100% - 24px) / 2));
  gap: 24px !important;
  align-items: start;
}

.tiktok-video-card {
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
}

.tiktok-video-frame {
  overflow: hidden;
  border-radius: 26px !important;
  background: #f0efeb !important;
  box-shadow: 0 18px 36px rgba(18, 25, 21, 0.08) !important;
}

.tiktok-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto !important;
  min-height: 0 !important;
  border: 0;
}

.tiktok-video-copy {
  display: grid;
  gap: 4px;
  padding: 0 4px;
}

.tiktok-video-copy strong {
  color: #131914;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.tiktok-video-copy span {
  color: #68716b;
  font-size: 0.92rem;
  line-height: 1.56;
}

@media (max-width: 980px) {
  .tiktok-section .shell {
    width: min(100% - 28px, 100%) !important;
  }

  .tiktok-head--curated {
    display: grid;
    justify-content: start;
    gap: 14px;
    max-width: 100%;
  }

  .tiktok-head--curated h2 {
    width: auto;
    max-width: 8.2ch;
    text-align: left;
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .tiktok-head--curated .tiktok-kicker {
    flex: none;
    max-width: 30ch;
    padding: 0;
    border-left: 0;
    font-size: 0.88rem;
  }

  .tiktok-track {
    grid-auto-columns: minmax(0, calc((100% - 18px) / 2));
    gap: 18px !important;
  }

  .tiktok-video-copy strong {
    font-size: 1rem;
  }

  .tiktok-video-copy span {
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .tiktok-section {
    padding: 42px 0 18px !important;
  }

  .tiktok-carousel {
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .tiktok-arrow {
    display: none !important;
  }

  .tiktok-track {
    grid-auto-columns: minmax(0, 100%);
    gap: 16px !important;
  }

  .tiktok-video-frame {
    border-radius: 22px !important;
  }

  .tiktok-video-copy {
    gap: 3px;
  }
}

/* Header hover refine: keep existing Dorcas header, only enhance hover */
@media (min-width: 981px) {
  .site-header .site-nav {
    gap: 8px;
  }

  .site-header .site-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
    transition:
      color 220ms ease,
      transform 220ms ease,
      text-shadow 220ms ease;
  }

  .site-header .site-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 16px 34px rgba(16, 21, 17, 0);
    transform: translateY(8px) scale(0.97);
    opacity: 0;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      background-color 220ms ease,
      box-shadow 220ms ease;
    z-index: -1;
  }

  .site-header .site-nav .nav-link > * {
    position: relative;
    z-index: 1;
  }

  .site-header .site-nav .nav-link:hover,
  .site-header .site-nav .nav-link:focus-visible {
    transform: translateY(-1px);
    text-shadow: none;
  }

  .site-header .site-nav .nav-link:hover::before,
  .site-header .site-nav .nav-link:focus-visible::before {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .site-header:not(.is-scrolled) .site-nav .nav-link:hover,
  .site-header:not(.is-scrolled) .site-nav .nav-link:focus-visible {
    color: #121813;
  }

  .site-header:not(.is-scrolled) .site-nav .nav-link:hover::before,
  .site-header:not(.is-scrolled) .site-nav .nav-link:focus-visible::before {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(16, 21, 17, 0.08);
  }

  .site-header.is-scrolled .site-nav .nav-link:hover,
  .site-header.is-scrolled .site-nav .nav-link:focus-visible {
    color: #121813;
  }

  .site-header.is-scrolled .site-nav .nav-link:hover::before,
  .site-header.is-scrolled .site-nav .nav-link:focus-visible::before {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(16, 21, 17, 0.06);
  }

  .site-header .site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #52a73c 0%, #79bf59 100%);
    opacity: 0;
    transform: translateX(-50%) scaleX(0.2);
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header .site-nav .nav-link:hover::after,
  .site-header .site-nav .nav-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }

  .site-header .site-nav .nav-link--dropdown {
    gap: 8px;
  }

  .site-header .site-nav .nav-link--dropdown::after {
    content: "";
    position: static;
    width: 5px;
    height: 5px;
    margin-left: 2px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    border-radius: 0;
    background: transparent;
    opacity: 0.34;
    transform: translateY(-3px) rotate(45deg);
  }

  .site-header .site-nav .nav-link--dropdown:hover::after,
  .site-header .site-nav .nav-link--dropdown:focus-visible::after {
    opacity: 0.72;
    transform: translateY(-1px) rotate(45deg);
  }
}


/* Final catalog restore */
.lineup-price,
.lineup-summary,
.lineup-specs {
  display: none !important;
}

.lineup-showcase {
  display: grid !important;
  grid-template-areas:
    "stage"
    "info"
    "dots" !important;
  gap: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.lineup-stage {
  min-height: clamp(320px, 31vw, 430px) !important;
  grid-template-columns: minmax(140px, 0.66fr) minmax(320px, 500px) minmax(140px, 0.66fr) !important;
  padding: 0 56px !important;
}

.lineup-stage::before {
  display: block !important;
  left: 50% !important;
  bottom: 22px !important;
  width: min(440px, 34vw) !important;
  height: min(440px, 34vw) !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0) 72%) !important;
  transform: translateX(-50%) !important;
}

.lineup-stage::after {
  display: block !important;
  left: 50% !important;
  right: auto !important;
  bottom: 14px !important;
  width: min(320px, 28vw) !important;
  height: 34px !important;
  background: radial-gradient(circle, rgba(17, 22, 18, 0.2) 0%, rgba(17, 22, 18, 0) 72%) !important;
  filter: blur(12px) !important;
  transform: translateX(-50%) !important;
}

.lineup-vehicle--side {
  width: min(100%, 210px) !important;
  opacity: 0.3 !important;
  filter: blur(1.6px) saturate(0.88) !important;
}

.lineup-vehicle--left {
  justify-self: end !important;
  transform: translate(0, 6px) scale(0.76) !important;
}

.lineup-vehicle--right {
  justify-self: start !important;
  transform: translate(0, 6px) scale(0.76) !important;
}

.lineup-vehicle--active {
  width: min(100%, 430px) !important;
  transform: translateY(-6px) !important;
}

.lineup-vehicle--active img {
  max-height: clamp(250px, 24vw, 328px) !important;
  filter: none !important;
}

.lineup-nav {
  top: clamp(138px, 45%, 198px) !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 12px 28px rgba(23, 29, 25, 0.06) !important;
  transform: translateY(-50%) !important;
}

.lineup-info {
  width: min(100%, 440px) !important;
  margin: 0 auto !important;
  gap: 4px !important;
  text-align: center !important;
}

.lineup-info h3 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.032em !important;
}

.lineup-info p {
  max-width: none !important;
  color: #616a64 !important;
  font-size: 0.98rem !important;
  line-height: 1.44 !important;
}

.lineup-dots {
  margin: 2px auto 0 !important;
}

@media (max-width: 720px) {
  .product-grid--data-source {
    display: none !important;
  }

  .lineup-showcase {
    display: grid !important;
    gap: 12px !important;
  }

  .lineup-stage {
    min-height: 260px !important;
    grid-template-columns: minmax(64px, 0.32fr) minmax(220px, 1fr) minmax(64px, 0.32fr) !important;
    padding: 0 18px !important;
  }

  .lineup-stage::before {
    width: min(280px, 68vw) !important;
    height: min(280px, 68vw) !important;
  }

  .lineup-stage::after {
    width: min(220px, 54vw) !important;
    height: 24px !important;
  }

  .lineup-vehicle--side {
    width: min(100%, 118px) !important;
    opacity: 0.22 !important;
    filter: blur(1.2px) saturate(0.88) !important;
  }

  .lineup-vehicle--left {
    transform: translate(0, 10px) scale(0.72) !important;
  }

  .lineup-vehicle--right {
    transform: translate(0, 10px) scale(0.72) !important;
  }

  .lineup-vehicle--active {
    width: min(100%, 320px) !important;
    transform: translateY(-2px) !important;
  }

  .lineup-vehicle--active img {
    max-height: 218px !important;
  }

  .lineup-nav {
    top: 44% !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 1.18rem !important;
  }

  .lineup-info {
    width: min(100%, 320px) !important;
  }

  .lineup-info h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
  }

  .lineup-info p {
    font-size: 0.92rem !important;
  }
}

/* Catalog rollback to cleaner original composition */
.catalog-section--lead {
  background: transparent;
}

.section-header-catalog {
  margin-bottom: 22px;
}

.section-header-catalog--simple > div {
  max-width: 760px;
  margin: 0 auto;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.section-header-catalog--simple .eyebrow {
  color: rgba(24, 31, 26, 0.54);
  letter-spacing: 0.18em;
}

.section-header-catalog--simple h2 {
  max-width: 10.5ch;
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
}

.section-header-catalog--simple .section-text {
  max-width: 36rem;
  margin: 8px auto 0;
  color: #66706a;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.56;
}

.lineup-showcase {
  display: grid;
  grid-template-areas:
    "stage"
    "info"
    "dots";
  justify-items: center;
  align-items: start;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  gap: 16px;
}

.lineup-showcase::before {
  display: none;
  content: none;
}

.lineup-stage {
  grid-area: stage;
  width: 100%;
  min-height: clamp(320px, 31vw, 430px);
  grid-template-columns: minmax(140px, 0.66fr) minmax(320px, 500px) minmax(140px, 0.66fr);
  align-items: center;
  justify-items: center;
  padding: 0 56px;
  transform: none;
}

.lineup-stage::before {
  display: block;
  content: "";
  left: 50%;
  bottom: 22px;
  width: min(440px, 34vw);
  height: min(440px, 34vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-50%);
}

.lineup-stage::after {
  left: 50%;
  right: auto;
  bottom: 14px;
  width: min(320px, 28vw);
  height: 34px;
  background: radial-gradient(circle, rgba(17, 22, 18, 0.2) 0%, rgba(17, 22, 18, 0) 72%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.lineup-vehicle--side {
  width: min(100%, 210px);
  opacity: 0.3;
  filter: blur(1.6px) saturate(0.88);
}

.lineup-vehicle--left {
  justify-self: end;
  transform: translate(28px, 6px) scale(0.76);
}

.lineup-vehicle--right {
  justify-self: start;
  transform: translate(-28px, 6px) scale(0.76);
}

.lineup-vehicle--active {
  width: min(100%, 430px);
  transform: translateY(-6px);
}

.lineup-vehicle--active img {
  max-height: clamp(250px, 24vw, 328px);
  filter: none;
}

.lineup-nav {
  top: clamp(138px, 45%, 198px);
  width: 48px;
  height: 48px;
  border-color: rgba(18, 28, 20, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #1c241e;
  box-shadow: 0 12px 28px rgba(23, 29, 25, 0.06);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.lineup-nav:hover,
.lineup-nav:focus-visible {
  transform: translateY(-50%) translateY(-3px);
}

.lineup-info {
  position: static;
  left: auto;
  top: auto;
  grid-area: info;
  width: min(100%, 440px);
  min-width: 0;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.lineup-info-accent {
  justify-self: center;
}

.lineup-info h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
}

.lineup-info p {
  font-size: 0.98rem;
  line-height: 1.44;
}

.lineup-price,
.lineup-summary,
.lineup-specs {
  display: none;
}

.lineup-dots {
  grid-area: dots;
  margin: 2px auto 0;
}

@media (max-width: 900px) {
  .catalog-section--lead {
    padding: 28px 0 44px;
  }

  .catalog-section--lead .shell {
    width: min(100% - 28px, 100%);
  }

  .section-header-catalog {
    margin-bottom: 18px;
  }

  .section-header-catalog--simple h2 {
    max-width: 9.8ch;
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 30rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lineup-showcase {
    gap: 12px;
  }

  .lineup-stage {
    min-height: 260px;
    grid-template-columns: minmax(64px, 0.32fr) minmax(220px, 1fr) minmax(64px, 0.32fr);
    padding: 0 18px;
  }

  .lineup-stage::before {
    width: min(280px, 68vw);
    height: min(280px, 68vw);
  }

  .lineup-stage::after {
    width: min(220px, 54vw);
    height: 24px;
  }

  .lineup-vehicle--side {
    width: min(100%, 118px);
    opacity: 0.22;
  }

  .lineup-vehicle--left {
    transform: translate(0, 10px) scale(0.72);
  }

  .lineup-vehicle--right {
    transform: translate(0, 10px) scale(0.72);
  }

  .lineup-vehicle--active {
    width: min(100%, 320px);
    transform: translateY(-2px);
  }

  .lineup-vehicle--active img {
    max-height: 218px;
  }

  .lineup-nav {
    top: 44%;
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }

  .lineup-info {
    width: min(100%, 320px);
  }

  .lineup-info h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .lineup-info p {
    font-size: 0.92rem;
  }
}

/* Catalog redesign: stronger visual direction */
.catalog-section--lead {
  padding: clamp(44px, 5vw, 82px) 0 clamp(54px, 5vw, 92px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 247, 0.98) 42%, #f5f3ee 100%);
}

.section-header-catalog {
  margin-bottom: 30px;
}

.section-header-catalog--simple > div {
  max-width: 720px;
  gap: 10px;
}

.section-header-catalog--simple .eyebrow {
  margin: 0;
  color: rgba(23, 31, 25, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-header-catalog--simple h2 {
  max-width: 10.6ch;
  margin: 0;
  color: #101612;
  font-size: clamp(2.8rem, 4.2vw, 4.15rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.section-header-catalog--simple .section-text {
  max-width: 40rem;
  margin: 8px auto 0;
  color: #69726d;
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.62;
}

.lineup-showcase {
  position: relative;
  display: grid;
  grid-template-areas:
    "stage"
    "info"
    "dots"
    "specs";
  justify-items: center;
  gap: 10px;
  padding: 8px 0 0;
}

.lineup-showcase::before {
  display: none;
}

.lineup-stage {
  position: relative;
  grid-area: stage;
  width: 100%;
  min-height: clamp(350px, 36vw, 500px);
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(360px, 560px) minmax(150px, 0.78fr);
  align-items: center;
  justify-items: center;
  padding: 0 70px;
  overflow: visible;
}

.lineup-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(560px, 42vw);
  height: min(560px, 42vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.22) 32%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-50%);
  pointer-events: none;
}

.lineup-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(380px, 30vw);
  height: 34px;
  background: radial-gradient(circle, rgba(16, 22, 18, 0.18) 0%, rgba(16, 22, 18, 0) 74%);
  filter: blur(13px);
  transform: translateX(-50%);
  pointer-events: none;
}

.lineup-vehicle {
  position: relative;
  align-self: center;
  transition: transform 320ms ease, opacity 320ms ease, filter 320ms ease;
}

.lineup-vehicle img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lineup-vehicle--side {
  width: min(100%, 220px);
  opacity: 0.22;
  filter: blur(1.6px) saturate(0.78) grayscale(0.08);
}

.lineup-vehicle--side:hover,
.lineup-vehicle--side:focus-visible {
  opacity: 0.34;
}

.lineup-vehicle--left {
  justify-self: end;
  transform: translate(10px, 16px) scale(0.74);
}

.lineup-vehicle--right {
  justify-self: start;
  transform: translate(-10px, 16px) scale(0.74);
}

.lineup-vehicle--active {
  width: min(100%, 520px);
  z-index: 2;
  transform: translateY(-8px);
}

.lineup-vehicle--active img {
  max-height: clamp(290px, 29vw, 390px);
  filter: drop-shadow(0 18px 32px rgba(12, 16, 13, 0.06));
}

.lineup-nav {
  position: absolute;
  top: 47%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(20, 28, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #18201b;
  box-shadow: 0 18px 42px rgba(16, 23, 18, 0.08);
  backdrop-filter: blur(12px);
}

.lineup-nav:hover,
.lineup-nav:focus-visible {
  transform: translateY(-50%) scale(1.03);
  background: rgba(255, 255, 255, 0.96);
}

.lineup-nav--prev {
  left: 0;
}

.lineup-nav--next {
  right: 0;
}

.lineup-info {
  position: static;
  grid-area: info;
  width: min(100%, 520px);
  margin: -6px auto 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  pointer-events: none;
}

.lineup-info-accent {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5ea648 0%, #79bf5b 100%);
}

.lineup-info h3 {
  margin: 0;
  color: #101612;
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lineup-info p {
  margin: 0;
  color: #6b746f;
  font-size: 1rem;
  line-height: 1.5;
}

.lineup-price {
  display: block;
  margin-top: 2px;
  color: #131914;
  font-size: clamp(1.22rem, 1.65vw, 1.58rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lineup-summary {
  max-width: 35ch;
  margin-top: 6px;
  color: #7a837d;
  font-size: 0.98rem;
  line-height: 1.68;
}

.lineup-dots {
  grid-area: dots;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.lineup-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(43, 54, 47, 0.16);
}

.lineup-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #5ea648 0%, #79bf5b 100%);
}

.lineup-specs {
  grid-area: specs;
  display: inline-grid;
  width: auto;
  max-width: min(100%, 860px);
  margin: 12px auto 0;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.lineup-spec {
  min-height: 0;
  padding: 14px 18px;
  border: 1px solid rgba(20, 28, 22, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(18, 25, 21, 0.05);
  backdrop-filter: blur(10px);
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(20, 28, 22, 0.08);
}

.lineup-spec-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(94, 166, 72, 0.36);
  background: rgba(94, 166, 72, 0.06);
  color: #568f4d;
}

.lineup-spec-icon svg {
  width: 18px;
  height: 18px;
}

.lineup-spec-copy {
  gap: 1px;
}

.lineup-spec-label {
  color: #75807a;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lineup-spec-value {
  color: #18211c;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.16;
}

@media (max-width: 980px) {
  .section-header-catalog {
    margin-bottom: 22px;
  }

  .section-header-catalog--simple h2 {
    max-width: 9.2ch;
    font-size: clamp(2.2rem, 8vw, 3.05rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 31rem;
    font-size: 0.94rem;
  }

  .lineup-stage {
    min-height: 300px;
    grid-template-columns: minmax(70px, 0.34fr) minmax(230px, 1fr) minmax(70px, 0.34fr);
    padding: 0 18px;
  }

  .lineup-stage::before {
    width: min(320px, 76vw);
    height: min(320px, 76vw);
    bottom: 20px;
  }

  .lineup-stage::after {
    width: min(240px, 56vw);
    height: 24px;
    bottom: 16px;
  }

  .lineup-vehicle--side {
    width: min(100%, 112px);
    opacity: 0.18;
  }

  .lineup-vehicle--left {
    transform: translate(4px, 14px) scale(0.72);
  }

  .lineup-vehicle--right {
    transform: translate(-4px, 14px) scale(0.72);
  }

  .lineup-vehicle--active {
    width: min(100%, 336px);
    transform: translateY(-2px);
  }

  .lineup-vehicle--active img {
    max-height: 230px;
  }

  .lineup-nav {
    top: 44%;
    width: 44px;
    height: 44px;
    font-size: 1.18rem;
  }

  .lineup-info {
    width: min(100%, 340px);
    margin-top: -2px;
  }

  .lineup-info h3 {
    font-size: clamp(1.85rem, 7.4vw, 2.4rem);
  }

  .lineup-info p {
    font-size: 0.92rem;
  }

  .lineup-price {
    font-size: 1.18rem;
  }

  .lineup-summary {
    max-width: 30ch;
    font-size: 0.91rem;
    line-height: 1.56;
  }

  .lineup-specs {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .lineup-spec {
    padding: 12px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .catalog-section--lead .shell {
    width: min(100% - 26px, 100%);
  }

  .section-header-catalog--simple .eyebrow {
    font-size: 0.66rem;
  }

  .section-header-catalog--simple h2 {
    max-width: 8.4ch;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 29ch;
    font-size: 0.89rem;
    line-height: 1.54;
  }

  .lineup-showcase {
    gap: 8px;
  }

  .lineup-stage {
    min-height: 262px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding: 0 10px;
  }

  .lineup-stage::before {
    width: min(250px, 76vw);
    height: min(250px, 76vw);
    bottom: 14px;
  }

  .lineup-stage::after {
    width: min(188px, 54vw);
    bottom: 10px;
  }

  .lineup-vehicle--side {
    width: 76px;
    opacity: 0.12;
    filter: blur(1.8px) saturate(0.72);
  }

  .lineup-vehicle--left,
  .lineup-vehicle--right {
    transform: translateY(12px) scale(0.7);
  }

  .lineup-vehicle--active {
    width: min(100%, 290px);
  }

  .lineup-vehicle--active img {
    max-height: 206px;
  }

  .lineup-nav {
    top: 41%;
    width: 38px;
    height: 38px;
    font-size: 1.02rem;
    box-shadow: 0 10px 24px rgba(16, 23, 18, 0.06);
  }

  .lineup-nav--prev {
    left: -2px;
  }

  .lineup-nav--next {
    right: -2px;
  }

  .lineup-info {
    width: min(100%, 300px);
    gap: 3px;
  }

  .lineup-info-accent {
    width: 34px;
  }

  .lineup-info h3 {
    font-size: clamp(1.56rem, 8vw, 2rem);
  }

  .lineup-info p {
    font-size: 0.87rem;
  }

  .lineup-price {
    font-size: 1.08rem;
  }

  .lineup-summary {
    max-width: 28ch;
    margin-top: 4px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .lineup-dots {
    gap: 8px;
  }

  .lineup-dot {
    width: 8px;
    height: 8px;
  }

  .lineup-dot.is-active {
    width: 28px;
  }

  .lineup-specs {
    width: min(100%, 320px);
    margin-top: 6px;
  }

  .lineup-spec {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .lineup-spec-icon {
    width: 38px;
    height: 38px;
  }

  .lineup-spec-icon svg {
    width: 16px;
    height: 16px;
  }

  .lineup-spec-label {
    font-size: 0.66rem;
  }

  .lineup-spec-value {
    font-size: 0.96rem;
  }
}

/* Catalog premium finish */
.section-header-catalog--simple > div {
  max-width: 720px;
  gap: 10px;
}

.section-header-catalog--simple .eyebrow {
  color: rgba(34, 43, 36, 0.56);
  letter-spacing: 0.18em;
}

.section-header-catalog--simple h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4vw, 4rem);
  line-height: 0.93;
}

.section-header-catalog--simple .section-text {
  max-width: 39rem;
  margin-top: 10px;
  color: #66706a;
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.62;
}

.lineup-showcase {
  gap: 10px;
  padding-bottom: 8px;
}

.lineup-stage {
  min-height: clamp(330px, 33vw, 450px);
  padding: 0 62px;
}

.lineup-stage::before {
  bottom: 18px;
  width: min(500px, 38vw);
  height: min(500px, 38vw);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 74%);
}

.lineup-stage::after {
  bottom: 10px;
  width: min(360px, 29vw);
  height: 30px;
  background: radial-gradient(circle, rgba(17, 22, 18, 0.18) 0%, rgba(17, 22, 18, 0) 74%);
  filter: blur(14px);
}

.lineup-vehicle--side {
  width: min(100%, 228px);
  opacity: 0.24;
  filter: blur(1.2px) saturate(0.84);
}

.lineup-vehicle--left,
.lineup-vehicle--right {
  transform: translateY(16px) scale(0.78);
}

.lineup-vehicle--active {
  width: min(100%, 476px);
  transform: translateY(-10px);
}

.lineup-vehicle--active img {
  max-height: clamp(280px, 28vw, 366px);
}

.lineup-nav {
  width: 52px;
  height: 52px;
  border-color: rgba(18, 28, 20, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #1c241e;
  box-shadow: 0 14px 36px rgba(23, 29, 25, 0.08);
  backdrop-filter: blur(12px);
}

.lineup-info {
  width: min(100%, 470px);
  gap: 6px;
}

.lineup-info-accent {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5aa248 0%, #78bc59 100%);
}

.lineup-info h3 {
  font-size: clamp(2.05rem, 2.8vw, 3.25rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.lineup-info p {
  max-width: 31ch;
  color: #6a746e;
  font-size: 1rem;
  line-height: 1.5;
}

.lineup-price {
  margin-top: 2px;
  color: #111814;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lineup-summary {
  max-width: 36ch;
  margin-top: 8px;
  color: #758079;
  font-size: 0.99rem;
  line-height: 1.68;
}

.lineup-dots {
  gap: 10px;
  margin-top: 4px;
}

.lineup-dot {
  width: 10px;
  height: 10px;
  background: rgba(45, 58, 49, 0.18);
}

.lineup-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5aa248 0%, #79bf59 100%);
}

.lineup-specs {
  width: min(100%, 980px);
  margin: 14px auto 0;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lineup-spec {
  min-height: 102px;
  padding: 18px 22px;
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 252, 251, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(20, 27, 23, 0.06);
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(24, 33, 28, 0.08);
}

.lineup-spec-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(90, 162, 72, 0.42);
  background: rgba(90, 162, 72, 0.05);
  color: #4e8653;
}

.lineup-spec-icon svg {
  width: 22px;
  height: 22px;
}

.lineup-spec-copy {
  gap: 2px;
}

.lineup-spec-label {
  color: #6b746e;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.lineup-spec-value {
  color: #18211c;
  font-size: clamp(1.1rem, 1.35vw, 1.34rem);
  font-weight: 800;
  line-height: 1.15;
}

@media (max-width: 980px) {
  .section-header-catalog--simple h2 {
    max-width: 9.5ch;
    font-size: clamp(2.25rem, 8vw, 3.15rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 31rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .lineup-showcase {
    gap: 12px;
  }

  .lineup-stage {
    min-height: 286px;
    padding: 0 20px;
    grid-template-columns: minmax(66px, 0.34fr) minmax(228px, 1fr) minmax(66px, 0.34fr);
  }

  .lineup-stage::before {
    width: min(300px, 74vw);
    height: min(300px, 74vw);
  }

  .lineup-stage::after {
    width: min(244px, 58vw);
    height: 24px;
  }

  .lineup-vehicle--side {
    width: min(100%, 112px);
    opacity: 0.2;
  }

  .lineup-vehicle--active {
    width: min(100%, 338px);
    transform: translateY(-2px);
  }

  .lineup-vehicle--active img {
    max-height: 236px;
  }

  .lineup-nav {
    top: 43%;
    width: 44px;
    height: 44px;
    font-size: 1.28rem;
  }

  .lineup-info {
    width: min(100%, 336px);
  }

  .lineup-info h3 {
    font-size: clamp(1.78rem, 7.4vw, 2.35rem);
  }

  .lineup-info p {
    max-width: 29ch;
    font-size: 0.92rem;
  }

  .lineup-price {
    font-size: 1.22rem;
  }

  .lineup-summary {
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .lineup-specs {
    width: min(100%, 680px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lineup-spec,
  .lineup-spec + .lineup-spec {
    min-height: 0;
    border-left: 1px solid rgba(24, 33, 28, 0.08);
  }
}

@media (max-width: 640px) {
  .section-header-catalog--simple > div {
    gap: 8px;
  }

  .section-header-catalog--simple .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.16em;
  }

  .section-header-catalog--simple h2 {
    max-width: 8.4ch;
    font-size: clamp(2rem, 8.8vw, 2.7rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 30ch;
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .lineup-showcase {
    gap: 10px;
  }

  .lineup-stage {
    min-height: 252px;
    padding: 0 14px;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
  }

  .lineup-vehicle--side {
    width: 88px;
    opacity: 0.16;
  }

  .lineup-vehicle--left,
  .lineup-vehicle--right {
    transform: translateY(12px) scale(0.74);
  }

  .lineup-vehicle--active {
    width: min(100%, 286px);
    transform: translateY(0);
  }

  .lineup-vehicle--active img {
    max-height: 202px;
  }

  .lineup-nav {
    top: 42%;
    width: 40px;
    height: 40px;
    font-size: 1.14rem;
  }

  .lineup-nav--prev {
    left: -4px;
  }

  .lineup-nav--next {
    right: -4px;
  }

  .lineup-info {
    width: min(100%, 300px);
    gap: 4px;
  }

  .lineup-info h3 {
    font-size: clamp(1.56rem, 8vw, 2rem);
  }

  .lineup-info p {
    font-size: 0.88rem;
  }

  .lineup-price {
    font-size: 1.12rem;
  }

  .lineup-summary {
    max-width: 30ch;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .lineup-specs {
    margin-top: 10px;
  }

  .lineup-spec {
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(20, 27, 23, 0.05);
  }

  .lineup-spec-icon {
    width: 46px;
    height: 46px;
  }

  .lineup-spec-label {
    font-size: 0.69rem;
  }

  .lineup-spec-value {
    font-size: 1rem;
  }
}

/* Final mobile/tablet adaptation */
@media (max-width: 720px) {
  .catalog-section--lead {
    padding: 34px 0 40px !important;
  }

  .catalog-section--lead .shell {
    width: min(100% - 20px, 100%) !important;
  }

  .lineup-showcase {
    display: none !important;
  }

  .product-grid--data-source {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 14px !important;
  }

  .product-card {
    display: grid !important;
    grid-template-columns: minmax(112px, 132px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 12px !important;
    border-radius: 14px !important;
  }

  .product-media {
    aspect-ratio: 1 / 1 !important;
    min-height: 112px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .product-media img {
    width: 100% !important;
    max-height: 116px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .product-body {
    gap: 10px !important;
    padding: 0 !important;
  }

  .product-body-top {
    gap: 8px !important;
  }

  .product-type,
  .product-status {
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
  }

  .product-copy h3 {
    font-size: 1.18rem !important;
    line-height: 1.02 !important;
  }

  .product-summary {
    font-size: 0.84rem !important;
    line-height: 1.46 !important;
  }

  .product-card-footer {
    gap: 6px !important;
  }

  .product-price {
    font-size: 1rem !important;
  }

  .product-link {
    font-size: 0.76rem !important;
  }

  .income-section {
    padding: 34px 0 18px !important;
    background: #ffffff !important;
  }

  .income-section .shell {
    width: min(100% - 20px, 100%) !important;
  }

  .income-shell--google {
    gap: 18px !important;
  }

  .income-head--split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
    margin: 0 auto 6px !important;
  }

  .income-head--split::after {
    display: none !important;
  }

  .income-title-stack {
    justify-items: start !important;
    text-align: left !important;
    width: 100% !important;
  }

  .income-head--split h2 {
    display: block !important;
    max-width: 7ch !important;
    font-size: clamp(2.05rem, 9vw, 2.8rem) !important;
    line-height: 0.94 !important;
    text-align: left !important;
    justify-items: start !important;
  }

  .income-head--split h2 span {
    display: block !important;
    white-space: normal !important;
    margin-top: 0 !important;
  }

  .income-kicker {
    max-width: 24ch !important;
    padding: 0 !important;
    color: #666d68 !important;
    font-size: 0.82rem !important;
    line-height: 1.56 !important;
    text-align: left !important;
  }

  .review-carousel {
    padding-inline: 0 !important;
  }

  .review-track {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .review-card {
    min-height: 0 !important;
    gap: 10px !important;
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .review-card-top {
    gap: 10px !important;
  }

  .review-profile {
    gap: 10px !important;
  }

  .review-avatar {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
  }

  .review-meta strong {
    max-width: 180px !important;
    font-size: 0.9rem !important;
  }

  .review-meta span {
    font-size: 0.84rem !important;
  }

  .review-source {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
  }

  .review-stars {
    font-size: 1rem !important;
  }

  .review-verified {
    width: 16px !important;
    height: 16px !important;
  }

  .review-card p {
    max-width: none !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .review-expand {
    font-size: 0.82rem !important;
  }

  .review-nav {
    display: none !important;
  }

  #faq.faq-section--conversion {
    padding: 40px 0 22px !important;
    background:
      linear-gradient(143deg,
        transparent 0 16%,
        rgba(255, 40, 40, 0.18) 16% 16.08%,
        transparent 16.12% 100%),
      linear-gradient(37deg,
        transparent 0 84%,
        rgba(255, 32, 32, 0.14) 84% 84.08%,
        transparent 84.12% 100%),
      repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.01) 0 2px, rgba(255, 255, 255, 0) 2px 11px),
      linear-gradient(180deg, #050608 0%, #090b0f 100%) !important;
    overflow: visible !important;
  }

  #faq .faq-shell--kayen {
    width: min(100% - 20px, 100%) !important;
    gap: 22px !important;
    background: transparent !important;
  }

  #faq .faq-head--kayen {
    display: grid !important;
    gap: 14px !important;
    max-width: 100% !important;
  }

  #faq .faq-head--kayen::after {
    display: none !important;
  }

  #faq .faq-head--kayen h2 {
    flex: none !important;
    max-width: 7.8ch !important;
    margin-right: 0 !important;
    font-size: clamp(1.95rem, 8.8vw, 2.7rem) !important;
    text-align: left !important;
  }

  #faq .faq-head--kayen h2 span,
  #faq .faq-head--kayen .section-text span {
    white-space: normal !important;
    display: block !important;
  }

  #faq .faq-head--kayen .section-text {
    flex: none !important;
    max-width: 26ch !important;
    border-left: 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.82rem !important;
    line-height: 1.54 !important;
  }

  #faq .faq-grid--kayen {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 12px !important;
  }

  #faq .faq-column {
    gap: 12px !important;
  }

  #faq .faq-card--kayen {
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.016) !important;
  }

  #faq .faq-card--kayen summary {
    padding: 14px 14px !important;
    gap: 12px !important;
  }

  #faq .faq-card--kayen summary::before {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    font-size: 0.94rem !important;
  }

  #faq .faq-card--kayen .faq-question-copy {
    font-size: 0.94rem !important;
    line-height: 1.22 !important;
  }

  #faq .faq-card--kayen .faq-answer-inner {
    padding: 0 14px 14px 14px !important;
  }

  #faq .faq-card--kayen .faq-answer-inner p {
    font-size: 0.84rem !important;
    line-height: 1.56 !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  #faq .faq-cta {
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding-top: 12px !important;
  }

  #faq .faq-cta p {
    font-size: 0.84rem !important;
  }

  #faq .faq-cta a {
    min-height: 40px !important;
    font-size: 0.84rem !important;
  }
}

/* Final catalog + testimonials + FAQ responsive consistency */
.lineup-info {
  width: min(100%, 420px);
}

.lineup-price {
  color: #111612;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lineup-summary {
  margin: 2px 0 0;
  max-width: 34ch;
  color: #5f6660;
  font-size: 0.96rem;
  line-height: 1.56;
  text-align: center;
}

@media (max-width: 720px) {
  .lineup-showcase {
    display: grid !important;
    gap: 12px !important;
  }

  .product-grid--data-source {
    display: none !important;
  }

  .lineup-stage {
    min-height: 336px !important;
    padding: 0 22px !important;
    grid-template-columns: minmax(46px, 56px) minmax(0, 1fr) minmax(46px, 56px) !important;
    align-items: center !important;
  }

  .lineup-stage::before,
  .lineup-stage::after {
    display: none !important;
  }

  .lineup-vehicle--side {
    width: min(100%, 86px) !important;
    opacity: 0.38 !important;
    filter: blur(0) !important;
    transform: translateY(0) scale(0.86) !important;
    align-self: center !important;
  }

  .lineup-vehicle--left {
    justify-self: start !important;
  }

  .lineup-vehicle--right {
    justify-self: end !important;
  }

  .lineup-vehicle--active {
    width: min(100%, 268px) !important;
    justify-self: center !important;
  }

  .lineup-vehicle--active img {
    max-height: 232px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .lineup-nav {
    top: 150px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    background: rgba(255, 255, 255, 0.94) !important;
  }

  .lineup-nav--prev {
    left: -2px !important;
  }

  .lineup-nav--next {
    right: -2px !important;
  }

  .lineup-info {
    width: min(100%, 250px) !important;
    gap: 5px !important;
    margin-top: -2px !important;
  }

  .lineup-info-accent {
    width: 38px !important;
    height: 5px !important;
  }

  .lineup-info h3 {
    font-size: 1.46rem !important;
    line-height: 1 !important;
  }

  .lineup-info p {
    font-size: 0.82rem !important;
    line-height: 1.34 !important;
  }

  .lineup-price {
    font-size: 0.96rem !important;
  }

  .lineup-summary {
    max-width: 28ch !important;
    font-size: 0.8rem !important;
    line-height: 1.42 !important;
  }

  .lineup-dots {
    gap: 8px !important;
    margin-top: 4px !important;
    margin-bottom: 2px !important;
  }

  .lineup-dot {
    width: 10px !important;
    height: 10px !important;
  }

  .lineup-dot.is-active {
    width: 22px !important;
  }

  .lineup-specs {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 8px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .lineup-spec {
    grid-template-columns: 42px 1fr !important;
    gap: 12px !important;
    padding: 12px 0 !important;
  }

  .lineup-spec + .lineup-spec {
    border-left: 0 !important;
    border-top: 1px solid rgba(21, 25, 20, 0.08) !important;
  }

  .lineup-spec-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .lineup-spec-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .lineup-spec-label {
    font-size: 0.8rem !important;
  }

  .lineup-spec-value {
    font-size: 0.96rem !important;
  }

  .income-head--split {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: start !important;
    max-width: 100% !important;
    margin: 0 auto 10px !important;
  }

  .income-title-stack {
    justify-items: start !important;
    text-align: left !important;
  }

  .income-head--split h2 {
    max-width: 7ch !important;
    display: block !important;
    justify-items: start !important;
    text-align: left !important;
    font-size: clamp(2rem, 8.8vw, 2.7rem) !important;
    line-height: 0.94 !important;
  }

  .income-head--split h2 span {
    display: block !important;
    white-space: normal !important;
  }

  .income-kicker {
    max-width: 23ch !important;
    justify-self: start !important;
    text-align: left !important;
    font-size: 0.82rem !important;
    line-height: 1.56 !important;
  }

  #faq.faq-section--conversion {
    background:
      linear-gradient(143deg,
        transparent 0 16%,
        rgba(255, 40, 40, 0.22) 16% 16.08%,
        transparent 16.12% 100%),
      linear-gradient(37deg,
        transparent 0 84%,
        rgba(255, 32, 32, 0.16) 84% 84.08%,
        transparent 84.12% 100%),
      repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.01) 0 2px, rgba(255, 255, 255, 0) 2px 11px),
      linear-gradient(180deg, #050608 0%, #090b0f 100%) !important;
  }

  #faq .faq-shell--kayen {
    width: min(100% - 20px, 100%) !important;
    gap: 22px !important;
  }
}

/* Final catalog art direction */
.section-header-catalog--simple > div {
  max-width: 760px;
}

.section-header-catalog--simple .eyebrow {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.section-header-catalog--simple h2 {
  max-width: none;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.section-header-catalog--simple .section-text {
  max-width: 40rem;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #69706b;
}

.lineup-showcase {
  gap: 14px;
}

.lineup-stage {
  min-height: 520px;
  grid-template-columns: minmax(180px, 0.62fr) minmax(420px, 620px) minmax(180px, 0.62fr);
  align-items: center;
}

.lineup-vehicle--side {
  width: min(100%, 250px);
  opacity: 0.4;
  filter: blur(0);
  transform: translateY(12px) scale(0.82);
}

.lineup-vehicle--active {
  width: min(100%, 500px);
}

.lineup-vehicle--active img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(17, 22, 18, 0.12));
}

.lineup-nav {
  top: 40%;
  width: 54px;
  height: 54px;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(17, 22, 18, 0.06);
}

.lineup-nav--prev {
  left: 8px;
}

.lineup-nav--next {
  right: 8px;
}

.lineup-info {
  width: min(100%, 560px);
  gap: 6px;
  margin-top: -10px;
}

.lineup-info-accent {
  width: 38px;
  height: 5px;
}

.lineup-info h3 {
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 4.1vw, 4.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lineup-info p {
  font-size: 1.02rem;
  color: #69706b;
}

.lineup-price {
  margin-top: 2px;
  font-size: clamp(1.38rem, 1.9vw, 1.76rem);
  line-height: 1.02;
}

.lineup-summary {
  max-width: 28ch;
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.56;
}

.lineup-dots {
  gap: 9px;
  margin-top: 4px;
  margin-bottom: 2px;
}

.lineup-dot {
  width: 10px;
  height: 10px;
}

.lineup-dot.is-active {
  width: 28px;
}

.lineup-specs {
  width: min(100%, 980px);
  margin-top: 6px;
  gap: 12px;
}

.lineup-spec {
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(21, 25, 20, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(17, 22, 18, 0.04);
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(21, 25, 20, 0.06);
}

.lineup-spec-icon {
  width: 42px;
  height: 42px;
  border-width: 1px;
}

.lineup-spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.lineup-spec-value {
  font-size: 1rem;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .section-header-catalog--simple h2 {
    font-size: clamp(2.4rem, 7vw, 3.5rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 33ch;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .lineup-stage {
    min-height: 430px;
    grid-template-columns: minmax(88px, 0.42fr) minmax(260px, 1fr) minmax(88px, 0.42fr);
  }

  .lineup-vehicle--side {
    width: min(100%, 138px);
    opacity: 0.34;
    transform: translateY(8px) scale(0.82);
  }

  .lineup-vehicle--active {
    width: min(100%, 360px);
  }

  .lineup-vehicle--active img {
    max-height: 280px;
  }

  .lineup-info {
    width: min(100%, 360px);
  }

  .lineup-info h3 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .lineup-price {
    font-size: 1.22rem;
  }

  .lineup-summary {
    max-width: 26ch;
    font-size: 0.9rem;
  }

  .lineup-specs {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .section-header-catalog--simple h2 {
    max-width: 8.5ch;
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 28ch;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .lineup-showcase {
    gap: 12px;
  }

  .lineup-stage {
    min-height: 330px;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    padding: 0 12px;
  }

  .lineup-vehicle--side {
    width: min(100%, 84px);
    opacity: 0.28;
    transform: translateY(0) scale(0.8);
  }

  .lineup-vehicle--active {
    width: min(100%, 248px);
  }

  .lineup-vehicle--active img {
    max-height: 214px;
  }

  .lineup-nav {
    top: 142px;
    width: 40px;
    height: 40px;
    font-size: 0.98rem;
  }

  .lineup-nav--prev {
    left: 0;
  }

  .lineup-nav--next {
    right: 0;
  }

  .lineup-info {
    width: min(100%, 250px);
    gap: 4px;
    margin-top: -2px;
  }

  .lineup-info h3 {
    font-size: 1.72rem;
  }

  .lineup-info p {
    font-size: 0.84rem;
  }

  .lineup-price {
    font-size: 1.08rem;
  }

  .lineup-summary {
    max-width: 24ch;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .lineup-dots {
    margin-top: 2px;
  }

  .lineup-specs {
    max-width: 100%;
    gap: 8px;
    margin-top: 2px;
  }

  .lineup-spec {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .lineup-spec-label {
    font-size: 0.68rem;
  }

  .lineup-spec-value {
    font-size: 0.92rem;
  }
}

/* Catalog specs refinement */
.lineup-specs {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lineup-spec {
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 25, 20, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(17, 22, 18, 0.04);
}

.lineup-spec + .lineup-spec {
  border-left: 1px solid rgba(21, 25, 20, 0.07);
}

.lineup-spec-icon {
  width: 48px;
  height: 48px;
  border-width: 1px;
  background: rgba(31, 90, 57, 0.04);
}

.lineup-spec-icon svg {
  width: 22px;
  height: 22px;
}

.lineup-spec-copy {
  gap: 4px;
}

.lineup-spec-label {
  color: #6b726d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lineup-spec-value {
  color: #111612;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .lineup-specs {
    width: 100%;
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .lineup-spec {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    box-shadow: none;
  }

  .lineup-spec + .lineup-spec {
    border-left: 1px solid rgba(21, 25, 20, 0.07);
    border-top: 0;
  }

  .lineup-spec-icon {
    width: 42px;
    height: 42px;
  }

  .lineup-spec-icon svg {
    width: 20px;
    height: 20px;
  }

  .lineup-spec-label {
    font-size: 0.72rem;
  }

  .lineup-spec-value {
    font-size: 0.94rem;
  }
}

/* Final responsive polish */
html,
body {
  overflow-x: clip;
}

@media (max-width: 900px) {
  .site-header .shell,
  .income-section .shell,
  .journal-section .shell,
  .tiktok-section .shell,
  .catalog-section--lead .shell {
    width: min(100% - 24px, 100%);
  }

  .header-row {
    min-height: 68px;
    gap: 12px;
  }

  .brand-logo {
    width: 156px;
  }

  .site-nav {
    top: 72px;
    left: 10px;
    right: 10px;
    gap: 10px;
    padding: 16px 14px 18px;
    border-radius: 18px;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: calc(100svh - 68px);
  }

  .hero-showroom-overlay {
    align-content: end;
    gap: 12px;
    padding: 28px 16px 118px;
  }

  .hero-showroom-overlay h1 {
    max-width: 5.3ch;
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 0.88;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 18rem;
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .hero-benefits--band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 8px;
  }

  .hero-benefits--band article {
    min-height: 50px;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(21, 25, 20, 0.08);
  }

  .hero-benefits--band article:nth-child(2n) {
    border-right: 0;
  }

  .hero-benefits--band article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-header-catalog--simple h2 {
    max-width: 10ch;
    font-size: clamp(2.15rem, 9vw, 3.1rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 31ch;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .lineup-showcase {
    gap: 14px;
  }

  .lineup-stage {
    min-height: 300px;
    padding: 0 34px;
  }

  .lineup-nav {
    top: 172px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .lineup-vehicle--active {
    width: min(100%, 300px);
  }

  .lineup-vehicle--active img {
    max-height: 236px;
  }

  .lineup-info {
    width: min(100%, 250px);
  }

  .lineup-info h3 {
    font-size: 1.5rem;
  }

  .income-shell--google {
    gap: 20px;
  }

  .income-head--split {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  .income-head--split::after {
    display: none;
  }

  .income-title-stack {
    justify-items: start;
    text-align: left;
  }

  .income-head--split h2 {
    justify-items: start;
    font-size: clamp(2rem, 8.5vw, 2.9rem);
    line-height: 0.96;
  }

  .income-head--split h2 span {
    white-space: normal;
  }

  .income-kicker {
    max-width: 28ch;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .review-carousel {
    padding-inline: 0;
  }

  .review-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: 0;
    gap: 12px;
    padding: 16px 16px 16px;
    border-radius: 14px;
  }

  .review-meta strong {
    max-width: 190px;
    font-size: 0.92rem;
  }

  .review-meta span,
  .review-card p {
    font-size: 0.9rem;
  }

  .review-card p {
    line-height: 1.5;
  }

  .review-nav {
    display: none;
  }

  #faq.faq-section--conversion {
    padding: 44px 0 22px !important;
  }

  #faq .faq-shell--kayen {
    width: min(100% - 24px, 100%) !important;
    gap: 24px !important;
  }

  #faq .faq-head--kayen {
    display: grid !important;
    gap: 16px !important;
    max-width: 100% !important;
  }

  #faq .faq-head--kayen::after {
    display: none !important;
  }

  #faq .faq-head--kayen h2 {
    flex: none !important;
    max-width: 8.4ch !important;
    font-size: clamp(2rem, 8.4vw, 2.8rem) !important;
    text-align: left !important;
  }

  #faq .faq-head--kayen h2 span {
    white-space: normal !important;
  }

  #faq .faq-head--kayen .section-text {
    flex: none !important;
    max-width: 28ch !important;
    border-left: 0 !important;
    padding: 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.56 !important;
  }

  #faq .faq-grid--kayen {
    max-width: 100% !important;
    gap: 12px !important;
  }

  #faq .faq-column {
    gap: 12px !important;
  }

  #faq .faq-card--kayen summary {
    padding: 15px 16px !important;
  }

  #faq .faq-card--kayen summary::before {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    font-size: 1rem !important;
  }

  #faq .faq-card--kayen .faq-question-copy {
    font-size: 0.96rem !important;
    line-height: 1.22 !important;
  }

  #faq .faq-card--kayen .faq-answer-inner {
    padding: 0 16px 14px 16px !important;
  }

  #faq .faq-card--kayen .faq-answer-inner p {
    font-size: 0.86rem !important;
    line-height: 1.58 !important;
  }

  #faq .faq-cta {
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .journal-section {
    padding: 44px 0 34px;
  }

  .journal-shell {
    gap: 26px;
  }

  .journal-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
  }

  .journal-head h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    text-align: left;
  }

  .journal-kicker {
    max-width: 31ch;
    padding-left: 0;
    border-left: 0;
    font-size: 0.84rem;
    line-height: 1.56;
    white-space: normal;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-location-frame iframe {
    min-height: 220px;
  }

  .footer-bottom {
    padding-top: 14px;
  }
}

@media (max-width: 520px) {
  .site-header .shell {
    width: min(100% - 18px, 100%);
  }

  .brand-logo {
    width: 146px;
  }

  .hero-showroom-overlay {
    padding: 24px 14px 112px;
  }

  .hero-showroom-overlay h1 {
    font-size: clamp(2.15rem, 10.6vw, 3.1rem);
  }

  .hero-showroom-overlay .hero-text {
    max-width: 17rem;
    font-size: 0.86rem;
  }

  .hero-benefits--band strong {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .lineup-stage {
    min-height: 272px;
    padding: 0 30px;
  }

  .lineup-nav {
    top: 160px;
    width: 38px;
    height: 38px;
  }

  .lineup-info h3 {
    font-size: 1.34rem;
  }

  .review-card {
    padding: 14px 14px 14px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }

  .review-source {
    min-width: 22px;
    min-height: 22px;
    width: 22px;
    height: 22px;
  }

  #faq .faq-head--kayen h2 {
    font-size: clamp(1.84rem, 9vw, 2.5rem) !important;
  }

  #faq .faq-head--kayen .section-text {
    font-size: 0.82rem !important;
  }

  .journal-head h2 {
    font-size: clamp(1.82rem, 9.2vw, 2.5rem);
  }
}

/* Mobile hotfixes after real-device review */
@media (max-width: 900px) {
  .site-header .header-row {
    min-height: 64px !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  .site-header .header-actions {
    gap: 8px !important;
  }

  .site-header .account-button,
  .site-header .button-primary {
    display: none !important;
  }

  .site-header .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(10px) !important;
    gap: 0 !important;
    position: relative !important;
  }

  .site-header .menu-toggle span {
    position: absolute !important;
    left: 50% !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    transform: translateX(-50%) !important;
  }

  .site-header .menu-toggle span:nth-child(1) {
    top: 14px !important;
    width: 18px !important;
  }

  .site-header .menu-toggle span:nth-child(2) {
    top: 20px !important;
    width: 12px !important;
  }

  .site-header .menu-toggle span:nth-child(3) {
    top: 26px !important;
    width: 18px !important;
  }

  .site-header .site-nav {
    top: 68px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 14px 14px 16px !important;
    border-radius: 16px !important;
    background: rgba(12, 14, 16, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26) !important;
  }

  .site-header .site-nav a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.01em !important;
  }

  .hero-showroom--single,
  .hero-showroom-image {
    min-height: calc(100svh - 64px) !important;
  }

  .hero-showroom-image {
    object-position: 76% center !important;
    transform: scale(1.01) translate3d(0, 0, 0) !important;
  }

  .hero-showroom-overlay {
    align-content: end !important;
    justify-items: start !important;
    gap: 10px !important;
    padding: 26px 16px 124px !important;
    background: linear-gradient(
      90deg,
      rgba(8, 10, 10, 0.84) 0%,
      rgba(8, 10, 10, 0.52) 26%,
      rgba(8, 10, 10, 0.1) 54%,
      rgba(8, 10, 10, 0) 76%
    ) !important;
  }

  .hero-showroom-copy {
    max-width: 12.5rem !important;
    gap: 10px !important;
  }

  .hero-showroom-overlay h1 {
    max-width: 4.8ch !important;
    font-size: clamp(2.2rem, 10vw, 3.3rem) !important;
    line-height: 0.9 !important;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 14rem !important;
    font-size: 0.82rem !important;
    line-height: 1.48 !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .hero-benefits--band {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 0 6px !important;
  }

  .hero-benefits--band article {
    min-height: 48px !important;
    padding: 8px 8px !important;
  }

  .hero-benefits--band strong {
    font-size: 0.58rem !important;
    letter-spacing: 0.08em !important;
  }

  .lineup-showcase {
    gap: 12px !important;
  }

  .lineup-stage {
    min-height: 300px !important;
    padding: 0 28px !important;
  }

  .lineup-stage::after {
    left: 12% !important;
    right: 12% !important;
    bottom: 16px !important;
    height: 26px !important;
  }

  .lineup-vehicle--active {
    width: min(100%, 320px) !important;
  }

  .lineup-vehicle--active img {
    max-height: 248px !important;
    object-fit: contain !important;
  }

  .lineup-vehicle--side {
    opacity: 0.28 !important;
    transform: translateY(24px) scale(0.72) !important;
  }

  .lineup-info {
    width: min(100%, 240px) !important;
  }

  .lineup-info h3 {
    font-size: 1.38rem !important;
  }

  .lineup-info p {
    font-size: 0.86rem !important;
  }

  .product-grid--data-source {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .product-card {
    min-height: 0 !important;
  }

  .product-media {
    aspect-ratio: 1.28 / 1 !important;
    padding: 12px !important;
  }

  .product-media img {
    max-height: 220px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand-logo {
    width: 138px !important;
  }

  .hero-showroom-image {
    object-position: 72% center !important;
  }

  .hero-showroom-overlay {
    padding: 24px 14px 118px !important;
  }

  .hero-showroom-copy {
    max-width: 11.4rem !important;
  }

  .hero-showroom-overlay h1 {
    font-size: clamp(2rem, 10.6vw, 2.9rem) !important;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 12.8rem !important;
    font-size: 0.78rem !important;
    line-height: 1.44 !important;
  }

  .lineup-stage {
    min-height: 286px !important;
    padding: 0 24px !important;
  }

  .lineup-vehicle--active {
    width: min(100%, 288px) !important;
  }

  .lineup-vehicle--active img {
    max-height: 224px !important;
  }

  .product-media img {
    max-height: 196px !important;
  }
}

/* Mobile visual fixes from production review */
@media (max-width: 640px) {
  .lineup-showcase {
    gap: 10px !important;
    padding-bottom: 8px !important;
  }

  .lineup-stage {
    min-height: 360px !important;
    padding: 0 18px !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
  }

  .lineup-stage::before,
  .lineup-stage::after {
    display: none !important;
  }

  .lineup-vehicle--left,
  .lineup-vehicle--right {
    display: none !important;
  }

  .lineup-vehicle--active {
    width: min(100%, 92vw) !important;
    max-width: 360px !important;
    justify-self: center !important;
  }

  .lineup-vehicle--active img {
    width: 100% !important;
    max-height: 300px !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: drop-shadow(0 16px 20px rgba(17, 22, 18, 0.12)) !important;
  }

  .lineup-nav {
    top: 168px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.9) !important;
  }

  .lineup-nav--prev {
    left: 0 !important;
  }

  .lineup-nav--next {
    right: 0 !important;
  }

  .lineup-info {
    width: min(100%, 220px) !important;
    margin-top: -6px !important;
  }

  .lineup-info h3 {
    font-size: 1.5rem !important;
    line-height: 1 !important;
  }

  .lineup-info p {
    font-size: 0.84rem !important;
    line-height: 1.34 !important;
  }

  .lineup-dots {
    margin-top: 6px !important;
    margin-bottom: 4px !important;
  }

  .income-section {
    padding: 36px 0 18px !important;
  }

  .income-head--split {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto 10px !important;
  }

  .income-head--split::after {
    display: none !important;
  }

  .income-title-stack {
    justify-items: start !important;
    text-align: left !important;
  }

  .income-head--split h2 {
    display: block !important;
    max-width: 7ch !important;
    font-size: clamp(2rem, 9vw, 2.7rem) !important;
    line-height: 0.94 !important;
    text-align: left !important;
  }

  .income-head--split h2 span {
    display: block !important;
    white-space: normal !important;
    margin-top: 0 !important;
  }

  .income-kicker {
    max-width: 24ch !important;
    padding: 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.56 !important;
    text-align: left !important;
  }

  .review-card {
    min-height: 0 !important;
    padding: 14px 14px 14px !important;
    gap: 10px !important;
  }

  .review-card-top {
    gap: 10px !important;
  }

  .review-profile {
    gap: 10px !important;
  }

  .review-meta strong {
    max-width: 180px !important;
    font-size: 0.9rem !important;
  }

  .review-meta span {
    font-size: 0.84rem !important;
  }

  .review-stars {
    font-size: 1rem !important;
  }

  .review-card p {
    font-size: 0.88rem !important;
    line-height: 1.46 !important;
  }
}

/* FAQ final override - premium dark/red composition */
#faq.faq-section--conversion {
  padding: 72px 0 30px !important;
  background:
    linear-gradient(143deg,
      transparent 0 16%,
      rgba(255, 40, 40, 0.22) 16% 16.08%,
      transparent 16.12% 100%),
    linear-gradient(37deg,
      transparent 0 84%,
      rgba(255, 32, 32, 0.16) 84% 84.08%,
      transparent 84.12% 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.01) 0 2px, rgba(255, 255, 255, 0) 2px 11px),
    linear-gradient(180deg, #050608 0%, #090b0f 100%) !important;
}

#faq .faq-shell--kayen {
  position: relative !important;
  overflow: visible !important;
  width: min(100% - 40px, 1440px) !important;
  margin: 0 auto !important;
  gap: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#faq .faq-shell--kayen::before {
  display: none !important;
}

#faq .faq-shell--kayen::after {
  display: none !important;
}

#faq .faq-shell--kayen > * {
  position: relative !important;
  z-index: 1 !important;
}

#faq .faq-layout,
#faq .faq-support,
#faq .faq-support-card,
#faq .faq-eyebrow {
  display: none !important;
}

#faq .faq-head--kayen {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  max-width: 860px !important;
  margin: 0 auto !important;
}

#faq .faq-head--kayen::after {
  display: none !important;
}

#faq .faq-head--kayen h2,
#faq .faq-head--kayen .section-text {
  margin: 0 !important;
}

#faq .faq-head--kayen h2 {
  color: #ffffff !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  flex: 0 0 430px !important;
  font-size: clamp(2.3rem, 3.7vw, 3.5rem) !important;
  font-weight: 800 !important;
  line-height: 0.94 !important;
  letter-spacing: -0.01em !important;
  text-align: right !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

#faq .faq-head--kayen h2 span {
  display: block !important;
  white-space: nowrap !important;
}

#faq .faq-head--kayen .section-text {
  flex: 0 0 220px !important;
  max-width: 220px !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-family: "Consolas", "Courier New", monospace !important;
  font-size: 0.82rem !important;
  line-height: 1.58 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  border-left: 1px solid rgba(255, 255, 255, 0.34) !important;
  padding: 0 0 0 20px !important;
}

#faq .faq-head--kayen .section-text span {
  display: block !important;
  white-space: normal !important;
}

#faq .faq-grid--kayen {
  display: grid !important;
  grid-template-columns: minmax(0, 860px) !important;
  gap: 14px !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

#faq .faq-column {
  display: grid !important;
  gap: 14px !important;
}

#faq .faq-card--kayen {
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

#faq .faq-card--kayen:hover,
#faq .faq-card--kayen:focus-within {
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  transform: none !important;
}

#faq .faq-card--kayen summary {
  padding: 18px 20px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
}

#faq .faq-card--kayen summary::before {
  width: 24px !important;
  height: 24px !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 24px !important;
  margin-top: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.08rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  transform: none !important;
}

#faq .faq-card--kayen[open] summary::before {
  background: rgba(255, 64, 64, 0.1) !important;
  color: #ff5b5b !important;
}

#faq .faq-card--kayen .faq-question-copy {
  color: #ffffff !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: clamp(1rem, 1.02vw, 1.1rem) !important;
  font-weight: 700 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

#faq .faq-card--kayen[open] .faq-question-copy {
  color: #ffffff !important;
}

#faq .faq-card--kayen .faq-answer-wrap {
  margin-top: 0 !important;
}

#faq .faq-card--kayen .faq-answer-inner {
  padding: 0 20px 18px 56px !important;
}

#faq .faq-card--kayen .faq-answer-inner p {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.72 !important;
}

#faq .faq-card--kayen .faq-answer-inner strong {
  color: #ffffff !important;
}

#faq .faq-cta {
  max-width: 780px !important;
  margin: 8px auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

#faq .faq-cta p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

#faq .faq-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 980px) {
  #faq.faq-section--conversion {
    padding: 48px 0 22px !important;
  }

  #faq .faq-shell--kayen {
    width: min(100% - 24px, 100%) !important;
    gap: 26px !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  #faq .faq-head--kayen {
    display: grid !important;
    gap: 18px !important;
    max-width: 100% !important;
  }

  #faq .faq-head--kayen::after {
    display: none !important;
  }

  #faq .faq-head--kayen h2 {
    max-width: 8.8ch !important;
    font-size: clamp(2.05rem, 8.2vw, 3rem) !important;
    text-align: left !important;
  }

  #faq .faq-head--kayen h2 span {
    white-space: normal !important;
  }

  #faq .faq-head--kayen .section-text {
    flex: none !important;
    max-width: 32ch !important;
    font-size: 0.86rem !important;
    line-height: 1.62 !important;
    border-left: 0 !important;
    padding: 0 !important;
  }

  #faq .faq-grid--kayen {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 100% !important;
  }

  #faq .faq-column {
    gap: 16px !important;
  }

  #faq .faq-card--kayen summary {
    padding: 16px 16px !important;
  }

  #faq .faq-card--kayen .faq-question-copy {
    font-size: 0.98rem !important;
    line-height: 1.24 !important;
  }

  #faq .faq-card--kayen .faq-answer-inner {
    padding: 0 16px 16px 16px !important;
  }

  #faq .faq-card--kayen .faq-answer-inner p {
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
  }

  #faq .faq-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    gap: 12px !important;
  }
}

.faq-section--conversion {
  padding: 84px 0 42px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #050608 0%, #090b0f 100%);
}

.faq-shell--kayen {
  position: relative;
  overflow: hidden;
  width: min(100% - 24px, 1600px);
  margin: 0 auto;
  gap: 46px;
  padding: clamp(34px, 3.1vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.022) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
    linear-gradient(180deg, #0a0c0f 0%, #121519 55%, #090b0d 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-shell--kayen::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(146deg,
      transparent 0 8%,
      rgba(255, 45, 45, 0.96) 8% 8.35%,
      transparent 8.35% 31%,
      rgba(255, 255, 255, 0.018) 31% 57%,
      transparent 57% 70%,
      rgba(168, 10, 10, 0.88) 70% 70.28%,
      transparent 70.28% 100%),
    linear-gradient(36deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.02) 18% 46%,
      transparent 46% 60%,
      rgba(255, 26, 26, 0.92) 60% 60.34%,
      transparent 60.34% 100%);
  opacity: 0.88;
  pointer-events: none;
}

.faq-shell--kayen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(160deg,
      transparent 0 10%,
      rgba(0, 0, 0, 0.52) 10% 38%,
      transparent 38% 53%,
      rgba(0, 0, 0, 0.6) 53% 86%,
      transparent 86% 100%),
    linear-gradient(90deg, rgba(4, 5, 7, 0.26) 0%, rgba(4, 5, 7, 0.08) 48%, rgba(4, 5, 7, 0.26) 100%);
  pointer-events: none;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-layout,
.faq-support,
.faq-support-card,
.faq-eyebrow {
  display: none;
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1px minmax(320px, 460px);
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-head--kayen::after {
  display: block;
  content: "";
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.18) 100%);
}

.faq-head--kayen h2,
.faq-head--kayen .section-text {
  margin: 0;
}

.faq-head--kayen h2 {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.93rem;
  line-height: 1.76;
  letter-spacing: 0.01em;
  text-align: left;
}

.faq-head--kayen .section-text span {
  display: inline;
  white-space: normal;
}

.faq-grid--kayen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  max-width: 1360px;
  margin: 0 auto;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-card--kayen {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transform: none;
}

.faq-card--kayen summary {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.faq-card--kayen summary::before {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  margin-top: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  transform: none;
}

.faq-card--kayen[open] summary::before {
  background: rgba(255, 64, 64, 0.12);
  color: #ff4a4a;
}

.faq-card--kayen .faq-question-copy {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #ffffff;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 0;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0 22px 22px 62px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(4, 6, 8, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.74;
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 52px 0 24px;
  }

  .faq-shell--kayen {
    width: min(100% - 16px, 100%);
    gap: 30px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    max-width: 8.8ch;
    font-size: clamp(2.2rem, 8.6vw, 3.3rem);
    text-align: left;
  }

  .faq-head--kayen h2 span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    max-width: 32ch;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-column {
    gap: 16px;
  }

  .faq-card--kayen summary {
    padding: 18px 18px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .faq-card--kayen .faq-answer-inner {
    padding: 0 18px 18px 18px;
  }

  .faq-card--kayen .faq-answer-inner p {
    font-size: 0.9rem;
    line-height: 1.66;
  }
}

/* FAQ refinement pass: cleaner hierarchy, quieter background, stronger readability. */
.faq-section--conversion {
  padding: 84px 0 42px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #050608 0%, #090b0f 100%);
}

.faq-shell--kayen {
  position: relative;
  overflow: hidden;
  width: min(100% - 24px, 1600px);
  margin: 0 auto;
  gap: 46px;
  padding: clamp(34px, 3.1vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.022) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
    linear-gradient(180deg, #0a0c0f 0%, #121519 55%, #090b0d 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-shell--kayen::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(146deg,
      transparent 0 8%,
      rgba(255, 45, 45, 0.96) 8% 8.35%,
      transparent 8.35% 31%,
      rgba(255, 255, 255, 0.018) 31% 57%,
      transparent 57% 70%,
      rgba(168, 10, 10, 0.88) 70% 70.28%,
      transparent 70.28% 100%),
    linear-gradient(36deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.02) 18% 46%,
      transparent 46% 60%,
      rgba(255, 26, 26, 0.92) 60% 60.34%,
      transparent 60.34% 100%);
  opacity: 0.88;
  pointer-events: none;
}

.faq-shell--kayen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(160deg,
      transparent 0 10%,
      rgba(0, 0, 0, 0.52) 10% 38%,
      transparent 38% 53%,
      rgba(0, 0, 0, 0.6) 53% 86%,
      transparent 86% 100%),
    linear-gradient(90deg, rgba(4, 5, 7, 0.26) 0%, rgba(4, 5, 7, 0.08) 48%, rgba(4, 5, 7, 0.26) 100%);
  pointer-events: none;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-layout,
.faq-support,
.faq-support-card,
.faq-eyebrow {
  display: none;
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1px minmax(320px, 460px);
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-head--kayen::after {
  display: block;
  content: "";
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.18) 100%);
}

.faq-head--kayen h2,
.faq-head--kayen .section-text {
  margin: 0;
}

.faq-head--kayen h2 {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.93rem;
  line-height: 1.76;
  letter-spacing: 0.01em;
  text-align: left;
}

.faq-head--kayen .section-text span {
  display: inline;
  white-space: normal;
}

.faq-grid--kayen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  max-width: 1360px;
  margin: 0 auto;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-card--kayen {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.faq-card--kayen summary {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.faq-card--kayen summary::before {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  margin-top: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  transform: none;
}

.faq-card--kayen[open] summary::before {
  background: rgba(255, 64, 64, 0.12);
  color: #ff4a4a;
}

.faq-card--kayen .faq-question-copy {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.08rem, 1.3vw, 1.3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #ffffff;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 0;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0 22px 22px 62px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(4, 6, 8, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.74;
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 52px 0 24px;
  }

  .faq-shell--kayen {
    width: min(100% - 16px, 100%);
    gap: 30px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    max-width: 8.8ch;
    font-size: clamp(2.2rem, 8.6vw, 3.3rem);
    text-align: left;
  }

  .faq-head--kayen h2 span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    max-width: 32ch;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-column {
    gap: 16px;
  }

  .faq-card--kayen summary {
    padding: 18px 18px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .faq-card--kayen .faq-answer-inner {
    padding: 0 18px 18px 18px;
  }

  .faq-card--kayen .faq-answer-inner p {
    font-size: 0.9rem;
    line-height: 1.66;
  }
}

/* Final FAQ override: brushed black panels with red accents, based on the shared reference. */
.faq-section--conversion {
  padding: 72px 0 34px;
  background: linear-gradient(180deg, #050608 0%, #090b0f 100%);
  overflow: visible;
}

.faq-shell--kayen {
  position: relative;
  overflow: hidden;
  width: min(100% - 16px, 1860px);
  margin: 0 auto;
  gap: 38px;
  padding: clamp(28px, 2.8vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(255, 255, 255, 0) 2px 8px),
    linear-gradient(180deg, #090a0c 0%, #121417 52%, #08090b 100%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.faq-shell--kayen::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(146deg,
      transparent 0 7%,
      #ff1717 7% 7.45%,
      transparent 7.45% 25%,
      rgba(255, 255, 255, 0.025) 25% 58%,
      transparent 58% 67%,
      #b30808 67% 67.35%,
      transparent 67.35% 100%),
    linear-gradient(35deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.03) 18% 48%,
      transparent 48% 58%,
      #ff1010 58% 58.45%,
      transparent 58.45% 100%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.24) 0%, rgba(5, 6, 8, 0.08) 50%, rgba(5, 6, 8, 0.26) 100%);
  opacity: 0.96;
  pointer-events: none;
  border-radius: inherit;
}

.faq-shell--kayen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      transparent 0 11%,
      rgba(0, 0, 0, 0.76) 11% 41%,
      transparent 41% 52%,
      rgba(0, 0, 0, 0.82) 52% 86%,
      transparent 86% 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-layout,
.faq-support,
.faq-support-card,
.faq-eyebrow {
  display: none;
}

.faq-head--kayen {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: none;
  margin: 0;
  text-align: initial;
}

.faq-head--kayen::after {
  display: none;
}

.faq-head--kayen h2 {
  flex: 0 0 auto;
  width: 494px;
  max-width: none;
  margin-right: 24px;
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  flex: 0 0 520px;
  max-width: none;
  padding: 4px 0 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: left;
  align-self: center;
}

.faq-head--kayen .section-text span {
  display: block;
  white-space: nowrap;
}

.faq-grid--kayen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}

.faq-column {
  display: grid;
  gap: 16px;
}

.faq-card--kayen {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.faq-card--kayen summary {
  padding: 0;
  gap: 14px;
  align-items: flex-start;
}

.faq-card--kayen summary::before {
  width: auto;
  height: auto;
  flex: none;
  margin-top: -1px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 500;
  transform: translateY(-1px);
}

.faq-card--kayen[open] summary::before {
  color: #ff4040;
  background: transparent;
}

.faq-card--kayen .faq-question-copy {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.42rem);
  font-weight: 800;
  line-height: 1.18;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #ff4040;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 12px;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(8, 10, 12, 0.56);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  line-height: 1.62;
  backdrop-filter: blur(3px);
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 42px 0 18px;
  }

  .faq-shell--kayen {
    width: min(100% - 12px, 100%);
    gap: 30px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .faq-head--kayen {
    display: grid;
    justify-content: start;
    gap: 16px;
  }

  .faq-head--kayen h2 {
    width: auto;
    margin-right: 0;
    max-width: 9.2ch;
    font-size: clamp(2.1rem, 8vw, 3rem);
    text-align: left;
  }

  .faq-head--kayen h2 span,
  .faq-head--kayen .section-text span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    flex: none;
    max-width: 32ch;
    padding: 0;
    border-left: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.08rem;
  }
}

/* END OF FILE: definitive TikTok restore */
#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1480px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 14px !important;
}

#videos .tiktok-shell > :not(.tiktok-carousel):not(.tiktok-dots) {
  display: none !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 18px !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: flex !important;
  gap: 24px !important;
}

#videos .tiktok-video-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-card > :not(.tiktok-video-frame) {
  display: none !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #0f1113 !important;
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

#videos .tiktok-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

#videos .tiktok-dot {
  width: 34px !important;
  height: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(17, 20, 19, 0.12) !important;
  cursor: pointer !important;
}

#videos .tiktok-dot.is-active {
  background: #111413 !important;
}

@media (max-width: 1100px) {
  #videos .tiktok-video-card {
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-video-card {
    flex-basis: 100% !important;
  }

  #videos .tiktok-video-frame {
    max-width: 360px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }

  #videos .tiktok-dot {
    width: 26px !important;
  }
}

/* FAQ background adapted from the latest dark brushed-metal reference. */
.faq-section--conversion {
  padding: 72px 0 34px;
  background:
    linear-gradient(180deg, #050608 0%, #090b0f 100%);
}

.faq-shell--kayen {
  position: relative;
  overflow: hidden;
  width: min(100% - 16px, 1860px);
  margin: 0 auto;
  gap: 38px;
  padding: clamp(28px, 2.8vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0) 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(255, 255, 255, 0) 2px 8px),
    linear-gradient(180deg, #090a0c 0%, #121417 52%, #08090b 100%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.faq-shell--kayen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(146deg,
      transparent 0 7%,
      #ff1717 7% 7.45%,
      transparent 7.45% 25%,
      rgba(255, 255, 255, 0.025) 25% 58%,
      transparent 58% 67%,
      #b30808 67% 67.35%,
      transparent 67.35% 100%),
    linear-gradient(35deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.03) 18% 48%,
      transparent 48% 58%,
      #ff1010 58% 58.45%,
      transparent 58.45% 100%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.24) 0%, rgba(5, 6, 8, 0.08) 50%, rgba(5, 6, 8, 0.26) 100%);
  opacity: 0.96;
  pointer-events: none;
}

.faq-shell--kayen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      transparent 0 11%,
      rgba(0, 0, 0, 0.76) 11% 41%,
      transparent 41% 52%,
      rgba(0, 0, 0, 0.82) 52% 86%,
      transparent 86% 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-head--kayen h2 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.faq-head--kayen .section-text {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.88);
}

.faq-card--kayen summary::before,
.faq-card--kayen .faq-question-copy {
  color: #ffffff;
}

.faq-card--kayen[open] summary::before,
.faq-card--kayen[open] .faq-question-copy {
  color: #ff4040;
}

.faq-card--kayen .faq-answer-inner p {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 12, 0.56);
  backdrop-filter: blur(3px);
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 42px 0 18px;
  }

  .faq-shell--kayen {
    width: min(100% - 12px, 100%);
    padding: 24px 18px;
    border-radius: 16px;
  }

  .faq-shell--kayen::before {
    background:
      linear-gradient(146deg,
        transparent 0 8%,
        #ff1717 8% 8.55%,
        transparent 8.55% 28%,
        rgba(255, 255, 255, 0.02) 28% 60%,
        transparent 60% 70%,
        #b30808 70% 70.4%,
        transparent 70.4% 100%),
      linear-gradient(35deg,
        transparent 0 20%,
        rgba(255, 255, 255, 0.025) 20% 50%,
        transparent 50% 60%,
        #ff1010 60% 60.5%,
        transparent 60.5% 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.32) 0%, rgba(5, 6, 8, 0.12) 50%, rgba(5, 6, 8, 0.34) 100%);
  }

  .faq-head--kayen .section-text {
    border-left: 0;
  }
}

/* Hero promo rebuild: use the supplied artwork full-frame and only expose the CTA as interactive. */
.hero-slider.is-promo-active::before,
.hero-slider.is-promo-active::after,
.hero-slider.is-promo-active .hero-showroom-sheen {
  opacity: 0;
}

.hero-slider.is-promo-active .hero-slider-dots {
  opacity: 0;
  pointer-events: none;
}

.hero-slide--promo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 18%),
    url("assets/hero/dorcas-home-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide--promo::before,
.hero-slide--promo::after {
  display: none;
}

.hero-promo-stage {
  position: absolute;
  inset: 0;
  padding: 0;
  z-index: 1;
}

.hero-promo-frame {
  position: absolute;
  inset: 0;
}

.hero-promo-artwork {
  display: none;
}

.hero-promo-hotspot {
  position: absolute;
  left: clamp(54px, 18vw, 336px);
  bottom: clamp(40px, 11vh, 96px);
  width: clamp(270px, 17vw, 340px);
  height: clamp(48px, 5.7vh, 60px);
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 3;
  background: transparent;
  text-decoration: none;
}

.hero-promo-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0),
    0 18px 32px rgba(214, 13, 92, 0);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero-promo-hotspot:hover::before,
.hero-promo-hotspot:focus-visible::before {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 18px 32px rgba(214, 13, 92, 0.22);
  transform: translateY(-1px);
}

.hero-promo-hotspot:focus-visible {
  outline: none;
}

@media (max-width: 980px) {
  .hero-promo-hotspot {
    left: clamp(26px, 8vw, 108px);
    bottom: clamp(32px, 8vh, 70px);
    width: clamp(232px, 31vw, 308px);
    height: 52px;
  }
}

@media (max-width: 640px) {
  .hero-promo-hotspot {
    left: 50%;
    bottom: 22px;
    width: min(84vw, 320px);
    height: 48px;
    transform: translateX(-50%);
  }

  .hero-promo-hotspot:hover::before,
  .hero-promo-hotspot:focus-visible::before {
    transform: translateX(0) translateY(-1px);
  }
}

/* Service section: lock the desktop composition to the supplied reference. */
.service-complete {
  padding: 86px 0 34px;
  background:
    radial-gradient(circle at 50% 2%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.service-complete .shell {
  width: min(1700px, calc(100% - 96px));
}

.service-complete-shell {
  gap: 98px;
}

.service-complete-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: center;
}

.service-complete-title {
  grid-template-columns: minmax(0, max-content) 1px;
  gap: 34px;
  align-items: center;
}

.service-complete-title::after {
  height: 94px;
  background: rgba(21, 25, 20, 0.14);
}

.service-complete-title h2 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 4.18rem;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-title h2 span {
  display: block;
  white-space: nowrap;
}

.service-complete-accent {
  color: #2b7a3d;
}

.service-complete-kicker {
  margin: 0;
  width: auto;
  max-width: 32ch;
  color: #353a36;
  font-family: "Consolas", "Lucida Console", monospace;
  font-size: 0.92rem;
  line-height: 1.82;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-complete-kicker span {
  display: block;
  white-space: normal;
}

.service-complete-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.service-complete-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 0 42px;
  text-align: center;
}

.service-complete-card + .service-complete-card {
  border-left: 0;
}

.service-complete-card + .service-complete-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 18px;
  width: 1px;
  background: rgba(21, 25, 20, 0.1);
}

.service-complete-icon {
  width: 88px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.service-complete-icon img,
.service-complete-icon svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-complete-card h3 {
  margin: 0;
  max-width: 11ch;
  color: #202421;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-complete-line {
  width: 46px;
  height: 2px;
  border-radius: 0;
  background: #2b7a3d;
}

.service-complete-card p {
  margin: 0;
  max-width: 17ch;
  color: #4d5650;
  font-size: 0.84rem;
  line-height: 1.68;
}

@media (max-width: 1220px) {
  .service-complete {
    padding: 56px 0 20px;
  }

  .service-complete .shell {
    width: min(100% - 44px, 100%);
  }

  .service-complete-shell {
    gap: 54px;
  }

  .service-complete-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-complete-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-title::after {
    display: none;
  }

  .service-complete-title h2 span,
  .service-complete-kicker span {
    white-space: normal;
  }

  .service-complete-kicker {
    width: auto;
    max-width: 36ch;
    letter-spacing: 0.2em;
    line-height: 1.86;
  }

  .service-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .service-complete-card {
    padding: 0 20px;
  }

  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    padding-top: 42px;
    border-top: 1px solid rgba(21, 25, 20, 0.1);
  }

  .service-complete-card:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .service-complete {
    padding: 40px 0 10px;
  }

  .service-complete .shell {
    width: min(100% - 28px, 100%);
  }

  .service-complete-shell {
    gap: 34px;
  }

  .service-complete-title h2 {
    font-size: clamp(2.2rem, 8.8vw, 3rem);
    line-height: 0.96;
  }

  .service-complete-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    line-height: 1.72;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .service-complete-card {
    padding: 28px 0;
  }

  .service-complete-card + .service-complete-card::before {
    display: none;
  }

  .service-complete-card + .service-complete-card,
  .service-complete-card:nth-child(3),
  .service-complete-card:nth-child(4) {
    border-top: 1px solid rgba(21, 25, 20, 0.1);
    padding-top: 28px;
  }

  .service-complete-icon {
    width: 88px;
    height: 84px;
  }

  .service-complete-card h3 {
    font-size: 1.7rem;
  }

  .service-complete-card h3 span,
  .service-complete-card p span {
    white-space: normal;
  }

  .service-complete-card p {
    font-size: 1rem;
    line-height: 1.66;
  }
}

/* FAQ full-width pass to match the larger reference composition. */
.faq-section--conversion {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #07090c;
}

.faq-shell--kayen {
  width: 100%;
  min-height: clamp(860px, 94vh, 1100px);
  margin: 0;
  padding: clamp(56px, 5vw, 84px) clamp(28px, 4vw, 58px) clamp(64px, 6vw, 94px);
  gap: clamp(56px, 5vw, 78px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 88%, rgba(255, 207, 64, 0.12), transparent 20%),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(90deg, rgba(6, 9, 11, 0.94) 0%, rgba(8, 12, 15, 0.82) 38%, rgba(6, 9, 11, 0.94) 100%),
    linear-gradient(180deg, #07090c 0%, #0d1115 52%, #07090c 100%);
  box-shadow: none;
}

.faq-shell--kayen::before {
  background:
    linear-gradient(115deg, transparent 0 15%, rgba(65, 188, 96, 0.12) 15.1%, transparent 15.35%, transparent 22%, rgba(65, 188, 96, 0.05) 22.1%, transparent 22.35%),
    linear-gradient(70deg, transparent 0 84%, rgba(255, 207, 64, 0.14) 84.1%, transparent 84.35%),
    radial-gradient(circle at 18% 86%, rgba(255, 205, 41, 0.14), transparent 26%);
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 1px minmax(0, 0.98fr);
  gap: 22px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.faq-head--kayen::after {
  display: block;
  content: "";
  grid-column: 2;
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-head--kayen h2 {
  grid-column: 1;
  justify-self: end;
  width: 560px;
  max-width: none;
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(3.15rem, 4.2vw, 4.7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: right;
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  grid-column: 3;
  width: 510px;
  max-width: none;
  align-self: center;
  padding: 4px 0 4px 20px;
  border-left: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 1.02rem;
  line-height: 1.74;
  letter-spacing: 0.01em;
  text-align: left;
}

.faq-head--kayen .section-text span {
  display: block;
  white-space: nowrap;
}

.faq-grid--kayen {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

.faq-column {
  gap: 24px;
}

.faq-card--kayen summary {
  gap: 16px;
  padding: 0;
}

.faq-card--kayen summary::before {
  font-size: 2rem;
  font-weight: 600;
  transform: translateY(-1px);
}

.faq-card--kayen .faq-question-copy {
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.28rem, 1.65vw, 1.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Catalog lead reset: restore a tighter, centered showroom after the services block. */
.catalog-section--lead {
  padding: clamp(26px, 3vw, 42px) 0 clamp(46px, 4vw, 68px);
  background: linear-gradient(180deg, #fbfbfa 0%, #f5f6f2 100%);
}

.catalog-section--lead .shell {
  width: min(1420px, calc(100% - 56px));
}

.section-header-catalog {
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.section-header-catalog--simple > div {
  max-width: 760px;
  margin: 0 auto;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.section-header-catalog--simple .eyebrow {
  margin: 0;
}

.section-header-catalog--simple h2 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
}

.section-header-catalog--simple .section-text {
  max-width: 36rem;
  margin: 8px auto 0;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.56;
}

.lineup-showcase {
  display: grid;
  grid-template-areas:
    "stage"
    "info"
    "dots";
  justify-items: center;
  align-items: start;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  gap: 16px;
}

.lineup-showcase::before {
  display: none;
  content: none;
}

.lineup-stage {
  grid-area: stage;
  width: 100%;
  min-height: clamp(320px, 31vw, 430px);
  grid-template-columns: minmax(140px, 0.66fr) minmax(320px, 500px) minmax(140px, 0.66fr);
  align-items: center;
  justify-items: center;
  padding: 0 56px;
  transform: none;
}

.lineup-stage::before {
  display: block;
  content: "";
  left: 50%;
  bottom: 22px;
  width: min(440px, 34vw);
  height: min(440px, 34vw);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-50%);
}

.lineup-stage::after {
  left: 50%;
  right: auto;
  bottom: 14px;
  width: min(320px, 28vw);
  height: 34px;
  background: radial-gradient(circle, rgba(17, 22, 18, 0.2) 0%, rgba(17, 22, 18, 0) 72%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.lineup-vehicle {
  align-self: center;
}

.lineup-vehicle--side {
  width: min(100%, 210px);
  opacity: 0.3;
  filter: blur(1.6px) saturate(0.88);
}

.lineup-vehicle--left {
  justify-self: end;
  transform: translate(18px, 6px) scale(0.76);
}

.lineup-vehicle--right {
  justify-self: start;
  transform: translate(0, 6px) scale(0.76);
}

.lineup-vehicle--active {
  width: min(100%, 430px);
  transform: translateY(-6px);
}

.lineup-vehicle--active img {
  max-height: clamp(250px, 24vw, 328px);
}

.lineup-nav {
  top: clamp(138px, 45%, 198px);
  transform: translateY(-50%);
}

.lineup-nav:hover,
.lineup-nav:focus-visible {
  transform: translateY(-50%) translateY(-3px);
}

.lineup-info {
  position: static;
  left: auto;
  top: auto;
  grid-area: info;
  width: min(100%, 440px);
  min-width: 0;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.lineup-info-accent {
  justify-self: center;
}

.lineup-info h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
}

.lineup-info p {
  font-size: 0.98rem;
  line-height: 1.44;
}

.lineup-dots {
  grid-area: dots;
  margin: 2px auto 0;
}

@media (max-width: 900px) {
  .catalog-section--lead {
    padding: 28px 0 44px;
  }

  .catalog-section--lead .shell {
    width: min(100% - 28px, 100%);
  }

  .section-header-catalog {
    margin-bottom: 18px;
  }

  .section-header-catalog--simple h2 {
    max-width: 9.8ch;
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .section-header-catalog--simple .section-text {
    max-width: 30rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lineup-showcase {
    gap: 12px;
  }

  .lineup-stage {
    min-height: 260px;
    grid-template-columns: minmax(64px, 0.32fr) minmax(220px, 1fr) minmax(64px, 0.32fr);
    padding: 0 18px;
  }

  .lineup-stage::before {
    width: min(280px, 68vw);
    height: min(280px, 68vw);
  }

  .lineup-stage::after {
    width: min(220px, 54vw);
    height: 24px;
  }

  .lineup-vehicle--side {
    width: min(100%, 118px);
    opacity: 0.22;
  }

  .lineup-vehicle--left {
    transform: translate(0, 10px) scale(0.72);
  }

  .lineup-vehicle--right {
    transform: translate(0, 10px) scale(0.72);
  }

  .lineup-vehicle--active {
    width: min(100%, 320px);
    transform: translateY(-2px);
  }

  .lineup-vehicle--active img {
    max-height: 218px;
  }

  .lineup-nav {
    top: 44%;
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }

  .lineup-info {
    width: min(100%, 320px);
  }

  .lineup-info h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .lineup-info p {
    font-size: 0.92rem;
  }
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 14px;
}

.faq-card--kayen .faq-answer-inner p {
  min-height: 122px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(8, 12, 16, 0.28);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 1.01rem;
  line-height: 1.72;
  box-shadow: none;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .faq-shell--kayen {
    min-height: auto;
    padding: 34px 20px 40px;
  }

  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-head--kayen::after {
    display: none;
  }

  .faq-head--kayen h2 {
    justify-self: start;
    width: auto;
    max-width: 8.2ch;
    font-size: clamp(2.4rem, 8.6vw, 3.6rem);
    text-align: left;
  }

  .faq-head--kayen h2 span,
  .faq-head--kayen .section-text span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    width: auto;
    padding: 0 0 0 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-column {
    gap: 18px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.22rem;
  }

  .faq-card--kayen .faq-answer-inner p {
    min-height: 0;
    font-size: 0.92rem;
  }
}

/* Testimonials section final pass to match the supplied reference. */
.income-section {
  padding: 76px 0 34px;
  background: #ffffff;
  overflow-x: clip;
}

.income-section .shell {
  width: min(1288px, calc(100% - 46px));
}

.income-shell--google {
  gap: 42px;
}

.income-head--split {
  grid-template-columns: minmax(0, 560px) 1px minmax(320px, 410px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto 18px;
  transform: none;
}

.income-title-stack {
  grid-column: 1;
  gap: 0;
  width: 100%;
  justify-items: end;
  text-align: right;
  justify-self: stretch;
}

.income-head--split h2 {
  max-width: none;
  display: grid;
  justify-items: end;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.income-head--split h2 span {
  display: block;
  white-space: nowrap;
}

.income-head--split h2 span + span {
  margin-top: 4px;
}

.income-head--split::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  background: rgba(21, 25, 20, 0.72);
  width: 1px;
  height: 92px;
  align-self: center;
  transform: none;
}

.income-kicker {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  max-width: 32ch;
  padding-top: 0;
  color: #5f6660;
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.review-carousel {
  max-width: 100%;
  padding-inline: 0;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.review-card {
  min-height: 254px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(21, 25, 20, 0.05);
  background: #f5f5f5;
  box-shadow: none;
}

.review-card[hidden] {
  display: none !important;
}

.review-card:not([hidden]) {
  animation: reviewCardFade 360ms ease;
}

@keyframes reviewCardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-2px);
  background: #f7f7f7;
  border-color: rgba(21, 25, 20, 0.08);
}

.review-card-top {
  gap: 12px;
}

.review-profile {
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border: 0;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  background: #5f6368;
  box-shadow: none;
}

.review-avatar--slate {
  background: #129eaf;
}

.review-avatar--berry {
  background: #d93025;
}

.review-avatar--photo {
  background: #1e8e3e;
}

.review-meta strong {
  max-width: 265px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-meta span {
  margin-top: 2px;
  font-size: 0.9rem;
}

.review-source {
  min-width: 26px;
  min-height: 26px;
  width: 26px;
  height: 26px;
  font-size: 0;
  color: transparent;
  position: relative;
}

.review-source::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.6 20.5H42V20H24v8h11.3C33.6 32.7 29.2 36 24 36c-6.6 0-12-5.4-12-12S17.4 12 24 12c3 0 5.7 1.1 7.8 3l5.7-5.7C34 6.1 29.3 4 24 4 12.9 4 4 12.9 4 24s8.9 20 20 20 20-8.9 20-20c0-1.3-.1-2.3-.4-3.5z'/%3E%3Cpath fill='%23FF3D00' d='M6.3 14.7l6.6 4.8C14.7 15 18.9 12 24 12c3 0 5.7 1.1 7.8 3l5.7-5.7C34 6.1 29.3 4 24 4c-7.7 0-14.4 4.3-17.7 10.7z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.2 0 9.9-2 13.4-5.2l-6.2-5.2c-2 1.5-4.5 2.4-7.2 2.4-5.2 0-9.6-3.3-11.2-8l-6.5 5C9.6 39.6 16.3 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.6 20.5H42V20H24v8h11.3c-1.1 3.1-3.2 5.5-6 7.2l.1-.1 6.2 5.2C35.2 40.6 44 34 44 24c0-1.3-.1-2.3-.4-3.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.review-rating {
  gap: 8px;
}

.review-stars {
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.review-card p {
  max-width: none;
  color: #111413;
  font-size: 0.98rem;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.review-expand {
  margin-top: auto;
  color: #7a807b;
  font-size: 0.92rem;
  line-height: 1.2;
}

.review-expand--muted {
  color: #7f7f7f;
}

.review-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 25, 20, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  color: #8a8f8b;
  font-size: 1.3rem;
}

.review-nav--prev {
  left: -22px;
}

.review-nav--next {
  right: -22px;
}

@media (max-width: 1100px) {
  .income-section .shell {
    width: min(100% - 30px, 100%);
  }

  .income-head--split {
    grid-template-columns: 1fr;
    gap: 22px;
    transform: none;
  }

  .income-head--split::after {
    display: none;
  }

  .income-title-stack {
    justify-items: start;
    text-align: left;
  }

  .income-head--split h2 span {
    white-space: normal;
  }

  .income-head--split h2 span + span {
    margin-top: 0;
  }

  .income-kicker {
    max-width: 42ch;
    padding-top: 0;
  }

  .review-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-nav--prev {
    left: -8px;
  }

  .review-nav--next {
    right: -8px;
  }
}

@media (max-width: 720px) {
  .income-section {
    padding: 46px 0 22px;
  }

  .income-section .shell {
    width: min(100% - 20px, 100%);
  }

  .income-head--split h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 0.96;
  }

  .income-kicker {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .review-carousel {
    padding-inline: 0;
  }

  .review-card {
    min-height: 286px;
    padding: 18px 18px 18px;
  }

  .review-track {
    grid-template-columns: 1fr;
  }

  .review-meta strong {
    max-width: 210px;
  }

  .review-card p {
    font-size: 0.95rem;
    line-height: 1.44;
  }

  .review-nav {
    width: 38px;
    height: 38px;
  }

  .review-nav--prev {
    left: -4px;
  }

  .review-nav--next {
    right: -4px;
  }
}

/* TikTok showcase section */
.tiktok-section {
  padding: 82px 0 34px;
  background: #ffffff;
}

.tiktok-section .shell {
  width: min(1288px, calc(100% - 46px));
}

.tiktok-shell {
  display: grid;
  gap: 34px;
}

.tiktok-head {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1px minmax(300px, 430px);
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1050px;
  margin: 0 auto;
}

.tiktok-title-stack {
  display: grid;
  justify-items: end;
  text-align: right;
}

.tiktok-head h2 {
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 3.35vw, 3.65rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tiktok-head h2 span {
  display: block;
}

.tiktok-head h2 span + span {
  margin-top: 4px;
}

.tiktok-head::after {
  content: "";
  width: 1px;
  height: 86px;
  background: rgba(21, 25, 20, 0.72);
  justify-self: center;
}

.tiktok-kicker {
  margin: 0;
  max-width: 30ch;
  color: #5f6660;
  font-size: 1rem;
  line-height: 1.82;
  letter-spacing: 0.02em;
}

.tiktok-grid {
  display: grid;
  justify-content: center;
}

.tiktok-card {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.tiktok-card:hover,
.tiktok-card:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.tiktok-card-media {
  position: relative;
  display: block;
  width: min(100%, 372px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 26px 55px rgba(17, 20, 19, 0.16);
  background: #d9d9d9;
}

.tiktok-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tiktok-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.56) 0%, rgba(10, 12, 14, 0.1) 20%, rgba(10, 12, 14, 0.08) 62%, rgba(10, 12, 14, 0.74) 100%);
}

.tiktok-card-account {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.tiktok-card-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(17, 20, 19, 0.18);
}

.tiktok-card-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.tiktok-card-account-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: #ffffff;
  text-align: left;
}

.tiktok-card-account-copy strong,
.tiktok-card-account-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiktok-card-account-copy strong {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.tiktok-card-account-copy span {
  font-size: 0.88rem;
  opacity: 0.94;
}

.tiktok-card-rail {
  position: absolute;
  top: 110px;
  right: 16px;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.tiktok-card-rail span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.tiktok-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.tiktok-card-play svg {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 18px 34px rgba(17, 20, 19, 0.25));
}

.tiktok-card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  z-index: 1;
  text-align: left;
  color: #ffffff;
}

.tiktok-card-caption strong {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.08;
}

.tiktok-card-caption span {
  font-size: 0.95rem;
  line-height: 1.35;
  opacity: 0.94;
}

body.tiktok-modal-open {
  overflow: hidden;
}

.tiktok-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
}

.tiktok-modal[hidden] {
  display: none;
}

.tiktok-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(10px);
}

.tiktok-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background: #0e1110;
  box-shadow: 0 28px 80px rgba(8, 10, 12, 0.45);
}

.tiktok-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.tiktok-modal-head {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 26px;
  color: #ffffff;
}

.tiktok-modal-head h2 {
  margin: 10px 0 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.tiktok-modal-link {
  width: fit-content;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d87 0%, #ff1544 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tiktok-modal-player {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-items: start;
  overflow: auto;
  max-height: calc(92vh - 56px);
}

.tiktok-modal-player .tiktok-embed,
.tiktok-modal-player iframe {
  width: min(100%, 380px) !important;
  margin: 0 auto !important;
}

.tiktok-modal-player iframe {
  border-radius: 26px;
  min-height: 720px;
}

@media (max-width: 980px) {
  .tiktok-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tiktok-head::after {
    display: none;
  }

  .tiktok-title-stack {
    justify-items: start;
    text-align: left;
  }

  .tiktok-kicker {
    max-width: 42ch;
  }

  .tiktok-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 94vh;
    padding: 22px;
  }

  .tiktok-modal-head {
    padding-top: 10px;
  }

  .tiktok-modal-player {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .tiktok-section {
    padding: 48px 0 18px;
  }

  .tiktok-section .shell {
    width: min(100% - 20px, 100%);
  }

  .tiktok-head h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .tiktok-kicker {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .tiktok-card-media {
    width: min(100%, 340px);
    border-radius: 24px;
  }

  .tiktok-card-play svg {
    width: 82px;
    height: 82px;
  }

  .tiktok-modal {
    padding: 12px;
  }

  .tiktok-modal-dialog {
    padding: 18px;
    border-radius: 22px;
  }

  .tiktok-modal-close {
    top: 10px;
    right: 10px;
  }

  .tiktok-modal-player .tiktok-embed,
  .tiktok-modal-player iframe {
    width: min(100%, 340px) !important;
  }
}

/* TikTok inline viewer final pass */
.tiktok-grid {
  justify-content: stretch;
}

.tiktok-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 59, 112, 0.18) 0%, rgba(255, 59, 112, 0) 26%),
    linear-gradient(180deg, #121514 0%, #0a0d0c 100%);
  box-shadow: 0 24px 60px rgba(10, 12, 14, 0.18);
}

.tiktok-panel-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  color: #ffffff;
}

.tiktok-panel-copy .eyebrow {
  margin: 0;
  color: #1e7a50;
  letter-spacing: 0.18em;
}

.tiktok-panel-copy h3 {
  margin: 0;
  max-width: 9ch;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.tiktok-panel-text {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.tiktok-story-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.tiktok-story-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.tiktok-story-card:hover,
.tiktok-story-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.tiktok-story-card.is-active {
  border-color: rgba(255, 70, 117, 0.5);
  background: rgba(255, 70, 117, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 70, 117, 0.08);
}

.tiktok-story-thumb {
  position: relative;
  display: block;
  width: 84px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 16px;
  background: #202423;
}

.tiktok-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tiktok-story-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.tiktok-story-play::before {
  content: "";
  width: 24px;
  height: 24px;
  border-left: 12px solid #ffffff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
  filter: drop-shadow(0 6px 12px rgba(10, 12, 14, 0.35));
}

.tiktok-story-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.tiktok-story-copy strong,
.tiktok-story-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiktok-story-copy strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.tiktok-story-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.tiktok-panel-link {
  width: fit-content;
  margin-top: 6px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d87 0%, #ff1544 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tiktok-viewer {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.tiktok-phone-frame {
  width: min(100%, 420px);
  padding: 12px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #fefefe 0%, #ececec 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.tiktok-phone-frame iframe {
  width: 100%;
  height: min(78vh, 760px);
  min-height: 640px;
  display: block;
  border: 0;
  border-radius: 24px;
  background: #000000;
}

.tiktok-viewer-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .tiktok-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px;
  }

  .tiktok-panel-copy {
    width: min(100%, 640px);
  }

  .tiktok-panel-copy h3,
  .tiktok-panel-text {
    max-width: none;
  }

  .tiktok-phone-frame {
    width: min(100%, 390px);
  }
}

@media (max-width: 720px) {
  .tiktok-showcase {
    gap: 24px;
    padding: 20px;
    border-radius: 24px;
  }

  .tiktok-panel-copy h3 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .tiktok-panel-text {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .tiktok-story-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 8px;
    border-radius: 18px;
  }

  .tiktok-story-thumb {
    width: 72px;
    border-radius: 14px;
  }

  .tiktok-phone-frame {
    width: min(100%, 350px);
    padding: 10px;
    border-radius: 28px;
  }

  .tiktok-phone-frame iframe {
    min-height: 560px;
    height: min(74vh, 640px);
    border-radius: 18px;
  }
}

/* TikTok gallery final pass: cards like the supplied reference, viewer in-web on click */
.tiktok-section {
  padding: 66px 0 26px;
  background: #ffffff;
}

.tiktok-shell {
  gap: 18px;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.tiktok-tile {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.tiktok-tile:hover,
.tiktok-tile:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.03);
}

.tiktok-tile-media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #d7d7d7;
  box-shadow: 0 18px 36px rgba(17, 20, 19, 0.08);
}

.tiktok-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.56) 0%, rgba(8, 10, 12, 0.12) 20%, rgba(8, 10, 12, 0.05) 56%, rgba(8, 10, 12, 0.08) 100%);
}

.tiktok-tile-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tiktok-tile-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.tiktok-tile-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 16px rgba(8, 10, 12, 0.16);
}

.tiktok-tile-brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tiktok-tile-brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
  color: #ffffff;
}

.tiktok-tile-brand-copy strong,
.tiktok-tile-brand-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiktok-tile-brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.18;
}

.tiktok-tile-brand-copy span {
  font-size: 0.9rem;
  opacity: 0.94;
}

.tiktok-tile-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}

.tiktok-tile-play svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 16px 24px rgba(8, 10, 12, 0.22));
}

.tiktok-tile.is-active .tiktok-tile-media {
  box-shadow: 0 22px 42px rgba(17, 20, 19, 0.12);
}

.tiktok-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.tiktok-gallery-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 25, 20, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.tiktok-gallery-dot.is-active {
  background: #111413;
  transform: scale(1.08);
}

.tiktok-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 22px;
}

.tiktok-lightbox[hidden] {
  display: none;
}

.tiktok-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(12px);
}

.tiktok-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 61, 112, 0.14) 0%, rgba(255, 61, 112, 0) 24%),
    linear-gradient(180deg, #121514 0%, #0a0d0c 100%);
  box-shadow: 0 28px 80px rgba(8, 10, 12, 0.36);
}

.tiktok-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.tiktok-lightbox-copy {
  display: grid;
  gap: 18px;
  color: #ffffff;
}

.tiktok-lightbox-copy .eyebrow {
  margin: 0;
  color: #1d7b50;
  letter-spacing: 0.18em;
}

.tiktok-lightbox-copy h2 {
  margin: 0;
  max-width: 8ch;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.tiktok-lightbox-copy p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.tiktok-lightbox-link {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d87 0%, #ff1544 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.tiktok-lightbox-stage {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.tiktok-lightbox-phone {
  width: min(100%, 360px);
  padding: 10px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #fbfbfb 0%, #eaeaea 100%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.tiktok-lightbox-phone iframe {
  width: 100%;
  height: min(78vh, 720px);
  min-height: 620px;
  display: block;
  border: 0;
  border-radius: 24px;
  background: #000000;
}

.tiktok-lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: center;
}

body.tiktok-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiktok-lightbox-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    padding: 24px;
  }

  .tiktok-lightbox-copy {
    width: min(100%, 620px);
  }

  .tiktok-lightbox-copy h2,
  .tiktok-lightbox-copy p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .tiktok-section {
    padding: 44px 0 12px;
  }

  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tiktok-tile-media {
    border-radius: 24px;
  }

  .tiktok-tile-top {
    top: 14px;
    left: 14px;
    right: 14px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .tiktok-tile-brand-mark {
    width: 40px;
    height: 40px;
  }

  .tiktok-tile-play svg {
    width: 94px;
    height: 94px;
  }

  .tiktok-lightbox {
    padding: 12px;
  }

  .tiktok-lightbox-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .tiktok-lightbox-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .tiktok-lightbox-copy p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .tiktok-lightbox-phone {
    width: min(100%, 334px);
    padding: 9px;
    border-radius: 28px;
  }

  .tiktok-lightbox-phone iframe {
    min-height: 560px;
    height: min(72vh, 620px);
    border-radius: 18px;
  }
}

/* TikTok gallery absolute final pass: no lightbox, play inside the same card */
.tiktok-shell {
  gap: 14px;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1260px;
  margin: 0 auto;
}

.tiktok-tile {
  display: block;
  outline: none;
}

.tiktok-tile-media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #d9d9d9;
  box-shadow: 0 18px 34px rgba(17, 20, 19, 0.08);
}

.tiktok-tile-cover,
.tiktok-tile-player,
.tiktok-tile-player iframe {
  position: absolute;
  inset: 0;
}

.tiktok-tile-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tiktok-tile-player {
  z-index: 3;
  display: none;
  background: #000000;
}

.tiktok-tile-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.tiktok-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.56) 0%, rgba(8, 10, 12, 0.12) 22%, rgba(8, 10, 12, 0.06) 62%, rgba(8, 10, 12, 0.08) 100%);
  z-index: 1;
}

.tiktok-tile-top,
.tiktok-tile-play {
  z-index: 2;
}

.tiktok-tile-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.tiktok-tile-play svg {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 10px 18px rgba(8, 10, 12, 0.2));
}

.tiktok-tile.is-active .tiktok-tile-player {
  display: block;
}

.tiktok-tile.is-active .tiktok-tile-cover,
.tiktok-tile.is-active .tiktok-tile-top,
.tiktok-tile.is-active .tiktok-tile-play,
.tiktok-tile.is-active .tiktok-tile-media::after {
  opacity: 0;
  pointer-events: none;
}

.tiktok-tile.is-active .tiktok-tile-media {
  box-shadow: 0 22px 42px rgba(17, 20, 19, 0.14);
}

.tiktok-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.tiktok-gallery-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 25, 20, 0.18);
  cursor: pointer;
}

.tiktok-gallery-dot.is-active {
  background: #111413;
}

@media (max-width: 900px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tiktok-tile-play svg {
    width: 82px;
    height: 82px;
  }
}

/* TikTok section final simplification: visible embeds in-place */
.tiktok-shell {
  gap: 0;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1260px;
  margin: 0 auto;
}

.tiktok-card-frame {
  margin: 0;
}

.tiktok-card-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #0f1113;
  box-shadow: 0 18px 36px rgba(17, 20, 19, 0.08);
}

.tiktok-card-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0f1113;
}

@media (max-width: 900px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tiktok-card-player {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* TikTok carousel final pass */
.tiktok-section {
  padding: 66px 0 18px;
  background: #ffffff;
}

.tiktok-section .shell {
  width: min(1320px, calc(100% - 40px));
}

.tiktok-shell {
  display: grid;
  gap: 0;
}

.tiktok-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.tiktok-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 20, 19, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #111413;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tiktok-arrow:hover,
.tiktok-arrow:focus-visible {
  transform: translateY(-2px);
  background: #f7f7f7;
  border-color: rgba(17, 20, 19, 0.14);
}

.tiktok-arrow svg {
  width: 20px;
  height: 20px;
}

.tiktok-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tiktok-viewport::-webkit-scrollbar {
  display: none;
}

.tiktok-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 52px) / 3);
  gap: 26px;
}

.tiktok-video-card {
  scroll-snap-align: start;
}

.tiktok-video-frame {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #0f1113;
  box-shadow: 0 18px 36px rgba(17, 20, 19, 0.08);
}

.tiktok-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0f1113;
}

@media (max-width: 1100px) {
  .tiktok-track {
    grid-auto-columns: calc((100% - 26px) / 2);
  }
}

@media (max-width: 720px) {
  .tiktok-section {
    padding: 42px 0 8px;
  }

  .tiktok-section .shell {
    width: min(100% - 20px, 100%);
  }

  .tiktok-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tiktok-arrow {
    display: none;
  }

  .tiktok-track {
    grid-auto-columns: 100%;
    gap: 18px;
  }

  .tiktok-video-frame {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 24px;
  }
}

@media (min-width: 1221px) {
  .service-complete {
    padding: 68px 0 28px;
    background:
      radial-gradient(circle at 50% 3%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 40%),
      linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  }

  .service-complete .shell {
    width: min(1540px, calc(100% - 86px));
  }

  .service-complete-shell {
    gap: 76px;
  }

  .service-complete-head {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    gap: 66px;
    align-items: center;
  }

  .service-complete-title {
    grid-template-columns: minmax(0, max-content) 1px;
    gap: 62px;
    align-items: center;
  }

  .service-complete-title::after {
    height: 112px;
    background: rgba(21, 25, 20, 0.13);
  }

  .service-complete-title h2 {
    font-size: clamp(3.7rem, 3.95vw, 4.25rem);
    line-height: 0.94;
  }

  .service-complete-kicker {
    width: auto;
    max-width: 34ch;
    justify-self: start;
    font-size: 0.93rem;
    line-height: 2.02;
    letter-spacing: 0.33em;
  }

  .service-complete-grid {
    align-items: start;
  }

  .service-complete-card {
    gap: 20px;
    padding: 0 30px;
  }

  .service-complete-card + .service-complete-card::before {
    top: 42px;
    bottom: 18px;
    background: rgba(21, 25, 20, 0.09);
  }

  .service-complete-icon {
    width: 112px;
    height: 106px;
    margin-bottom: 4px;
    overflow: visible;
  }

  .service-complete-icon img,
  .service-complete-icon svg {
    width: 100%;
    height: 100%;
  }

  .service-complete-icon img {
    transform-origin: center;
  }

  .service-complete-card:nth-child(1) .service-complete-icon img {
    transform: scale(1.42);
  }

  .service-complete-card:nth-child(2) .service-complete-icon img {
    transform: scale(1.42);
  }

  .service-complete-card:nth-child(3) .service-complete-icon img {
    transform: scale(1.34);
  }

  .service-complete-card:nth-child(4) .service-complete-icon img {
    transform: scale(1.34);
  }

  .service-complete-card h3 {
    max-width: 9.5ch;
    font-size: 1.76rem;
    line-height: 1;
  }

  .service-complete-line {
    width: 42px;
    height: 3px;
  }

  .service-complete-card p {
    font-size: 0.94rem;
    line-height: 1.72;
  }
}

@media (min-width: 1101px) {
  .income-section {
    padding: 58px 0 24px;
  }

  .income-section .shell {
    width: min(1260px, calc(100% - 64px));
  }

  .income-shell--google {
    gap: 28px;
  }

  .income-head--split {
    grid-template-columns: minmax(0, 520px) 1px minmax(290px, 360px);
    gap: 34px;
    max-width: 1020px;
    margin: 0 auto 12px;
  }

  .income-title-stack {
    justify-items: end;
  }

  .income-head--split h2 {
    font-size: clamp(2.35rem, 2.8vw, 3rem);
    line-height: 0.96;
  }

  .income-head--split::after {
    height: 90px;
  }

  .income-kicker {
    max-width: 29ch;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .review-carousel {
    max-width: 1260px;
    margin: 0 auto;
  }

  .review-track {
    gap: 18px;
  }

  .review-card {
    min-height: 214px;
    gap: 12px;
    padding: 20px 22px 16px;
    border-radius: 16px;
  }

  .review-meta strong {
    font-size: 0.95rem;
  }

  .review-meta span {
    font-size: 0.88rem;
  }

  .review-stars {
    font-size: 1.08rem;
  }

  .review-card p {
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .review-expand {
    font-size: 0.88rem;
  }

  .review-nav {
    width: 40px;
    height: 40px;
    font-size: 1.18rem;
  }

  .review-nav--prev {
    left: -18px;
  }

  .review-nav--next {
    right: -18px;
  }

  .tiktok-section {
    padding: 34px 0 16px;
  }

  .tiktok-section .shell {
    width: min(1260px, calc(100% - 64px));
  }

  .tiktok-shell {
    gap: 0;
  }

  .tiktok-carousel {
    grid-template-columns: auto minmax(0, 1146px) auto;
    gap: 18px;
    justify-content: center;
  }

  .tiktok-arrow {
    width: 42px;
    height: 42px;
  }

  .tiktok-arrow svg {
    width: 18px;
    height: 18px;
  }

  .tiktok-viewport {
    width: 100%;
    max-width: 1146px;
    overflow: hidden;
  }

  .tiktok-track {
    grid-auto-columns: 370px;
    gap: 18px;
  }

  .tiktok-video-frame {
    border-radius: 22px;
    box-shadow: 0 14px 26px rgba(17, 20, 19, 0.08);
  }
}

@media (min-width: 1200px) {
  .income-section {
    padding: 46px 0 18px;
  }

  .income-section .shell {
    width: min(1180px, calc(100% - 96px));
  }

  .income-shell--google {
    gap: 22px;
  }

  .income-head--split {
    grid-template-columns: minmax(0, 460px) 1px minmax(250px, 330px);
    gap: 26px;
    max-width: 860px;
    margin: 0 auto 10px;
  }

  .income-head--split h2 {
    font-size: clamp(2rem, 2.45vw, 2.6rem);
    line-height: 0.97;
  }

  .income-head--split::after {
    height: 84px;
  }

  .income-kicker {
    max-width: 27ch;
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .review-carousel {
    max-width: 1120px;
  }

  .review-track {
    gap: 16px;
  }

  .review-card {
    min-height: 190px;
    gap: 10px;
    padding: 18px 18px 14px;
    border-radius: 14px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }

  .review-meta strong {
    max-width: 220px;
    font-size: 0.9rem;
  }

  .review-meta span {
    font-size: 0.84rem;
  }

.review-source {
  min-width: 22px;
  min-height: 22px;
  width: 22px;
  height: 22px;
  font-size: 0;
}

  .review-stars {
    font-size: 1rem;
  }

  .review-card p {
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .review-expand {
    font-size: 0.84rem;
  }

  .review-nav {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .review-nav--prev {
    left: -12px;
  }

  .review-nav--next {
    right: -12px;
  }

  .tiktok-section {
    padding: 22px 0 8px;
  }

  .tiktok-section .shell {
    width: min(1160px, calc(100% - 96px));
  }

  .tiktok-carousel {
    grid-template-columns: auto minmax(0, 1038px) auto;
    gap: 14px;
  }

  .tiktok-arrow {
    width: 38px;
    height: 38px;
  }

  .tiktok-arrow svg {
    width: 16px;
    height: 16px;
  }

  .tiktok-viewport {
    max-width: 1038px;
  }

  .tiktok-track {
    grid-auto-columns: 335px;
    gap: 16px;
  }

  .tiktok-video-frame {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(17, 20, 19, 0.07);
  }
}

/* Editorial blog section below FAQ. */
.journal-section {
  padding: 72px 0 64px;
  background: #ffffff;
}

.journal-shell {
  display: grid;
  gap: 54px;
}

.journal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
}

.journal-head h2 {
  margin: 0;
  color: #101413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

.journal-kicker {
  margin: 0;
  color: #5e6560;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.88rem;
  line-height: 1.66;
  letter-spacing: 0.02em;
  text-transform: none;
  max-width: 38ch;
  padding-left: 34px;
  border-left: 1px solid rgba(21, 25, 20, 0.24);
  align-self: center;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.journal-card {
  display: grid;
  align-content: start;
  gap: 22px;
  color: inherit;
  text-decoration: none;
}

.journal-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 14, 13, 0.06) 0%, rgba(11, 14, 13, 0) 100%),
    #f2f2f0;
}

.journal-card--contain .journal-card-media {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.98) 0%, rgba(232, 232, 228, 0.96) 60%, rgba(221, 221, 217, 0.88) 100%);
}

.journal-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 13, 0) 0%, rgba(11, 14, 13, 0.08) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.journal-card--contain img {
  object-fit: contain;
  transform: scale(0.9);
}

.journal-card-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.journal-card-meta {
  color: #ef4040;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.72rem, 2.05vw, 2.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journal-card p {
  margin: 0;
  color: #555d58;
  font-size: 0.98rem;
  line-height: 1.66;
}

.journal-card-link {
  margin-top: auto;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 18px;
  color: #111413;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-card-arrow {
  position: relative;
  display: inline-block;
  width: 104px;
  height: 1px;
  background: rgba(17, 20, 19, 0.32);
  transform-origin: left center;
  transition: width 220ms ease, background 220ms ease;
}

.journal-card-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.journal-card:hover .journal-card-media::after,
.journal-card:focus-within .journal-card-media::after {
  opacity: 1;
}

.journal-card:hover img,
.journal-card:focus-within img {
  transform: scale(1.04);
}

.journal-card--contain:hover img,
.journal-card--contain:focus-within img {
  transform: scale(0.94);
}

.journal-card:hover .journal-card-arrow,
.journal-card:focus-within .journal-card-arrow {
  width: 122px;
  background: rgba(17, 20, 19, 0.56);
}

@media (max-width: 1180px) {
  .journal-section {
    padding: 60px 0 52px;
  }

  .journal-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 820px;
  }

  .journal-head h2 {
    text-align: left;
  }

  .journal-kicker {
    max-width: 100%;
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 720px) {
  .journal-section {
    padding: 46px 0 40px;
  }

  .journal-shell {
    gap: 34px;
  }

  .journal-head {
    gap: 16px;
  }

  .journal-head h2 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
  }

  .journal-kicker {
    font-size: 0.84rem;
    line-height: 1.56;
    letter-spacing: 0.2em;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journal-card {
    gap: 18px;
  }

  .journal-card h3 {
    font-size: clamp(1.46rem, 7vw, 1.9rem);
  }

  .journal-card p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .journal-card-link {
    font-size: 0.9rem;
    gap: 14px;
  }

  .journal-card-arrow {
    width: 88px;
  }
}

/* Mobile refinement for dense content sections. */
@media (max-width: 720px) {
  .service-complete {
    padding: 54px 0 24px;
  }

  .service-complete-head {
    gap: 14px;
  }

  .service-complete-kicker {
    max-width: 28ch;
    margin: 0 auto;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.58;
    letter-spacing: 0.18em;
  }

  .service-complete-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-complete-card {
    padding: 26px 0 24px;
  }

  .service-complete-card p {
    max-width: 28ch;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .income-section {
    padding: 34px 0 10px;
  }

  .income-head--split {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto 18px;
    justify-items: center;
    text-align: center;
  }

  .income-head--split::after {
    display: none;
  }

  .income-head--split h2 {
    justify-self: center;
    text-align: center;
    font-size: clamp(1.95rem, 9.6vw, 2.7rem);
    line-height: 0.98;
  }

  .income-kicker {
    max-width: 29ch;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .review-carousel {
    max-width: 100%;
    overflow: hidden;
  }

  .review-track {
    gap: 0;
  }

  .review-card {
    min-height: 178px;
    padding: 16px 16px 14px;
  }

  .review-card p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-nav {
    width: 34px;
    height: 34px;
  }

  .tiktok-section {
    padding: 18px 0 4px;
  }

  .tiktok-section .shell {
    width: min(100% - 28px, 360px);
  }

  .tiktok-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tiktok-arrow {
    display: none;
  }

  .tiktok-viewport {
    max-width: 290px;
    margin: 0 auto;
  }

  .tiktok-track {
    grid-auto-columns: min(78vw, 280px);
    gap: 12px;
  }

  .tiktok-dots {
    margin-top: 12px;
  }

  .journal-section {
    padding: 42px 0 34px;
  }

  .journal-shell {
    gap: 28px;
  }

  .journal-head {
    gap: 12px;
    max-width: 340px;
    margin: 0 auto;
    justify-items: center;
    text-align: center;
  }

  .journal-head h2 {
    justify-self: center;
    text-align: center;
    font-size: clamp(1.95rem, 9.8vw, 2.7rem);
    line-height: 0.99;
  }

  .journal-kicker {
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.52;
    letter-spacing: 0.16em;
  }

  .journal-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 310px);
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 4px 6px;
  }

  .journal-grid::-webkit-scrollbar {
    display: none;
  }

  .journal-card {
    scroll-snap-align: start;
    gap: 16px;
  }

  .journal-card h3 {
    font-size: clamp(1.34rem, 6.5vw, 1.72rem);
    line-height: 1.04;
  }

  .journal-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .journal-card-link {
    font-size: 0.84rem;
    gap: 12px;
  }

.journal-card-arrow {
  width: 72px;
}
}

/* Dorcas-specific FAQ redesign */
.faq-section--conversion {
  padding: 88px 0 40px;
  background:
    linear-gradient(180deg, #f7f8f7 0%, #ffffff 16%, #ffffff 100%);
}

.faq-shell--kayen {
  width: min(1320px, calc(100% - 44px));
  gap: 34px;
  padding: 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-shell--kayen::before {
  display: none;
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 370px);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-head--kayen h2 {
  width: auto;
  max-width: 8.4ch;
  margin: 0;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 4.1vw, 4.45rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #111413;
  text-align: left;
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  position: relative;
  max-width: 34ch;
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(17, 20, 19, 0.18);
  color: #5e6762;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
}

.faq-head--kayen .section-text span {
  display: block;
  white-space: normal;
}

.faq-grid--kayen {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: start;
}

.faq-column {
  gap: 14px;
}

.faq-card--kayen {
  border: 1px solid rgba(17, 20, 19, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 20, 19, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  transform: translateY(-2px);
  border-color: rgba(43, 122, 61, 0.18);
  box-shadow: 0 18px 34px rgba(17, 20, 19, 0.08);
}

.faq-card--kayen summary {
  padding: 18px 20px;
  gap: 14px;
  align-items: start;
}

.faq-card--kayen summary::before {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  margin-top: -2px;
  border-radius: 999px;
  background: rgba(43, 122, 61, 0.1);
  color: #2b7a3d;
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-card--kayen[open] summary::before {
  background: rgba(244, 193, 45, 0.16);
  color: #bb8b08;
}

.faq-card--kayen .faq-question-copy {
  color: #171b18;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.2vw, 1.26rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #111413;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 0;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0 20px 18px 68px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px;
  border: 1px solid rgba(43, 122, 61, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfb 0%, #f5f8f6 100%);
  color: #4a524d;
  font-size: 0.95rem;
  line-height: 1.68;
  box-shadow: none;
}

.faq-card--kayen .faq-answer-inner strong {
  color: #1c2a1f;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 54px 0 22px;
  }

  .faq-shell--kayen {
    width: min(100% - 24px, 100%);
    gap: 26px;
    padding-top: 18px;
  }

  .faq-head--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .faq-head--kayen h2 {
    max-width: 9ch;
    font-size: clamp(2.15rem, 8vw, 3.2rem);
  }

  .faq-head--kayen h2 span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    max-width: 32ch;
    padding-left: 16px;
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-card--kayen summary {
    padding: 16px 16px;
  }

  .faq-card--kayen summary::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 1.32rem;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.02rem;
  }

  .faq-card--kayen .faq-answer-inner {
    padding: 0 16px 16px 16px;
  }

  .faq-card--kayen .faq-answer-inner p {
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

/* Final FAQ art direction */
.faq-section--conversion {
  padding: 92px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}

.faq-shell--kayen {
  width: min(1280px, calc(100% - 52px));
  gap: 52px;
  padding: 0;
}

.faq-head--kayen {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-head--kayen::after {
  display: none;
}

.faq-eyebrow {
  color: #da3028;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-head--kayen h2 {
  width: auto;
  max-width: none;
  margin: 0;
  color: #131714;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-align: center;
}

.faq-head--kayen .section-text {
  max-width: 36ch;
  padding: 0;
  border-left: 0;
  color: #6a726d;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.faq-support {
  display: grid;
  align-content: start;
  gap: 26px;
  padding-top: 78px;
}

.faq-support h3 {
  margin: 0;
  color: #121614;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2.55vw, 3.15rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.faq-support h3 span {
  color: #da3028;
}

.faq-support p {
  margin: 0;
  max-width: 22ch;
  color: #6a726d;
  font-size: 1.06rem;
  line-height: 1.72;
}

.faq-support-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  border: 1px solid rgba(17, 20, 19, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 20, 19, 0.05);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-support-card:hover,
.faq-support-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(218, 48, 40, 0.18);
  box-shadow: 0 22px 38px rgba(17, 20, 19, 0.08);
}

.faq-support-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #da3028;
  background: rgba(218, 48, 40, 0.06);
}

.faq-support-icon svg {
  width: 30px;
  height: 30px;
}

.faq-support-copy {
  display: grid;
  gap: 6px;
}

.faq-support-copy strong {
  color: #171b18;
  font-size: 1rem;
  line-height: 1.3;
}

.faq-support-copy small {
  color: #6c746f;
  font-size: 0.94rem;
  line-height: 1.45;
}

.faq-support-copy span {
  margin-top: 4px;
  color: #da3028;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.faq-support-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  color: #171b18;
}

.faq-support-arrow::before,
.faq-support-arrow::after {
  content: "";
  position: absolute;
}

.faq-support-arrow::before {
  top: 50%;
  left: 0;
  width: 15px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.faq-support-arrow::after {
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.faq-grid--kayen {
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-card--kayen {
  border: 1px solid rgba(17, 20, 19, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 20, 19, 0.03);
}

.faq-card--kayen summary {
  padding: 22px 26px;
  gap: 18px;
  align-items: start;
}

.faq-card--kayen summary::before {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-top: 1px;
  border-radius: 0;
  background: transparent;
  color: #da3028;
  font-size: 2rem;
  font-weight: 400;
}

.faq-card--kayen[open] summary::before {
  background: transparent;
  color: #da3028;
}

.faq-card--kayen .faq-question-copy {
  color: #161a17;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.18rem, 1.55vw, 1.6rem);
  font-weight: 700;
  line-height: 1.32;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0 26px 24px 72px;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #68716b;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.82;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 56px 0 28px;
  }

  .faq-shell--kayen {
    width: min(100% - 24px, 100%);
    gap: 34px;
  }

  .faq-head--kayen h2 {
    font-size: clamp(2.3rem, 8.8vw, 3.5rem);
  }

  .faq-head--kayen .section-text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-support {
    padding-top: 0;
    gap: 18px;
  }

  .faq-support h3 {
    max-width: 11ch;
    font-size: clamp(1.86rem, 8vw, 2.7rem);
  }

  .faq-support p {
    max-width: 28ch;
    font-size: 0.98rem;
  }

  .faq-support-card {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px;
  }

  .faq-support-icon {
    width: 52px;
    height: 52px;
  }

  .faq-card--kayen summary {
    padding: 18px 18px;
    gap: 14px;
  }

  .faq-card--kayen summary::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 1.7rem;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.02rem;
    line-height: 1.34;
  }

  .faq-card--kayen .faq-answer-inner {
    padding: 0 18px 18px 18px;
  }

  .faq-card--kayen .faq-answer-inner p {
    font-size: 0.92rem;
    line-height: 1.68;
  }
}

/* FAQ final balance */
.faq-section--conversion {
  overflow: hidden;
}

.faq-shell--kayen {
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
}

.faq-head--kayen {
  max-width: 760px;
  gap: 12px;
}

.faq-eyebrow {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.faq-head--kayen h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  max-width: 10ch;
}

.faq-head--kayen .section-text {
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.66;
}

.faq-layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 52px;
  max-width: 1280px;
  margin: 0 auto;
}

.faq-support {
  padding-top: 44px;
  padding-left: 0;
}

.faq-support h3 {
  font-size: clamp(1.9rem, 2.2vw, 2.7rem);
  line-height: 1.18;
  max-width: 10ch;
}

.faq-support p {
  max-width: 19ch;
  font-size: 1rem;
  line-height: 1.64;
}

.faq-support-card {
  padding: 18px 18px;
  gap: 14px;
}

.faq-support-copy strong {
  font-size: 0.96rem;
}

.faq-support-copy small {
  font-size: 0.88rem;
}

.faq-support-copy span {
  font-size: 0.94rem;
}

.faq-grid--kayen {
  gap: 16px;
}

.faq-card--kayen {
  border-radius: 16px;
}

.faq-card--kayen summary {
  padding: 22px 26px;
}

.faq-card--kayen .faq-question-copy {
  font-size: clamp(1.04rem, 1.3vw, 1.34rem);
  line-height: 1.28;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0 26px 24px 68px;
}

.faq-card--kayen .faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .faq-shell--kayen {
    width: min(100% - 24px, 100%);
  }

  .faq-head--kayen {
    max-width: 100%;
  }

  .faq-head--kayen h2 {
    max-width: 8.8ch;
    font-size: clamp(2.2rem, 8.4vw, 3.3rem);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-support {
    padding-top: 0;
  }

  .faq-support h3,
  .faq-support p {
    max-width: none;
  }
}

/* Restore original dark FAQ composition */
.faq-section--conversion {
  padding: 78px 0 34px;
  background: transparent;
  overflow: visible;
}

.faq-shell--kayen {
  width: min(100% - 8px, 1860px);
  gap: 38px;
  padding: clamp(28px, 2.6vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(115deg, transparent 0 14%, rgba(61, 173, 91, 0.18) 14.1%, transparent 14.35%, transparent 20%, rgba(61, 173, 91, 0.05) 20.1%, transparent 20.35%),
    linear-gradient(67deg, transparent 0 83%, rgba(61, 173, 91, 0.16) 83.1%, transparent 83.35%, transparent 90%, rgba(61, 173, 91, 0.04) 90.1%, transparent 90.35%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0d10 0%, #111418 52%, #0a0c0f 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.faq-shell--kayen::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.84) 0%, rgba(7, 10, 12, 0.38) 43%, rgba(7, 10, 12, 0.82) 100%),
    radial-gradient(circle at 18% 82%, rgba(255, 211, 72, 0.08), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(61, 173, 91, 0.08), transparent 18%);
  border-radius: inherit;
}

.faq-shell--kayen > * {
  position: relative;
  z-index: 1;
}

.faq-layout,
.faq-support,
.faq-support-card,
.faq-eyebrow {
  display: none;
}

.faq-head--kayen {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: none;
  margin: 0;
  text-align: initial;
}

.faq-head--kayen h2 {
  flex: 0 0 auto;
  width: 494px;
  max-width: none;
  margin-right: 24px;
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: right;
}

.faq-head--kayen h2 span {
  display: block;
  white-space: nowrap;
}

.faq-head--kayen .section-text {
  flex: 0 0 520px;
  max-width: none;
  padding: 4px 0 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.82);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: left;
}

.faq-head--kayen .section-text span {
  display: block;
  white-space: nowrap;
}

.faq-grid--kayen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}

.faq-column {
  display: grid;
  gap: 16px;
}

.faq-card--kayen {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-card--kayen:hover,
.faq-card--kayen:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.faq-card--kayen summary {
  padding: 0;
  gap: 14px;
  align-items: flex-start;
}

.faq-card--kayen summary::before {
  width: auto;
  height: auto;
  flex: none;
  margin-top: -1px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 500;
  transform: translateY(-1px);
}

.faq-card--kayen[open] summary::before {
  color: #f4c12d;
  background: transparent;
}

.faq-card--kayen .faq-question-copy {
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.42rem);
  font-weight: 800;
  line-height: 1.18;
}

.faq-card--kayen[open] .faq-question-copy {
  color: #ffd54a;
}

.faq-card--kayen .faq-answer-wrap {
  margin-top: 12px;
}

.faq-card--kayen .faq-answer-inner {
  padding: 0;
}

.faq-card--kayen .faq-answer-inner p {
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  line-height: 1.62;
}

.faq-card--kayen .faq-answer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .faq-section--conversion {
    padding: 42px 0 18px;
  }

  .faq-shell--kayen {
    width: min(100% - 10px, 100%);
    gap: 30px;
    padding: 24px 18px;
  }

  .faq-head--kayen {
    display: grid;
    justify-content: start;
    gap: 16px;
  }

  .faq-head--kayen h2 {
    width: auto;
    margin-right: 0;
    max-width: 9.2ch;
    font-size: clamp(2.1rem, 8vw, 3rem);
    text-align: left;
  }

  .faq-head--kayen h2 span,
  .faq-head--kayen .section-text span {
    white-space: normal;
  }

  .faq-head--kayen .section-text {
    flex: none;
    max-width: 32ch;
    padding: 0;
    border-left: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .faq-grid--kayen {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-card--kayen .faq-question-copy {
    font-size: 1.08rem;
  }
}

/* END OF FILE TIKTOK FINAL OVERRIDE */
#videos.tiktok-section {
  padding: 22px 0 0 !important;
  background: #ffffff !important;
}

#videos .shell {
  width: min(1320px, calc(100% - 44px)) !important;
}

#videos .tiktok-shell {
  display: grid !important;
  gap: 14px !important;
}

#videos .tiktok-shell > :not(.tiktok-carousel):not(.tiktok-dots) {
  display: none !important;
}

#videos .tiktok-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  align-items: center !important;
  gap: 18px !important;
  max-width: 1220px !important;
  margin: 0 auto !important;
}

#videos .tiktok-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(17, 20, 19, 0.08) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111413 !important;
  box-shadow: 0 10px 26px rgba(17, 20, 19, 0.08) !important;
}

#videos .tiktok-arrow svg {
  width: 20px !important;
  height: 20px !important;
}

#videos .tiktok-viewport {
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 0 !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
}

#videos .tiktok-viewport::-webkit-scrollbar {
  display: none !important;
}

#videos .tiktok-track {
  display: flex !important;
  gap: 22px !important;
}

#videos .tiktok-video-card {
  flex: 0 0 calc((100% - 44px) / 3) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
}

#videos .tiktok-video-card > :not(.tiktok-video-frame) {
  display: none !important;
}

#videos .tiktok-video-frame {
  aspect-ratio: 9 / 16 !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  background: #0f1113 !important;
  box-shadow: 0 14px 28px rgba(17, 20, 19, 0.06) !important;
  max-width: none !important;
  margin: 0 !important;
}

#videos .tiktok-video-frame iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  background: #0f1113 !important;
}

#videos .tiktok-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

#videos .tiktok-dot {
  width: 34px !important;
  height: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(17, 20, 19, 0.12) !important;
  cursor: pointer !important;
}

#videos .tiktok-dot.is-active {
  background: #111413 !important;
}

/* Cleaner availability display inside the product detail panel. */
.product-panel-availability {
  display: grid !important;
  gap: 5px !important;
  color: #153926 !important;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
}

.product-panel-availability-count {
  display: block;
  color: #153926;
  font-family: "Barlow Condensed", Impact, "Arial Black", "Bahnschrift", sans-serif;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.product-panel-availability-place {
  display: block;
  color: rgba(17, 20, 19, 0.72);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  #videos .tiktok-carousel {
    max-width: 860px !important;
  }

  #videos .tiktok-viewport {
    max-width: 760px !important;
  }

  #videos .tiktok-video-card {
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  #videos.tiktok-section {
    padding: 18px 0 0 !important;
  }

  #videos .shell {
    width: min(100% - 20px, 100%) !important;
  }

  #videos .tiktok-carousel {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
  }

  #videos .tiktok-arrow {
    display: none !important;
  }

  #videos .tiktok-video-card {
    flex-basis: 100% !important;
  }

  #videos .tiktok-video-frame {
    max-width: 330px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
  }

  #videos .tiktok-dot {
    width: 26px !important;
  }
}

/* FINAL MOBILE POLISH: hero, testimonials and product availability */
@media (max-width: 720px) {
  .hero-section--showroom {
    padding-top: 0 !important;
    overflow: hidden !important;
  }

  .shell-hero-wide {
    width: 100% !important;
    padding: 0 !important;
  }

  .hero-showroom--single {
    min-height: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .hero-showroom--single::before,
  .hero-showroom--single::after,
  .hero-showroom-sheen {
    display: none !important;
  }

  .hero-slide {
    position: relative !important;
    min-height: 640px !important;
    overflow: hidden !important;
    border-radius: 0 0 28px 28px !important;
    background: #111111 !important;
  }

  .hero-showroom-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: 60% center !important;
    transform: none !important;
  }

  .hero-showroom-overlay {
    position: relative !important;
    z-index: 2 !important;
    min-height: 640px !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 104px 20px 116px !important;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.2) 100%) !important;
  }

  .hero-showroom-copy {
    width: min(100%, 330px) !important;
    max-width: 330px !important;
    margin: 0 !important;
  }

  .hero-showroom-overlay h1 {
    max-width: 8ch !important;
    margin: 0 !important;
    font-size: clamp(2.55rem, 12vw, 3.55rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
  }

  .hero-showroom-overlay h1 span {
    display: block !important;
    white-space: normal !important;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 27ch !important;
    margin-top: 18px !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .hero-benefits--band {
    position: relative !important;
    z-index: 5 !important;
    width: calc(100% - 28px) !important;
    margin: -74px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-benefits--band article {
    min-height: 74px !important;
    padding: 16px 12px !important;
    border-radius: 18px !important;
  }

  .hero-benefits--band strong {
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
  }

  .income-section {
    padding: 56px 0 28px !important;
    overflow: hidden !important;
  }

  .income-section .shell {
    width: min(100% - 24px, 100%) !important;
  }

  .income-shell--google {
    padding: 0 !important;
    gap: 22px !important;
  }

  .income-head--split {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: none !important;
    margin: 0 0 20px !important;
    align-items: start !important;
    text-align: left !important;
  }

  .income-head--split::after {
    display: none !important;
  }

  .income-title-stack {
    justify-items: start !important;
    text-align: left !important;
  }

  .income-head--split h2 {
    max-width: 10ch !important;
    font-size: clamp(2.2rem, 10.5vw, 3.05rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.04em !important;
  }

  .income-head--split h2 span {
    display: block !important;
    white-space: normal !important;
  }

  .income-kicker {
    max-width: 28ch !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: start !important;
    border: 0 !important;
    text-align: left !important;
    font-size: 0.93rem !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  .hero-slide,
  .hero-showroom-overlay {
    min-height: 610px !important;
  }

  .hero-showroom-overlay {
    padding: 96px 18px 110px !important;
  }

  .hero-showroom-overlay h1 {
    max-width: 7.5ch !important;
    font-size: clamp(2.35rem, 13.2vw, 3.15rem) !important;
  }

  .hero-showroom-overlay .hero-text {
    max-width: 25ch !important;
  }

  .income-head--split h2 {
    max-width: 9.5ch !important;
    font-size: clamp(2rem, 10vw, 2.7rem) !important;
  }
}

@media (min-width: 981px) {
  .lineup-showcase {
    padding-inline: 96px !important;
  }

  .lineup-nav--prev {
    left: 34px !important;
  }

  .lineup-nav--next {
    right: 34px !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .lineup-showcase {
    padding-inline: 72px !important;
  }

  .lineup-nav--prev {
    left: 22px !important;
  }

  .lineup-nav--next {
    right: 22px !important;
  }
}

/* Final product detail specs polish: no boxes, cleaner type hierarchy */
.product-panel-specs {
  width: min(100%, 1120px) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 26px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  align-items: end !important;
}

.product-panel-specs li {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: start !important;
  align-content: start !important;
  gap: 6px !important;
  min-height: 0 !important;
  padding: 0 26px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}

.product-panel-specs li + li {
  border-left: 1px solid rgba(16, 20, 17, 0.1) !important;
  border-top: 0 !important;
}

.product-panel-specs li::before {
  display: none !important;
}

.product-spec-icon {
  display: none !important;
}

.product-spec-copy {
  display: grid !important;
  gap: 4px !important;
  width: 100% !important;
  justify-items: start !important;
}

.product-spec-label {
  color: rgba(16, 20, 17, 0.56) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.product-spec-value {
  color: #101411 !important;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !important;
}

@media (max-width: 980px) {
  .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .product-panel-specs li {
    padding: 0 18px 18px 0 !important;
  }

  .product-panel-specs li:nth-child(odd) {
    border-left: 0 !important;
  }

  .product-panel-specs li:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 20, 17, 0.08) !important;
    padding-top: 18px !important;
  }
}

@media (max-width: 640px) {
  .product-panel-specs {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .product-panel-specs li {
    padding: 14px 0 !important;
  }

  .product-panel-specs li + li {
    border-left: 0 !important;
    border-top: 1px solid rgba(16, 20, 17, 0.08) !important;
  }

  .product-spec-value {
    font-size: 1rem !important;
  }
}

/* Final blog article polish: match the translucent site header and keep titles readable. */
.blog-page-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 32;
  background: rgba(247, 245, 239, 0.76) !important;
  border-bottom: 1px solid rgba(21, 25, 20, 0.1);
  box-shadow: 0 10px 28px rgba(17, 22, 18, 0.06);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.blog-article-title-wrap h1 {
  max-width: 16ch;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.faq-card--kayen[open] summary::before {
  content: "-";
}

@media (max-width: 640px) {
  .blog-article-title-wrap h1 {
    line-height: 1.12;
  }
}

.claims-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* TANK detail panel: illustrated technical grid without a background bar. */
.product-panel--tank .product-panel-specs {
  width: min(100%, 1080px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 34px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-panel--tank .product-panel-specs li {
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-items: center !important;
  align-content: center !important;
  gap: 12px !important;
  min-height: 72px !important;
  padding: 14px 20px !important;
  border: 0 !important;
  border-top: 1px solid rgba(21, 57, 38, 0.2) !important;
  background: transparent !important;
}

.product-panel--tank .product-panel-specs li + li {
  border-left: 1px solid rgba(21, 57, 38, 0.18) !important;
}

.product-panel--tank .product-panel-specs li:nth-child(3n + 1) {
  border-left: 0 !important;
}

.product-panel--tank .product-panel-specs li::before {
  display: none !important;
}

.product-panel--tank .product-spec-icon {
  display: inline-flex !important;
  width: 36px !important;
  height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #14592f !important;
  box-shadow: none !important;
}

.product-panel--tank .product-spec-icon svg {
  width: 32px !important;
  height: 32px !important;
}

.product-panel--tank .product-spec-icon img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  opacity: 1 !important;
}

.product-panel--tank .product-spec-icon img.product-spec-icon-image--original-color {
  filter: none !important;
}

.product-panel--tank .product-spec-icon:has(img) {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  overflow: hidden !important;
}

.product-panel--tank .product-spec-copy {
  gap: 4px !important;
}

.product-panel--tank .product-spec-label {
  color: #18231d !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.12 !important;
  text-transform: uppercase !important;
}

.product-panel--tank .product-spec-value {
  color: #14592f !important;
  font-size: 1.08rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

@media (max-width: 820px) {
  .product-panel--tank .product-panel-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-panel--tank .product-panel-specs li:nth-child(3n + 1) {
    border-left: 1px solid rgba(21, 57, 38, 0.18) !important;
  }

  .product-panel--tank .product-panel-specs li:nth-child(odd) {
    border-left: 0 !important;
  }
}

@media (max-width: 520px) {
  .product-panel--tank .product-panel-specs {
    grid-template-columns: 1fr !important;
  }

  .product-panel--tank .product-panel-specs li,
  .product-panel--tank .product-panel-specs li:nth-child(3n + 1) {
    min-height: 62px !important;
    padding: 12px 4px !important;
    border-left: 0 !important;
  }
}

/* Product detail CTA and internal scroll affordance. */
.product-panel {
  overflow: hidden !important;
}

.product-panel-shell {
  height: 100dvh;
  overflow-y: scroll !important;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scrollbar-gutter: stable;
  scrollbar-color: #1f5a39 rgba(21, 57, 38, 0.1);
  scrollbar-width: auto;
}

.product-panel-shell::-webkit-scrollbar {
  width: 14px;
}

.product-panel-shell::-webkit-scrollbar-track {
  background: rgba(21, 57, 38, 0.08);
}

.product-panel-shell::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 3px solid rgba(239, 238, 233, 0.96);
  border-radius: 999px;
  background: linear-gradient(180deg, #2d7a50 0%, #153926 100%);
  cursor: grab;
}

.product-panel-shell::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}

.product-panel-actions {
  width: min(100%, 210px) !important;
}

.product-panel-actions .button-primary {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px !important;
  padding: 8px 20px !important;
  overflow: hidden;
  border: 1px solid rgba(5, 14, 12, 0.94) !important;
  border-radius: 2px !important;
  background: #071310 !important;
  box-shadow: 0 6px 14px rgba(7, 19, 16, 0.14) !important;
  text-align: center;
}

.product-panel-actions .button-primary::before {
  display: none;
}

.product-panel-actions .button-primary:hover,
.product-panel-actions .button-primary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(20, 72, 50, 0.96) !important;
  background: #0d211b !important;
  box-shadow: 0 8px 16px rgba(7, 19, 16, 0.18) !important;
}

.product-panel-quote-icon,
.product-panel-quote-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-panel-quote-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.product-panel-quote-icon svg {
  width: 23px;
  height: 23px;
}

.product-panel-quote-copy {
  position: relative;
  z-index: 1;
  display: block;
}

.product-panel-quote-copy strong {
  color: #ffffff;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-panel-quote-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
}

.product-panel-quote-arrow {
  color: #ffffff;
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.product-panel-actions .button-primary:hover .product-panel-quote-arrow,
.product-panel-actions .button-primary:focus-visible .product-panel-quote-arrow {
  transform: translateX(3px);
}

/* CX-9 color selector: visible only when the product script enables it. */
.product-panel-rail--colors {
  align-self: end !important;
  justify-self: start !important;
  width: min(100%, 248px) !important;
  margin: 0 0 20px !important;
}

.product-panel-rail--colors .product-panel-swatches {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(42px, 1fr));
  gap: 12px !important;
  align-items: start;
}

.product-panel-colors-title {
  grid-column: 1 / -1;
  color: #18231d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-panel-rail--colors .product-swatch {
  display: grid;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  justify-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none !important;
}

.product-panel-rail--colors .product-swatch-dot {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(16, 20, 17, 0.34);
  border-radius: 50%;
  background: var(--swatch-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-panel-rail--colors .product-swatch-label {
  display: block !important;
  color: #263129;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-panel-rail--colors .product-swatch:hover .product-swatch-dot,
.product-panel-rail--colors .product-swatch:focus-visible .product-swatch-dot,
.product-panel-rail--colors .product-swatch.is-active .product-swatch-dot {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(31, 90, 57, 0.78) !important;
}

@media (max-width: 920px) {
  .product-panel-rail--colors {
    width: min(100%, 280px) !important;
    margin: 8px auto 0 !important;
  }
}

/* CX-9 color selector placement: simple options between price and buying action. */
.product-panel-rail--colors {
  position: static !important;
  width: min(100%, 320px) !important;
  margin: 4px 0 6px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.product-panel-copy--has-colors {
  grid-template-areas:
    "head . meta"
    "head . colors"
    "head . actions";
  grid-template-rows: auto auto auto;
  row-gap: 18px;
}

.product-panel-copy--has-colors .product-panel-meta {
  align-self: end;
  margin-top: 0;
  padding-bottom: 18px;
}

.product-panel-copy--has-colors .product-panel-rail--colors {
  grid-area: colors !important;
  align-self: start !important;
  justify-self: start !important;
  margin: 0 0 2px !important;
}

.product-panel-copy--has-colors .product-panel-actions {
  align-self: start;
  margin-top: 0;
}

.product-panel-rail--colors .product-panel-swatches {
  grid-template-columns: repeat(4, 16px) !important;
  gap: 8px !important;
  width: max-content;
}

.product-panel-colors-title {
  margin-bottom: 6px;
  color: #153926;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.product-panel-rail--colors .product-swatch {
  display: block;
  width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  gap: 0;
  pointer-events: none;
}

.product-panel-rail--colors .product-swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 1px;
  transition: none !important;
}

.product-panel-rail--colors .product-swatch-label {
  display: none !important;
}

.product-panel-rail--colors .product-swatch:hover .product-swatch-dot,
.product-panel-rail--colors .product-swatch:focus-visible .product-swatch-dot {
  transform: none !important;
  box-shadow: none !important;
}

.product-panel-rail--colors .product-swatch.is-active .product-swatch-dot {
  transform: none !important;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(31, 90, 57, 0.72) !important;
}

@media (max-width: 920px) {
  .product-panel-rail--colors {
    width: min(100%, 320px) !important;
    margin: 4px auto 0 !important;
  }
}

/* Mobile product commerce: stack price, swatches and CTA with clear spacing. */
@media (max-width: 920px) {
  .product-panel-copy--has-colors {
    grid-template-areas:
      "head"
      "meta"
      "colors"
      "actions" !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto !important;
    row-gap: 12px !important;
  }

  .product-panel-copy--has-colors .product-panel-copy-head {
    grid-area: head !important;
    width: 100% !important;
  }

  .product-panel-copy--has-colors .product-panel-meta {
    grid-area: meta !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-panel-copy--has-colors .product-panel-meta strong {
    white-space: nowrap;
  }

  .product-panel-copy--has-colors .product-panel-rail--colors {
    grid-area: colors !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 !important;
    justify-self: start !important;
  }

  .product-panel-copy--has-colors .product-panel-actions {
    grid-area: actions !important;
    width: min(100%, 280px) !important;
    margin-top: 4px !important;
    justify-self: start !important;
  }

  .product-panel-copy--has-colors .product-panel-actions .button-primary {
    width: 100% !important;
    min-height: 50px !important;
  }
}

/* Mobile product flow: introduce the model, feature the vehicle, then sell it. */
@media (max-width: 920px) {
  .product-showroom {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto auto auto !important;
    grid-template-areas:
      "head"
      "stage"
      "meta"
      "colors"
      "actions"
      "specs" !important;
    gap: 12px !important;
  }

  .product-panel-copy,
  .product-panel-copy--has-colors {
    display: contents !important;
  }

  .product-panel-copy-head {
    grid-area: head !important;
    width: 100% !important;
    max-width: 100% !important;
    align-self: end;
    margin: 0 0 2px !important;
  }

  .product-panel-stage {
    grid-area: stage !important;
    min-height: 300px !important;
    margin: 0 0 4px !important;
  }

  .product-panel-stage-media img {
    width: min(100%, 440px) !important;
    max-height: 320px !important;
  }

  .product-panel-meta,
  .product-panel-copy--has-colors .product-panel-meta {
    grid-area: meta !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-panel-meta strong {
    white-space: nowrap;
  }

  .product-panel-rail--colors,
  .product-panel-copy--has-colors .product-panel-rail--colors {
    grid-area: colors !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 2px 0 0 !important;
    justify-self: start !important;
  }

  .product-panel-actions,
  .product-panel-copy--has-colors .product-panel-actions {
    grid-area: actions !important;
    width: min(100%, 320px) !important;
    margin: 10px 0 6px !important;
    justify-self: start !important;
  }

  .product-panel-actions .button-primary,
  .product-panel-copy--has-colors .product-panel-actions .button-primary {
    width: 100% !important;
    min-height: 50px !important;
  }

  .product-panel-specs {
    grid-area: specs !important;
  }
}
