/* =========================================
   ASPIRE TO SUCCEED — LANDING PAGE STYLES
   Mobile-First · Fully Responsive
   ========================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--navy);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* -------- CSS VARIABLES -------- */
:root {
  --navy: #2D3561;
  --orange: #E84545;
  --electric: #4285F4;
  --sky: #56CCF2;
  --sky-blue: #56CCF2;
  --warm-white: #FAFAFA;
  --cream: #FFF8F3;
  --light-blue: #EEF4FF;
  --text-dark: #1a1e3d;
  --text-mid: #4a5078;
  --text-light: #8892b0;
  --border: rgba(45, 53, 97, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(45, 53, 97, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 53, 97, 0.14);
  --shadow-lg: 0 20px 60px rgba(45, 53, 97, 0.18);
  --shadow-orange: 0 8px 30px rgba(232, 69, 69, 0.35);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --section-pad: clamp(60px, 8vw, 110px);
  --container: 1200px;
}

/* -------- TYPOGRAPHY -------- */
.section-label {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.title-accent {
  color: var(--orange);
}

/* -------- CONTAINER -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 60px);
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border-radius: 50px;
  padding: 14px 28px;
  min-height: 48px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn-lg {
  padding: 16px 36px;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.btn-xl {
  padding: 18px 42px;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #c43232 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 69, 69, 0.45);
}

.btn-orange:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1aa84f 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

/* Ripple effect */
.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  transform: scale(0);
  transition: transform 0.6s ease;
}

.ripple:active::after {
  transform: scale(2);
  transition: 0s;
}

/* Pulse animation */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(232, 69, 69, 0.35);
  }

  50% {
    box-shadow: 0 8px 50px rgba(232, 69, 69, 0.6);
  }
}

.pulse-anim {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  /* width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px); */
  width: 100px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-accent {
  color: var(--sky);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ham-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: all var(--transition);
}

.hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  background: var(--navy);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer.open {
  max-height: 500px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  gap: 0.5rem;
}

.mobile-nav-link {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-cta {
  margin-top: 0.5rem;
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, #1a1f4e 0%, #2D3561 40%, #1e3a6e 70%, #0f2854 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(100px, 15vw, 140px) clamp(16px, 5vw, 60px) clamp(60px, 8vw, 80px);
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* Wave decorations */
.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--sky);
}

.wave-1 {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  animation: wave-drift 12s ease-in-out infinite;
}

.wave-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  animation: wave-drift 16s ease-in-out infinite reverse;
}

.wave-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  animation: wave-drift 20s ease-in-out infinite;
  opacity: 0.04;
}

@keyframes wave-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.hero-logo-wrap {
  margin-bottom: 1.2rem;
}

.hero-logo {
  width: clamp(170px, 14vw, 110px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.badge-star {
  color: gold;
  font-size: 1em;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-highlight {
  color: var(--sky);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(20px, 4vw, 36px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease-in-out infinite;
  margin-top: 4px;
}

@keyframes bounce-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 1;
  }
}

/* ============================================================
   PERSONAL LETTER SECTION
   ============================================================ */
.letter-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, var(--cream) 0%, #fef5ec 50%, #f0f5ff 100%);
  text-align: center;
}

.letter-section .section-label,
.letter-section .section-title {
  text-align: center;
}

.letter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
  text-align: left;
}

.mentor-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: sticky;
  top: 100px;
}

.mentor-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--electric) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(45, 53, 97, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.9);
  position: relative;
}

.mentor-avatar::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(232, 69, 69, 0.25);
}

.avatar-initials {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.avatar-caption {
  text-align: center;
}

.avatar-caption strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.avatar-caption span {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.avatar-badge-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.mini-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--light-blue);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* Letter Card */
.letter-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 69, 69, 0.08);
  position: relative;
}

.letter-open-quote {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.12;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

.letter-body {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.letter-body strong {
  font-style: normal;
  color: var(--navy);
}

.letter-body em {
  color: var(--orange);
  font-style: italic;
}

.letter-sign {
  margin-bottom: 0;
}

/* ============================================================
   WHAT WE PROVIDE
   ============================================================ */
.provide-section {
  padding: var(--section-pad) 0;
  background: #fff;
  text-align: center;
}


/* 6-column grid: each card spans 2 cols — last row has 2 cards centered in 6 cols (cols 2-3 and 4-5) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.features-grid .feature-card {
  grid-column: span 2;
}

/* Last 2 cards: center them by occupying columns 2-4 and 4-6 */
.features-grid .feature-card:nth-child(4) {
  grid-column: 2 / 4;
}

.features-grid .feature-card:nth-child(5) {
  grid-column: 4 / 6;
}


.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--electric));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 69, 69, 0.2);
}

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

.feature-icon {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   MENTOR SECTION
   ============================================================ */
.mentor-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, var(--light-blue) 0%, #fff 60%);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.mentor-card-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Certifications Slider */
.cert-slider-wrap {
  width: 100%;
}

.cert-heading {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.8;
}

.cert-slider {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #1e2a5e 100%);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.cert-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-bottom: 30px; /* Space for dots */
}

.cert-slide.active {
  opacity: 1;
  z-index: 2;
}

.cert-slide img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 4px; /* Shorter radius for realistic docs */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cert-slide img:hover {
  transform: scale(1.05);
}

.cert-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
}

@media (max-width: 500px) {
  .cert-slider {
    height: 380px;
    padding: 1rem;
  }
  .cert-slide img {
    max-height: 280px;
  }
}

.cert-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.cert-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cert-dot.active {
  background: var(--sky);
  width: 18px;
  border-radius: 4px;
}

.cert-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-slider:hover .cert-nav {
  opacity: 1;
}

.cert-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--sky);
}

.cert-prev { left: 12px; }
.cert-next { right: 12px; }

/* Lightbox Utility */
.cert-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  backdrop-filter: blur(10px);
}

.cert-lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: lightbox-zoom 0.3s ease-out;
}

@keyframes lightbox-zoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.mentor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.mentor-badge {
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--electric));
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
}

.mentor-bio {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mentor-bio strong {
  color: var(--navy);
}

.mentor-bio em {
  color: var(--orange);
}

.mentor-quote {
  background: linear-gradient(135deg, var(--navy) 0%, #3d4a8a 100%);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-top: 1.5rem;
  border-left: 4px solid var(--orange);
}

.mentor-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.mentor-quote cite {
  display: block;
  text-align: right;
  font-size: 0.88rem;
  color: var(--sky);
  font-style: normal;
  font-weight: 600;
}

/* Mentor Profile Card */
.mentor-profile-card {
  background: linear-gradient(160deg, var(--navy) 0%, #1e2a5e 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mentor-profile-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--electric);
  opacity: 0.07;
  border-radius: 50%;
}

.mcard-top {
  margin-bottom: 1.5rem;
}

.mcard-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.mcard-initials {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.mcard-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.6;
}

.mcard-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.mcard-role {
  font-size: 0.88rem;
  color: var(--sky);
  font-weight: 500;
}

.mcard-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.mstat {
  text-align: center;
  flex: 1;
}

.mstat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mstat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.3;
}

.mstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.mcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.mcard-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================================
   CLASS STRUCTURE SECTION
   ============================================================ */
.classes-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #1a1f4e 0%, var(--navy) 50%, #1e2a5e 100%);
  text-align: center;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.class-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.class-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.class-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(86, 204, 242, 0.3);
}

.class-card:hover::after {
  transform: scaleX(1);
}

.class-icon {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  display: block;
}

.class-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.class-desc {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.classes-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
  position: relative;
}

.why-accent-strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), var(--electric));
}

.why-container {
  position: relative;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 1.8rem);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 69, 69, 0.25);
}

.why-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c43232);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 69, 69, 0.3);
}

.why-item-text {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: var(--text-mid);
  line-height: 1.7;
}

.why-item-text strong {
  color: var(--navy);
}

.why-closing {
  background: linear-gradient(135deg, var(--navy), #1e2a5e);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.why-closing p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.closing-highlight {
  color: var(--sky);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #1a1f4e 0%, var(--navy) 40%, #1e3a6e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cshape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.cshape-1 {
  width: 500px;
  height: 500px;
  background: var(--electric);
  top: -100px;
  right: -100px;
}

.cshape-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -100px;
  left: -100px;
}

.contact-container {
  position: relative;
  z-index: 1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.5vw, 1.8rem) clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: #fff;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sky);
}

.contact-icon {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}

.contact-value {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.contact-cta-row {
  display: flex;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #12163a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0.9);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--sky);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-location {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: clamp(20px, 4vw, 32px);
  right: clamp(16px, 3vw, 28px);
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1aa84f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, 0.7);
  }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #1a5e30;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #fff;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   REVEAL ANIMATIONS (Scroll-triggered)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet & Below: ≤ 1024px ---- */
@media (max-width: 1024px) {
  .nav-cta {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mentor-card-col {
    order: -1;
  }

  .mentor-profile-card {
    max-width: 480px;
    margin: 0 auto;
  }

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

/* ---- Tablet: 481px–768px ---- */
@media (max-width: 768px) {
  :root {
    --section-pad: clamp(50px, 10vw, 80px);
  }

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

  /* On tablet (2-col layout): override all cards to span 2, last 2 auto */
  .features-grid .feature-card {
    grid-column: span 2;
  }

  .features-grid .feature-card:nth-child(4),
  .features-grid .feature-card:nth-child(5) {
    grid-column: span 2;
  }

  .letter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .letter-avatar-col {
    order: -1;
  }

  .mentor-avatar-wrap {
    position: static;
  }

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

/* ---- Mobile: ≤ 480px ---- */
@media (max-width: 480px) {
  :root {
    --section-pad: clamp(44px, 12vw, 70px);
  }

  /* Navbar */
  .nav-container {
    height: 64px;
  }

  .logo-text {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 90px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-headline {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

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

  .features-grid .feature-card,
  .features-grid .feature-card:nth-child(4),
  .features-grid .feature-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  /* Classes */
  .classes-grid {
    grid-template-columns: 1fr;
  }

  /* Contact cards */
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mentor card */
  .mcard-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .mstat-divider {
    width: 60px;
    height: 1px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 14px;
  }

  .wa-tooltip {
    display: none;
  }
}

/* ---- Very small: ≤ 320px ---- */
@media (max-width: 320px) {
  .hero-headline {
    font-size: 1.5rem;
  }

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

  .hero-badge {
    font-size: 0.68rem;
  }
}

/* ============================================================
   TABLET LANDSCAPE + DESKTOP SHOW NAV
   ============================================================ */
@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HERO ILLUSTRATION (floating, desktop-only)
   ============================================================ */
.hero-illust-wrap {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 18vw, 300px);
  opacity: 0.22;
  pointer-events: none;
  display: none;
  animation: illust-float 6s ease-in-out infinite;
}

.hero-illust-svg {
  width: 100%;
  height: auto;
}

@keyframes illust-float {

  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }

  50% {
    transform: translateY(-50%) translateY(-12px);
  }
}

@media (min-width: 1100px) {
  .hero-illust-wrap {
    display: block;
  }
}

/* ============================================================
   LETTER / PORTRAIT SECTION
   ============================================================ */
.letter-grid--with-avatar {
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
  text-align: left;
}

.mentor-portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: sticky;
  top: 100px;
}

.mentor-portrait {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(45, 53, 97, 0.28);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.portrait-svg {
  width: 100%;
  height: 100%;
}

.portrait-caption {
  text-align: center;
}

.portrait-caption strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.portrait-caption span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.portrait-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .letter-grid--with-avatar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mentor-portrait-wrap {
    position: static;
  }

  .letter-avatar-col {
    order: -1;
  }
}

/* ============================================================
   PREMIUM STEP CARDS — HOW OUR CLASSES WORK
   ============================================================ */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.steps-row--3 {
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
}

.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1rem, 2vw, 1.8rem);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(86, 204, 242, 0.35);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}

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

.step-num-badge {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(232, 69, 69, 0.13);
  border: 1px solid rgba(232, 69, 69, 0.28);
  border-radius: 50px;
  padding: 4px 13px;
  display: inline-block;
  margin-bottom: 1.1rem;
}

.step-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  /* default fallback — overridden per-card via inline style */
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.25), rgba(86, 204, 242, 0.18));
  border: 1.5px solid rgba(86, 204, 242, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

.step-card:hover .step-icon-wrap {
  transform: scale(1.18);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.step-svg {
  width: 30px;
  height: 30px;
  color: var(--sky);
}

.step-title {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Connector lines */
.step-connector-line {
  flex-shrink: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 204, 242, 0.45), rgba(232, 69, 69, 0.45));
  align-self: center;
  position: relative;
  z-index: 1;
}

.step-connector-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid rgba(232, 69, 69, 0.55);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Responsive step cards */
@media (max-width: 1024px) {
  .steps-row--3 {
    max-width: 100%;
  }
}

/* Tablet & mobile: 2-column CSS Grid */
@media (max-width: 768px) {
  .steps-container {
    gap: 1rem;
  }

  .steps-row,
  .steps-row--3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    /* Reset flex properties */
    flex-wrap: unset;
    align-items: unset;
  }

  .step-connector-line {
    display: none;
  }

  .step-card {
    flex: unset;
    /* let grid control sizing */
    min-width: 0;
    /* prevent overflow */
    padding: 1.4rem 1rem;
  }

  .step-num-badge {
    font-size: 0.65rem;
  }

  .step-icon-wrap {
    width: 58px;
    height: 58px;
  }

  .step-svg {
    width: 26px;
    height: 26px;
  }

  .step-title {
    font-size: 0.9rem;
  }

  .testimonials-row {
    grid-template-columns: 1fr !important;
  }

  .testimonial-step-card {
    padding: 1.5rem !important;
  }
}

/* Testimonials Row & Cards */
.testimonials-row {
  margin-top: 2rem;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.testimonial-step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(86, 204, 242, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.testimonial-step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(86, 204, 242, 0.4);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--sky);
  opacity: 0.25;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sky), var(--electric));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-context {
  font-size: 0.75rem;
  color: var(--sky);
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 480px) {

  .steps-row,
  .steps-row--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .step-card {
    padding: 1.2rem 0.75rem;
  }
}

/* ============================================================
   LEAD FORM SECTION (above footer)
   ============================================================ */
.lead-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #1a1f4e 0%, #2D3561 45%, #1e3a6e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lead-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(66, 133, 244, 0.12), transparent),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(232, 69, 69, 0.1), transparent);
}

.lead-container {
  position: relative;
  z-index: 1;
}

.lead-form-wrap {
  max-width: 740px;
  margin: 0 auto;
}

/* ============================================================
   LEAD FORM (shared between section + popup)
   ============================================================ */
.lead-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  text-align: left;
}

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

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

.form-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-req {
  color: var(--orange);
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-input:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

.form-input.error {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 69, 69, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5078' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-error {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 500;
  min-height: 1rem;
}

.form-submit-row {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

.form-submit-row .btn {
  min-width: 240px;
}

.form-success-msg {
  margin-top: 1.2rem;
  padding: 14px 20px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-md);
  color: #1a5e30;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  animation: fade-in-up 0.4s ease forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   POPUP MODAL
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 40, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90svh;
  overflow-y: auto;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}

.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 53, 97, 0.08);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
  border: none;
  font-family: inherit;
}

.popup-close:hover {
  background: var(--orange);
  color: #fff;
}

.popup-header {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 2.5rem) 1rem;
  background: linear-gradient(135deg, #1a1f4e 0%, #2D3561 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.popup-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.popup-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.popup-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.popup-lead-form {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: none;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  background: #fff;
}

/* Prevent body scroll when popup open */
body.popup-open {
  overflow: hidden;
}