/* ============================================
   Serta LV — Test-Drive Landing Page Styles
   ============================================ */

:root {
  --clr-primary: #0B1D3A;
  --clr-primary-mid: #1B3A5F;
  --clr-primary-light: #2A5082;
  --clr-blue-light: #5B9BD5;
  --clr-accent: #E8A838;
  --clr-accent-hover: #D4952E;
  --clr-bg: #FFFFFF;
  --clr-bg-alt: #F0F4F8;
  --clr-bg-dark: #060E1A;
  --clr-text: #1A1A2E;
  --clr-text-muted: #5A6478;
  --clr-text-light: #C0C8D8;
  --clr-border: #DDE3ED;
  --clr-success: #2ECC71;
  --clr-error: #E74C3C;

  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-base: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(11,29,58,.06);
  --shadow-md: 0 8px 30px rgba(11,29,58,.1);
  --shadow-lg: 0 16px 48px rgba(11,29,58,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);

  --header-h: 110px;
}

/* ---- Reset & Base ---- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-title--light { color: #fff; }

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(232,168,56,.35);
}

.btn--primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,168,56,.45);
}

.btn--outline {
  border: 2px solid var(--clr-primary-mid);
  color: var(--clr-primary-mid);
  background: transparent;
}

.btn--outline:hover {
  background: var(--clr-primary-mid);
  color: #fff;
}

.btn--sm {
  padding: 10px 24px;
  font-size: .875rem;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.header__top-bar {
  background: var(--clr-primary);
  color: #fff;
  font-size: .8125rem;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.header__location,
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}

.header__location:hover,
.header__phone:hover { color: var(--clr-accent); }

.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
}

.header__logo-serta { color: var(--clr-primary); letter-spacing: 3px; }
.header__logo-sep { color: var(--clr-border); font-weight: 300; }
.header__logo-kk { color: var(--clr-primary-mid); font-weight: 600; font-size: 1rem; letter-spacing: 1px; }

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}

.site-logo--header {
  height: 38px;
}

.site-logo--footer {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
  height: 52px;
}

.header__nav { display: flex; gap: 28px; }

.header__nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  position: relative;
  transition: color var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.header__nav-link:hover { color: var(--clr-primary); }
.header__nav-link:hover::after { width: 100%; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,29,58,.95);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav__inner { text-align: center; }

.mobile-nav__link {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 16px 0;
  transition: color var(--transition);
}

.mobile-nav__link:hover { color: var(--clr-accent); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,.88) 0%, rgba(27,58,95,.7) 50%, rgba(11,29,58,.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero__markers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.hero__marker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero__marker-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,168,56,.15);
  border: 1px solid rgba(232,168,56,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

.hero__cta { font-size: 1.1rem; padding: 18px 44px; }

/* ============================================
   PROMO
   ============================================ */

.promo {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #D4952E 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.promo::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.promo__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}

.promo__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.promo__discount {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--clr-primary);
  margin-bottom: 24px;
}

.promo__discount strong {
  font-size: 1.4em;
}

.promo__code-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-primary);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  margin-bottom: 16px;
}

.promo__code-label {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.promo__code {
  color: var(--clr-accent);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

.promo__copy {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  padding: 4px;
}

.promo__copy:hover { color: #fff; }

.promo__note {
  font-size: .9rem;
  color: rgba(11,29,58,.7);
  font-style: italic;
}

/* ============================================
   INDIVIDUAL
   ============================================ */

.individual {
  padding: 96px 0 80px;
  background: var(--clr-bg-alt);
}

.individual__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.individual__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.individual__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.individual__card-icon {
  margin: 0 auto 18px;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.individual__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.individual__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.individual__card p {
  font-size: .875rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.individual__note {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 28px 32px;
  background: #fff;
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.individual__note p {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.7;
}

.individual__visual {
  max-width: 800px;
  margin: 0 auto 48px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.individual__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.individual__visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(11,29,58,.75));
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
  padding: 96px 0 80px;
  background: var(--clr-bg);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.benefits__item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefits__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefits__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(232,168,56,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.benefits__text p {
  font-size: .9rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.benefits__visual {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.benefits__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   BRANDS / MARQUEE
   ============================================ */

.brands {
  padding: 80px 0 64px;
  background: var(--clr-primary);
  overflow: hidden;
}

.brands .section-title { margin-bottom: 40px; }

.marquee { overflow: hidden; padding: 20px 0; }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  padding: 0 32px;
  flex-shrink: 0;
}

.marquee__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity .2s;
}

.marquee__logo:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-section {
  padding: 96px 0 80px;
  background: var(--clr-bg-alt);
}

.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.form-section__left .section-title { text-align: left; }
.form-section__left .section-subtitle { text-align: left; margin-left: 0; margin-bottom: 32px; }

.form {
  max-width: 420px;
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--clr-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input::placeholder { color: #A0AAB8; }

.form__input:focus {
  border-color: var(--clr-blue-light);
  box-shadow: 0 0 0 3px rgba(91,155,213,.15);
}

.form__input.error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}

.form__error {
  display: block;
  font-size: .8rem;
  color: var(--clr-error);
  margin-top: 4px;
  min-height: 1.2em;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05rem;
}

.form__disclaimer {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.form__success {
  text-align: center;
  padding: 40px 20px;
}

.form__success-icon { margin-bottom: 20px; }

.form__success h3 {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.form__success p {
  color: var(--clr-text-muted);
  font-size: 1rem;
}

/* Map & Showroom Info */

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.showroom-info {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.showroom-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.showroom-info__item svg { flex-shrink: 0; margin-top: 2px; }

.showroom-info__item strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
}

.showroom-info__item p {
  font-size: .95rem;
  color: var(--clr-text);
}

.showroom-info__route {
  width: 100%;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}

.footer__logo {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.footer__logo .header__logo-serta { color: #fff; }
.footer__logo .header__logo-kk { color: rgba(255,255,255,.6); }

.footer__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer__socials { display: flex; gap: 12px; }

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer__col h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--clr-accent); }

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--clr-accent); }

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--clr-primary);
  padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__inner p {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn--outline {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
}

.cookie-banner .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .individual__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header__top-bar { display: none; }
  .header__nav { display: none; }
  .header__burger { display: flex; }

  .site-logo { height: 40px; }

  .hero { min-height: 80vh; }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero__markers { gap: 12px; }

  .hero__marker {
    font-size: .95rem;
  }

  .hero__marker-icon {
    width: 40px;
    height: 40px;
  }

  .hero__marker-icon svg { width: 22px; height: 22px; }

  .promo { padding: 40px 0; }

  .individual__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .individual__card-icon {
    width: 84px;
    height: 84px;
  }

  .individual__img { height: 280px; }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits__img { height: 260px; }

  .brands { padding: 56px 0 48px; }

  .form-section { padding: 64px 0; }

  .form-section__left .section-title,
  .form-section__left .section-subtitle {
    text-align: center;
  }

  .form { max-width: 100%; margin: 0 auto; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__socials { justify-content: center; }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 1.75rem; }

  .individual__grid {
    grid-template-columns: 1fr;
  }

  .individual__card-icon {
    width: 76px;
    height: 76px;
  }

  .promo__code { font-size: 1.25rem; letter-spacing: 3px; }

  .promo__code-wrapper { padding: 10px 20px; }

  .benefits__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .marquee__logo { height: 36px; }
  .marquee__item { padding: 0 20px; }

  .footer__links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.individual__card.animate-ready:nth-child(2) { transition-delay: .1s; }
.individual__card.animate-ready:nth-child(3) { transition-delay: .2s; }
.individual__card.animate-ready:nth-child(4) { transition-delay: .3s; }

.benefits__item.animate-ready:nth-child(2) { transition-delay: .1s; }
.benefits__item.animate-ready:nth-child(3) { transition-delay: .15s; }
.benefits__item.animate-ready:nth-child(4) { transition-delay: .2s; }

/* ============================================
   HEADER SCROLLED STATE
   ============================================ */

.header.scrolled { box-shadow: var(--shadow-md); }
.header.scrolled .header__top-bar { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .btn:hover { transform: none; }
  .individual__card:hover { transform: none; }
  .benefits__item:hover { transform: none; }
}
