/* ═══════════════════════════════════════════════════════════
   REVIEWS PAGE
   Hupp & Fuller Detailing
   ═══════════════════════════════════════════════════════════ */

:root {
  --rev-gold:     #D3AF37;
  --rev-cream:    #F6D97B;
  --rev-black:    #050409;
  --rev-white:    #F0EDE6;
  --rev-muted:    rgba(240, 237, 230, 0.5);
  --rev-glass:    rgba(10, 10, 18, 0.55);
  --rev-glass-b:  rgba(211, 175, 55, 0.08);
  --rev-ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --rev-ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --rev-max:      1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--rev-black);
  color: var(--rev-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════
   Buttons
   ═══════════════════════════════════ */
.rev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s var(--rev-ease),
    color 0.3s var(--rev-ease),
    box-shadow 0.3s var(--rev-ease),
    transform 0.25s var(--rev-ease),
    border-color 0.3s var(--rev-ease);
}
.rev-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--rev-ease);
}
.rev-btn:hover svg { transform: translateX(3px); }
.rev-btn:focus-visible {
  outline: 2px solid var(--rev-gold);
  outline-offset: 3px;
}
.rev-btn:active { transform: translateY(0) !important; }

.rev-btn--primary {
  background: var(--rev-gold);
  color: var(--rev-black);
  box-shadow: 0 2px 12px rgba(211, 175, 55, 0.15);
}
.rev-btn--primary:hover {
  background: var(--rev-cream);
  box-shadow: 0 4px 24px rgba(211, 175, 55, 0.25);
  transform: translateY(-2px);
}

.rev-btn--outline {
  background: transparent;
  color: var(--rev-white);
  border: 1.5px solid rgba(240, 237, 230, 0.15);
}
.rev-btn--outline:hover {
  border-color: var(--rev-gold);
  color: var(--rev-gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   1: HERO
   ═══════════════════════════════════════════════════════════ */
.rev-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* Background */
.rev-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rev-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.05);
  transition: transform 12s linear;
}

.rev-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 9, 0.7) 0%,
    rgba(5, 4, 9, 0.5) 40%,
    rgba(5, 4, 9, 0.85) 100%
  );
}

.rev-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  animation: revGlowDrift 18s ease-in-out infinite alternate;
}
.rev-hero__glow--tl {
  top: -10%;
  left: -5%;
  background: var(--rev-gold);
}
.rev-hero__glow--br {
  bottom: -10%;
  right: -5%;
  background: var(--rev-cream);
  animation-delay: -9s;
}

/* Content */
.rev-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.rev-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rev-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: revFadeUp 0.8s var(--rev-ease) 0.2s forwards;
}

.rev-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rev-gold);
  box-shadow: 0 0 8px rgba(211, 175, 55, 0.5);
  animation: revPulse 2.5s ease-in-out infinite;
}

.rev-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--rev-white);
  margin-bottom: 18px;
  opacity: 0;
  animation: revFadeUp 0.8s var(--rev-ease) 0.35s forwards;
}

.rev-hero__title-gold {
  color: var(--rev-gold);
  display: block;
}

.rev-hero__subtitle {
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  color: var(--rev-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: revFadeUp 0.8s var(--rev-ease) 0.5s forwards;
}

/* Aggregate Rating */
.rev-hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: revFadeUp 0.8s var(--rev-ease) 0.65s forwards;
}

.rev-hero__stars {
  display: flex;
  gap: 3px;
}
.rev-hero__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--rev-gold);
  filter: drop-shadow(0 0 4px rgba(211, 175, 55, 0.3));
}

.rev-hero__rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rev-white);
  line-height: 1;
}

.rev-hero__rating-count {
  font-size: 0.82rem;
  color: var(--rev-muted);
}
.rev-hero__rating-count strong {
  color: var(--rev-white);
  font-weight: 700;
}

/* Actions */
.rev-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: revFadeUp 0.8s var(--rev-ease) 0.8s forwards;
}

/* Scroll Cue */
.rev-hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: revFadeIn 1s var(--rev-ease) 1.2s forwards;
}
.rev-hero__scroll-track {
  width: 2px;
  height: 40px;
  background: rgba(240, 237, 230, 0.1);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.rev-hero__scroll-dot {
  position: absolute;
  top: 0;
  width: 2px;
  height: 12px;
  background: var(--rev-gold);
  border-radius: 1px;
  animation: revScrollPulse 1.8s var(--rev-ease) infinite;
}

/* Hero Animations */
@keyframes revGlowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}
@keyframes revFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes revPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes revScrollPulse {
  0% { top: 0; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   1: HERO RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .rev-hero__content { padding: 0 16px; }
  .rev-hero__rating { gap: 10px; }
  .rev-hero__rating-score { font-size: 1.3rem; }
  .rev-hero__stars svg { width: 18px; height: 18px; }
  .rev-hero__actions { flex-direction: column; align-items: stretch; }
  .rev-hero__actions .rev-btn { justify-content: center; width: 100%; }
}

@media (max-width: 400px) {
  .rev-hero__title { font-size: 1.7rem; }
  .rev-hero__subtitle { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════
   2: FEATURED TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.rev-featured {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 24px;
  overflow: hidden;
}

.rev-featured__inner {
  width: 100%;
  max-width: var(--rev-max);
  margin: 0 auto;
}

/* Header */
.rev-featured__header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--rev-ease), transform 0.8s var(--rev-ease);
}
.rev-featured__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-featured__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rev-gold);
  margin-bottom: 12px;
}

.rev-featured__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--rev-white);
  line-height: 1.15;
}

/* Carousel */
.rev-carousel {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--rev-ease) 0.1s, transform 0.8s var(--rev-ease) 0.1s;
}
.rev-carousel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-carousel__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.rev-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s var(--rev-ease), transform 0.5s var(--rev-ease);
  pointer-events: none;
}

.rev-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Card */
.rev-carousel__card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: var(--rev-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(240, 237, 230, 0.06);
  border-radius: 24px;
  padding: 48px 48px 40px;
  text-align: center;
  transition: border-color 0.4s var(--rev-ease), box-shadow 0.4s var(--rev-ease);
}

.rev-carousel__card:hover {
  border-color: rgba(211, 175, 55, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 20px rgba(211, 175, 55, 0.04);
}

/* Quote mark */
.rev-carousel__quote-mark {
  position: absolute;
  top: 20px;
  left: 28px;
  color: var(--rev-gold);
}

/* Stars */
.rev-carousel__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 24px;
}
.rev-carousel__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--rev-gold);
}

/* Quote text */
.rev-carousel__text {
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  color: var(--rev-white);
  line-height: 1.75;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 28px;
  quotes: none;
}

/* Author */
.rev-carousel__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rev-carousel__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(211, 175, 55, 0.1);
  border: 1.5px solid rgba(211, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rev-gold);
  flex-shrink: 0;
}

.rev-carousel__meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.rev-carousel__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rev-white);
}

.rev-carousel__vehicle {
  font-size: 0.72rem;
  color: var(--rev-muted);
  margin-top: 2px;
}

/* Tag */
.rev-carousel__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-gold);
  background: rgba(211, 175, 55, 0.08);
  border: 1px solid rgba(211, 175, 55, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Controls */
.rev-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.rev-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 237, 230, 0.1);
  background: rgba(10, 10, 18, 0.5);
  color: var(--rev-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s var(--rev-ease), background 0.3s var(--rev-ease), transform 0.25s var(--rev-ease);
}
.rev-carousel__arrow:hover {
  border-color: var(--rev-gold);
  background: rgba(211, 175, 55, 0.06);
  transform: scale(1.08);
}
.rev-carousel__arrow:focus-visible {
  outline: 2px solid var(--rev-gold);
  outline-offset: 3px;
}

.rev-carousel__dots {
  display: flex;
  gap: 8px;
}

.rev-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(240, 237, 230, 0.15);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--rev-ease), transform 0.3s var(--rev-ease), box-shadow 0.3s var(--rev-ease);
}
.rev-carousel__dot.is-active {
  background: var(--rev-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(211, 175, 55, 0.3);
}
.rev-carousel__dot:focus-visible {
  outline: 2px solid var(--rev-gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   2: FEATURED RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .rev-featured { padding: 48px 16px; align-items: flex-start; }
  .rev-carousel__card { padding: 32px 24px 28px; border-radius: 18px; }
  .rev-carousel__text { font-size: 0.92rem; }
  .rev-carousel__quote-mark { display: none; }
}

@media (max-width: 400px) {
  .rev-carousel__card { padding: 24px 18px 22px; }
  .rev-carousel__text { font-size: 0.85rem; }
  .rev-carousel__arrow { width: 38px; height: 38px; }
}

@media (min-width: 2000px) {
  .rev-featured__title { font-size: 2.8rem; }
  .rev-carousel__card { max-width: 800px; padding: 56px 56px 48px; }
  .rev-carousel__text { font-size: 1.2rem; }
}

@media (min-width: 3800px) {
  .rev-featured__title { font-size: 3.6rem; }
  .rev-carousel__text { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════════
   3: REVIEW WALL
   ═══════════════════════════════════════════════════════════ */
.rev-wall {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 24px;
  overflow: hidden;
}

.rev-wall__inner {
  width: 100%;
  max-width: var(--rev-max);
  margin: 0 auto;
}

/* Header */
.rev-wall__header {
  text-align: center;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--rev-ease), transform 0.8s var(--rev-ease);
}
.rev-wall__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-wall__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rev-gold);
  margin-bottom: 12px;
}

.rev-wall__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--rev-white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.rev-wall__intro {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--rev-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* Filters */
.rev-wall__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--rev-ease) 0.1s, transform 0.7s var(--rev-ease) 0.1s;
}
.rev-wall__filters.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-wall__filter {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--rev-muted);
  background: rgba(10, 10, 18, 0.4);
  border: 1px solid rgba(240, 237, 230, 0.06);
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition:
    background 0.3s var(--rev-ease),
    border-color 0.3s var(--rev-ease),
    color 0.3s var(--rev-ease),
    box-shadow 0.3s var(--rev-ease),
    transform 0.25s var(--rev-ease);
  outline: none;
}

.rev-wall__filter:hover {
  background: rgba(211, 175, 55, 0.05);
  border-color: rgba(211, 175, 55, 0.15);
  color: var(--rev-white);
  transform: translateY(-1px);
}

.rev-wall__filter.is-active {
  background: rgba(211, 175, 55, 0.1);
  border-color: var(--rev-gold);
  color: var(--rev-gold);
  box-shadow: 0 0 12px rgba(211, 175, 55, 0.1);
}

.rev-wall__filter:focus-visible {
  outline: 2px solid var(--rev-gold);
  outline-offset: 2px;
}

/* Grid */
.rev-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ═══════════════════════════════════
   Review Card
   ═══════════════════════════════════ */
.rev-card {
  position: relative;
  background: var(--rev-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 237, 230, 0.04);
  border-radius: 18px;
  padding: 28px 24px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--rev-ease),
    transform 0.5s var(--rev-ease),
    border-color 0.35s var(--rev-ease),
    box-shadow 0.35s var(--rev-ease);
}

.rev-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--rev-i, 0) * 80ms);
}

.rev-card:hover {
  border-color: rgba(211, 175, 55, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), 0 0 14px rgba(211, 175, 55, 0.04);
}

.rev-card.is-hidden {
  display: none;
}

/* Stars */
.rev-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.rev-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--rev-gold);
}

/* Text */
.rev-card__text {
  font-size: 0.85rem;
  color: var(--rev-white);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Footer */
.rev-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(211, 175, 55, 0.08);
  border: 1px solid rgba(211, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rev-gold);
  flex-shrink: 0;
}

.rev-card__meta {
  display: flex;
  flex-direction: column;
}

.rev-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rev-white);
}

.rev-card__info {
  font-size: 0.68rem;
  color: var(--rev-muted);
  margin-top: 2px;
}

/* Badge */
.rev-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-gold);
  background: rgba(211, 175, 55, 0.06);
  border: 1px solid rgba(211, 175, 55, 0.1);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ═══════════════════════════════════════════════════════════
   3: REVIEW WALL RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rev-wall__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 680px) {
  .rev-wall { padding: 48px 16px; }
  .rev-wall__grid { grid-template-columns: 1fr; gap: 16px; }
  .rev-wall__filters { gap: 6px; }
  .rev-wall__filter { font-size: 0.72rem; padding: 6px 14px; }
  .rev-card { padding: 24px 20px 20px; border-radius: 14px; }
  .rev-card__text { font-size: 0.82rem; }
}

@media (max-width: 400px) {
  .rev-wall { padding: 36px 12px; }
  .rev-wall__title { font-size: 1.4rem; }
  .rev-card { padding: 20px 16px 18px; }
  .rev-card__text { font-size: 0.78rem; }
  .rev-card__badge { font-size: 0.52rem; padding: 3px 8px; }
}

@media (min-width: 2000px) {
  .rev-wall__title { font-size: 2.8rem; }
  .rev-wall__intro { font-size: 1.1rem; max-width: 680px; }
  .rev-wall__grid { gap: 24px; }
  .rev-card { padding: 32px 28px 28px; border-radius: 20px; }
  .rev-card__text { font-size: 0.95rem; }
  .rev-card__stars svg { width: 16px; height: 16px; }
}

@media (min-width: 3800px) {
  .rev-wall__title { font-size: 3.6rem; }
  .rev-card__text { font-size: 1.08rem; }
}

/* ═══════════════════════════════════════════════════════════
   4: TRUST CTA
   ═══════════════════════════════════════════════════════════ */
.rev-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 24px;
  overflow: hidden;
}

.rev-cta__inner {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.rev-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: revGlowDrift 20s ease-in-out infinite alternate;
}

.rev-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--rev-ease), transform 0.8s var(--rev-ease);
}
.rev-cta__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rev-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rev-gold);
  margin-bottom: 14px;
}

.rev-cta__title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--rev-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.rev-cta__text {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--rev-muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* Proof Counters */
.rev-cta__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rev-cta__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rev-cta__proof-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--rev-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rev-cta__proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rev-muted);
  text-transform: uppercase;
}

.rev-cta__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(240, 237, 230, 0.08);
}

/* Actions */
.rev-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   4: TRUST CTA RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .rev-cta { padding: 48px 16px; }
  .rev-cta__proof { gap: 24px; }
  .rev-cta__proof-divider { height: 32px; }
  .rev-cta__actions { flex-direction: column; align-items: stretch; }
  .rev-cta__actions .rev-btn { justify-content: center; width: 100%; }
}

@media (max-width: 400px) {
  .rev-cta { padding: 36px 12px; }
  .rev-cta__title { font-size: 1.4rem; }
  .rev-cta__proof-num { font-size: 1.8rem; }
}

@media (min-width: 2000px) {
  .rev-cta__title { font-size: 2.8rem; }
  .rev-cta__text { font-size: 1.1rem; max-width: 620px; }
  .rev-cta__proof-num { font-size: 3.2rem; }
}

@media (min-width: 3800px) {
  .rev-cta__title { font-size: 3.6rem; }
  .rev-cta__proof-num { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .rev-hero__badge,
  .rev-hero__title,
  .rev-hero__subtitle,
  .rev-hero__rating,
  .rev-hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .rev-hero__badge-dot { animation: none; }
  .rev-hero__scroll-dot { animation: none; }
  .rev-hero__scroll-cue { animation: none; opacity: 1; }
  .rev-hero__glow { animation: none; }
  .rev-hero__bg-img { transition: none; }

  .rev-featured__header,
  .rev-carousel,
  .rev-wall__header,
  .rev-wall__filters,
  .rev-cta__content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rev-carousel__slide {
    transition: opacity 0.2s ease;
  }

  .rev-card {
    opacity: 1;
    transform: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .rev-cta__glow { animation: none; }
}