/*
Theme Name: Vinay Academy
Theme URI: https://www.vinayacademy.in/
Author: Vinay Academy
Author URI: https://www.vinayacademy.in/
Description: A CBSE coaching-institute landing page theme for Vinay Academy â€” hero, results marquee, courses, testimonials, FAQ and a free demo-class booking form wired to WordPress via AJAX.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vinay-academy
*/

/* ============================================================
   Vinay Academy â€” stylesheet
   Design tokens
   ============================================================ */
:root {
  --color-primary: #4F5DE4;
  --color-primary-dark: #3B46C4;
  --color-accent: #ee171d;
  --color-accent-dark: #ee171d;
  --color-heading: #211B45;
  --color-body: #55536B;
  --color-muted: #8583A0;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F6F6FC;
  --color-border: #E7E6F5;
  --color-white: #FFFFFF;

  --font-sans: 'Urbanist', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 6px;

  --shadow-card: 0 4px 20px rgba(33, 27, 69, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(33, 27, 69, 0.12);
  --shadow-pill: 0 12px 40px rgba(33, 27, 69, 0.08);

  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-body);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--color-heading); margin: 0 0 12px; font-weight: 700; }
h1 { font-size: 40px; line-height: 1.15; font-weight: 700; }
h2 { font-size: 32px; text-align: center; line-height: 1.2; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  color: #ee171d;
  margin-bottom: 8px;
}
.kicker-center { text-align: center; }

section { padding: 60px 20px; }
@media (min-width: 1024px) { section { padding: 100px 40px; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }
.btn-link {
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  padding: 12px 8px;
}
.btn-link:hover { color: var(--color-primary-dark); text-decoration: underline; }
.btn-nav { padding: 9px 20px; border-radius: var(--radius-pill); }

/* ============================================================
   Topbar
   ============================================================ */
.topbar { background: var(--color-heading); color: #fff; font-size: 13px; overflow: hidden; }
.topbar-marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.topbar-marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 9px 0;
  animation: marqueeScroll 45s linear infinite;
}
@media (hover: hover) {
  .topbar:hover .topbar-marquee-track { animation-play-state: paused; }
}
.topbar-marquee-track span {
  flex-shrink: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  color: var(--color-accent);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(33,27,69,0.08);
  border-color: var(--color-border);
}
.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--color-heading); 
}
.logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

/* Footer & Mobile Menu custom states */
.logo-footer .logo-img {
  height: 72px;
}

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: rgba(79,93,228,0.08); border: none; width: 40px; height: 40px; padding: 8px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(79,93,228,0.16); }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--color-heading); border-radius: 2px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
}
.primary-nav a:not(.btn) { color: var(--color-body); transition: color 0.15s ease; }
.primary-nav a:not(.btn):hover { color: var(--color-primary); }

/* ---- Courses dropdown (desktop nav) ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; font: inherit;
  font-weight: 500; font-size: 15px; color: var(--color-body);
  padding: 0; cursor: pointer;
  transition: color 0.15s ease;
}
.nav-dropdown-trigger:hover { color: var(--color-primary); }
.nav-caret { font-size: 11px; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translate(-50%, -6px);
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pill);
  border: 1px solid var(--color-border);
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 120;
}
.nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 1px;
  padding: 10px 12px; border-radius: 8px;
  transition: background 0.15s ease;
}
.nav-dropdown-menu a:hover { background: var(--color-bg-alt); }
.nav-dropdown-menu a strong { font-size: 14px; color: var(--color-heading); font-weight: 700; }
.nav-dropdown-menu a span { font-size: 12px; color: var(--color-muted); }
.nav-dropdown-all { font-size: 14px; font-weight: 700; color: var(--color-primary) !important; }
.nav-dropdown-divider { height: 1px; background: var(--color-border); margin: 6px 4px; }

.nav-dropdown.open .nav-dropdown-menu { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
}

/* ---- Courses sub-menu (mobile sheet) ---- */
.sheet-dropdown { display: flex; flex-direction: column; }
.sheet-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; font: inherit; text-align: left;
  padding: 14px 12px; border-radius: var(--radius-md);
  font-size: 1.05rem; font-weight: 600; color: var(--color-heading);
  opacity: 0; transform: translateX(24px);
  cursor: pointer;
}
.mobile-sheet.open .sheet-dropdown .sheet-nav-toggle {
  animation: sheetLinkIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.15s + var(--d) * 0.07s);
}
.sheet-nav-toggle:hover { background: rgba(79,93,228,0.08); }
.sheet-nav-toggle .nav-caret { transition: transform 0.2s ease; }
.sheet-nav-toggle[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.sheet-subnav {
  max-height: 0; overflow: hidden;
  display: flex; flex-direction: column;
  padding-left: 12px;
  transition: max-height 0.3s ease;
}
.sheet-subnav a {
  padding: 10px 12px; font-size: 0.92rem; font-weight: 500;
  color: var(--color-body); border-radius: 8px;
}
.sheet-subnav a:hover { background: rgba(79,93,228,0.08); color: var(--color-primary); }

/* ============================================================
   Floating Call / WhatsApp buttons (site-wide)
   ============================================================ */
.floating-contact {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(0,0,0,0.3); }
.floating-whatsapp { background: #25D366; animation: floatPulse 2.4s ease-in-out infinite; }
.floating-call { background: var(--color-accent); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.12); }
}
@media (prefers-reduced-motion: reduce) { .floating-whatsapp { animation: none; } }
@media (max-width: 480px) {
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .floating-btn { width: 48px; height: 48px; font-size: 19px; }
}

/* ============================================================
   Weekly lead popup
   ============================================================ */
.popup-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(15,12,35,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-backdrop.open { opacity: 1; pointer-events: auto; }
.popup-modal {
  position: fixed; top: 50%; left: 50%; z-index: 401;
  width: min(92vw, 440px);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.popup-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.popup-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--color-border); color: var(--color-heading);
  font-size: 13px; box-shadow: var(--shadow-card);
  transition: transform 0.15s ease;
}
.popup-close:hover { transform: scale(1.08); }
.popup-content {
  background: #fff; border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  text-align: center;
}
.popup-kicker {
  text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 11.5px; font-weight: 700; color: var(--color-accent);
  margin-bottom: 8px;
}
.popup-title { font-size: 21px; margin-bottom: 8px; }
.popup-sub { font-size: 13.5px; color: var(--color-muted); margin-bottom: 20px; }
.popup-form { text-align: left; }
.popup-form .field { margin-bottom: 12px; }

/* ---- Mobile slide-in sheet ---- */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(33,27,69,0.35);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-sheet {
  position: fixed; top: 0; right: 0; z-index: 200;
  width: min(88vw, 360px); height: 100dvh;
  background: var(--color-bg-alt);
  box-shadow: -12px 0 48px rgba(33,27,69,0.18);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.mobile-sheet.open { transform: translateX(0); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; }
.sheet-close {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(33,27,69,0.08); font-size: 15px; color: var(--color-heading);
  transition: transform 0.15s ease, background 0.15s ease;
}
.sheet-close:hover { background: rgba(33,27,69,0.14); }
.sheet-close:active { transform: scale(0.9); }
.sheet-divider { height: 1px; margin: 0 20px; background: var(--color-border); }
.sheet-nav { display: flex; flex-direction: column; padding: 16px 12px; gap: 2px; }
.sheet-nav a {
  padding: 14px 12px; border-radius: var(--radius-md);
  font-size: 1.05rem; font-weight: 600; color: var(--color-heading);
  opacity: 0; transform: translateX(24px);
  transition: background 0.15s ease;
}
.mobile-sheet.open .sheet-nav a {
  animation: sheetLinkIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.15s + var(--d) * 0.07s);
}
.sheet-nav a:hover { background: rgba(79,93,228,0.08); }
@keyframes sheetLinkIn { to { opacity: 1; transform: translateX(0); } }
.sheet-ctas { margin-top: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.btn-ghost-pill {
  background: #fff; color: var(--color-heading); border: 1px solid var(--color-border);
  border-radius: var(--radius-pill); padding: 12px 24px; font-weight: 600;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav { display: none; }
}
@media (min-width: 901px) {
  .sheet-backdrop, .mobile-sheet { display: none; }
}

/* ============================================================
   Standalone page banner (About / Courses / Results / FAQ / Contact)
   ============================================================ */
.page-hero {
  background: var(--color-bg-alt);
  text-align: center;
  padding: 56px 20px 40px;
}
.page-hero-title {
  font-size: 30px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .page-hero-title { font-size: 38px; } }

/* ---- Photo variant: background image + overlay + light text ---- */
.page-hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--color-heading);
  padding: 100px 20px 76px;
}
.page-hero-photo .page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero-photo .page-hero-title { color: #fff; }
.page-hero-photo .kicker { color: #ee171d; }
.page-hero-sub {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.82);
  max-width: 560px; margin: 14px auto 0;
  font-size: 15.5px;
}
@media (min-width: 640px) { .page-hero-photo { padding: 120px 20px 84px; } }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--color-bg-alt); padding-top: 48px; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 50px; } }

.hero-title { font-size: 34px; }
@media (min-width: 640px) { .hero-title { font-size: 42px; } }
@media (min-width: 1024px) { .hero-title { font-size: 56px; } }
.hero-sub { font-size: 16px; max-width: 480px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; margin-top: 8px; }

.hero-visual { position: relative; min-height: 460px; width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.hero-blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--color-primary), #8B93F2);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  opacity: 0.9;
  animation: blobMorph 10s ease-in-out infinite;
}
/* Rotating 3-photo stack â€” one image "up" front, two "down" behind */
.hero-photo-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 460px;
  margin: 0 auto;
  animation: stackEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stack-img {
  position: absolute;
  inset: 0;
  width: 340px; height: 400px;
  margin: auto;
  padding: 0;
  border: 6px solid #fff;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-pill);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, box-shadow 0.4s ease;
}
.stack-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stack-img.stack-front {
  transform: translate(-6px, -14px) scale(1) rotate(0deg);
  z-index: 3; opacity: 1;
  animation: stackFrontBob 4s ease-in-out infinite;
}
.stack-img.stack-mid   { transform: translate(64px, 46px) scale(0.86) rotate(5deg); z-index: 2; opacity: 0.92; }
.stack-img.stack-back  { transform: translate(-58px, 74px) scale(0.74) rotate(-7deg); z-index: 1; opacity: 0.75; }
.stack-img.stack-front:hover { box-shadow: 0 24px 60px rgba(33,27,69,0.26); }
@keyframes stackFrontBob {
  0%, 100% { transform: translate(-6px, -14px) scale(1) rotate(0deg); }
  50% { transform: translate(-6px, -22px) scale(1.015) rotate(0.5deg); }
}
@keyframes stackEntrance {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stack-img { transition: opacity 0.3s ease; animation: none !important; }
  .hero-photo-stack { animation: none; }
}
/* Below 960px the hero stacks into a single column (see .hero-inner), so the
   photo stack and side badges need to shrink together at that same breakpoint â€”
   not at a smaller one â€” or they overlap into the section below. */
@media (max-width: 959px) {
  .hero-visual { min-height: 380px; margin-bottom: 20px; }
  .hero-photo-stack { max-width: 320px; height: 380px; }
  .stack-img { width: 250px; height: 300px; }
  .stack-img.stack-mid  { transform: translate(38px, 30px) scale(0.86) rotate(5deg); }
  .stack-img.stack-back { transform: translate(-34px, 50px) scale(0.74) rotate(-7deg); }
}
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; transform: scale(1); }
  50% { border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%; transform: scale(1.05); }
}

/* Ambient glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  animation: orbPulse 4.5s ease-in-out infinite;
  z-index: 0;
}
.glow-orb.orb-1 {
  width: 340px; height: 340px; top: -12%; right: -10%;
  background: radial-gradient(circle, rgba(79,93,228,0.35) 0%, rgba(79,93,228,0) 70%);
}
.glow-orb.orb-2 {
  width: 260px; height: 260px; bottom: -14%; left: -8%;
  background: radial-gradient(circle, rgba(245,112,5,0.22) 0%, rgba(245,112,5,0) 70%);
  animation-delay: 1.5s;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0.9; }
}

.gradient-accent {
  background: linear-gradient(90deg, var(--color-primary), #8B93F2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shimmer CTA */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shimmerSweep 3.2s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0% { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(260%) skewX(-15deg); }
}

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--color-heading);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  backdrop-filter: blur(6px);
}
.trust-pill .dot { color: var(--color-accent); }

.result-badge {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  border: 1px solid var(--color-border);
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.result-badge-num { font-size: 34px; font-weight: 800; color: var(--color-accent); line-height: 1; }
.result-badge-label { font-size: 12px; font-weight: 600; color: var(--color-heading); margin-top: 6px; line-height: 1.3; }

.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 10px 14px;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 13px; color: var(--color-heading); }
.floating-card span { font-size: 12px; color: var(--color-muted); }
.fc-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.fc-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #FFA24D);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
/* Side-positioned badges â€” mid-height, left/right of the photo stack, never "down" at the bottom */
.fc-side-left  { top: 42%; left: -9%; animation-delay: 0s; }
.fc-side-right { top: 58%; right: -9%; animation-delay: 1.4s; }

/* Below 960px there's no room to float them past the photo's edges without
   the section's overflow:hidden clipping them off-screen. Instead of hiding
   them or dropping them into a separate list below, pull them inward so they
   still overlap the photo's corners like the desktop version â€” just tucked
   further in. */
@media (max-width: 959px) {
  .fc-side-left, .fc-side-right {
    padding: 8px 12px;
    gap: 8px;
  }
  .fc-side-left  { top: 6%;  left: -8px; }
  .fc-side-right { top: auto; bottom: 8%; right: -8px; }
  .fc-side-left strong, .fc-side-right strong { font-size: 12px; }
  .fc-side-left span, .fc-side-right span { font-size: 10.5px; }
  .fc-icon { width: 28px; height: 28px; font-size: 14px; }
}
@media (max-width: 420px) {
  .fc-side-left  { top: 2%; left: -10px; }
  .fc-side-right { bottom: 4%; right: -10px; }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   Hero â€” photo background + lead capture form
   ============================================================ */
.hero-photo {
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-heading);
}
.hero-bg-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  transform: scale(1.02);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,16,46,0.94) 0%, rgba(20,16,46,0.82) 38%, rgba(33,27,69,0.55) 75%);
}
.hero-inner-split {
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .hero-inner-split { grid-template-columns: 1.15fr 0.85fr; gap: 50px; } }

.hero-content-light { color: rgba(255,255,255,0.92); }
.kicker-light { color: #FFD9B0; }
.hero-title-light { color: #fff; }
.gradient-accent-light {
  background: linear-gradient(90deg, #FFB35C, #FF7A45);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub-light { color: rgba(255,255,255,0.8); max-width: 480px; }

.hero-points { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hero-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: #fff;
  opacity: 0; transform: translateX(-16px);
  animation: heroPointIn 0.6s ease forwards;
}
.hero-points li:nth-child(1) { animation-delay: 0.3s; }
.hero-points li:nth-child(2) { animation-delay: 0.5s; }
.hero-points li:nth-child(3) { animation-delay: 0.7s; }
@keyframes heroPointIn { to { opacity: 1; transform: translateX(0); } }
.hero-point-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 12px 22px; border-radius: var(--radius-pill); font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* ---- Lead capture card ---- */
.hero-lead-card {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  box-shadow: 0 30px 70px rgba(10,8,30,0.45);
  animation: leadCardIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s;
}
@keyframes leadCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-lead-kicker {
  text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 11.5px; font-weight: 700; color: var(--color-accent);
  margin: 0 0 6px;
}
.hero-lead-title { text-align: left; font-size: 21px; margin-bottom: 18px; }
.text-accent { color: var(--color-accent); }
.hero-lead-form .field { margin-bottom: 12px; }
.hero-lead-form .btn { margin-top: 4px; }

/* ---- Stats bar â€” big full-width row directly under the hero ---- */
.hero-stats-bar {
  position: relative; z-index: 1;
  width: 100%; margin: 48px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding: 34px 20px 4px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px;
  text-align: center;
}
@media (min-width: 640px) { .hero-stats-bar { grid-template-columns: repeat(5, 1fr); padding-left: 40px; padding-right: 40px; } }
.hero-stat { position: relative; }
.hero-stat:not(:last-child)::after {
  content: "";
  display: none;
}
@media (min-width: 640px) {
  .hero-stat:not(:last-child)::after {
    display: block;
    position: absolute; top: 8px; right: -8px; bottom: 8px;
    width: 1px; background: rgba(255,255,255,0.14);
  }
}
.hero-stat .stat-number { display: block; font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 8px; }

@media (max-width: 640px) {
  .hero-photo { min-height: auto; padding-top: 32px; }
  .hero-lead-card { padding: 24px 20px 20px; }
}

/* ============================================================
   Result marquee (signature element)
   ============================================================ */
.marquee-section { padding: 32px 0; background: var(--color-heading); overflow: hidden; }
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeScroll 32s linear infinite;
}
/* Only pause on hover for real mouse/trackpad devices â€” on touch devices,
   :hover can get "stuck" active after a tap until you touch elsewhere,
   which made the marquee look frozen instead of resuming. */
@media (hover: hover) {
  .marquee-section:hover .marquee-track { animation-play-state: paused; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.achiever-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 10px;
  flex-shrink: 0;
}
.ac-initial {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.ac-meta { display: flex; flex-direction: column; font-size: 12px; color: rgba(255,255,255,0.7); }
.ac-meta strong { color: #fff; font-size: 13px; font-weight: 600; }

/* ============================================================
   Stats
   ============================================================ */
.stats { background: var(--color-bg); padding: 60px 20px; }
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-number { display: block; font-size: 40px; font-weight: 800; color: var(--color-primary); }
.stat-label { display: block; font-size: 14px; color: var(--color-muted); margin-top: 4px; font-weight: 500; }

/* ============================================================
   Why us
   ============================================================ */
.why { background: var(--color-bg-alt); }
.why-grid {
  max-width: var(--max-width); margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.why-icon { color: var(--color-accent); font-size: 22px; display: block; margin-bottom: 12px; }

/* ============================================================
   Toppers slider â€” infinite loop, no start/end
   ============================================================ */
.toppers-section { background: var(--color-bg); overflow: hidden; }
.toppers-mask {
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.toppers-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marqueeScroll 42s linear infinite;
}
@media (hover: hover) {
  .toppers-section:hover .toppers-track { animation-play-state: paused; }
}

.topper-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 38px 18px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.topper-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}
.topper-ribbon {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
}
.topper-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  margin: 16px auto 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ring, var(--color-primary)), #8B93F2);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--ring, var(--color-primary)), var(--shadow-card);
  transition: transform 0.3s ease;
}
.topper-card:hover .topper-avatar { transform: scale(1.08) rotate(-4deg); }
.topper-name { font-size: 16px; margin-bottom: 12px; }
.topper-scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.topper-scores span {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-muted);
  transition: background 0.2s ease;
}
.topper-card:hover .topper-scores span { background: #fff; box-shadow: inset 0 0 0 1px var(--color-border); }
.topper-scores span b { font-size: 15px; color: var(--color-heading); font-weight: 800; }
.topper-school { font-size: 12px; color: var(--color-muted); margin: 0; }

/* ============================================================
   Scroll-reveal utility â€” used by new sections below
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   All Courses We Cover â€” tabbed catalogue
   ============================================================ */
.course-tabs-section { background: var(--color-bg-alt); }
.course-tabs-sub { text-align: center; max-width: 560px; margin: 0 auto; color: var(--color-muted); }
.course-tabs-wrap {
  max-width: 900px; margin: 36px auto 0;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); overflow: hidden;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .course-tabs-wrap { grid-template-columns: 220px 1fr; } }
.course-tabs-nav {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 720px) {
  .course-tabs-nav { flex-direction: column; border-bottom: none; border-right: 1px solid var(--color-border); overflow-x: visible; }
}
.course-tab {
  flex-shrink: 0;
  background: none; border: none;
  padding: 16px 20px;
  font-size: 14px; font-weight: 600; color: var(--color-body);
  text-align: left; white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.course-tab:hover { background: rgba(79,93,228,0.06); }
.course-tab.active { background: #fff; color: var(--color-primary); border-left-color: var(--color-accent); }
@media (max-width: 719px) {
  .course-tab { border-left: none; border-bottom: 3px solid transparent; }
  .course-tab.active { border-bottom-color: var(--color-accent); }
}
.course-tabs-panel { padding: 32px 28px; position: relative; min-height: 220px; }
.course-tab-content {
  display: none;
  animation: tabFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.course-tab-content.active { display: block; }
.course-tab-content h3 { text-align: left; margin-bottom: 12px; }
.course-tab-content p { color: var(--color-body); margin-bottom: 18px; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   All Courses We Cover â€” bold animated tier cards
   ============================================================ */
.course-tiers-section { background: var(--color-bg-alt); }
.tiers-grid {
  max-width: var(--max-width); margin: 48px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 780px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.tier-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.tier-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background-size: 200% 100%;
  animation: tierBorderFlow 3s linear infinite;
}
.tier-1::before { background: linear-gradient(90deg, var(--color-primary), #C7CBFB, var(--color-primary)); }
.tier-2::before { background: linear-gradient(90deg, var(--color-accent), #FFD9B0, var(--color-accent)); }
.tier-3::before { background: linear-gradient(90deg, #1E8E5A, #A8E2C6, #1E8E5A); }
@keyframes tierBorderFlow {
  0% { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.tier-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 50px rgba(33,27,69,0.16);
}
.tier-1:hover { border-color: var(--color-primary); }
.tier-2:hover { border-color: var(--color-accent); }
.tier-3:hover { border-color: #1E8E5A; }

.tier-card.featured { border-color: var(--color-accent); }
@media (min-width: 780px) {
  .tier-card.featured { transform: translateY(-10px) scale(1.05); z-index: 1; }
  .tier-card.featured:hover { transform: translateY(-18px) scale(1.07); }
}

.tier-ribbon {
  position: absolute; top: 16px; right: -38px;
  background: var(--color-accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 42px; transform: rotate(40deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.tier-icon {
  width: 72px; height: 72px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; border-radius: 50%;
  animation: tierIconFloat 3s ease-in-out infinite;
}
.tier-1 .tier-icon { background: rgba(79,93,228,0.1); }
.tier-2 .tier-icon { background: rgba(245,112,5,0.1); }
.tier-3 .tier-icon { background: rgba(30,142,90,0.1); }
@keyframes tierIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}
.tier-card:hover .tier-icon { animation-duration: 1s; }

.tier-range {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.4px;
  text-transform: uppercase; margin-bottom: 6px;
}
.tier-1 .tier-range { color: var(--color-primary); }
.tier-2 .tier-range { color: var(--color-accent); }
.tier-3 .tier-range { color: #1E8E5A; }

.tier-card h3 { margin-bottom: 14px; }
.tier-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 16px; }
.tier-chip {
  font-size: 12.5px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-pill);
  transition: transform 0.2s ease;
}
.tier-1 .tier-chip { background: rgba(79,93,228,0.1); color: var(--color-primary); }
.tier-2 .tier-chip { background: rgba(245,112,5,0.1); color: var(--color-accent); }
.tier-3 .tier-chip { background: rgba(30,142,90,0.1); color: #1E8E5A; }
.tier-card:hover .tier-chip { transform: translateY(-2px); }
.tier-desc { font-size: 14px; color: var(--color-muted); margin-bottom: 18px; }
.tier-link { padding-left: 0; font-weight: 700; }

.tiers-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.tiers-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.tiers-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  .tier-card::before, .tier-icon { animation: none !important; }
}

/* ============================================================
   Meet Your Mentor
   ============================================================ */
.mentor-section { position: relative; overflow: hidden; background: var(--color-heading); }
.mentor-grid {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) { .mentor-grid { grid-template-columns: 1.2fr 0.8fr; } }
.mentor-kicker { color: #FFD9B0; }
.mentor-heading { text-align: left; color: #fff; }
.mentor-copy { color: rgba(255,255,255,0.75); max-width: 480px; }
.mentor-checklist {
  display: grid; grid-template-columns: 1fr; gap: 10px 24px;
  margin-top: 20px;
}
@media (min-width: 480px) { .mentor-checklist { grid-template-columns: 1fr 1fr; } }
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #fff;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mentor-checklist.revealed .check-item { opacity: 1; transform: translateX(0); }
.mentor-checklist.revealed .check-item:nth-child(1) { transition-delay: 0.05s; }
.mentor-checklist.revealed .check-item:nth-child(2) { transition-delay: 0.1s; }
.mentor-checklist.revealed .check-item:nth-child(3) { transition-delay: 0.15s; }
.mentor-checklist.revealed .check-item:nth-child(4) { transition-delay: 0.2s; }
.mentor-checklist.revealed .check-item:nth-child(5) { transition-delay: 0.25s; }
.mentor-checklist.revealed .check-item:nth-child(6) { transition-delay: 0.3s; }
.mentor-checklist.revealed .check-item:nth-child(7) { transition-delay: 0.35s; }
.mentor-checklist.revealed .check-item:nth-child(8) { transition-delay: 0.4s; }
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.mentor-photo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
  backdrop-filter: blur(6px);
}
.mentor-avatar {
  width: 76px; height: 76px; border-radius: var(--radius-md); margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-accent), #FFA24D);
  color: #fff; font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.mentor-avatar.mentor-avatar-photo {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; background: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.16), var(--shadow-pill);
}
.mentor-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   Meet Our Faculty â€” big photo cards
   ============================================================ */
.faculty-section { background: var(--color-bg-alt); }
.faculty-sub { text-align: center; max-width: 580px; margin: 0 auto; color: var(--color-muted); }
.faculty-grid {
  max-width: var(--max-width); margin: 44px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 26px;
}
@media (min-width: 640px) { .faculty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .faculty-grid { grid-template-columns: repeat(4, 1fr); } }
.faculty-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.faculty-photo-wrap { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; }
.faculty-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.faculty-card:hover .faculty-photo-wrap img { transform: scale(1.06); }
.faculty-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.94); color: var(--color-primary);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.faculty-card-director .faculty-badge { background: var(--color-accent); color: #fff; }
.faculty-info { padding: 20px 20px 24px; text-align: center; }
.faculty-info h3 { margin-bottom: 2px; }
.faculty-role { font-size: 13px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.faculty-desc { font-size: 13.5px; color: var(--color-muted); margin: 0; }
.mentor-name { color: #fff; font-weight: 700; margin-bottom: 2px; }
.mentor-role { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 18px; }
.mentor-actions { display: flex; justify-content: center; gap: 10px; }
.mentor-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s ease, transform 0.2s ease;
}
.mentor-icon-btn:hover { transform: translateY(-2px); }
.mentor-whatsapp { background: #25D366; }
.mentor-whatsapp:hover { background: #1fb958; }

/* ============================================================
   Student gallery
   ============================================================ */
.student-gallery { background: var(--color-bg); }
.gallery-grid {
  max-width: var(--max-width); margin: 36px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }
.gallery-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 22px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.gallery-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 12px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ring, var(--color-primary)), #8B93F2);
  color: #fff; font-size: 18px; font-weight: 800;
  box-shadow: 0 0 0 3px var(--ring, var(--color-primary));
}
.gallery-name { font-size: 13px; font-weight: 700; color: var(--color-heading); margin-bottom: 2px; }
.gallery-class { font-size: 11.5px; color: var(--color-muted); margin: 0; }
.gallery-grid .reveal:nth-child(1) { transition-delay: 0.02s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.26s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.32s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.38s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.44s; }
.gallery-grid .reveal:nth-child(9) { transition-delay: 0.5s; }

/* ============================================================
   About The Academy (Courses page intro)
   ============================================================ */
.course-about { background: var(--color-bg); }
.course-about-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center;
}
@media (min-width: 900px) { .course-about-grid { grid-template-columns: 0.85fr 1.15fr; } }
.course-about-photo { position: relative; }
.course-about-photo img {
  width: 100%; aspect-ratio: 7 / 8; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-pill);
}
.course-about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--color-accent); color: #fff;
  border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-pill); text-align: center;
}
.course-about-badge strong { display: block; font-size: 26px; font-weight: 800; line-height: 1; }
.course-about-badge span { font-size: 11.5px; font-weight: 600; }
.course-about-text h2 { text-align: left; }
.course-about-heading { font-size: 28px; }
.course-about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 24px 0 28px; padding: 20px 0;
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
}
.course-about-stats strong { display: block; font-size: 24px; font-weight: 800; color: var(--color-primary); }
.course-about-stats span { font-size: 12.5px; color: var(--color-muted); }

/* ============================================================
   Course faculty strip
   ============================================================ */
.course-faculty-strip { background: var(--color-bg-alt); }
.cf-grid {
  max-width: var(--max-width); margin: 36px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (min-width: 720px) { .cf-grid { grid-template-columns: repeat(4, 1fr); } }
.cf-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); text-align: center; padding-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.cf-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; margin-bottom: 14px; }
.cf-card h3 { font-size: 15px; margin-bottom: 2px; }
.cf-card p { font-size: 12.5px; color: var(--color-muted); margin: 0; padding: 0 12px; }

/* ============================================================
   Courses
   ============================================================ */
.course-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius-md);
  font-size: 22px; margin-bottom: 14px;
  background: var(--color-bg-alt);
}
.course-icon-foundation { background: rgba(79,93,228,0.1); }
.course-icon-maths { background: rgba(79,93,228,0.1); }
.course-icon-science { background: rgba(30,142,90,0.1); }
.course-icon-social { background: rgba(217,98,4,0.1); }
.course-icon-physics { background: rgba(79,93,228,0.1); }
.course-icon-chemistry { background: rgba(30,142,90,0.1); }
.courses-grid {
  max-width: var(--max-width); margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .courses-grid { grid-template-columns: repeat(3, 1fr); } }
.course-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.course-card.featured { border: 1px solid var(--color-accent); position: relative; }
.course-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -12px; right: 20px;
  background: var(--color-accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.course-level {
  align-self: flex-start;
  background: var(--color-bg-alt); color: var(--color-primary);
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.course-card p { flex-grow: 1; font-size: 14px; }
.course-meta {
  display: flex; justify-content: space-between; font-size: 13px;
  color: var(--color-muted); font-weight: 600;
  border-top: 1px solid var(--color-border); padding-top: 12px; margin-bottom: 4px;
}
.course-cta { padding-left: 0; }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; } }
.about-text h2 { text-align: left; }
.founder-card {
  background: var(--color-bg-alt); border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 16px;
}
.founder-photo {
  width: 128px; height: 128px; border-radius: 50%;
  margin: 0 auto 18px; overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--color-accent), var(--shadow-pill);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card blockquote { font-size: 16px; font-style: italic; color: var(--color-heading); margin: 0 0 16px; }
.founder-name { font-weight: 700; color: var(--color-heading); margin-bottom: 2px; }
.founder-role { font-size: 13px; color: var(--color-muted); margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--color-bg-alt); text-align: center; }

.testimonial-media-grid {
  max-width: var(--max-width); margin: 36px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
}
@media (min-width: 860px) { .testimonial-media-grid { grid-template-columns: 1fr 1fr; } }

.video-thumb {
  position: relative; display: block; width: 100%;
  border: none; padding: 0; cursor: pointer;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,27,69,0) 40%, rgba(33,27,69,0.6) 100%);
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: transform 0.25s ease;
}
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-caption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  color: #fff; font-weight: 700; font-size: 14px; text-align: left;
}

.testimonial-media-grid .testimonial-slider { max-width: none; margin: 0; }
.testimonial-slider {
  max-width: 680px; margin: 32px auto 0;
  display: flex; align-items: center; gap: 12px;
}
.ts-track { overflow: hidden; flex: 1; position: relative; min-height: 140px; }
.ts-item {
  margin: 0; padding: 0;
  opacity: 0; position: absolute; inset: 0;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: center;
}
.ts-item.active { opacity: 1; position: relative; }
.ts-item p { font-size: 17px; color: var(--color-heading); font-style: italic; }
.ts-item footer { font-size: 13px; color: var(--color-muted); font-weight: 600; }
.ts-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card); font-size: 20px; color: var(--color-primary);
  flex-shrink: 0; transition: background 0.15s ease;
}
.ts-arrow:hover { background: var(--color-bg-alt); }
.ts-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); border: none; padding: 0; }
.ts-dot.active { background: var(--color-primary); width: 22px; border-radius: var(--radius-pill); transition: width 0.2s ease; }

/* ============================================================
   Our Classrooms slider
   ============================================================ */
.classrooms {
  background: var(--color-bg-alt);
  text-align: center;
  overflow: hidden;
}
.classrooms-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}
.classrooms-slider {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cr-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-md);
}
.cr-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.cr-slide {
  flex: 0 0 100%;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 5;
  background: #ddd;
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) {
  .cr-slide { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (min-width: 1024px) {
  .cr-slide { flex: 0 0 calc((100% - 48px) / 4); }
}
.cr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.cr-slide:hover img { transform: scale(1.04); }
.cr-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cr-arrow:hover {
  background: var(--color-bg);
  transform: scale(1.06);
}
.cr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.cr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.cr-dot.active {
  background: var(--color-accent);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-columns {
  max-width: 900px; margin: 32px auto 0;
  display: grid; grid-template-columns: 1fr; gap: 8px 40px;
}
@media (min-width: 720px) { .faq-columns { grid-template-columns: 1fr 1fr; } }
.faq-columns .reveal:nth-child(2) { transition-delay: 0.12s; }
.faq-list { margin: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--color-heading);
  padding: 20px 4px;
}
.faq-icon { color: var(--color-accent); font-size: 20px; font-weight: 700; transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 20px; margin: 0; font-size: 15px; }

/* ============================================================
   Video modal
   ============================================================ */
.video-modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,12,35,0.75);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.video-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.video-modal {
  position: fixed; top: 50%; left: 50%; z-index: 301;
  width: min(92vw, 900px);
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.video-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.video-modal-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: -46px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; border: none; font-size: 14px;
  transition: background 0.15s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.28); }

/* ============================================================
   Book demo form
   ============================================================ */
.book-demo { position: relative; overflow: hidden; background: var(--color-heading); }
.book-demo-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 800px) { .book-demo-inner { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.book-demo-copy .kicker { color: #FFD9B0; }
.book-demo-copy h2 { text-align: left; color: #fff; }
.book-demo-copy p { color: rgba(255,255,255,0.75); }

.visit-card {
  margin-top: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.visit-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }
.visit-card-info { padding: 20px 22px 4px; }
.visit-card-info h3 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.visit-card-info p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 10px; }
.visit-card-link { display: inline-block; color: var(--color-accent); font-weight: 700; font-size: 13.5px; margin-bottom: 18px; transition: opacity 0.15s ease; }
.visit-card-link:hover { opacity: 0.8; }
.visit-card-map { height: 150px; }
.visit-card-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9); }

.trust-strip-dark { margin-top: 20px; }
.trust-pill-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(6px);
}

.demo-form { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-pill); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--color-heading); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 14px; font-family: inherit; font-size: 15px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-bg-alt); color: var(--color-heading);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus { border-color: var(--color-primary); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #E0483E; }
.field-error { display: block; font-size: 12px; color: #E0483E; margin-top: 4px; min-height: 14px; }
.form-note { font-size: 12px; color: var(--color-muted); margin: 10px 0 0; text-align: center; }
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; text-align: center; min-height: 20px; }
.form-status.success { color: #1E8E5A; }
.form-status.error { color: #E0483E; }

/* ============================================================
   Results page â€” stat tiles, class performance, closing CTA
   ============================================================ */
.results-stats-section { background: var(--color-bg); }
.stat-tiles-grid {
  max-width: var(--max-width); margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (min-width: 768px) { .stat-tiles-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-tile {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.stat-tile-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.stat-tile-num { font-size: 34px; }
.stat-tile-label { display: block; font-size: 13px; color: var(--color-muted); font-weight: 600; margin-top: 6px; }
.stat-tile.st-1 .stat-tile-num { color: var(--color-primary); }
.stat-tile.st-2 .stat-tile-num { color: var(--color-accent); }
.stat-tile.st-3 .stat-tile-num { color: #1E8E5A; }
.stat-tile.st-4 .stat-tile-num { color: var(--color-primary); }
.stat-tiles-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.stat-tiles-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.stat-tiles-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.stat-tiles-grid .reveal:nth-child(4) { transition-delay: 0.26s; }

.class-results-section { background: var(--color-bg-alt); }

.results-cta-section { background: var(--color-bg); }
.results-cta-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--color-heading), #2d2560);
  border-radius: var(--radius-lg); padding: 48px 32px;
  box-shadow: var(--shadow-pill);
}
.results-cta-card .kicker { color: #FFD9B0; }
.results-cta-card h2 { color: #fff; }
.results-cta-sub { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; overflow: hidden; background: #17133A; color: rgba(255,255,255,0.75); padding: 60px 20px 0; }
.footer-top {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.2fr 0.8fr 0.8fr 1.1fr; } }
.footer-col h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.logo-footer { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.footer-contact li, .footer-links li { margin-bottom: 12px; display: flex; gap: 8px; align-items: flex-start; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-accent); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; height: 140px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.footer-quick-copy { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-quick-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-whatsapp, .footer-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; border-radius: var(--radius-pill);
  padding: 11px 18px; transition: transform 0.15s ease, background 0.2s ease;
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb958; transform: translateY(-1px); }
.footer-call-btn { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.footer-call-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.footer-bottom {
  max-width: var(--max-width); margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}