/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Colors */
  --color-primary: #FF6B35;
  --color-primary-dark: #E64A19;
  --color-primary-light: #FFA726;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #666666;
  --color-bg-white: #ffffff;
  --color-bg-light: #f8f8f8;
  --color-border: #e0e0e0;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --font-size-h1: 3rem;
  --font-size-h2: 2.25rem;
  --font-size-h3: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-xs: 0.75rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.6;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;

  /* Container */
  --container-max-width: 1200px;
  --container-padding-desktop: 40px;
  --container-padding-tablet: 24px;
  --container-padding-mobile: 16px;

  /* Section gaps */
  --section-gap: 80px;
  --section-gap-tablet: 60px;
  --section-gap-mobile: 40px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s ease-out;

  /* Navbar height */
  --navbar-height: 68px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

ol,
ul {
  list-style: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-loose);
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.cta-button--primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.cta-button--primary:hover,
.cta-button--primary:focus-visible {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-1px);
  outline: none;
}

.cta-button--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cta-button--outline:hover,
.cta-button--outline:focus-visible {
  background-color: var(--color-primary);
  color: #fff;
  outline: none;
}

.cta-button--white {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.cta-button--white:hover,
.cta-button--white:focus-visible {
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-heavy);
  outline: none;
}

.cta-button--ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-button--ghost:hover,
.cta-button--ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  outline: none;
}

.cta-button--large {
  padding: 18px 40px;
  font-size: var(--font-size-body);
  border-radius: var(--radius-lg);
}

.cta-button--centered {
  display: block;
  margin: var(--space-3xl) auto 0;
  max-width: fit-content;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  height: var(--navbar-height);
}

.navbar__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo-text {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

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

.navbar__link {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-sm) 0;
  position: relative;
}

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

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--color-text-primary);
  outline: none;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  margin-left: var(--space-sm);
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: var(--font-size-small);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.navbar__toggle:hover {
  background: var(--color-bg-light);
}

.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: center;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  /* Додаємо зображення з напівпрозорим білим фоном поверх нього */
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/truck.webp');
  background-size: cover;
  background-position: center;
  padding: var(--space-5xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.stat {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat:first-child {
  padding-top: 0;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.stat__sub {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--color-bg-light);
  padding: var(--section-gap) 0;
}

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

.testimonial-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-light);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.testimonial-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.testimonial-card__quote {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  color: var(--color-primary);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}

.testimonial-card__text {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background-color: var(--color-bg-white);
  padding: var(--section-gap) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-border));
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg) 0;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__icon {
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.step__body {
  padding-top: var(--space-sm);
}

.step__title {
  font-size: 1.1875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-tight);
}

.step__description {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
}

/* ============================================================
   REVIEWS GALLERY
   ============================================================ */
.reviews {
  background-color: var(--color-bg-light);
  padding: var(--section-gap) 0;
}

.reviews__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: start;
}

.review-item {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background: var(--color-bg-white);
}

.review-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.review-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.review-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #fff 100%);
  padding: var(--space-md);
}

.review-item__stars {
  color: #FFC107;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-item__label {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.reviews__note {
  text-align: center;
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  margin-top: var(--space-xl);
}

.reviews__note-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
}

.reviews__note-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ============================================================
   TEAM GALLERY
   ============================================================ */
.gallery {
  background-color: var(--color-bg-white);
  padding: var(--section-gap) 0;
}

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

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-heavy);
}

.gallery__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-light);
}

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery__item:hover .gallery__img-wrap img {
  transform: scale(1.06);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.gallery__placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.gallery__caption {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background-color: var(--color-primary);
  padding: var(--space-4xl) 0;
}

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

.final-cta__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: #fff;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__subtitle {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2xl);
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #1a1a1a;
  color: #999;
  padding-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: var(--font-size-small);
  line-height: var(--line-height-loose);
  color: #666;
}

.footer__heading {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer__link {
  font-size: var(--font-size-small);
  color: #888;
  transition: color var(--transition-fast);
  line-height: var(--line-height-loose);
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
}

.footer__copy {
  font-size: var(--font-size-xs);
  color: #555;
  text-align: center;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  line-height: 1;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  line-height: 1;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}

/* ============================================================
   TABLET (768–1199px)
   ============================================================ */
@media (max-width: 1199px) {
  .container {
    padding: 0 var(--container-padding-tablet);
  }

  .navbar__container {
    padding: 0 var(--container-padding-tablet);
  }

  .section-title {
    font-size: var(--font-size-h3);
  }

  .hero__container {
    gap: var(--space-2xl);
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ============================================================
   MOBILE (<768px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-gap: var(--section-gap-mobile);
  }

  .container {
    padding: 0 var(--container-padding-mobile);
  }

  /* Navbar */
  .navbar__container {
    padding: 0 var(--container-padding-mobile);
    position: relative;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
    display: none;
  }

  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__link {
    padding: var(--space-md) var(--container-padding-mobile);
    border-radius: 0;
    font-size: var(--font-size-body);
  }

  .navbar__link::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__title {
    font-size: 1.875rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 0;
    padding: var(--space-lg);
    max-width: 400px;
    margin: 0 auto;
  }

  .stat {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
    border-right: none;
    text-align: center;
  }

  .stat:first-child {
    padding-top: 0;
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat__number {
    font-size: 1.75rem;
  }

  /* Grids → 1 or 2 column */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .reviews__gallery {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  /* Process */
  .steps::before {
    left: 20px;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: var(--space-sm);
  }

  .step__number {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-xs);
  }

  .step__icon {
    font-size: 1.25rem;
    height: 40px;
  }

  /* CTA buttons */
  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .cta-button--centered {
    max-width: 100%;
  }

  .final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .final-cta__title {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    grid-column: span 1;
  }

  /* Lightbox nav buttons */
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
