.section-hero-testimonials {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-subtitle {
  max-width: 32rem;
}

.hero-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-meta {
  margin-top: var(--space-4);
}

.hero-media {
  max-width: 480px;
  margin-left: auto;
}

.section-highlighted-review .card {
  padding: var(--space-6);
}

.highlighted-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.highlighted-quote {
  font-size: var(--font-size-lg);
  color: var(--gray-100);
}

.highlighted-author {
  margin-bottom: var(--space-3);
}

.highlighted-media {
  max-width: 420px;
  margin-left: auto;
}

.stars {
  font-family: var(--font-mono);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section-workshop-authentic .workshop-photo {
  height: 100%;
  min-height: 260px;
}

.section-business-fleet .fleet-layout {
  align-items: flex-start;
}

.fleet-quote {
  font-size: var(--font-size-lg);
  color: var(--gray-100);
}

.fleet-author {
  margin-bottom: var(--space-4);
}

.fleet-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.fleet-benefits {
  list-style: disc;
  padding-left: 1.25rem;
}

.section-local-reputation .section-header {
  margin-bottom: var(--space-6);
}

.reputation-card h3 {
  margin-bottom: var(--space-2);
}

.section-carousel {
  background: radial-gradient(circle at top, rgba(255, 122, 26, 0.06), transparent 55%);
}

.section-carousel .section-header--center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-6);
}

.carousel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.carousel-track {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  min-height: 180px;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

.carousel-button {
  min-width: 8rem;
}

.section-video-testimonial .video-layout {
  align-items: stretch;
}

.video-summary {
  font-size: var(--font-size-lg);
  color: var(--gray-100);
}

.video-card {
  height: 100%;
}

.video-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border-subtle);
  padding: var(--space-4);
  background: rgba(15, 18, 24, 0.7);
}

.video-badge {
  display: inline-flex;
  padding: 0.15rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.video-placeholder-text {
  color: var(--color-text-muted);
}

.section-service-focus .service-card h2 {
  margin-bottom: var(--space-3);
}

.section-cta-final {
  padding-top: var(--space-10);
  padding-bottom: var(--space-16);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.final-cta-media {
  max-width: 420px;
  margin-left: auto;
}

@media (max-width: 960px) {
  .hero-layout,
  .highlighted-layout,
  .final-cta-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media,
  .highlighted-media,
  .final-cta-media {
    margin: 0 auto;
    max-width: 100%;
  }

  .section-hero-testimonials {
    padding-top: var(--space-12);
  }

  .section-cta-final {
    padding-bottom: var(--space-12);
  }
}

@media (max-width: 720px) {
  .carousel-controls {
    justify-content: center;
  }

  .fleet-cta,
  .hero-actions,
  .final-cta-actions {
    justify-content: flex-start;
  }
}
