/* ========== PREMIUM LAYER ========== */

:root {
  --premium-gold: #e8c547;
  --premium-gold-dim: rgba(232, 197, 71, 0.15);
  --shine: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 62%
  );
}

/* Ambient orbs */
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.12), transparent 70%);
  bottom: -120px;
  left: -100px;
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 99px;
}

/* Header premium */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.page-home .site-header.header-scrolled {
  background: rgba(6, 9, 18, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.brand img {
  box-shadow: 0 0 0 2px rgba(79, 140, 255, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.header-book-btn,
.header-book-desktop {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5b9aff 0%, #7c6cf0 50%, #a78bfa 100%) !important;
  box-shadow: 0 4px 20px rgba(79, 140, 255, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
}

.header-book-btn::after,
.btn-primary.btn-glow::after,
.btn-primary:not(.btn-outline)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--shine);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.header-book-btn:hover::after,
.btn-primary:hover::after {
  transform: translateX(120%);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #4f8cff 0%, #6366f1 45%, #8b5cf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.btn-outline {
  border-color: rgba(79, 140, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Hero slider premium */
.slide-overlay {
  background: linear-gradient(
    125deg,
    rgba(4, 6, 14, 0.94) 0%,
    rgba(6, 9, 18, 0.75) 40%,
    rgba(6, 9, 18, 0.45) 70%,
    rgba(6, 9, 18, 0.25) 100%
  );
}

/* Video / media-only slides — no headline overlay */
.slide-media-only .slide-overlay-light {
  background: linear-gradient(
    180deg,
    rgba(6, 9, 18, 0.45) 0%,
    rgba(6, 9, 18, 0.12) 35%,
    rgba(6, 9, 18, 0.35) 100%
  );
}

.badge-glow {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(167, 139, 250, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.04em;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(79, 140, 255, 0.2); }
  50% { box-shadow: 0 0 32px rgba(167, 139, 250, 0.35); }
}

.slider-dots button.active {
  box-shadow: 0 0 12px rgba(79, 140, 255, 0.6);
}

/* Trust strip */
.trust-strip {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 20, 36, 0.5);
  backdrop-filter: blur(8px);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item strong {
  color: var(--text);
  font-weight: 700;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--premium-gold));
  box-shadow: 0 0 8px var(--premium-gold);
}

/* Stats premium v2 — with images */
.stats-premium .stat-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.stat-card-visual {
  display: flex;
  flex-direction: column;
}

.stat-card-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.stat-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stat-card-visual:hover .stat-card-img img {
  transform: scale(1.08);
}

.stat-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 9, 18, 0.75) 100%);
  pointer-events: none;
}

.stat-card-body {
  padding: 1.1rem 0.85rem 1.25rem;
  position: relative;
  z-index: 1;
}

.stat-card-body strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-body span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-premium .stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.5), rgba(232, 197, 71, 0.3), rgba(167, 139, 250, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

.stats-premium .stat-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stats-premium .stat-card:hover::after {
  opacity: 1;
}

/* Premium panels */
.premium-panel {
  background: linear-gradient(160deg, rgba(22, 29, 50, 0.9) 0%, rgba(15, 20, 36, 0.95) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.counselling-cta.premium-panel {
  background: linear-gradient(145deg, rgba(79, 140, 255, 0.12) 0%, rgba(15, 20, 36, 0.95) 40%, rgba(167, 139, 250, 0.08) 100%);
}

/* Section titles */
.section-title-premium h2 {
  background: linear-gradient(180deg, #fff 20%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#why,
#plans {
  position: relative;
}

#why::before,
#plans::before {
  content: "";
  display: block;
  width: min(200px, 40%);
  height: 1px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.4), transparent);
}

.section-title-premium .section-label {
  background: var(--premium-gold-dim);
  color: var(--premium-gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 197, 71, 0.25);
  display: inline-block;
}

.section-divider {
  width: 60px;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--premium-gold), var(--accent-2));
}

/* Feature cards */
.premium-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.35s;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card:hover {
  transform: translateY(-6px);
}

/* Feature cards with images */
.card-grid-features {
  gap: 1.25rem;
}

.feature-card-visual {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card-visual:hover .feature-card-img img {
  transform: scale(1.06);
}

.feature-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(6, 9, 18, 0.8) 100%);
  pointer-events: none;
}

.feature-card-content {
  padding: 1.25rem 1.15rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card-visual h3 {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.feature-card-visual p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.premium-card h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .feature-card-img {
    height: 140px;
  }
}

/* Plan cards */
.premium-plan {
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--premium-gold), #d4a017);
  color: #1a1508;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(232, 197, 71, 0.4);
}

.premium-plan .plan-body {
  background: linear-gradient(180deg, transparent, rgba(15, 20, 36, 0.6));
}

.premium-plan img {
  transition: transform 0.5s ease;
}

.premium-plan:hover img {
  transform: scale(1.03);
}

/* CTA final */
.section-cta-final .container {
  position: relative;
  overflow: hidden;
}

.section-cta-final .container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(79, 140, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.section-cta-final h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 1rem;
}

.cta-inner {
  text-align: center;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
}

/* Footer premium */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, #080c16 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--premium-gold), var(--accent-2), transparent);
}

/* Inner pages */
body:not(.page-home) .page-hero {
  position: relative;
}

body:not(.page-home) .page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--premium-gold));
}

.form-panel,
.contact-info-card,
.results-panel {
  background: linear-gradient(160deg, rgba(22, 29, 50, 0.85) 0%, rgba(15, 20, 36, 0.95) 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Modal premium */
.modal-dialog {
  background: linear-gradient(165deg, #141b2e 0%, #0f1424 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(79, 140, 255, 0.1) inset;
}

.modal-dialog h2 {
  background: linear-gradient(135deg, #fff, var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Gallery — students & counselling (fixed bento) */
.section-gallery {
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(79, 140, 255, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(232, 197, 71, 0.04), transparent);
}

.section-gallery .section-title p {
  margin-top: 0.75rem;
}

/* Gallery layout — clean, no grid overlap */
.gallery-layout {
  margin-bottom: 2.5rem;
}

.gallery-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  min-height: 340px;
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.gallery-stack .g-card {
  flex: 1;
  min-height: 200px;
}

.gallery-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-bottom .g-card {
  min-height: 200px;
}

.g-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  background: var(--bg-card);
}

.g-hero {
  min-height: 340px;
  height: 100%;
}

.g-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 2;
}

.g-card:hover {
  border-color: rgba(79, 140, 255, 0.35);
  box-shadow: 0 16px 50px rgba(79, 140, 255, 0.12);
}

.g-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s ease;
}

/* Stack cards (1-on-1 counselling) — keep face in frame */
.gallery-stack .g-card img,
.g-card-focus-top img {
  object-position: top center;
}

.g-card:hover img {
  transform: scale(1.05);
}

.gallery-stack .g-card:hover img {
  transform-origin: top center;
}

.g-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.88) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.g-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(79, 140, 255, 0.5);
  border-radius: 4px;
  color: #fff;
}

/* Plan showcase cards */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(22, 29, 50, 0.95), rgba(15, 20, 36, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(79, 140, 255, 0.1);
  border-color: rgba(79, 140, 255, 0.2);
}

.showcase-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.showcase-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.showcase-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-card-body .section-label {
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.showcase-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.showcase-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.gallery-list {
  list-style: none;
  margin-bottom: 1rem;
}

.gallery-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--premium-gold);
  font-weight: 700;
}

.gallery-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.showcase-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.showcase-card-alt {
  border-color: rgba(232, 197, 71, 0.15);
}

.showcase-card-alt .showcase-card-img::after {
  content: "Popular";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--premium-gold), #d4a017);
  color: #1a1508;
  border-radius: 999px;
}

/* Gallery images — override global height:auto */
.section-gallery .g-card img,
.showcase-card-img img,
.stat-card-img img,
.feature-card-img img {
  max-width: none;
  height: 100%;
}

.section-gallery .section-title h2 {
  -webkit-text-fill-color: unset;
  background: none;
  color: var(--text);
}

@media (max-width: 900px) {
  .gallery-top {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .g-hero {
    min-height: 260px;
  }

  .gallery-stack .g-card {
    min-height: 180px;
  }

  .gallery-bottom {
    grid-template-columns: 1fr;
  }

  .gallery-bottom .g-card {
    min-height: 220px;
  }

  .showcase-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .g-hero {
    min-height: 220px;
  }

  .showcase-card-img {
    height: 180px;
  }

  .gallery-showcase-actions .btn {
    width: 100%;
    text-align: center;
  }

  .showcase-card-body .btn {
    width: 100%;
  }
}

/* Reviews page */
.section-reviews {
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(22, 29, 50, 0.95), rgba(15, 20, 36, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 140, 255, 0.08) inset;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--premium-gold), var(--accent-2));
}

.review-quote-mark {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(79, 140, 255, 0.15);
  pointer-events: none;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(79, 140, 255, 0.45);
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.25);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.review-meta h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.review-college {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.review-branch {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.review-stars {
  color: var(--premium-gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.92);
  font-style: italic;
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.review-verified span {
  font-weight: 700;
}

.reviews-cta {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 520px) {
  .review-card {
    padding: 1.5rem 1.25rem;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
  }

  .review-text {
    font-size: 0.98rem;
    text-align: center;
  }

  .review-verified {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body::after,
  .badge-glow {
    animation: none;
  }
}
