/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: var(--sp-3xl);
  overflow: hidden;
  background: var(--navy);
  transition: all 0.5s ease-in-out;
}

.hero.hero--loading {
  visibility: hidden;
}

.hero-stats-strip.hero-stats-strip--loading {
  visibility: hidden;
}

.content-loading {
  visibility: hidden;
}

/* Video Background Base */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6); /* Full solid overlay */
  /* background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 5%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.2) 100%); */
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

/* Video Mode Modifier */
.hero--video {
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 0;
  padding-top: 72px;
}

.hero--video .hero__video,
.hero--video .hero__video-overlay {
  opacity: 1;
  visibility: visible;
}

.hero--video.hero--poster .hero__video {
  opacity: 0;
  visibility: hidden;
}

.hero--video.hero--poster .hero__video-overlay {
  opacity: 1;
  visibility: visible;
  background: rgba(15, 23, 42, 0.28);
}

.hero--video .hero__glow,
.hero--video .hero__grid {
  display: none;
}

.hero--video .hero__content {
  text-align: left;
  max-width: 700px;
  margin-left: 6vw;
  margin-right: auto;
  z-index: 2;
  padding: 0 0 2rem 0;
  background: linear-gradient(135deg, rgba(2,6,23,0.75) 0%, rgba(2,6,23,0.4) 70%, transparent 100%);
  border-radius: 0 24px 24px 0;
  padding: 2.5rem 3rem 2.5rem 2rem;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero--video .hero__eyebrow {
  margin-bottom: 0.8rem;
  animation-name: fadeRight;
}

.hero--video .hero__title {
  animation-name: fadeRight;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.8rem;
  line-height: 1.05;
}

.hero--video .hero__title br:first-of-type {
  display: none;
}

.hero--video .hero__subtitle {
  margin-inline: 0;
  max-width: 520px;
  margin-bottom: 1.5rem;
  animation-name: fadeRight;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}

/* Toggle line breaks based on mode */
.br-video { display: none; }
.hero--video .br-video { display: inline; }
.hero--video .br-standard { display: none; }

.hero--video .hero__cta-wrap {
  align-items: flex-start;
  margin-top: 0;
  gap: 0.75rem;
  animation-name: fadeRight;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero--video .hero__cta-wrap .t-small {
  width: 100%;
  margin-top: 0.25rem;
}

.hero--video .hero__card-wrapper {
  display: none;
}

.hero--video .hero__stats {
  display: none;
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Radial spotlight glow */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__glow::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(27,155,215,0.18) 0%,
    rgba(227,30,36,0.10) 30%,
    transparent 70%
  );
  filter: blur(40px);
}

.hero__glow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(227,30,36,0.12) 0%,
    transparent 65%
  );
  filter: blur(50px);
}

/* Subtle grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding-inline: 1.5rem;
}

.hero__eyebrow {
  margin-bottom: 1.6rem;
  animation: fadeDown 0.7s ease both;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeDown 0.7s 0.15s ease both;
}

.hero__title span.red  { color: var(--red-light); }
.hero__title span.blue { color: #60c9f8; }

.hero__subtitle {
  color: var(--text-soft);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3rem;
  animation: fadeDown 0.7s 0.25s ease both;
}

/* Hero image card */
.hero__card-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero__image-card {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: shadow-breathe 5s ease-in-out infinite;
}

@keyframes shadow-breathe {
  0%, 100% { box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07); }
  50%       { box-shadow: 0 40px 100px rgba(27,155,215,0.2), 0 0 0 1px rgba(27,155,215,0.15); }
}

.hero__image-card-inner {
  width: 100%;
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative inside card */
.hero__card-decoration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(27,155,215,0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(227,30,36,0.12) 0%, transparent 50%);
}

.hero__card-text-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero__card-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero__card-sub {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__card-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.hero__card-icon-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Badge overlay on card — glass pill */
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  white-space: nowrap;
}

/* CTA button — overlaps bottom of card */
.hero__cta-wrap {
  position: relative;
  z-index: 6;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: fadeUp 0.7s 0.55s ease both;
}

/* Floating stats row */
.hero__stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.7s ease both;
}

/* ------updated------- */

/* ── STATS STRIP (below video hero) ── */
.hero-stats-strip {
  background: var(--navy-mid);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.hero-stats-strip__item {
  background: var(--navy-mid);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease;
}

.hero-stats-strip__item:hover {
  background: var(--navy-soft);
}

.hero-stats-strip__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stats-strip__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .hero-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .hero-stats-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats-strip__item {
    padding: 20px 16px;
  }
}

/* ------------------- */
/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.why .section-header__title { color: var(--text-dark); }
.why .section-header__subtitle { color: var(--text-muted); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why__card {
  padding: 2.2rem 2rem;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.why__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-light), var(--blue));
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}

.why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.04);
}

.why__card:hover::after {
  transform: scaleX(1);
}

.why__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.4rem;
}

.why__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.why__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   LEARNING JOURNEY
══════════════════════════════════════════════ */
.journey {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.journey__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(27,155,215,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.journey .section-header__title { color: var(--white); }
.journey .section-header__subtitle { color: var(--text-soft); }

/* Desktop horizontal timeline */
.journey__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}

/* Connecting line */
.journey__timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--red-light) 0%,
    var(--blue) 50%,
    rgba(27,155,215,0.3) 100%
  );
  z-index: 0;
}

.journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.journey__step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
  position: relative;
  flex-shrink: 0;
}

.journey__step:nth-child(1) .journey__step-num {
  background: linear-gradient(135deg, #ef444499, #b91c1c99);
  border-color: rgba(239,68,68,0.4);
  box-shadow: 0 8px 32px rgba(239,68,68,0.3);
}

.journey__step:nth-child(2) .journey__step-num {
  background: linear-gradient(135deg, #f97316aa, #ea580caa);
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 8px 32px rgba(249,115,22,0.25);
}

.journey__step:nth-child(3) .journey__step-num {
  background: linear-gradient(135deg, #1b9bd7aa, #0284c7aa);
  border-color: rgba(27,155,215,0.4);
  box-shadow: 0 8px 32px rgba(27,155,215,0.25);
}

.journey__step:nth-child(4) .journey__step-num {
  background: linear-gradient(135deg, #22c55eaa, #16a34aaa);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 8px 32px rgba(34,197,94,0.25);
}

.journey__step-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.journey__step-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PROGRAMS / BATCHES
══════════════════════════════════════════════ */
.programs {
  background: var(--navy);
  position: relative;
}

.programs__bg-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,155,215,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.programs .section-header__title { color: var(--white); }
.programs .section-header__subtitle { color: var(--text-soft); }

.programs__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Featured batch */
.programs__featured {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 60%, #0f2040 100%);
  border: 1px solid rgba(27,155,215,0.2);
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(27,155,215,0.1);
}

.programs__featured-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,155,215,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.programs__featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(27,155,215,0.15);
  border: 1px solid rgba(27,155,215,0.3);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60c9f8;
  margin-bottom: 1.5rem;
}

.programs__featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.programs__featured-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.programs__featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.programs__tag {
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.programs__featured-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.programs__stat-box {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  text-align: center;
}

.programs__stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.programs__stat-label {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

/* Batch list */
.programs__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.testimonials__bg-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(227,30,36,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .section-header__title { color: var(--white); }
.testimonials .section-header__subtitle { color: var(--text-soft); }

/* Big quote block */
.testimonials__hero-quote {
  background: linear-gradient(145deg, var(--navy-soft), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials__hero-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  color: rgba(27,155,215,0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonials__big-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.testimonials__author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.testimonials__author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}

.testimonials__author-role {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 2px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(145deg, var(--navy) 0%, #0c1a35 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(227,30,36,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__title {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta-section__subtitle {
  color: var(--text-soft);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section__note {
  margin-top: 1.2rem;
  font-size: 13px;
  color: var(--text-soft);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-block: var(--sp-2xl);
}

.footer__brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
  line-height: 1;
}

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

.footer__brand-tagline {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-soft);
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
}

.footer__social-btn:hover {
  background: rgba(227,30,36,0.15);
  border-color: rgba(227,30,36,0.3);
  color: var(--red-light);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--t-fast);
}

.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.footer__contact-icon {
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer__bottom {
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-soft);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 13px;
  color: var(--text-soft);
  transition: color var(--t-fast);
}

.footer__bottom-link:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   UTILITY COLOR CLASSES
══════════════════════════════════════════════ */
.text-red-light  { color: var(--red-light); }
.text-blue-light { color: #60c9f8; }
.text-muted-color { color: var(--text-muted); }
.font-italic     { font-style: italic; }

/* ══════════════════════════════════════════════
   WHY SECTION — ICON COLOR VARIANTS
══════════════════════════════════════════════ */
.why__icon--red {
  background: rgba(227,30,36,0.08);
  border: 1px solid rgba(227,30,36,0.15);
}
.why__icon--red i { color: rgba(227,30,37,0.84); }

.why__icon--blue {
  background: rgba(27,155,215,0.08);
  border: 1px solid rgba(27,155,215,0.15);
}
.why__icon--blue i { color: rgba(27,155,215,0.84); }

.why__icon--yellow {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.15);
}
.why__icon--yellow i { color: rgba(234,179,8,0.84); }

.why__icon--green {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
}
.why__icon--green i { color: rgba(34,197,94,0.84); }

.why__icon--purple {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
}
.why__icon--purple i { color: rgba(168,85,247,0.84); }

.why__icon--rose {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
}
.why__icon--rose i { color: rgba(239,68,68,0.84); }

/* ══════════════════════════════════════════════
   PROGRAM CARD EMOJI — ICON COLOR
══════════════════════════════════════════════ */
.program-card__emoji i { color: var(--white); }

/* ══════════════════════════════════════════════
   SECTION BADGE — display fix
══════════════════════════════════════════════ */
.section-badge--inline {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

/* ══════════════════════════════════════════════
   CTA FORM
══════════════════════════════════════════════ */
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.cta-form__full { grid-column: 1 / -1; }

.cta-form__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  backdrop-filter: blur(8px);
}

.cta-form__input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form__input:focus { border-color: rgba(27,155,215,0.5); }

.cta-form__select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(30,41,59,0.9);
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.cta-form__select:focus { border-color: rgba(27,155,215,0.5); }

.cta-form__btn { width: 100%; }

/* ══════════════════════════════════════════════
   LIGHTBOX CONTENT
══════════════════════════════════════════════ */
#lightboxContent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(90vw, 1080px);
  max-height: 84vh;
  text-align: center;
}

.gallery-lightbox__figure {
  width: 100%;
  margin: 0;
}

.gallery-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  max-height: 72vh;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.gallery-lightbox__img,
.gallery-lightbox__video,
.gallery-lightbox__iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 72vh;
  border: 0;
  object-fit: contain;
}

.gallery-lightbox__iframe {
  /* Embedded players need explicit height; otherwise iframe defaults to a short strip. */
  height: clamp(260px, 56.25vw, 72vh);
  background: #000;
}

.gallery-lightbox__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 2rem;
}

.gallery-lightbox__meta {
  padding-top: 0.9rem;
  text-align: left;
}

.gallery-lightbox__cat {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
}

.gallery-lightbox__caption {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}

.lightbox-placeholder-text {
  color: var(--text-soft);
  font-size: 1rem;
}

.blog-reader__content {
  margin-top: 1rem;
  color: var(--white);
  line-height: 1.75;
  font-size: 1rem;
}

.blog-reader__content p {
  margin: 0 0 1rem;
}

.blog-reader__content h1,
.blog-reader__content h2,
.blog-reader__content h3,
.blog-reader__content h4 {
  margin: 1rem 0 0.6rem;
  color: var(--white);
}

.blog-reader__content ul,
.blog-reader__content ol {
  padding-left: 1.2rem;
}

#blogLightboxContent {
  width: min(94vw, 1120px);
  height: min(88vh, 820px);
  max-height: 88vh;
}

.blog-reader {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.blog-reader__media {
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  min-height: 0;
}

.blog-reader__cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-reader__cover-empty {
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: radial-gradient(circle at 30% 20%, rgba(27,155,215,0.26), rgba(8,14,32,0.92));
}

.blog-reader__body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.45rem 1.6rem 1.45rem;
  background: linear-gradient(180deg, rgba(6,12,30,0.65), rgba(6,12,30,0.92));
}

.blog-reader__meta {
  flex: 0 0 auto;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.95rem;
}

.blog-reader__category {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
}

.blog-reader__title {
  margin: 0.5rem 0 0.35rem;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}

.blog-reader__meta-line {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.blog-reader__content {
  flex: 1;
  min-height: 0;
  margin-top: 0;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-gutter: stable;
  color: var(--white);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  #blogLightboxContent {
    width: min(96vw, 700px);
    height: min(90vh, 760px);
    max-height: 90vh;
  }

  .blog-reader {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 10px;
  }

  .blog-reader__body {
    padding: 1rem;
  }

  .blog-reader__media {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 34vh;
  }

  .blog-reader__cover-image {
    height: 100%;
    min-height: clamp(150px, 24vh, 220px);
  }

  .blog-reader__title {
    font-size: 1.25rem;
  }
}

.empty-state {
  width: 100%;
  padding: 1rem 0.5rem;
  text-align: center;
}

.empty-state__title {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   FOOTER LOGO
══════════════════════════════════════════════ */
.footer__logo-wrap { margin-bottom: 1rem; }

.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer__socials-wrap { margin-top: 1.2rem; }

/* ══════════════════════════════════════════════
   BTN FULL WIDTH
══════════════════════════════════════════════ */
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════
   BLOG VIEW ALL — inline-flex fix
══════════════════════════════════════════════ */
.btn--inline-flex { display: inline-flex; }

.btn--icon-sm svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SECTIONS
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .programs__layout { grid-template-columns: 1fr; }
  .programs__featured { order: -1; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
  .journey__timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .journey__timeline::before { display: none; }
  .journey__step { flex-direction: row; text-align: left; gap: 1.2rem; }
  .journey__step-num { margin-bottom: 0; flex-shrink: 0; width: 60px; height: 60px; font-size: 20px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__hero-quote { padding: 2.2rem 1.8rem; }
  .footer__main { grid-template-columns: 1fr; gap: 2rem; padding-block: var(--sp-xl); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 1rem; }
  .programs__featured-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why__card { padding: 1.6rem 1.4rem; }
  .testimonials__hero-quote { padding: 1.8rem 1.4rem; }
  .hero__card-icons { flex-direction: column; align-items: center; }
  .cta-section__actions { flex-direction: column; }
}
