/* ============================================
   MOTO PASSION METZ — Design System
   Clean rebuild from Webflow export
   ============================================ */

/* --- Custom Fonts --- */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  /* Colors — aligned with live Webflow site */
  --color-bg: #101011;
  --color-bg-alt: #101011;
  --color-bg-card: #181819;
  --color-bg-card-hover: #1e1e1f;
  --color-surface: #222223;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.15);
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-accent: #da190a;
  --color-accent-hover: #b81408;
  --color-accent-glow: rgba(218, 25, 10, 0.3);
  --color-glow-blue: rgba(59, 130, 246, 0.15);
  --color-danger: #ff4444;
  --color-success: #44ff88;

  /* Typography */
  --font-primary: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Oswald', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-sm: 800px;
  --padding-global: clamp(1.5rem, 5vw, 3rem);
  --nav-height: 70px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: visible;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* CLS Prevention: reserve space for JS-injected components */
#navbar-slot {
  min-height: var(--nav-height, 72px);
}

#footer-slot {
  min-height: 200px;
}

#brands-bar-slot {
  min-height: 100px;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--padding-global);
}

.container--sm {
  max-width: var(--container-sm);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

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

.text-right {
  text-align: right;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.max-w-30ch {
  max-width: 30ch;
}

.max-w-40ch {
  max-width: 40ch;
}

.max-w-46ch {
  max-width: 46ch;
}

.max-w-48ch {
  max-width: 48ch;
}

.max-w-50ch {
  max-width: 50ch;
}

.max-w-55ch {
  max-width: 55ch;
}

.max-w-70ch {
  max-width: 70ch;
}

.max-w-75ch {
  max-width: 75ch;
}

/* --- Typography --- */
.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.heading-4 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.heading-5 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.text-lg {
  font-size: 1.25rem;
}

.text-md {
  font-size: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

/* --- Animations (fade-in on scroll) --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.animate-on-scroll.visible .stagger-child:nth-child(1) {
  transition-delay: 0.1s;
}

.animate-on-scroll.visible .stagger-child:nth-child(2) {
  transition-delay: 0.2s;
}

.animate-on-scroll.visible .stagger-child:nth-child(3) {
  transition-delay: 0.3s;
}

.animate-on-scroll.visible .stagger-child:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

/* Navbar fully opaque when mobile menu is open */
@media (max-width: 991px) {
  .navbar--menu-open {
    background: #101011;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1001;
  }

  /* Hide the hamburger X animation — we use the dedicated close button instead */
  .navbar--menu-open .navbar__hamburger {
    display: none;
  }
}

.navbar .container {
  max-width: 1600px;
  padding: 20px 40px;
}

@media (max-width: 991px) {
  .navbar .container {
    padding: 16px 16px;
  }
}

@media (max-width: 479px) {
  .navbar .container {
    padding: 12px 10px;
  }
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .navbar__inner {
    gap: 12px;
    justify-content: space-between;
  }

  .navbar__logo {
    margin-right: 0;
  }

  .navbar__logo img {
    height: 36px;
    min-width: 120px;
  }

  .navbar__actions {
    margin-left: 0;
    gap: 10px;
  }

  .navbar__actions .btn {
    padding: 10px 14px;
    font-size: 0.78rem;
    white-space: nowrap;
    min-height: 44px;
    max-width: 215px;
  }

  .navbar__hamburger {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 479px) {
  .navbar__inner {
    gap: 8px;
  }

  .navbar__logo img {
    height: 32px;
    min-width: 108px;
  }

  .navbar__actions {
    gap: 8px;
  }

  .navbar__actions .btn {
    padding: 8px 12px;
    font-size: 0.64rem;
    white-space: nowrap;
    min-height: 38px;
    max-width: 182px;
    letter-spacing: 0.04em;
  }

  .btn {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .navbar__hamburger {
    width: 24px;
    height: 24px;
  }
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 46px;
}

.navbar__link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-text);
  transition: color var(--transition-fast);
  padding: 3px 0;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-text);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay — hidden globally, shown only on mobile when .active */
.navbar__mobile-menu {
  display: none;
}

/* Mobile menu overlay */
@media (max-width: 991px) {
  .navbar__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 16, 17, 0.98);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  .navbar__mobile-menu.active {
    display: flex;
    opacity: 1;
  }

  .navbar__mobile-menu a {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    transition: color var(--transition-fast);
  }

  .navbar__mobile-menu a.btn {
    font-size: 0.85rem;
  }

  .navbar__mobile-menu a:hover {
    color: var(--color-accent);
  }

  /* Close Button on Mobile Menu */
  .navbar__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .navbar__mobile-close svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-text);
    stroke-width: 1.5;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  /* Mobile touch target optimization */
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn--secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--light {
  background: #ffffff;
  color: #111111;
  border: 1px solid #ffffff;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #000000;
  transform: translateY(-2px);
}

.btn--secondary .btn__arrow {
  display: inline-flex;
  transition: transform var(--transition-base);
}

.btn--secondary:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn--outline:hover {
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.hero__content {
  max-width: 765px;
  margin: 0 auto;
}

.hero .container {
  overflow: visible;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  max-width: 20ch;
  margin: 0 auto var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero__title-line {
  display: block;
  width: 100%;
  text-align: center;
}

.hero__title-brand {
  color: var(--color-accent);
}

.hero__title-main {
  max-width: 100%;
}

.hero__title-nowrap {
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.hero__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.brands-bar {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.brands-bar__label {
  font-size: 1rem;
  color: var(--color-text);
  text-align: center;
}

.brands-bar__marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.brands-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-bar__logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  /* For potential scrollbar on mobile */
}

.brands-bar__logos--clone {
  display: none;
}

.brands-bar__logo {
  display: flex;
  align-items: center;
  height: 32px;
  opacity: 0.85;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.brands-bar__logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brands-bar__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brands-bar__logo--fantic img {
  height: 40px;
}

@keyframes brands-marquee-loop-mobile {
  from {
    transform: translate3d(0, -50%, 0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .brands-bar__track {
    animation: none !important;
  }
}

/* ============================================
   HERO MEDIA — Scroll-expanding video
   ============================================ */
.hero-media {
  height: 185vh;
  /* Keep production placement geometry */
  position: relative;
}

.hero-media__sticky {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--padding-global);
}

.hero-media__panels {
  position: relative;
  width: 100%;
  height: 90vh;
  /* Max height reached during animation */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media__center {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform, width, height;
}

.hero-media__center video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media__side {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform, width, height;
}

.hero-media__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 0 0 var(--space-3xl);
}

.section-header {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header--left {
  align-items: flex-start;
  text-align: left;
}

h2:not(#faq-heading) {
  text-align: center;
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__description {
  color: var(--color-text-secondary);
  max-width: 48ch;
}

.section-header__summary {
  margin-top: var(--space-sm);
  max-width: 56ch;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-header__summary--wide {
  max-width: 75ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: 64px 80px 38px;
  background: #1F1F1F;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.service-card--link {
  text-decoration: none;
  color: inherit;
}

.service-card--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.service-card:hover {
  background: #2a2a2a;
  border-color: var(--color-border-light);
  transform: translateY(-4px);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.service-card__description {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================
   EXPERIENCE / STEPS (numbered 01-04)
   ============================================ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.experience-item {
  padding: var(--space-lg);
  background: var(--color-bg);
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.experience-item:hover {
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.experience-item__number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.experience-item__title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.experience-item__description {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   BEST-SELLERS CARDS
   ============================================ */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.moto-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.moto-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.moto-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.moto-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.moto-card:hover .moto-card__image img {
  transform: scale(1.05);
}

.moto-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.moto-card__content {
  padding: var(--space-md);
}

.moto-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.moto-card__description {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   CTA / TESTIMONIAL BANNER
   ============================================ */
.cta-banner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.cta-banner__title {
  max-width: 40ch;
  margin: 0 auto var(--space-md);
}

.cta-banner__description {
  color: var(--color-text-secondary);
  max-width: 40ch;
  margin: 0 auto var(--space-lg);
}

.cta-banner__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  transition: all var(--transition-base);
}

.cta-banner__link:hover {
  border-color: var(--color-accent);
  background: rgba(237, 81, 69, 0.05);
}

.cta-banner__link .separator {
  width: 1px;
  height: 20px;
  background: var(--color-border-light);
}

.cta-banner__link .cta-text {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.cta-banner__link .arrow-icon {
  width: 16px;
  height: 16px;
}

/* ============================================
   FAQ PREVIEW CARDS
   ============================================ */
.faq-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-bottom: calc(var(--space-2xl) + 120px);
  position: relative;
  /* Runway keeps the final sticky card visible before footer takes over. */
}

.faq-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #141313;
  border: 1px solid #393939;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 8px);
  height: clamp(360px, 37vw, 440px);
  min-height: 360px;
  /* Same card size on desktop for consistent waterfall. */
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-light);
}

/* Keep sticky overlap behavior: disable scroll-reveal transform on sticky FAQ cards */
.faq-card.animate-on-scroll,
.faq-card.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.faq-card.animate-on-scroll:hover,
.faq-card.animate-on-scroll.visible:hover {
  transform: translateY(-4px);
}

/* Explicit stacking order for waterfall overlap */
.faq-cards .faq-card:nth-child(1) {
  top: calc(var(--nav-height) + 8px);
  z-index: 1;
}

.faq-cards .faq-card:nth-child(2) {
  top: calc(var(--nav-height) + 26px);
  z-index: 2;
}

.faq-cards .faq-card:nth-child(3) {
  top: calc(var(--nav-height) + 44px);
  z-index: 3;
}

.faq-card__content {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.faq-card__content .btn {
  margin-top: auto;
}

.faq-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(237, 81, 69, 0.55);
  border-radius: 37px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FBFBFB;
  letter-spacing: 0.02em;
}

.faq-card__tag .separator {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.faq-card__tag .number {
  color: var(--color-text-muted);
  font-weight: 500;
}

.faq-card__title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.15;
  color: #FBFBFB;
  margin: 0;
}

.faq-card__description {
  color: #c9c9c9;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
  margin: 0;
}

.faq-card__image {
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.faq-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border-light);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-weight: 500;
  gap: var(--space-sm);
}

.faq-item__arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   CATALOG / PRODUCT GRID
   ============================================ */
.catalog-filters {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.catalog-filters__group {
  display: flex;
  flex-direction: column;
}

.catalog-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.catalog-filters__label {
  width: 100%;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.filter-chip:hover {
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.03);
}

.filter-chip.active {
  border-color: var(--color-accent);
  background: rgba(200, 255, 0, 0.1);
  color: var(--color-accent);
}

.filter-chip input {
  display: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  display: block;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
  padding: var(--space-sm);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card__badge--occasion {
  background: #f59e0b;
  left: var(--space-sm);
  right: auto;
}

.product-card__info {
  padding: var(--space-md);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-card__brand {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: 4px;
}

.product-card__price-current {
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card__price-old {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.product-card__sep {
  color: var(--color-border-light);
}

.product-card__license {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Clickable links on product cards --- */
.product-card__brand {
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-base);
}

.product-card__brand:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.product-card__name-link {
  text-decoration: none;
  color: inherit;
}

.product-card:hover .product-card__name {
  color: var(--color-accent);
}

.product-card__permis-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.product-card__permis-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================
   BRAND HISTORY (SEO)
   ============================================ */
.brand-history {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-xl);
}

.brand-history__content {
  max-width: 800px;
  margin: 0 auto;
}

.brand-history__content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
  text-align: center;
}

.brand-history__content h2,
.brand-history__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  text-align: center;
}

.brand-history__content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.breadcrumb__sep {
  margin: 0 var(--space-xs);
  opacity: 0.5;
}

.breadcrumb__current {
  color: var(--color-text);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.product-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-hero__main-image {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  aspect-ratio: 16/10;
}

.product-hero__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__thumbs {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.product-thumb {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-card);
  padding: 4px;
  transition: border-color var(--transition-base);
  flex-shrink: 0;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--color-accent);
}

.product-thumb img {
  width: 70px;
  height: 50px;
  object-fit: contain;
}

.product-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-hero__brand {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.product-hero__brand:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.product-hero__title {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.product-hero__condition {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: var(--space-lg) var(--padding-global) 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px 0;
  transition: opacity var(--transition-fast);
}

.scroll-top-btn:hover {
  opacity: 0.8;
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  transition: transform var(--transition-base);
}

.scroll-top-btn:hover svg {
  transform: translateY(-4px);
}

.product-hero__price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0;
}

.product-hero__price-current {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.product-hero__price-old {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-hero__promo-badge {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.product-hero__desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-hero__desc p {
  margin: 0;
}

.product-hero__cta {
  display: flex;
  gap: var(--space-sm);
  margin-top: 0;
}

.product-lead-card {
  margin-top: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card);
}

.product-lead-card--hidden {
  display: none;
}

.product-lead-card__title {
  margin: 0 0 var(--space-xs);
  font-size: 1.05rem;
  font-family: var(--font-heading);
}

.product-lead-card__intro {
  margin: 0 0 var(--space-md);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.product-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.product-lead-form__grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.product-lead-form__grid input,
.product-lead-form__grid select {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.9rem;
}

.product-lead-form__grid input:focus,
.product-lead-form__grid select:focus {
  border-color: var(--color-accent);
  outline: none;
}

.product-lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.product-lead-form__feedback {
  margin: var(--space-sm) 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.product-lead-form__feedback.is-error {
  color: #fca5a5;
}

.product-lead-form__feedback.is-success {
  color: #86efac;
}

.product-hero__permis {
  margin-top: var(--space-xs);
}

.product-permis-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.product-permis-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(237, 81, 69, 0.05);
}

/* --- Spec grid --- */
.product-specs {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.spec-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.spec-label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.spec-value {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: right;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.contact-info {
  margin-top: var(--space-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.contact-phone {
  margin-top: var(--space-xl);
  text-align: center;
}

.contact-phone a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  transition: opacity var(--transition-fast);
}

.contact-phone a:hover {
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer__logo {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.footer__logo img {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__col-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__social {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  background: rgba(200, 255, 0, 0.05);
}

.footer__social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__bottom-links,
.footer__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__bottom-links .sep,
.footer__bottom-meta .sep {
  width: 1px;
  height: 14px;
  background: var(--color-border-light);
}

.footer__bottom-links .footer__link,
.footer__bottom-meta .footer__link {
  display: inline;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

.footer__meta-item {
  color: var(--color-text-secondary);
}

.footer__credits {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__credits a {
  color: var(--color-text);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-page__message {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  :root {
    --padding-global: clamp(1rem, 4vw, 2.5rem);
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero-media {
    height: auto;
    position: relative;
    z-index: 1;
  }

  /* Ambient Glow Removed for cleaner CRO layout */

  .hero-media__sticky {
    position: relative;
    height: auto;
    padding: 0 var(--space-md);
  }

  .hero-media__panels {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9;

    /* Robust Safari layout to prevent collapse */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;

    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    /* Hardware acceleration */
  }

  .hero-media__center {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }

  .services {
    padding-top: var(--space-lg);
  }

  .hero-media__side {
    display: none;
  }

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

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

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

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

  .faq-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .faq-cards .faq-card:nth-child(1),
  .faq-cards .faq-card:nth-child(2),
  .faq-cards .faq-card:nth-child(3) {
    top: auto;
    z-index: auto;
  }

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

  .btn {
    max-width: 100%;
    padding: 12px 18px;
    white-space: normal;
    overflow: visible;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }

  .btn .btn__arrow {
    flex-shrink: 0;
  }

  .btn-group {
    align-items: center;
    width: 100%;
  }

  .btn-group .btn {
    max-width: 100%;
  }

  .section-header .btn,
  .brand-history__content .btn {
    width: 100%;
    max-width: 100%;
  }

  .navbar__actions .btn,
  .navbar__mobile-menu .btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    letter-spacing: 0.06em;
  }

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

  .product-hero {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .product-hero__cta {
    flex-direction: column;
  }

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

  .hero__title {
    max-width: 100%;
    padding-inline: clamp(8px, 2vw, 16px);
    font-size: clamp(1.9rem, 7vw, 3.2rem) !important;
    line-height: 1.15;
    text-wrap: pretty;
    overflow-wrap: normal;
  }

  .brands-bar__marquee {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: clamp(8px, 2vw, 16px);
    box-sizing: border-box;
    overflow: hidden;
    min-height: 44px;
  }

  .brands-bar__track {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: max-content;
    justify-content: flex-start;
    animation: brands-marquee-loop-mobile 22s linear infinite;
    will-change: transform;
  }

  .brands-bar__logos {
    justify-content: flex-start;
    gap: var(--space-lg);
    max-width: none;
    overflow: visible;
    padding: 0 var(--space-lg) 0 0;
    margin: 0;
  }

  .brands-bar__logos--clone {
    display: flex;
  }

  .brands-bar__logos--clone .brands-bar__logo {
    pointer-events: none;
  }

  .brands-bar__logo {
    flex: 0 0 auto;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --padding-global: 5%;
    --space-3xl: 5rem;
    --space-2xl: 4rem;
    --nav-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-sm);
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__content,
  .hero__buttons {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content {
    text-align: center;
  }

  .hero__title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title-line {
    width: auto;
    max-width: 100%;
  }

  .brands-bar__logos {
    gap: var(--space-md);
    padding-right: var(--space-md);
  }

  .brands-bar__logo {
    height: 25px;
    flex: 0 0 auto;
  }

  .experience-grid,
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
    margin: 0 calc(var(--space-md) * -1);
    /* Break out of container */
    scroll-padding: 0 var(--space-md);
    -webkit-overflow-scrolling: touch;
  }

  .catalog-grid>* {
    scroll-snap-align: center;
    flex: 0 0 85%;
  }

  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
    margin: 0 calc(var(--space-md) * -1);
    /* Break out of container */
    scroll-padding: 0 var(--space-md);
    -webkit-overflow-scrolling: touch;
  }

  .product-grid>* {
    scroll-snap-align: center;
    flex: 0 0 85%;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md) var(--space-sm);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-2xl) var(--space-md);
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* FAQ Mobile Fixes */
  .faq-card__content {
    padding: var(--space-lg);
    overflow: visible;
  }

  .faq-card {
    /* Keep hidden to constrain the background image/icon */
    overflow: hidden;
  }

  .faq-card__content .btn {
    width: 100%;
    max-width: none !important;
    overflow: visible;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  /* Footer social icons centred on tablet */
  .footer__social {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
  }
}

/* Small mobile */
@media (max-width: 479px) {
  .heading-1 {
    font-size: 2rem !important;
  }

  .heading-2 {
    font-size: 1.75rem;
  }

  .heading-3 {
    font-size: 1.4rem;
  }

  .heading-4 {
    font-size: 1.15rem;
  }

  .hero__title {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem) !important;
    max-width: 100%;
    padding-inline: 8px;
    text-wrap: pretty;
    overflow-wrap: normal;
    text-align: center;
  }

  .brands-bar__logo {
    height: 24px;
  }

  /* Centre footer social icons */
  .footer__social {
    justify-content: center;
  }
}
