/* ════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════ */
:root {
  --red: #e01a2d;
  --red-dark: #b5121e;
  --red-light: #ff3347;
  --red-pale: #fff0f1;
  --white: #ffffff;
  --off: #f7f8fc;
  --light: #f0f2f8;
  --border: #e8eaf0;
  --text: #0f1320;
  --muted: #6b7280;
  --navy: #0f1c3f;
  --gold: #f59e0b;
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Raleway', sans-serif;
  --shadow: 0 4px 24px rgba(224, 26, 45, .10);
  --shadow-lg: 0 12px 48px rgba(224, 26, 45, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--fb);
  overflow-x: hidden;
  padding-top: 142px;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#navbar {
  background: rgba(255, 255, 255, 0.97);
  padding: 0 56px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-emblem {
  width: 38px;
  height: 38px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-logo-emblem svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.nav-logo-text {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}

.nav-logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .5px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all .25s;
}

.nav-links a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-has-dd {
  position: relative;
}

.nav-has-dd > a .dd-arrow {
  vertical-align: middle;
  margin-left: 2px;
  transition: transform .25s;
}

.nav-has-dd:hover > a .dd-arrow {
  transform: rotate(180deg);
}

.nav-has-dd::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dd {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 300px;
  padding: 8px 0;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(15,28,63,.18);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 100;
}

.nav-has-dd:hover .nav-dd {
  opacity: 1;
  visibility: visible;
}

.nav-dd a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  letter-spacing: normal !important;
  white-space: nowrap !important;
  transition: background .2s, color .2s !important;
}

.nav-dd a:hover {
  color: var(--red) !important;
  background: rgba(224,26,45,.06) !important;
  border-bottom: none !important;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1101;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-cta {
  background: var(--red);
  color: white;
  padding: 10px 24px;
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  left: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 26, 45, .15) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 26, 45, .1) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  display: inline-block;
  background: rgba(224, 26, 45, .2);
  border: 1px solid rgba(224, 26, 45, .4);
  padding: 4px 16px;
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ff8a94;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
}

.page-hero h1 span {
  background: linear-gradient(135deg, #ff4455, #ff8a94, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: rgba(255, 255, 255, .55);
  font-size: .95rem;
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   SHARED SECTION UTILITIES
════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.sec-pad {
  padding: 96px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.sec-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  padding: 4px 16px;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-left: 3px solid var(--red);
}

.sec-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
}

.sec-title span {
  color: var(--red);
}

.sec-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   JOURNEY / MISSION TIMELINE
════════════════════════════════════════════════ */
#journey {
  background: var(--off);
  position: relative;
  overflow: hidden;
}

#journey::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,26,45,.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   TRAJECTORY TIMELINE — Cinematic Lifecycle
════════════════════════════════════════════════ */
.traj-section {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #080c1a 0%, #0f1c3f 30%, #162a5e 60%, #0a1628 100%);
  overflow: hidden;
  min-height: 100vh;
}

.traj-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(224,26,45,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245,158,11,.05) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(224,26,45,.06) 0%, transparent 50%);
  pointer-events: none;
}

.traj-section .sec-title {
  color: white;
}
.traj-section .sec-title span {
  color: var(--red);
}
.traj-section .sec-sub {
  color: rgba(255,255,255,.6);
}
.traj-section .sec-tag {
  background: rgba(224,26,45,.15);
  color: var(--red);
}

/* ── Journey Orbit Rings ── */
#journey-orbit-ring {
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
}
#journey-orbit-ring .jr-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: journeyOrbitSpin 30s linear infinite;
}
#journey-orbit-ring .jr-o1 {
  border: 1px solid rgba(224,26,45,.1);
  width: 100%;
  height: 100%;
}
#journey-orbit-ring .jr-o2 {
  border: 1px solid rgba(245,158,11,.08);
  width: 72%;
  height: 72%;
  margin: 14%;
  animation-duration: 22s;
  animation-direction: reverse;
}
#journey-orbit-ring .jr-o3 {
  border: 1px solid rgba(255,255,255,.06);
  width: 42%;
  height: 42%;
  margin: 29%;
  animation-duration: 14s;
}
#journey-orbit-ring .jr-dot {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: -3px;
}
#journey-orbit-ring .jr-o1 .jr-dot {
  background: #e01a2d;
  box-shadow: 0 0 10px rgba(224,26,45,.7);
}
#journey-orbit-ring .jr-o2 .jr-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245,158,11,.5);
}
#journey-orbit-ring .jr-o3 .jr-dot {
  background: rgba(255,255,255,.4);
  box-shadow: 0 0 6px rgba(255,255,255,.2);
}

@keyframes journeyOrbitSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  #journey-orbit-ring { display: none; }
}

/* ── Trajectory Path Background ── */
.traj-path-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.traj-path-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tp-glow { animation: tpGlowPulse 4s ease-in-out infinite; }
@keyframes tpGlowPulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

.tp-dash {
  animation: tpDashDraw 4s ease-in-out infinite;
}
@keyframes tpDashDraw {
  0% { stroke-dashoffset: 600; }
  50% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 600; }
}

.tp-rocket {
  offset-path: path("M 80 520 C 200 540, 280 380, 380 340 S 580 200, 720 180 S 940 100, 1140 80 S 1280 60, 1360 60");
  offset-distance: 0%;
  transition: offset-distance .15s linear;
}
.tp-rocket rect { filter: drop-shadow(0 0 6px rgba(255,255,255,.3)); }

.tp-label {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .25em;
  fill: rgba(255,255,255,.15);
}
.tp-launch { text-anchor: start; }
.tp-orbit { text-anchor: end; fill: var(--gold); }

.traj-section .flight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,26,45,.12);
  color: var(--red);
  padding: 5px 16px;
  border-radius: 100px;
  border-left: none;
  width: auto;
}
.flight-label {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Waypoint Points + Flyouts ── */
.tp-points {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.tp-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.tp-dot {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(15,28,63,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .7s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
  z-index: 2;
}
.tp-point.unlocked .tp-dot {
  width: 36px;
  height: 36px;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 30px rgba(224,26,45,.4);
}
.tp-point.unlocked .tp-dot {
  animation: tpUnlockBounce .5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes tpUnlockBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.tp-point:last-child.unlocked .tp-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 30px rgba(245,158,11,.4);
}
.tp-dot-num {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 800;
  color: rgba(255,255,255,.35);
  line-height: 1;
  transition: color .5s;
}
.tp-point.unlocked .tp-dot-num {
  font-size: .85rem;
  color: white;
}

/* ── Flyout ── */
.tp-flyout {
  position: absolute;
  top: 50%;
  left: 38px;
  transform: translateY(-50%);
  width: 200px;
  padding: 10px 14px;
  background: rgba(15,28,63,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.tp-point.unlocked .tp-flyout {
  opacity: 1;
  visibility: visible;
  left: 44px;
  border-color: rgba(224,26,45,.15);
}

.tp-flyout-title {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.tp-flyout-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .traj-path-wrap { opacity: .35; }
  .tp-dot { width: 28px; height: 28px; }
  .tp-dot-num { font-size: .7rem; }
  .tp-flyout { display: none; }
  .tp-point.unlocked .tp-flyout {
    display: block;
    position: fixed;
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100vw - 40px);
    max-width: 280px;
    z-index: 99;
  }
}

/* ════════════════════════════════════════════════
   WHY CHOOSE
════════════════════════════════════════════════ */
#why {
  background: white;
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-bigtext {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 14px 0 22px;
}

.why-bigtext span {
  color: var(--red);
}

.why-body {
  color: var(--muted);
  line-height: 1.8;
  font-size: .93rem;
  margin-bottom: 28px;
}

.why-pts {
  list-style: none;
}

.why-pt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
  transition: all .3s;
}

.why-pt:last-child {
  border-bottom: none;
}

.why-pt:hover {
  transform: translateX(6px);
}

.why-pt:hover .wp-ic {
  background: var(--red);
}

.why-pt:hover .wp-ic svg {
  fill: white;
}

.wp-ic {
  width: 32px;
  height: 32px;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 8px;
}

.wp-ic svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  display: block;
  transition: fill .35s;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--off);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(224, 26, 45, .15);
}

.why-card:hover .wc-lbl {
  color: rgba(255, 255, 255, .8);
}

.why-card:hover .wc-ic {
  background: rgba(255, 255, 255, .15);
}

.why-card:hover .wc-ic svg {
  fill: white;
}

.wc-ic {
  width: 48px;
  height: 48px;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 12px;
}

.wc-ic svg {
  width: 24px;
  height: 24px;
  fill: var(--red);
  display: block;
  transition: fill .4s;
}

.wc-title {
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.wc-lbl {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
  transition: color .4s;
}

.why-card:nth-child(1) .wc-ic { animation: cardIconFloat 3s ease-in-out infinite; }
.why-card:nth-child(2) .wc-ic { animation: cardIconFloat 3s ease-in-out .6s infinite; }
.why-card:nth-child(3) .wc-ic { animation: cardIconFloat 3s ease-in-out 1.2s infinite; }
.why-card:nth-child(4) .wc-ic { animation: cardIconFloat 3s ease-in-out 1.8s infinite; }

@keyframes cardIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.why-card:hover .wc-ic {
  animation-play-state: paused;
}

/* ════════════════════════════════════════════════
   TOPPERS
════════════════════════════════════════════════ */
#toppers {
  background: var(--off);
}

.toppers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.t-card {
  background: white;
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.t-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(224, 26, 45, .2);
}

.t-card:hover::before {
  transform: scaleX(1);
}

.t-rank {
  font-family: var(--fh);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.t-rank-lbl {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
}

.t-name {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.t-year {
  font-size: .72rem;
  color: var(--muted);
}

.t-badge {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  padding: 3px 11px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: 9px;
}

/* ════════════════════════════════════════════════
   SYLLABUS
════════════════════════════════════════════════ */
#syllabus {
  background: white;
}

.syl-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.syl-subjects {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sub-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s;
}

.sub-row:last-child {
  border-bottom: none;
}

.sub-ic {
  width: 80px;
  height: 38px;
  background: var(--red-pale);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.sub-ic svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  display: block;
}

.sub-info {
  flex: 1;
}

.sub-name {
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.sub-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.sub-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 1.2s ease;
}

.sub-wt {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.syl-panel {
  background: var(--red);
  color: white;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.syl-panel::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.sp-lbl {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  opacity: .7;
  margin-bottom: 10px;
}

.sp-title {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.sp-list {
  list-style: none;
}

.sp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .88rem;
  opacity: .9;
}

.sp-list li::before {
  content: '→';
  opacity: .55;
  flex-shrink: 0;
}

.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  background: white;
  color: var(--red);
  padding: 12px 22px;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .05em;
  transition: all .3s;
}

.sp-cta:hover {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════
   FACULTY
════════════════════════════════════════════════ */
#faculty {
  background: var(--off);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fac-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .35s;
}

.fac-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.fac-top {
  height: 170px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  position: relative;
}

.fac-badge {
  position: absolute;
  bottom: -1px;
  right: 14px;
  background: var(--navy);
  color: white;
  padding: 4px 12px;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.fac-body {
  padding: 22px 20px;
}

.fac-name {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 3px;
}

.fac-role {
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.fac-desc {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

.fac-exp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--light);
  padding: 4px 11px;
}

/* ════════════════════════════════════════════════
   PROGRAMS
════════════════════════════════════════════════ */
#programs {
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prog-card {
  border: 2px solid var(--border);
  padding: 38px 30px;
  position: relative;
  transition: all .35s;
  background: white;
}

.prog-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.prog-card.featured {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.prog-card.featured .prog-sub {
  color: rgba(255, 255, 255, .75);
}

.prog-card.featured .prog-feature {
  border-color: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
}

.prog-card.featured .prog-feature::before {
  color: rgba(255, 255, 255, .6);
}

.prog-ribbon {
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--gold);
  color: var(--text);
  padding: 4px 13px;
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.prog-icon {
  font-size: 1.9rem;
  margin-bottom: 18px;
  display: block;
}

.prog-tag {
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 7px;
}

.prog-card.featured .prog-tag {
  color: rgba(255, 255, 255, .55);
}

.prog-title {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.prog-sub {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.prog-features {
  list-style: none;
  margin-bottom: 28px;
}

.prog-feature {
  font-size: .84rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.prog-feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.prog-btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: white;
  padding: 12px;
  font-family: var(--fh);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: all .3s;
}

.prog-btn:hover {
  background: var(--red-dark);
}

.prog-card.featured .prog-btn {
  background: white;
  color: var(--red);
}

.prog-card.featured .prog-btn:hover {
  background: var(--off);
}

/* ════════════════════════════════════════════════
   RANK PREDICTOR
════════════════════════════════════════════════ */
#predictor {
  background: var(--off);
}

.pred-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.pred-left {
  padding: 56px 48px;
}

.pred-left h3 {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 7px;
}

.pred-left p {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pred-submit {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 13px;
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .3s;
  margin-top: 7px;
}

.pred-submit:hover {
  background: var(--red-dark);
}

.pred-right {
  background: var(--red);
  padding: 56px 48px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pred-placeholder {
  opacity: .6;
}

.pred-placeholder .ph-icon {
  font-size: 3.6rem;
  margin-bottom: 14px;
  display: block;
}

.pred-placeholder p {
  font-size: .88rem;
  line-height: 1.6;
}

#pred-result {
  display: none;
}

.pred-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .35);
  margin: 0 auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 40px rgba(255, 255, 255, .08);
}

.pred-rank {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.pred-rlbl {
  font-size: .62rem;
  opacity: .7;
  letter-spacing: .2em;
  margin-top: 3px;
}

.pred-msg {
  font-size: .88rem;
  opacity: .85;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pred-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  padding: 11px 22px;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: all .3s;
}

.pred-wa:hover {
  transform: scale(1.03);
}

/* ════════════════════════════════════════════════
   CTA TRUST ROW
════════════════════════════════════════════════ */
.cta-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 36px;
}

.ct-item {
  text-align: center;
}

.ct-num {
  font-family: var(--fh);
  font-size: 1.9rem;
  font-weight: 900;
  color: #ff6e7a;
}

.ct-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn-hero-ghost {
  background: transparent;
  color: white;
  padding: 15px 28px;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}

.btn-hero-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, .1);
}

/* ════════════════════════════════════════════════
   CONTENT SECTION
════════════════════════════════════════════════ */
.content-section {
  background: white;
}

.content-section.alt {
  background: var(--off);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse>* {
  direction: ltr;
}

.content-text h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}

.content-text h2 span {
  color: var(--red);
}

.content-text p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  margin-top: 20px;
}

.content-text ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.content-text ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

.content-visual {
  background: var(--red);
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-visual::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.content-visual .cv-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  position: relative;
}

.content-visual h3 {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  position: relative;
}

.content-visual p {
  opacity: .85;
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 12px;
  position: relative;
}

/* ════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: all .35s;
  background: white;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.fc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.fc-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.fc-desc {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   DETAIL CARD
════════════════════════════════════════════════ */
.detail-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}

.detail-card.alt {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.detail-card.alt>* {
  direction: ltr;
}

.dc-body {
  padding: 48px;
}

.dc-body h3 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.dc-body h3 span {
  color: var(--red);
}

.dc-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.dc-body ul {
  list-style: none;
}

.dc-body ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
}

.dc-body ul li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
}

.dc-visual {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  min-height: 280px;
}

/* ════════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════════ */
#stats {
  background: var(--red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-col {
  padding: 56px 36px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat-col:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--fh);
  font-size: 3.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-plus {
  color: rgba(255, 255, 255, .6);
}

.stat-lbl {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 10px;
}

.stat-rule {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, .25);
  margin: 12px auto 0;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--off);
  border: 1px solid var(--border);
  padding: 30px 26px;
  position: relative;
  transition: all .35s;
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(224, 26, 45, .2);
  transform: translateY(-4px);
}

.testi-q {
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.testi-text {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: .95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 800;
}

.testi-rank {
  font-size: .72rem;
  color: var(--red);
  font-weight: 600;
}

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-section {
  background: var(--off);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.faq-left h3 {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}

.faq-left h3 span {
  color: var(--red);
}

.faq-left p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 12px 22px;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}

.faq-cta:hover {
  background: var(--red-dark);
  transform: translateX(4px);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: white;
  margin-bottom: 2px;
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--red);
}

.faq-ic {
  width: 26px;
  height: 26px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--red);
  transition: all .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-a {
  max-height: 2000px;
}

.faq-a-inner {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   FORMS
════════════════════════════════════════════════ */
.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group select,
.form-group input,
.form-group textarea {
  border: 1px solid var(--border);
  background: var(--off);
  padding: 10px 13px;
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 13px;
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .3s;
  margin-top: 7px;
}

.form-submit:hover {
  background: var(--red-dark);
}

/* ════════════════════════════════════════════════
   TABLE
════════════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

th {
  background: var(--red);
  color: white;
  padding: 13px 16px;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

tr:nth-child(even) td {
  background: var(--off);
}

tr:hover td {
  background: var(--red-pale);
}

/* ════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════ */
#final-cta {
  background: var(--navy);
  color: white;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 26, 45, .18) 0%, transparent 70%);
}

#final-cta::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 26, 45, .12) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 5px 18px;
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 22px;
}

.cta-title {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}

.cta-title span {
  color: #ff6e7a;
}

.cta-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--red);
  padding: 14px 34px;
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.btn-ghost-w {
  background: transparent;
  color: white;
  padding: 14px 34px;
  font-family: var(--fh);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: all .3s;
}

.btn-ghost-w:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
}

.btn-hero-red {
  background: var(--red);
  color: white;
  padding: 15px 32px;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all .3s;
}

.btn-hero-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224, 26, 45, .5);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: #06090f;
  color: rgba(255, 255, 255, .65);
  padding: 66px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.fb-logo {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.fb-logo span {
  color: var(--red);
}

.fb-desc {
  font-size: .85rem;
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 22px;
}

.fb-social {
  display: flex;
  gap: 9px;
}

.fb-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  font-size: .82rem;
  text-decoration: none;
  font-weight: 700;
  transition: all .3s;
}

.fb-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.fb-social a svg {
  width: 16px;
  height: 16px;
}

.fc-title {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.fc-links {
  list-style: none;
}

.fc-links li {
  margin-bottom: 9px;
}

.fc-links a {
  color: rgba(255, 255, 255, .48);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.fc-links a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: .78rem;
}

.fb-iso {
  font-family: var(--fh);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, .25);
  padding: 4px 14px;
}

/* ════════════════════════════════════════════════
   SKIP TO CONTENT
════════════════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 10000;
  background: var(--red);
  color: white;
  padding: 10px 24px;
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: top .25s;
}

.skip-link:focus {
  top: 0;
}

/* ════════════════════════════════════════════════
   FLOATING WHATSAPP WIDGET
════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════ */
.newsletter {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  left: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 26, 45, .12) 0%, transparent 70%);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter h3 {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.newsletter p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: white;
  font-size: .9rem;
  outline: none;
  font-family: var(--fb);
  transition: border-color .3s;
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form button {
  background: var(--red);
  color: white;
  border: none;
  padding: 13px 28px;
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s;
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

.newsletter-msg {
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

/* ════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
════════════════════════════════════════════════ */
.t-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.t-carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}

.t-carousel-slide {
  min-width: 100%;
  padding: 0 40px;
}

.t-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.t-carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  transition: all .25s;
}

.t-carousel-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.t-carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}

.t-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .3s;
}

.t-carousel-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════
   GOOGLE MAPS
════════════════════════════════════════════════ */
.map-wrap {
  margin-top: 40px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

/* ════════════════════════════════════════════════
   FORM SUCCESS / ERROR MESSAGES
════════════════════════════════════════════════ */
.form-msg {
  display: none;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: .88rem;
  line-height: 1.6;
  border-left: 4px solid;
}

.form-msg.success {
  display: block;
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

.form-msg.error {
  display: block;
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

/* ════════════════════════════════════════════════
   RESULTS CHART
════════════════════════════════════════════════ */
.chart-wrap {
  margin: 48px 0;
  background: white;
  border: 1px solid var(--border);
  padding: 48px;
}

.chart-title {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 28px;
  text-align: center;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: center;
  height: 200px;
  padding: 0 20px;
}

.chart-bar {
  width: 40px;
  background: var(--red);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1.2s ease;
  min-height: 4px;
}

.chart-bar:hover {
  background: var(--red-dark);
}

.chart-bar-lbl {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  font-family: var(--fh);
  font-weight: 700;
}

.chart-bar-val {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--fh);
}

.chart-bars-wrap {
  padding-bottom: 36px;
}

/* ════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 148px;
  right: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(224, 26, 45, .3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all .3s;
}

.back-to-top.vis {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s, transform .6s;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s, transform .6s;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s, transform .6s;
}

.reveal.vis,
.reveal-l.vis,
.reveal-r.vis {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-scale.vis {
  opacity: 1;
  transform: scale(1);
}

[data-count] {
  font-variant-numeric: tabular-nums;
}

.parallax-bg {
  will-change: transform;
  transition: transform .1s linear;
}
.parallax-fg {
  will-change: transform;
  transition: transform .1s linear;
}

.reveal, .reveal-l, .reveal-r, .reveal-scale {
  will-change: opacity, transform;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .syl-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card.alt {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  #navbar {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    gap: 0;
    padding: 80px 30px 30px;
    z-index: 1100;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-has-dd {
    position: static;
  }

  .nav-has-dd::after {
    display: none;
  }

  .nav-dd {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: auto;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    background: transparent;
  }

  .nav-has-dd:hover .nav-dd {
    opacity: 1;
    visibility: visible;
  }

  .nav-dd a {
    font-size: .85rem !important;
    padding: 10px 0 !important;
    white-space: normal !important;
  }

  .container {
    padding: 0 20px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

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

  .syl-layout {
    grid-template-columns: 1fr;
  }

  .syl-panel {
    margin-top: 24px;
  }

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

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

  .pred-wrap {
    grid-template-columns: 1fr;
  }

  .cta-trust {
    flex-wrap: wrap;
    gap: 22px;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .page-hero {
    padding: 80px 0 40px;
  }

  .dc-body {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════════════════════
   GEO / Generative Engine Optimization
   ════════════════════════════════════════════════ */
.tldr-box {
  background: linear-gradient(135deg, #f0f2f8, #e8ecf8);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-radius: 0 8px 8px 0
}

.tldr-label {
  font-family: var(--fh);
  font-weight: 900;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: 6px
}

.tldr-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text)
}

.tldr-stats {
  margin-top: 8px;
  font-size: .85rem;
  color: var(--muted)
}

.tldr-date {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 6px;
  display: block
}

.geo-citation {
  border-left: 4px solid var(--gold);
  background: #fffbeb;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0
}

.geo-citation p {
  font-style: italic;
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--text)
}

.geo-citation footer {
  font-size: .82rem;
  color: var(--muted)
}

.geo-citation cite a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px
}

.geo-definition {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin: 10px 0
}

.geo-definition dt {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy)
}

.geo-definition dd {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.6
}

.geo-stat {
  display: inline-block;
  background: var(--red-pale);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: .85rem;
  margin: 2px
}

.geo-stat .stat-value {
  font-family: var(--fh);
  font-weight: 900;
  color: var(--red)
}

.geo-stat .stat-label {
  color: var(--muted)
}

.last-reviewed {
  font-size: .78rem;
  color: var(--muted);
  padding: 8px 12px;
  background: var(--off);
  border-radius: 4px;
  margin: 16px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border)
}

.last-reviewed .lr-label {
  font-weight: 600
}

figure {
  margin: 24px 0
}

figure img {
  border-radius: 8px;
  max-width: 100%;
  height: auto
}

figure figcaption {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  font-style: italic
}

/* Question-based H2 style */
h2.question-heading {
  color: var(--navy);
  font-size: 1.5rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block
}

/* Speakable regions */
.speakable-headline,
.speakable-summary {
  scroll-margin-top: 80px
}

/* Table GEO styling */
table.geo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0
}

table.geo-table th {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700
}

table.geo-table td {
  padding: 10px 16px;
  border: 1px solid var(--border)
}

table.geo-table tr:nth-child(even) {
  background: var(--off)
}

/* AI-friendly <article> styling */
article.geo-article {
  max-width: 800px;
  margin: 0 auto
}

article.geo-article h2 {
  margin-top: 36px
}

article.geo-article h3 {
  margin-top: 24px
}

article.geo-article p {
  line-height: 1.9;
  margin-bottom: 16px
}

article.geo-article ul,
article.geo-article ol {
  margin: 12px 0 16px 24px;
  line-height: 1.9
}

/* ════════════════════════════════════════════════
   Share Buttons
   ════════════════════════════════════════════════ */
.share-wrap {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border)
}

.share-label {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px
}

.share-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.share-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: var(--fb)
}

.share-btn .share-icon {
  font-size: 1.1rem;
  line-height: 1
}

.share-btn .share-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.share-btn .share-label-text {
  white-space: nowrap
}

.share-whatsapp {
  background: #25d36617;
  color: #075e54;
  border: 1px solid #25d36633
}

.share-whatsapp:hover {
  background: #25d366;
  color: white
}

.share-twitter {
  background: #0000000d;
  color: #1a1a2e;
  border: 1px solid #0000001a
}

.share-twitter:hover {
  background: #1a1a2e;
  color: white
}

.share-facebook {
  background: #1877f217;
  color: #1877f2;
  border: 1px solid #1877f233
}

.share-facebook:hover {
  background: #1877f2;
  color: white
}

.share-linkedin {
  background: #0a66c217;
  color: #0a66c2;
  border: 1px solid #0a66c233
}

.share-linkedin:hover {
  background: #0a66c2;
  color: white
}

.share-telegram {
  background: #0088cc17;
  color: #0088cc;
  border: 1px solid #0088cc33
}

.share-telegram:hover {
  background: #0088cc;
  color: white
}

.share-email {
  background: #6b728017;
  color: #6b7280;
  border: 1px solid #6b728033
}

.share-email:hover {
  background: #6b7280;
  color: white
}

.share-copy {
  background: #f59e0b17;
  color: #92400e;
  border: 1px solid #f59e0b33
}

.share-copy:hover {
  background: #f59e0b;
  color: white
}

.share-copy.copied {
  background: #065f46;
  color: white;
  border-color: #065f46
}

@media(max-width:640px) {
  .share-grid {
    gap: 6px
  }

  .share-btn {
    padding: 7px 10px;
    font-size: .78rem
  }

  .share-btn .share-label-text {
    display: none
  }
}

/* Responsive GEO */
@media(max-width:768px) {
  .geo-stat {
    font-size: .78rem
  }

  h2.question-heading {
    font-size: 1.3rem
  }
}

.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  width: 100px; height: 100px;
  text-decoration: none; transition: all .3s;
  display: flex; align-items: center; justify-content: center
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain }
.whatsapp-float:hover { transform: scale(1.08) }
.whatsapp-tooltip {
  position: absolute; left: 110px; top: 50%; transform: translateY(-50%);
  background: transparent; color: white; padding: 6px 14px;
  border-radius: 6px; font-size: .8rem; font-weight: 600;
  white-space: nowrap; text-shadow: 0 1px 4px rgba(0,0,0,.8);
  pointer-events: none; opacity: 0; transition: opacity .3s
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1 }

/* ════════════════════════════════════════════════
   MOTION ENGINE
   ════════════════════════════════════════════════ */

/* Scroll progress bar */
#gp-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #e01a2d, #f59e0b);
  z-index: 99999;
  transition: width .05s;
  width: 0%
}

/* Levitate animation */
.hero-content {
  animation: heroFloat 4s ease-in-out 2s infinite alternate
}

@keyframes heroFloat {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-8px)
  }
}

/* 3D card tilt */
.j-step,
.why-card,
.prog-card,
.testi-card,
.feature-card,
.stat-col {
  transition: transform .15s ease-out;
  transform: perspective(600px) rotateX(var(--rot-x, 0deg))
}

/* Hero mouse parallax wrapper */
.hero-content,
.slide-controls,
.side-thumbs {
  transition: transform .08s ease-out
}

/* Orbit rings (visible) */
#orbit-ring {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 5;
  pointer-events: none
}

#orbit-ring .or-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbitSpin 25s linear infinite
}

#orbit-ring .or-o1 {
  border: 1px solid rgba(224, 26, 45, .15);
  width: 100%;
  height: 100%
}

#orbit-ring .or-o2 {
  border: 1px solid rgba(245, 158, 11, .12);
  width: 70%;
  height: 70%;
  margin: 15%;
  animation-duration: 18s;
  animation-direction: reverse
}

#orbit-ring .or-o3 {
  border: 1px solid rgba(255, 255, 255, .08);
  width: 40%;
  height: 40%;
  margin: 30%;
  animation-duration: 12s
}

#orbit-ring .or-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: -4px
}

#orbit-ring .or-o1 .or-dot {
  background: #e01a2d;
  box-shadow: 0 0 12px rgba(224, 26, 45, .9)
}

#orbit-ring .or-o2 .or-dot {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, .7)
}

#orbit-ring .or-o3 .or-dot {
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 8px rgba(255, 255, 255, .3)
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg)
  }
}

/* Stats section glow */
#stats {
  position: relative;
  overflow: hidden
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(224, 26, 45, .08) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, .06) 0%, transparent 60%);
  pointer-events: none
}

@media(max-width:768px) {
  #orbit-ring { display: none }
}

/* ════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-phone a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: .82rem;
}
.top-bar-phone a:hover { text-decoration: underline }
.top-bar-badge {
  opacity: .65;
  font-size: .72rem;
}
.top-bar-links {
  display: flex;
  gap: 10px;
}
.top-bar-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .76rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  transition: background .2s;
}
.top-bar-links a:hover { background: var(--red); }

/* ════════════════════════════════════════════════
   SCARCITY BANNER
════════════════════════════════════════════════ */
.scarcity-banner {
  background: linear-gradient(135deg, var(--red), #b5121e);
  color: #fff;
  font-size: .82rem;
  padding: 8px 0;
}
.scarcity-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}
.scarcity-cta {
  color: #fff;
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: .78rem;
  white-space: nowrap;
  transition: background .2s;
}
.scarcity-cta:hover { background: rgba(255,255,255,.35); }
.scarcity-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.scarcity-close:hover { color: #fff; }

/* ════════════════════════════════════════════════
   EXIT-INTENT POPUP
════════════════════════════════════════════════ */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  padding: 40px 36px 28px;
  position: relative;
  text-align: center;
  animation: popIn .35s ease-out;
}
@keyframes popIn {
  from { transform: scale(.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
}
.exit-popup-close:hover { color: var(--text); }
.exit-popup h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.exit-popup h3 span { color: var(--red); }
.exit-popup p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 20px;
}
.exit-popup form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.exit-popup form input {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--fb);
  font-size: .9rem;
  outline: none;
  transition: border .2s;
}
.exit-popup form input:focus { border-color: var(--red); }
.exit-popup form button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--fb);
  transition: background .2s;
}
.exit-popup form button:hover { background: var(--red-dark); }
.exit-popup .exit-popup-wa {
  display: inline-block;
  margin-top: 8px;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  font-size: .88rem;
}
.exit-popup .exit-popup-wa:hover { text-decoration: underline; }
.exit-popup-foot {
  margin-top: 14px;
  font-size: .7rem;
  color: #aaa;
}

/* ════════════════════════════════════════════════
   VIDEO SECTION (homepage)
════════════════════════════════════════════════ */
#video-section {
  background: var(--navy);
  color: #fff;
}
#video-section .sec-tag { color: var(--gold); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.video-card {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s, border-color .3s;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.15);
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.video-card .video-label {
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
}
@media(max-width:640px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   BLOG FEED (homepage)
════════════════════════════════════════════════ */
.blog-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.blog-feed-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.blog-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-feed-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--light);
}
.blog-feed-body {
  padding: 18px;
}
.blog-feed-cat {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--red);
  font-weight: 700;
  font-family: var(--fh);
}
.blog-feed-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.3;
}
.blog-feed-title a {
  color: var(--navy);
  text-decoration: none;
}
.blog-feed-title a:hover { color: var(--red); }
.blog-feed-excerpt {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-feed-meta {
  font-size: .75rem;
  color: #aaa;
  margin-top: 10px;
}
.blog-feed-link {
  display: inline-block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.blog-feed-link:hover { text-decoration: underline; }
@media(max-width:768px) {
  .blog-feed-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   STAR RATINGS (testimonials)
════════════════════════════════════════════════ */
.testi-stars {
  margin: 6px 0 4px;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
}

/* ════════════════════════════════════════════════
   FOUNDER STORY EXTRA
════════════════════════════════════════════════ */
.founder-extra {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--red-pale);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
}

/* Responsive adjustments for top bar + scarcity */
@media(max-width:640px) {
  .top-bar-badge { display: none; }
  .top-bar { font-size: .72rem; padding: 4px 0; }
  .scarcity-banner { font-size: .75rem; padding: 6px 0; }
  .scarcity-cta { font-size: .72rem; padding: 3px 10px; }
  .top-bar-links a { font-size: .7rem; padding: 2px 8px; }
}
.ic-svg{width:1em;height:1em;fill:currentColor;display:inline;vertical-align:-.125em}

/* ── Breadcrumbs ── */
.breadcrumbs{padding:12px 0 0;font-size:.82rem;color:var(--text-light);max-width:1200px;margin:0 auto;width:92%}
.breadcrumbs a{color:var(--red);text-decoration:none}
.breadcrumbs a:hover{text-decoration:underline}
.breadcrumbs span[aria-current="page"]{color:var(--text);font-weight:500}
.bc-sep{margin:0 8px;color:var(--text-light);font-size:1rem}
