* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body { font-family: 'Poppins', sans-serif; color: #242424; background: #fffdfd; overflow-x: hidden; }

:root {
  --navy: #2c2741;
  --blue: #3b57c7;
  --pink: #f17db1;
  --pink-deep: #cf5b93;
  --teal: #18b8c8;
  --gold: #f5a623;
  --light: #fff6fb;
  --muted: #676272;
  --border: #ece3ea;
  --shadow: 0 12px 30px rgba(62, 41, 69, 0.08);
}

h1, h2, h3, h4, .hero-badge, .nav-logo span, .coach-name, .f-logo span {
  font-family: 'Fredoka', sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  box-shadow: 0 8px 22px rgba(44,39,65,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; overflow: visible; }
.nav-logo-mark {
  width: 240px;
  height: 72px;
  object-fit: contain;
  display: block;
  transform: none;
}
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a {
  color: #6b7280;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 7px;
  border-bottom: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-menu a:hover {
  color: #f59e0b;
  background: transparent;
  text-decoration: none;
}
.nav-menu a.is-active {
  color: #f59e0b;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  border-bottom: none;
}
.nav-menu a.is-active:hover {
  color: #f59e0b;
  background: transparent;
}
.mobile-auth-item { display: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.btn-help {
  border: 1.5px solid var(--border);
  background: #fff;
  color: #4a4554;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-help:hover { border-color: var(--pink); color: var(--pink-deep); }
.btn-login {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-login:hover {
  border-color: #c3cada;
  background: #ffffff;
  color: #1f2d62;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 45, 98, 0.12);
}
.login-dropdown {
  position: relative;
  z-index: 2200;
}
.login-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 245px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(62, 41, 69, 0.12);
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  gap: 8px;
}
.login-dropdown.open .login-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.login-dropdown-item {
  border: 1px solid #efe5eb;
  background: linear-gradient(145deg, #ffffff, #fff8fb);
  color: #41394f;
  text-decoration: none;
  min-height: 52px;
  border-radius: 10px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.login-dropdown-item:hover {
  background: #fff7fb;
  color: var(--pink-deep);
  border-color: #f4bfd9;
  box-shadow: 0 10px 20px rgba(62, 41, 69, 0.08);
  transform: translateY(-1px);
}
.login-dropdown-item i {
  width: 28px;
  text-align: center;
  font-size: 14px;
  color: #7c7087;
}
.login-dropdown-copy {
  flex: 1;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  border-left: 1px solid #eadfe8;
}
.btn-enroll-nav {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-enroll-nav:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(75, 85, 99, 0.32);
}
.hamburger { display: none; cursor: pointer; color: var(--navy); font-size: 20px; background: none; border: none; }

#home {
  min-height: calc(100vh + 120px);
  background: #fff;
  display: flex;
  align-items: stretch;
  padding: 94px 0 0;
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
}
#home::before {
  content: none;
}
.hero-inner {
  display: block;
  width: 100%;
  height: calc(100vh - 94px);
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: absolute;
  left: 6%;
  top: 10vh;
  z-index: 4;
  width: min(620px, 58vw);
  color: #ffffff;
}
.hero-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #d8bb7b;
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.06;
  margin-bottom: 14px;
  color: #ffffff;
}
.hero-copy p {
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
}
.hero-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: #c6ab6f;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(241,125,177,0.25);
  color: #57485f;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(113,88,112,0.08);
}
.hero-title {
  font-size: clamp(40px,5.4vw,64px);
  font-weight: 600;
  color: #3a425f;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .hi { color: var(--pink-deep); }
.hero-subtitle {
  color: #5d5768;
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-btns { margin-bottom: 0; }
.btn-main {
  background:#272622;
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.btn-main:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-outline {
  background: rgba(255,255,255,0.74);
  border: 1.5px solid rgba(83,68,84,0.12);
  color: #2d2736;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.btn-outline:hover { border-color: rgba(83,68,84,0.22); background: #fff; }
.hero-stats { display: flex; gap: 36px; }
.hstat .n { font-size: 28px; font-weight: 600; font-family: 'Fredoka', sans-serif; color: #1f1b2c; line-height: 1; }
.hstat .l { font-size: 12px; color: #655c6b; margin-top: 5px; }

.hero-slider {
  width: 100%;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  border: none;
  box-shadow: none;
}
.hero-slider::after {
  content: none;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
}
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.slide.s1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 16, 0.42) 0%, rgba(8, 10, 16, 0.14) 48%, rgba(8, 10, 16, 0.28) 100%);
  pointer-events: none;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(24, 23, 31, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }
.hero-nav:hover {
  background: rgba(24, 23, 31, 0.6);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) scale(1.04);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.hero-dot.is-active {
  width: 28px;
  background: #fff;
  border-color: #fff;
}
.hero-excellence {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 44px));
  background: #f3f4f6;
  border: 1px solid #d8d9df;
  border-bottom: 3px solid #c7a457;
  box-shadow: 0 12px 30px rgba(7, 14, 28, 0.2);
  z-index: 5;
  padding: 12px 18px 10px;
}
.hero-excellence .stats-band-head {
  margin: 0 auto 8px;
}
.hero-excellence .stats-band-head h2 {
  font-size: clamp(17px, 2vw, 28px);
  color: #2f2f2f;
  font-weight: 500;
}
.hero-excellence .stats-band-inner {
  max-width: 100%;
}
.hero-excellence .sband-item {
  padding: 0 12px;
  border-right-color: #d7d8de;
}
.hero-excellence .sband-item .big {
  font-size: 28px;
  color: #2d2d2d;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-excellence .sband-item .desc {
  color: #4f5566;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}
.hero-excellence .sband-item .icon {
  font-size: 18px;
  margin-bottom: 6px;
}

.record-highlight {
  padding: 36px 6% 16px;
  background:
    radial-gradient(circle at 15% 20%, rgba(24,184,200,0.08) 0%, transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(241,125,177,0.1) 0%, transparent 38%),
    #fffdfd;
}
.record-highlight-inner {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #eadfeb;
  background: linear-gradient(130deg, #ffffff 0%, #fff5fb 56%, #eefbff 100%);
  box-shadow: 0 18px 40px rgba(63, 43, 67, 0.08);
  padding: 26px 30px;
}
.record-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff5d8 0%, #ffe8ae 100%);
  border: 1px solid #efdba2;
  color: #6a4a1e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.record-highlight-inner h2 {
  margin-top: 12px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  color: #4b355f;
  font-weight: 600;
}
.record-highlight-inner p {
  margin-top: 10px;
  max-width: 940px;
  font-size: 15px;
  line-height: 1.75;
  color: #62586c;
}
.record-points {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.record-points span {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #e9e1ea;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: #4f435a;
}
.record-points i {
  color: #cf5b93;
}

.video-promo {
  padding: 0;
  background: #ececec;
}
.video-promo-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: none;
  box-shadow: 0 14px 34px rgba(10, 10, 16, 0.16);
  background: #000000;
}
.video-promo-frame {
  position: absolute;
  inset: 0;
  pointer-events: none !important;
}
.video-promo-frame iframe,
.video-promo-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: none;
  object-fit: cover;
  border: 0;
  filter: brightness(0.8) saturate(0.92);
  opacity: 1;
  pointer-events: none !important;
}
.video-promo-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
}
.video-promo-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  pointer-events: none;
}
.video-promo-overlay {
  position: relative;
  z-index: 4;
  width: min(620px, 72%);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 48px;
  background: transparent;
  pointer-events: none;
}
.video-promo-overlay h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
  max-width: 500px;
}
.video-promo-overlay p {
  margin-top: 12px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}
.video-promo-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.video-promo-btn:hover {
  background: #ffffff;
  color: #10131b;
  transform: translateY(-1px);
}

.about-split {
  min-height: auto;
  padding: 112px 6% 56px;
  background: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.about-split::before {
  content: none;
}
.about-split-grid {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 320px);
  gap: 32px;
  align-items: center;
  height: auto;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-kicker {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  color: #d7a548;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 5vw, 40px);
  font-weight:300;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  text-decoration: underline;
  text-decoration-color:#d7a548;
  text-underline-offset: 8px;
  text-decoration-thickness: 4px;
}
.about-copy h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  color: #1c2433;
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about-copy p {
  max-width: 640px;
  font-size: 15px;
  color: #3a4658;
  line-height: 1.58;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
.about-summary {
  font-size: 16px;
  color: #2c3a4d;
  line-height: 1.55;
}
.about-points {
  margin: 10px 0 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.about-point {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #d9e0ea;
}
.about-point h4 {
  color: #b6862f;
  margin-bottom: 2px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}
.about-point p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #3b4658;
}
.about-copy .btn-main { margin-top: 8px; }
.about-media {
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  width: min(100%, 440px);
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 0;
  justify-self: end;
}
.about-media img { width: 100%; height: 100%; min-height: 0; object-fit: contain; display: block; filter: drop-shadow(0 20px 28px rgba(12, 26, 52, 0.2)); }

/* ===== Offer Cards (4 in one row) ===== */
.offer-cards-section {
  padding: 56px 6% 26px;
  background: #f7f7f7;
}

.offer-cards-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.offer-head {
  margin-bottom: 20px;
}

.offer-head .sec-tag {
  color: #1b1b1b;
}

.offer-head .sec-title {
  color: #1b1b1b;
}

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

.offer-card {
  background: #ffffff;
  border: 1px solid #dddfe4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(40, 44, 58, 0.08);
}

.offer-card-media {
  height: 220px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #d7dbe3;
}

.offer-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.offer-card:hover .offer-card-media img {
  transform: scale(1.04);
}

.offer-card h3 {
  margin: 0;
  padding: 14px 14px 6px;
  text-align: center;
  font-size:16px;
  line-height: 1.25;
  color: #101827;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.offer-card p {
  margin: 0;
  padding: 0 14px 14px;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
  color: #808080;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

section { padding: 70px 6%; }
.sec-head { text-align: center; margin-bottom: 46px; }
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(22px,3.5vw,34px);
  font-weight: 700;
  color: #563b72;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.2px;
}
.sec-sub { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 620px; margin: 0 auto; }
.divider { width: 48px; height: 4px; background: linear-gradient(90deg,var(--teal),var(--pink)); border-radius: 2px; margin: 14px auto 0; }

.benefits-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
  padding-top: 26px;
}
.benefits-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 34px;
}
.benefits-head .sec-tag {
  color: #2f5b9a;
}
.benefits-head .sec-title {
  color: #273954;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}
.benefits-head .divider { display: none; }
.benefits-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 26px;
}
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px;
  background: #ffffff;
  border: 1px solid #dde6f2;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(34, 56, 94, 0.08);
}
.benefit-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fc;
  color: #2f6fde;
  font-size: 21px;
  box-shadow: inset 0 0 0 1px #dfe8f5;
}
.benefit-card:nth-child(2) .benefit-icon { color: #7c4fe0; }
.benefit-card:nth-child(3) .benefit-icon { color: #0f9b8e; }
.benefit-card:nth-child(4) .benefit-icon { color: #e58a1f; }
.benefit-card:nth-child(5) .benefit-icon { color: #db2777; }
.benefit-card:nth-child(6) .benefit-icon { color: #2563eb; }
.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3f5f;
  margin-bottom: 6px;
  line-height: 1.24;
  font-family: 'Manrope', sans-serif;
}
.benefit-card p { font-size: 14px; color: #8a96a8; line-height: 1.66; font-weight: 400; }

.stats-band { background: #ffffff; border-top: 1px solid #ebe5ea; border-bottom: 1px solid #ebe5ea; padding: 38px 6%; }
.stats-band-head {
  max-width: 1240px;
  margin: 0 auto 20px;
  text-align: center;
}
.stats-band-head h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px,3.5vw,34px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
  color: #563b72;
}
.stats-band-head .our-word { color: #1f3c88; }
.stats-band-head .excel-word { color: #d97f1a; }
.stats-band-inner { display: flex; justify-content: center; max-width: 1240px; margin: 0 auto; }
.sband-item { flex: 1; text-align: center; padding: 0 28px; border-right: 1px solid #ece8ef; }
.sband-item:last-child { border-right: none; }
.sband-item .big { font-size: 30px; font-weight: 600; color: #1f1b2c; line-height: 1.08; letter-spacing: -0.1px; font-family: 'Fredoka', sans-serif; }
.sband-item .big span { color: var(--teal); }
.sband-item .desc { font-size: 15px; color: #61586a; margin-top: 8px; font-weight: 400; line-height: 1.35; }
.sband-item .icon {
  width: auto;
  height: auto;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #14b5c9;
  background: transparent;
}
.sband-item:nth-child(1) .icon { color: #12a9bf; }
.sband-item:nth-child(2) .icon { color: #2f80ed; }
.sband-item:nth-child(3) .icon { color: #6f56d9; }
.sband-item:nth-child(4) .icon { color: #16a34a; }

#courses {
  min-height: calc(100vh - 94px);
  padding: clamp(52px, 6.2vh, 82px) 4% clamp(52px, 6.2vh, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf6ff 0%, #ecfaf7 52%, #fff5e8 100%);
}
#courses::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(24, 45, 79, 0.08) 0,
      rgba(24, 45, 79, 0.08) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(24, 45, 79, 0.075) 0,
      rgba(24, 45, 79, 0.075) 1px,
      transparent 1px,
      transparent 48px
    );
  z-index: 0;
  pointer-events: none;
}
#courses::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(10, 178, 185, 0.16), transparent 36%),
    radial-gradient(circle at 84% 82%, rgba(245, 166, 35, 0.15), transparent 32%);
  z-index: 0;
  pointer-events: none;
}
#courses .sec-head {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vh, 48px);
  position: relative;
  z-index: 1;
}
#courses .sec-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #122846;
}
#courses .sec-sub { color: #3f5b80; }
.courses-grid {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}
.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(28, 45, 76, 0.12);
  transform: translateZ(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.04s linear,
    box-shadow 0.04s linear;
  transition-delay: 0s !important;
  border: 1px solid #cfdaec;
  display: flex;
  flex-direction: column;
  min-height: 470px;
}
.course-card.fi {
  transition-delay: 0s !important;
}
@media (hover: hover) and (pointer: fine) {
  .course-card:hover {
    transform: translateZ(0) scale(1.04);
    box-shadow: 0 24px 40px rgba(23, 40, 70, 0.18);
    z-index: 3;
  }
  .course-card.fi.in:hover {
    transform: translateZ(0) scale(1.045);
  }
  .courses-grid:hover .course-card:not(:hover) {
    transform: translateZ(0) scale(1);
    box-shadow: 0 18px 34px rgba(28, 45, 76, 0.12);
  }
}
.course-card.pop { border-color: #d7caef; }
.c-head { background: #ffffff; padding: 20px 22px 10px; border-bottom: 1px solid #d8e2f0; min-height: 96px; }
.c-head.mid { background: #ffffff; }
.c-head.elite-head { background: #ffffff; }
.c-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 4px;
  background: transparent;
  color: #1f3e68;
}
.c-badge.hot { background: transparent; color: #1f3e68; }
.course-card:nth-child(1) .c-badge { color: #06a7bf; }
.course-card:nth-child(2) .c-badge,
.course-card:nth-child(2) .c-badge.hot { color: #cf4ea2; }
.course-card:nth-child(3) .c-badge { color: #d48716; }
.course-card:nth-child(4) .c-badge { color: #5660c6; }
.c-name { font-size: 22px; font-weight: 700; color: #27223c; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.4px; min-height: 40px; display: flex; align-items: flex-end; }
.c-name { font-family: 'Manrope', sans-serif; font-weight: 700; }
.c-price { font-size: 34px; font-weight: 700; color: #3f3b67; line-height: 1; margin-bottom: 6px; font-family: 'Fredoka', sans-serif; }
.c-tag { font-size: 12px; color: #64748b; min-height: 24px; }
.c-body {
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-features {
  list-style: none;
  margin-bottom: 14px;
  flex: 1;
}
.c-features li { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: #3a4a6a; line-height: 1.35; min-height: 46px; }
.c-features li:last-child { border-bottom: none; }
.c-features li i { color: #22c55e; font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.btn-enroll {
  width: 100%;
  background: linear-gradient(135deg, #7447ea 0%, #5e3fd9 100%);
  color: #fff;
  padding: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}
.btn-enroll:hover {
  filter: brightness(1.05);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(86, 63, 183, 0.36);
}
.btn-enroll:active {
  transform: scale(0.99);
}

/* ===== Classes & Training Formats ===== */
.bg-2 {
  background:
    radial-gradient(circle at 8% 12%, rgba(114, 164, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(62, 201, 177, 0.13), transparent 32%),
    linear-gradient(180deg, #f4f7fd 0%, #e9eff9 100%);
}
.bg-1 {
  background:
    linear-gradient(rgba(241, 246, 255, 0.86), rgba(241, 246, 255, 0.86)),
    url("../assets/BG_Section/Message_Bg.jpg") center / cover no-repeat;
}
#training-formats.bg-2 {
  background-color: #dfe8fb !important;
  background-image:
    radial-gradient(circle at 10% 8%, rgba(76, 132, 255, 0.3), transparent 36%),
    radial-gradient(circle at 92% 86%, rgba(10, 166, 145, 0.26), transparent 34%),
    linear-gradient(180deg, #e7efff 0%, #d8e4fb 100%) !important;
}
#training-formats.bg-1 {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 0, 0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0, 180, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #171f31 0%, #1d2638 60%, #171f31 100%) !important;
}
.training-formats {
  padding-top: 86px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 94px);
  box-sizing: border-box;
}
.training-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}
.training-particles canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.training-formats > *:not(.training-particles) {
  position: relative;
  z-index: 1;
}
.training-formats::before,
.training-formats::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}
.training-formats::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  opacity: 0.34;
  animation: trainingGridDrift 24s linear infinite;
}
.training-formats::after {
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0 2px, transparent 3px) 0 0 / 220px 220px;
  opacity: 0.24;
  animation: trainingDotFloat 12s ease-in-out infinite alternate;
}

.training-trophy-img {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  opacity: 0.07;
  pointer-events: none;
  animation: trophyFloat 3.5s ease-in-out infinite;
  z-index: 0;
  filter: drop-shadow(0 8px 24px rgba(245,166,35,0.2));
}
@keyframes trainingGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-40px, -40px, 0); }
}
@keyframes trainingDotFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}

@keyframes trophyFloat {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(calc(-50% - 20px)); }
  100% { transform: translateY(-50%); }
}

.training-formats .sec-title {
  color: #f5f7ff;
  font-size: clamp(22px, 2.4vw, 34px);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.training-formats .sec-title span { color: #f1d20d; }
.training-formats .sec-sub {
  color: rgba(233, 239, 255, 0.85);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Card grid */
.training-grid {
  max-width: 1100px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.training-grid::before { display: none; }

.training-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.training-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
}

.training-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,0.34);
  border-color: rgba(241,210,13,0.45);
}

/* Compatibility styles for current training section markup */
.training-node {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(47, 125, 246, 0.15);
  color: #205adf;
  font-size: 22px;
}

.training-card:nth-child(2) .training-node {
  background: rgba(123, 76, 224, 0.15);
  color: #6c34e6;
}

.training-card:nth-child(3) .training-node {
  background: rgba(15, 155, 142, 0.16);
  color: #098a82;
}

.training-card h3 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 33px;
  line-height: 1.15;
  font-family: 'Cormorant Garamond', serif;
}

.training-list {
  margin: 0;
  padding-left: 20px;
}

.training-list li {
  margin: 8px 0;
  color: #3f3f46;
  font-size: 15px;
  line-height: 1.35;
  font-family: 'Poppins', sans-serif;
}

.tc-icon-wrap { margin-bottom: 22px; }

.tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.tc-title {
  font-size: 17px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #14213d;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tc-desc {
  font-size: 13.5px;
  color: #3f5273;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  margin-bottom: 20px;
}

.tc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}

.tc-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #243a5a;
  line-height: 1.4;
}

.tc-list li i {
  font-size: 13px;
  flex-shrink: 0;
}

/* Blue card */
.tc-blue::before { background: linear-gradient(90deg, #1f6fff, #35b4ff); }
.tc-blue .tc-icon { background: rgba(47, 125, 246, 0.2); color: #1f6fff; }
.tc-blue .tc-list li i { color: #2f7df6; }

/* Purple card */
.tc-purple::before { background: linear-gradient(90deg, #7a3df2, #be68ff); }
.tc-purple .tc-icon { background: rgba(123, 76, 224, 0.2); color: #7a3df2; }
.tc-purple .tc-list li i { color: #7b4ce0; }

/* Teal card */
.tc-teal::before { background: linear-gradient(90deg, #0a9f95, #1edbc8); }
.tc-teal .tc-icon { background: rgba(15, 155, 142, 0.2); color: #0a9f95; }
.tc-teal .tc-list li i { color: #0f9b8e; }

/* ===== International Record Banner ===== */
.record-banner {
  padding: 28px 0 34px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.record-banner-headline {
  text-align: center;
  margin-bottom: 12px;
}
.record-banner-headline h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.7vw, 30px);
  letter-spacing: 0.8px;
  font-weight: 800;
  color: #273a64;
}
.record-banner-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #263656;
  background: linear-gradient(130deg, #111a2d 0%, #182743 48%, #1b2f52 100%);
  box-shadow: 0 18px 42px rgba(14, 20, 38, 0.28);
  padding: 14px 18px;
}
.record-banner-media {
  min-height: 0;
  align-self: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0d1220;
  height: 320px;
}
.record-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.record-banner-copy {
  padding: 8px 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.record-banner-line {
  color: #f0f4ff;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.record-banner-copy h3 {
  margin-top: 10px;
  color: #ffdd8f;
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1.25;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.record-banner-copy p {
  margin-top: 8px;
  color: rgba(231, 238, 252, 0.92);
  font-size: 13px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* ===== International Record Holders ===== */
.records-section {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}
.record-feature {
  max-width: 1240px;
  margin: 0 auto 16px;
  border-width: 2px;
  border-color: #f0d8aa;
}
.records-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.record-card {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid #f1e3cc;
  background: linear-gradient(145deg, #fffdf8 0%, #fff8ea 100%);
  box-shadow: 0 8px 20px rgba(73, 52, 24, 0.08);
}
.record-image {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #ecd9b8;
  background: #fff;
}
.record-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.record-card h3 {
  font-size: 18px;
  color: #4a3d2a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.record-card p {
  font-size: 13px;
  color: #645641;
  line-height: 1.72;
}

/* ===== World Record Achievers ===== */
.wr-section {
  padding: 80px 5% 90px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
  position: relative;
  overflow: hidden;
}

.wr-trophy-img {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  pointer-events: none;
  animation: trophyFloat 3.5s ease-in-out infinite;
  z-index: 0;
  filter: drop-shadow(0 8px 24px rgba(245,166,35,0.4));
}

.wr-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.wr-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #9a6c00;
  background: #fff8e1;
  border: 1px solid #f0d070;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wr-head h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #1a2540;
  line-height: 1.15;
  margin-bottom: 12px;
}

.wr-head h2 span { color: var(--gold); }

.wr-head p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Grid */
.wr-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.wr-card {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* Photo */
.wr-photo {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f1f3f6;
}

.wr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Support current world-record markup that uses .wr-media */
.wr-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f1f3f6;
}

.wr-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wr-copy {
  padding: 14px 16px 16px;
}

.wr-copy h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 18px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.wr-sub {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.35;
  font-family: 'Poppins', sans-serif;
}

.wr-meta {
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
}

.wr-meta p {
  margin: 3px 0;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.wr-meta p span {
  color: #111827;
  font-weight: 600;
}

.wr-photo-overlay { display: none; }

.wr-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

/* Body */
.wr-body {
  padding: 14px 16px 16px;
}

.wr-cat-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 0;
  background: #fff3cd;
  color: #8a6000;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wr-name {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 12px;
  line-height: 1.25;
}

/* Stats */
.wr-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #f0f2f5;
  padding-top: 12px;
}

.wr-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.wr-stat i {
  font-size: 11px;
  color: #9ca3af;
  width: 13px;
  flex-shrink: 0;
}

#why {
  min-height: auto;
  padding: 34px 6% 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
}
#why .sec-head {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
#why .sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fdf2d9;
  border: 1px solid #f2d8a5;
  color: #a85f06;
  font-size: 12px;
  letter-spacing: 0.2px;
  font-weight: 500;
}
#why .sec-title {
  margin-top: 16px;
  color: #1b1b1b;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}
#why .sec-title span { color: #1b1b1b; }
#why .divider { display: none; }
#why .sec-sub {
  color: #6d7c91;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.52;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.why-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.why-card {
  background: #fbfbfb;
  border-radius: 16px;
  padding: 15px 15px;
  text-align: left;
  border: 1px solid #e7e7e7;
  transition: all 0.22s;
  min-height: 150px;
  backdrop-filter: none;
}
.why-card:hover { border-color: #b2c7e9; box-shadow: 0 12px 28px rgba(47, 76, 126, 0.12); transform: translateY(-3px); }
.why-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eef3fb 0%, #dde8f8 100%);
  border: 1px solid #c8d8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 18px;
  color: #2b5dc1;
  transition: 0.2s;
}
.why-icon.tone-gold   { background: linear-gradient(145deg, #fef9ec, #fdefc8); border-color: #f5d87a; }
.why-icon.tone-gold i { color: #c47a0a; }
.why-icon.tone-blue   { background: linear-gradient(145deg, #eff4ff, #d9e5ff); border-color: #a3bfff; }
.why-icon.tone-blue i { color: #2b63ea; }
.why-icon.tone-teal   { background: linear-gradient(145deg, #edfaf8, #c8f0ea); border-color: #82d9cc; }
.why-icon.tone-teal i { color: #0f9d84; }
.why-icon.tone-purple { background: linear-gradient(145deg, #f5eeff, #e4d4ff); border-color: #c09aff; }
.why-icon.tone-purple i { color: #7d3beb; }
.why-icon.tone-red    { background: linear-gradient(145deg, #fff0f3, #ffd6de); border-color: #ffa8b8; }
.why-icon.tone-red i  { color: #e11d48; }
.why-icon.tone-green  { background: linear-gradient(145deg, #edfaf3, #c8f0d8); border-color: #80d9aa; }
.why-icon.tone-green i { color: #12904a; }
.why-card:hover .why-icon { transform: translateY(-1px); }
.why-title {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
}
.why-text {
  font-size: clamp(13px, 0.9vw, 15px);
  color: #73839b;
  line-height: 1.45;
  margin-left: 50px;
}

#gallery {
  min-height: 100vh;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#gallery .sec-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}
#gallery .sec-tag {
  color: #a47420;
  letter-spacing: 1.6px;
}
#gallery .sec-title {
  color: #111827;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
}
#gallery .divider {
  background: linear-gradient(90deg, #0f8f95 0%, #c48b2a 100%);
}
#gallery .sec-sub {
  color: #354155;
  font-size: 16px;
  line-height: 1.55;
}
.gallery-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.gitem {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 8px solid #ffffff;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 28px rgba(72, 62, 44, 0.12);
}
.gitem.portrait { aspect-ratio: 16 / 10; }
.gitem:hover {
  box-shadow: 0 18px 38px rgba(72, 62, 44, 0.18);
  transform: translateY(-5px);
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
  border-radius: 0;
}
.gitem:hover img {
  transform: scale(1.05);
}
.gcap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, rgba(16, 21, 42, 0) 0%, rgba(16, 21, 42, 0.78) 64%, rgba(16, 21, 42, 0.9) 100%);
}
.gcap p {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.gcap small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(237, 244, 255, 0.92);
  line-height: 1.4;
}
.gallery-note { text-align: center; margin-top: 16px; font-size: 13px; color: #6a4676; }
.gallery-note a { color: #d05395; text-decoration: none; }

#coaches { background: linear-gradient(180deg, #fff7fb 0%, #fdfcff 100%); }
.coaches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.coach-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 16px;
  text-align: left;
  border: 1px solid #efe7ec;
  transition: all 0.25s;
  box-shadow: 0 8px 18px rgba(66,44,70,0.05);
  position: relative;
  overflow: hidden;
}
.coach-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f2b35a 0%, #eb7da9 52%, #67c5d5 100%);
}
.coach-card:hover { border-color: #e3bfd4; box-shadow: 0 16px 30px rgba(66,44,70,0.08); transform: translateY(-5px); }
.coach-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.coach-av {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #2d2736;
  font-family: 'Fredoka', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.coach-av.sun { background: linear-gradient(135deg, #ffe4a6 0%, #ffd07a 100%); }
.coach-av.mint { background: linear-gradient(135deg, #dff7ef 0%, #bfeeda 100%); }
.coach-av.berry { background: linear-gradient(135deg, #f4dcff 0%, #e7c3fb 100%); }
.coach-av.sky { background: linear-gradient(135deg, #dbf5ff 0%, #bdeaf7 100%); }
.coach-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff2f8;
  border: 1px solid #efd7e3;
  color: #6a556b;
  font-size: 10px;
  font-weight: 500;
}
.coach-line {
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2b35a 0%, #eb7da9 65%, #67c5d5 100%);
  margin-bottom: 10px;
}
.coach-name { font-size: 18px; font-weight: 500; color: #47345f; margin-bottom: 4px; }
.coach-ttl { font-size: 10px; color: #8a5d86; font-weight: 500; margin-bottom: 8px; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.5px; }
.coach-copy { font-size: 12px; color: #65606d; line-height: 1.56; margin-bottom: 10px; }
.coach-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #4c4258;
  font-weight: 500;
  padding-top: 9px;
  border-top: 1px solid #f0e8ee;
}
.ctags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-start; }
.ctag { background: #f7f1f8; color: #675b74; font-size: 9px; font-weight: 500; padding: 5px 8px; border-radius: 999px; }

#testimonials {
  min-height: 72vh;
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.94)),
    url("../assets/BG_Section/Message_Bg.jpg") center / cover no-repeat;
  text-align: center;
}
#testimonials .sec-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
#testimonials .sec-tag {
  color: #b99a57;
  letter-spacing: 0.8px;
}
#testimonials .sec-title {
  color: #030712;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}
#testimonials .sec-sub {
  max-width: 620px;
  margin: 18px auto 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.5;
}
.t-grid {
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
  padding: 18px 28px 48px;
}
.t-track {
  --testimonial-gap: 16px;
  --testimonial-card: calc((100% - (var(--testimonial-gap) * 2)) / 3);
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.t-card {
  flex: 0 0 var(--testimonial-card);
  background: #fff;
  border-radius: 0;
  padding: 18px 24px 24px;
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.26s ease;
  min-height: 300px;
  position: relative;
  text-align: center;
  transform: translateZ(0) scale(1);
  transform-origin: center center;
  z-index: 1;
  cursor: pointer;
  will-change: transform;
}
.t-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #e6dcc5;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
  z-index: 20;
}
.t-card.fi.in:hover {
  transform: translateY(-8px) scale(1.04);
}
.t-photo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: -2px auto 12px;
  background: linear-gradient(135deg, #f1f1f1 0%, #d9d9d9 100%);
  border: 1px solid #ededed;
}
.t-quote {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 36px;
  color: #c5ab6d;
  line-height: 1;
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
}
.t-author {
  display: block;
  margin-bottom: 10px;
}
.t-name {
  font-size: 15px;
  font-weight: 800;
  color: #121212;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 6px;
}
.t-info {
  font-size: 12px;
  color: #777;
}
.t-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.t-stars i {
  color: #ffb31a;
  font-size: 12px;
}
.t-text {
  font-size: 13px;
  line-height: 1.42;
  color: #171717;
  max-width: 290px;
  margin: 0 auto;
}

#enroll {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 76, 92, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.18), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(245, 166, 35, 0.18), transparent 28%),
    linear-gradient(135deg, #f7fbfa 0%, #eef8f6 52%, #f8f3e8 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}
.enroll-wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}
.enroll-left .sec-title, .enroll-left .sec-tag { text-align: left; }
.enroll-left .sec-tag {
  color: #0f8f95;
}
.enroll-left .sec-title .enroll-journey-accent {
  color: #0f8f95;
  font-weight: 800;
}
.enroll-left .sec-sub { text-align: left; max-width: 620px; margin: 0; color: #536479; }
.enroll-left .divider {
  margin: 14px 0 0;
  background: linear-gradient(90deg, #0f8f95 0%, #f5a623 100%);
}
.efeats { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.efeat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(15, 143, 149, 0.14);
  font-size: 13px;
  color: #294257;
  box-shadow: 0 10px 24px rgba(16, 68, 80, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.efeat:hover {
  transform: translateX(8px);
  border-color: rgba(15, 143, 149, 0.34);
  box-shadow: 0 16px 30px rgba(16, 68, 80, 0.1);
}
.efeat i { color: #0f8f95; font-size: 15px; flex-shrink: 0; }
.e-form {
  background: #fff;
  border-radius: 18px;
  padding: clamp(26px, 2.4vw, 34px);
  border: 1px solid rgba(15, 143, 149, 0.16);
  box-shadow: 0 26px 70px rgba(23, 53, 63, 0.14);
  position: relative;
  overflow: hidden;
}
.e-form::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0f8f95 0%, #f5a623 100%);
}
.e-form h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.e-form .fsub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.fg { margin-bottom: 13px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #1a2340;
  background: #fff;
  outline: none;
  transition: 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #0f8f95; box-shadow: 0 0 0 3px rgba(15,143,149,0.1); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-sub {
  width: 100%;
  background: linear-gradient(135deg, #0f8f95 0%, #0b6775 58%, #f5a623 140%);
  color: #fff;
  padding: 13px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  margin-top: 4px;
}
.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 143, 149, 0.24);
  filter: brightness(1.02);
}
.fnote { text-align: center; font-size: 11px; color: var(--muted); margin-top: 9px; }
.fnote i { color: #22c55e; }

footer { background: #f3f3f3; padding: 48px 0 0; }
.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 42px;
  margin: 0 auto 34px;
  padding: 0 6%;
}
.f-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-bottom: 18px;
  overflow: visible;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}
.f-logo-mark {
  width: 300px;
  height: 92px;
  object-fit: contain;
  display: block;
  transform: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  filter: none;
  opacity: 0.98;
}
.f-about p { font-size: 16px; line-height: 1.9; color: #4b5563; max-width: 360px; }
.f-socials { display: flex; gap: 10px; margin-top: 0; }
.footer-socials-top { margin-bottom: 14px; }
.fsoc {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: #171a20;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.fsoc:hover {
  background: #232a36;
  color: #ffffff;
  transform: translateY(-1px);
}
.f-col h4 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 10px; font-family: 'Manrope', sans-serif; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.f-links a { color: #3f4f67; text-decoration: none; font-size: 15px; transition: color 0.2s ease, transform 0.2s ease; display: flex; align-items: center; gap: 6px; }
.f-links a:hover { color: #0f8f95; transform: translateX(4px); }
.f-contact { display: flex; flex-direction: column; gap: 10px; }
.fci { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; line-height: 1.7; }
.fci i { color: #111827; margin-top: 4px; width: 14px; flex-shrink: 0; }
.f-bottom {
  border-top: none;
  background: #0a1020;
  padding: 18px 6%;
}
.f-bottom-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.f-bottom p { font-size: 15px; color: #ffffff; }
.f-bottom a { color: #ffffff; text-decoration: none; }
.f-bottom-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; margin-left: auto; }
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-book-demo,
.floating-instagram,
.floating-whatsapp {
  border: none;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 22px rgba(4, 18, 45, 0.24);
  animation:floatingWiggle 2.8s ease-in-out infinite;
}
.floating-book-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b4fd5, #11a7b8);
  font-weight: 700;
  font-size: 16px;
}
.floating-book-demo i { font-size: 14px; }
.floating-instagram,
.floating-whatsapp {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}
.floating-instagram {
  background: radial-gradient(circle at 30% 120%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.floating-whatsapp { background: linear-gradient(135deg, #2fdb6d, #0dbf5f); }
@keyframes floatingWiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.common-cta {
  position: relative;
  background: linear-gradient(90deg, rgba(8,10,15,.78), rgba(8,10,15,.48)), url("../assets/abovt images/bg.jpg") center/cover no-repeat;
  padding: 76px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}
.common-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #ffffff;
  padding: 0 110px;
  box-sizing: border-box;
}
.common-cta-inner h3 {
  max-width: 800px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.common-cta-inner p {
  max-width: 760px;
  margin: 0 0 20px;
  color: #e5e8ef;
  font-size: 18px;
}
.common-cta-inner a {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 11px 28px;
  font-weight: 700;
  text-decoration: none;
}
.common-cta-trophy {
  position: absolute;
  right: 2.5%;
  bottom: 10px;
  width: min(26vw,340px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: none;
  box-shadow: none;
  animation: aboutTrophyFloat 3.2s ease-in-out infinite;
}
@keyframes aboutTrophyFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
  .common-cta-trophy {
    width: min(34vw, 280px);
    right: 2%;
  }
}

@media (max-width: 720px) {
  .common-cta-trophy {
    width: min(72vw, 220px);
    right: 1%;
    bottom: 6px;
  }
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #fff;
  border: 1px solid #d1fae5;
  border-left: 4px solid #22c55e;
  border-radius: 10px;
  padding: 13px 17px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #166534;
  font-weight: 500;
  max-width: 300px;
}
.toast.show { display: flex; }
.toast i { color: #22c55e; font-size: 17px; }

.enroll-success-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
}
.enroll-success-modal.open {
  display: block;
}
.enroll-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 14, 0.42);
  backdrop-filter: blur(3px);
}
.enroll-success-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  min-height: 150px;
  border-radius: 20px;
  padding: 30px 30px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d9efe0;
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.14);
  animation: enrollSuccessIn 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.enroll-success-icon-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.enroll-success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20d672;
  color: #ffffff;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
  transform: scale(0.72);
  opacity: 0;
  animation: successTickPop 0.55s 0.16s cubic-bezier(0.2, 0.9, 0.2, 1.25) forwards;
}
.enroll-success-card h3 {
  margin: 0;
  font-size: 20px;
  color: #1c3e2d;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
}
.enroll-success-card p {
  margin: 10px 0 0;
  font-size:14px;
  color: #3b6751;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
@keyframes enrollSuccessIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes successTickPop {
  0% { opacity: 0; transform: scale(0.45) rotate(-10deg); }
  70% { opacity: 1; transform: scale(1.08) rotate(0deg); }
  100% { opacity: 1; transform: scale(1); }
}

.enroll-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 2700;
  display: none;
}

.enroll-popup-modal.open {
  display: block;
}

.enroll-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(3px);
}

.enroll-popup-card {
  position: relative;
  width: min(620px, calc(100vw - 26px));
  margin: max(26px, 9vh) auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #fff6fb 54%, #eefbff 100%);
  border: 1px solid #efd9e9;
  box-shadow: 0 28px 72px rgba(32, 22, 47, 0.26);
  animation: enrollPopupIn 0.4s ease;
}

.enroll-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #f0d7e4;
  background: rgba(255,255,255,0.92);
  color: #5f4f6c;
  cursor: pointer;
  font-size: 14px;
}

.enroll-popup-top {
  padding: 24px 28px 12px;
  background: linear-gradient(135deg, #f8eaf2 0%, #eef8fc 100%);
  border-bottom: 1px solid #ead5e4;
}

.enroll-popup-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(207, 91, 147, 0.22);
  color: #7a3d62;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
}

.enroll-popup-top h3 {
  margin-top: 12px;
  font-size: clamp(20px, 3.2vw, 26px);
  line-height: 1.08;
  color: #2b213a;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.enroll-popup-top p {
  margin-top: 8px;
  font-size: 16px;
  color: #4e4a61;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.enroll-popup-form-wrap {
  padding: 14px 28px 26px;
}

.enroll-popup-submit {
  margin-top: 6px;
}

@keyframes enrollPopupIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.admin-login-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
}

.admin-login-modal.open {
  display: block;
}

.admin-login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.44);
  backdrop-filter: blur(8px);
}

.admin-login-modal-card {
  position: relative;
  width: min(470px, calc(100vw - 18px));
  margin: max(18px, 5vh) auto 0;
  border-radius: 20px;
  border: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  overflow: hidden;
  background: transparent;
}

.admin-login-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.94);
  color: #334155;
  cursor: pointer;
}

.admin-login-frame {
  width: 100%;
  height: min(700px, 88vh);
  border: none;
  display: block;
  background: transparent;
}

@media (max-width: 1024px) {
  .video-promo-frame iframe,
  .video-promo-frame video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }
  .video-promo-shell {
    min-height: 390px;
  }
  .video-promo-overlay {
    min-height: 390px;
    width: min(720px, 100%);
    padding: 24px 26px;
    background: transparent;
  }
  .video-promo-overlay p {
    font-size: 18px;
  }
  .video-promo-btn {
    min-height: 48px;
    font-size: 16px;
  }
  #home {
    min-height: calc(100vh + 90px);
    margin-bottom: 12px;
  }
  .hero-excellence {
    width: min(980px, calc(100% - 28px));
    bottom: -82px;
    padding: 16px 16px 12px;
  }
  .hero-excellence .sband-item .big {
    font-size: 30px;
  }
  .about-split { min-height: auto; padding: 92px 6% 44px; }
  .hero-inner { height: calc(100vh - 94px); }
  .hero-slider { height: 100%; }
  .record-points { grid-template-columns: 1fr 1fr; }
  .wr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wr-head p { font-size: 15px; }
  .wr-copy h3 { font-size: 18px; }
  .wr-sub { font-size: 13px; }
  .about-split-grid { grid-template-columns: 1fr; height: auto; }
  .about-copy { justify-content: flex-start; }
  .about-media {
    justify-self: center;
    width: min(100%, 300px);
    height: auto;
  }
  .record-banner-inner { grid-template-columns: 1fr; gap: 12px; padding: 14px; border-radius: 0; }
  .record-banner-media { max-width: 240px; height: 290px; margin: 0 auto; }
  .record-banner-line { white-space: normal; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .courses-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .records-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .wr-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .training-formats .sec-title { white-space: normal; }
  .training-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .training-card { padding: 28px 22px 26px; }
  .why-grid, .coaches-grid, .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .slide.s1 .hero-copy .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  .slide.s1 .hero-copy h1 {
    font-size: clamp(16px, 4.8vw, 22px);
    line-height: 1.05;
    margin-bottom: 6px;
    max-width: 92%;
  }
  .slide.s1 .hero-copy p {
    font-size: 10px;
    line-height: 1.22;
    max-width: 88%;
  }
  .hero-copy {
    left: 5%;
    top: 3.5vh;
    width: min(90vw, 520px);
  }
  .hero-kicker {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(22px, 6.6vw, 32px);
    line-height: 1.12;
    margin-bottom: 8px;
  }
  .hero-copy p {
    font-size: 13px;
    line-height: 1.4;
    max-width: 96%;
  }
  .hero-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    margin-top: 10px;
  }
  .video-promo-frame iframe,
  .video-promo-frame video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }
  .video-promo {
    padding: 0;
  }
  .video-promo-shell {
    min-height: 300px;
  }
  .video-promo-overlay {
    min-height: 300px;
    width: 100%;
    padding: 18px 16px;
    background: transparent;
  }
  .video-promo-overlay h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.1;
  }
  .video-promo-overlay p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .video-promo-btn {
    margin-top: 14px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
    border-width: 1.5px;
  }
  .nav-menu { display: none; }
  .nav-actions { display: flex; }
  .btn-help { display: none; }
  .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-enroll-nav { display: none; }
  .mobile-auth-item {
    display: list-item;
    margin-top: 4px;
  }
  .mobile-auth-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    background: #fff7fb;
    border: 1px solid #f2d7e7;
    color: #5a3a5d !important;
    text-decoration: none;
    font-weight: 600;
  }
  .mobile-auth-item:last-child a {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
    color: #fff !important;
    border-color: transparent;
  }
  .login-dropdown-menu {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    min-width: 0;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    z-index: 2100;
  }
  .hamburger { display: block; }
  #home {
    padding-top: 94px;
    min-height: auto;
    background: #fff;
    display: block;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .hero-inner {
    width: 100%;
    height: clamp(280px, 72vw, 390px);
    min-height: 280px;
  }
  .hero-excellence {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: block;
    width: calc(100% - 20px);
    margin: 14px auto 0;
    padding: 16px 12px 8px;
    box-shadow: 0 8px 20px rgba(7, 14, 28, 0.12);
  }
  .hero-excellence .stats-band-head {
    margin-bottom: 10px;
  }
  .hero-excellence .stats-band-head h2 {
    font-size: clamp(22px, 7vw, 30px);
  }
  .hero-slider { width: 100%; height: 100%; }
  .slide img { object-fit: cover; object-position: center center; }
  .hero-nav { width: 30px; height: 30px; }
  .hero-nav i { font-size: 11px; }
  .hero-nav.prev { left: 10px; }
  .hero-nav.next { right: 10px; }
  .hero-dots { bottom: 10px; gap: 6px; }
  .hero-dots button {
    width: 7px;
    height: 7px;
  }
  .record-highlight { padding-top: 24px; }
  .record-highlight-inner { padding: 20px 18px; border-radius: 18px; }
  .record-points { grid-template-columns: 1fr; }
  .record-points span { min-height: 42px; font-size: 12px; }
  .wr-section { padding-top: 46px; padding-bottom: 42px; }
  .wr-grid { grid-template-columns: 1fr; gap: 14px; }
  .wr-head { margin-bottom: 20px; }
  .wr-head h2 { font-size: clamp(30px, 10vw, 42px); }
  .wr-head p { font-size: 16px; line-height: 1.65; }
  .wr-media { height: 190px; }
  .wr-copy h3 { font-size: 18px; }
  .wr-sub { font-size: 13px; }
  .wr-meta p { font-size: 13px; }
  #testimonials .sec-head {
    margin-bottom: 34px;
  }
  .t-track {
    --testimonial-card: min(86vw, 420px);
  }
  .t-card {
    flex-basis: min(86vw, 420px);
    min-height: auto;
    padding: 16px 16px 22px;
  }
  .t-quote {
    font-size: 30px;
    top: 8px;
    right: 12px;
  }
  #courses {
    min-height: auto;
    padding: 42px 6% 48px;
  }
  #courses .sec-head {
    margin-bottom: 28px;
  }
  .course-card {
    width: min(82vw, 330px);
    min-height: 430px;
    margin: 0 auto;
  }
  .courses-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .why-grid, .coaches-grid, .t-grid, .benefits-grid { grid-template-columns: 1fr; }
  .enroll-wrap { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .stats-band-head { margin-bottom: 14px; }
  .hero-excellence .stats-band-head h2 { font-size: clamp(14px, 4.6vw, 20px) !important; }
  .stats-band-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
  }
  .sband-item {
    min-width: 0;
    border-right: 1px solid #ece8ef;
    border-bottom: none;
    padding: 10px 4px;
  }
  .sband-item:last-child {
    border-right: none;
  }
  .hero-excellence .sband-item .icon {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .hero-excellence .sband-item .big {
    font-size: clamp(8px, 4.2vw, 12px) !important;
    line-height: 1.05;
    letter-spacing: 0;
  }
  .hero-excellence .sband-item .desc {
    font-size: 5px !important;
    line-height: 1.15;
    margin-top: 4px;
  }
  .about-copy p { font-size: 14px; }
  .about-media {
    min-height: 0;
    width: min(100%, 300px);
  }
  .about-media img { min-height: 0; }
  .about-kicker {
    margin-bottom: 10px;
    font-size: clamp(28px, 8vw, 40px);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
  }
  .offer-cards-section { padding: 24px 6% 16px; }
  .offer-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .offer-card-media { height: 210px; }
  .training-grid, .records-grid, .wr-grid { grid-template-columns: 1fr; }
  .training-card { padding: 24px 20px 22px; }
  .tc-title { font-size: 18px; }
  .record-image { height: 210px; }
  .record-banner { padding-top: 34px; padding-bottom: 34px; }
  .record-banner-copy {
    padding: 8px 2px 2px;
  }
  .record-banner-copy p {
    font-size: 14px;
    line-height: 1.75;
  }
  .about-copy h2 {
    font-size: clamp(24px, 6vw, 34px);
    white-space: normal;
  }
  .about-copy p { font-size: 15px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gitem { aspect-ratio: 16 / 10; }
  .gitem.portrait { aspect-ratio: 16 / 10; }
  .frow { grid-template-columns: 1fr; }
  .benefits-head { text-align: center; }
  .benefits-head .divider { margin: 14px auto 0; }
  .f-bottom-right { justify-content: flex-start; margin-left: 0; }
  .footer-socials-top { margin-bottom: 12px; }
  .floating-actions {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }
  .floating-whatsapp,
  .floating-instagram,
  .floating-book-demo,
  .floating-to-top {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .floating-book-demo {
    width: auto;
    min-width: 46px;
    padding: 0 12px;
    font-size: 12px;
    gap: 6px;
  }
  .floating-book-demo i {
    font-size: 14px;
  }
  .floating-to-top { font-size: 18px; }
  .nav-logo-mark {
    width: 180px;
    height: 56px;
  }
  .f-logo-mark {
    width: 220px;
    height: 70px;
  }
  .login-dropdown-menu {
    left: auto;
    right: 0;
    min-width: 220px;
  }
  .admin-login-modal-card {
    width: calc(100vw - 14px);
    margin-top: 8px;
    border-radius: 16px;
  }
  .admin-login-frame {
    height: 92vh;
  }
  .enroll-popup-card {
    width: calc(100vw - 14px);
    margin-top: 14px;
    border-radius: 18px;
  }
  .enroll-popup-top {
    padding: 20px 18px 8px;
  }
  .enroll-popup-top h3 {
    font-size: 24px;
  }
  .enroll-popup-form-wrap {
    padding: 12px 18px 18px;
  }
}

.fi {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fi.in {
  opacity: 1;
  transform: translateY(0);
}

/* Keep training card hover snappy even when .fi animation class is present */
.training-card.fi,
.training-card.fi.in {
  transition: opacity 0.55s ease, transform 0.12s ease-out, box-shadow 0.12s ease-out !important;
}

@media (max-width: 560px) {
  .slide.s1 .hero-copy .hero-kicker {
    font-size: 8px;
    margin-bottom: 4px;
  }
  .slide.s1 .hero-copy h1 {
    font-size: clamp(13px, 4.2vw, 18px);
    line-height: 1.02;
    margin-bottom: 4px;
    max-width: 84%;
  }
  .slide.s1 .hero-copy p {
    font-size: 9px;
    line-height: 1.15;
    max-width: 80%;
  }
  nav {
    height: 78px;
    padding: 0 14px;
  }
  #home {
    padding-top: 78px;
  }
  .nav-logo-mark {
    width: 148px;
    height: 44px;
  }
  .nav-actions {
    gap: 10px;
  }
  .btn-login {
    padding: 6px 11px;
    font-size: 11.5px;
  }
  .hero-inner {
    height: clamp(220px, 58vw, 290px);
    min-height: 220px;
  }
  .hero-copy {
    left: 5%;
    top: 2.5vh;
    width: min(88vw, 420px);
  }
  .hero-copy h1 {
    font-size: clamp(14px, 4.8vw, 20px);
    line-height: 1.05;
    margin-bottom: 6px;
  }
  .hero-copy p {
    max-width: 92%;
    font-size: 10px;
    line-height: 1.25;
  }
  .stats-band.hero-excellence {
    width: calc(100% - 14px);
    margin-top: 10px;
    padding: 14px 10px 6px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  #home {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding-top: 78px !important;
  }
  .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 220px !important;
  }
  .hero-excellence,
  .stats-band.hero-excellence {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 0 !important;
  }
  nav {
    padding: 0 10px;
  }
  .btn-login {
    padding: 6px 9px;
    font-size: 10.5px;
  }
  .hamburger {
    font-size: 19px;
  }
  .hero-copy h1 {
    font-size: clamp(12px, 4.4vw, 16px);
    line-height: 1.04;
  }
  .hero-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }
  .course-card {
    width: min(86vw, 310px);
    min-height: 440px;
  }
}
  .hero-nav {
    width: 28px;
    height: 28px;
  }
  .hero-nav i {
    font-size: 10px;
  }
  .hero-cta {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
    margin-top: 8px;
  }
  .hero-dots {
    bottom: 8px;
    gap: 5px;
  }
  .hero-dots button {
    width: 6px;
    height: 6px;
  }

/* =============================================
   VISION AI ASSISTANT � Web Page Styles
   ============================================= */

/* Animated border � only border colors rotate */
@property --vision-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.vision-wb-trigger,
.nex-web-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  will-change: transform;
  isolation: isolate;
}

.vision-trigger-layer {
  position: fixed;
  top: 104px;
  right: 6%;
  z-index: 3500;
  pointer-events: none;
}

.vision-trigger-layer .vision-wb-trigger,
.vision-trigger-layer .nex-web-trigger {
  pointer-events: auto;
}

.vision-wb-trigger::before,
.nex-web-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0021AD, #8B00E3, #D6008D, #8B00E3, #0021AD);
  background-size: 300% 100%;
  z-index: 0;
}

.vision-wb-trigger::before {
  animation: liquidShake 2s ease-in-out infinite;
}

.nex-web-trigger::before {
  animation: none;
  background-position: 50% 50%;
}

@keyframes liquidShake {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.vision-wb-trigger:hover,
.nex-web-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139,0,227,0.35);
}

/* Keep navbar stable: disable animated AI trigger effects inside nav only */
.vision-wb-btn-logo { display: none; }

.wb-star {
  position: absolute;
  font-size: 10px;
  color: rgba(255,255,255,0.95);
  z-index: 2;
  pointer-events: none;
  animation: starBlink 1.4s ease-in-out infinite;
}
.wb-star-1 { top: 5px;    left: 9px;  font-size: 8px;  animation-delay: 0s; }
.wb-star-2 { top: 50%;    right: 8px; font-size: 12px; animation-delay: 0.5s; }
.wb-star-3 { bottom: 5px; left: 38%; font-size: 7px;  animation-delay: 1.0s; }

@keyframes starBlink {
  0%   { opacity: 0;   transform: translateY(-50%) scale(0.5); }
  40%  { opacity: 1;   transform: translateY(-50%) scale(1.3); }
  60%  { opacity: 1;   transform: translateY(-50%) scale(1.1); }
  100% { opacity: 0;   transform: translateY(-50%) scale(0.5); }
}

.wb-star-1 { animation-name: starBlink1; }
.wb-star-3 { animation-name: starBlink3; }

@keyframes starBlink1 {
  0%   { opacity: 0;   transform: scale(0.5); }
  40%  { opacity: 1;   transform: scale(1.3); }
  60%  { opacity: 1;   transform: scale(1.1); }
  100% { opacity: 0;   transform: scale(0.5); }
}

@keyframes starBlink3 {
  0%   { opacity: 0;   transform: scale(0.5); }
  40%  { opacity: 1;   transform: scale(1.3); }
  60%  { opacity: 1;   transform: scale(1.1); }
  100% { opacity: 0;   transform: scale(0.5); }
}

.vision-wb-trigger,
.nex-web-trigger {
  animation: visionPulse 2.5s ease-in-out infinite;
}

nav .nex-web-trigger {
  gap: 4px;
  min-height: 32px;
  padding: 5px 12px;
}

@keyframes visionPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,0,227,0); }
  50%      { box-shadow: 0 0 0 6px rgba(139,0,227,0.22); }
}

.vision-wb-btn-text {
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .vision-trigger-layer {
    top: 88px;
    right: 12px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

.vision-wb-btn-text strong {
  font-weight: 700;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

/* Card */
.vision-wb-card {
  position: fixed;
  top: 98px;
  right: 20px;
  width: 380px;
  height: calc(100vh - 98px - 16px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  z-index: 3101;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.vision-wb-card-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.vision-wb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.vision-wb-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  font-family: 'Poppins', sans-serif;
}

.vision-wb-header-right { display: flex; align-items: center; gap: 4px; }

.vision-wb-icon-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  font-size: 12.5px;
  transition: background 0.15s, color 0.15s;
}

.vision-wb-icon-btn:hover { background: rgba(107,114,128,0.1); color: #374151; }
.vision-wb-close:hover { background: rgba(239,68,68,0.08) !important; color: #ef4444 !important; }

/* Body */
.vision-wb-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.vision-wb-body::-webkit-scrollbar { width: 3px; }
.vision-wb-body::-webkit-scrollbar-thumb { background: rgba(139,0,227,0.15); border-radius: 3px; }

/* Empty state */
.vision-wb-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 24px;
  text-align: center;
  gap: 2px;
}

.vision-wb-empty-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 3px 10px rgba(99,102,241,0.2));
}

.vision-wb-empty-logo-v {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B00E3, #6200b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  box-shadow: 0 3px 12px rgba(139,0,227,0.35);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
}

.vision-wb-hello {
  font-size: 21px;
  font-weight: 600;
  color: #111827;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 4px;
}

.vision-wb-subtitle {
  font-size: 13.5px;
  font-weight: 400;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 16px;
}

/* Suggestions */
.vision-wb-sugs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
}

.vision-wb-sug {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  cursor: pointer;
  text-align: left;
  font-size: 12.5px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #374151;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  width: 100%;
}

.vision-wb-sug:hover {
  border-color: #8B00E3;
  background: rgba(139,0,227,0.04);
  color: #8B00E3;
}

.vision-wb-sug-arrow {
  font-size: 10px;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.15s;
}

.vision-wb-sug:hover .vision-wb-sug-arrow { color: #8B00E3; }

/* Messages */
.vision-wb-msgs { padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.vision-wb-msg {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  animation: visionWbMsgIn 0.18s ease;
  font-family: 'Poppins', sans-serif;
}

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

.vision-wb-msg-user { flex-direction: row-reverse; }

.vision-wb-bubble-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 82%;
}

.vision-wb-msg-user .vision-wb-bubble-wrap { align-items: flex-end; }

.vision-wb-enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #0021AD, #8B00E3, #D6008D);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(139,0,227,0.3);
}

.vision-wb-enroll-btn:hover { opacity: 0.88; transform: scale(1.03); }

.vision-wb-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  border: 1.5px solid #c4b5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
}

.vision-wb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-wb-avatar-v {
  font-size: 13px;
  font-weight: 700;
  color: #8B00E3;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.vision-wb-bubble {
  max-width: 100%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Poppins', sans-serif;
}

.vision-wb-msg-user .vision-wb-bubble {
  background: linear-gradient(135deg, #0021AD, #8B00E3);
  color: #fff;
  border-bottom-right-radius: 3px;
}

.vision-wb-msg-ai .vision-wb-bubble {
  background: #f4f4f5;
  color: #1f2937;
  border-bottom-left-radius: 3px;
}

.vision-wb-msg-ai .vision-wb-bubble strong { color: #1a1a2e; font-weight: 600; }
.vision-wb-msg-ai .vision-wb-bubble em { font-style: italic; color: #4b5563; }
.vision-wb-msg-ai .vision-wb-bubble ul { margin: 6px 0 2px 4px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.vision-wb-msg-ai .vision-wb-bubble li { padding-left: 14px; position: relative; }
.vision-wb-msg-ai .vision-wb-bubble li::before { content: "•"; position: absolute; left: 0; color: #8B00E3; font-weight: 700; }

/* Typing */
.vision-wb-typing {
  display: flex; align-items: center; gap: 4px; padding: 10px 13px;
}
.vision-wb-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #8B00E3;
  animation: visionWbBounce 1.2s ease-in-out infinite;
}
.vision-wb-typing span:nth-child(2) { animation-delay: 0.2s; }
.vision-wb-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes visionWbBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* Error */
.vision-wb-err {
  margin: 0 12px 8px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

/* Input area */
.vision-wb-input-area {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px 8px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  background: #fff;
}

.vision-wb-textarea {
  flex: 1;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: #111827;
  outline: none;
  resize: none;
  line-height: 1.5;
  max-height: 96px;
  overflow-y: auto;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.vision-wb-textarea:focus {
  border-color: #8B00E3;
  box-shadow: 0 0 0 3px rgba(139,0,227,0.1);
}

.vision-wb-textarea::placeholder { color: #9ca3af; font-weight: 400; }
.vision-wb-textarea:disabled { opacity: 0.6; cursor: not-allowed; }

.vision-wb-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0021AD, #8B00E3, #D6008D);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: 0 2px 10px rgba(139,0,227,0.35);
  align-self: flex-end;
}

.vision-wb-send:hover:not(:disabled) { transform: scale(1.08); }
.vision-wb-send:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* Global scroll reveal animations (all pages) */
.sa-init {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sa-init.sa-up { transform: translateY(26px); }
.sa-init.sa-left { transform: translateX(-30px); }
.sa-init.sa-right { transform: translateX(30px); }
.sa-init.sa-zoom { transform: scale(0.93); }

.sa-init.sa-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .sa-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Disclaimer */
.vision-wb-note {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
  padding: 4px 12px 8px;
  flex-shrink: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Mobile */
@media (max-width: 640px) {
  .vision-wb-card { right: 12px; left: auto; width: 300px; bottom: 80px; top: auto; height: 72vh; max-height: 520px; }
  .vision-trigger-layer .vision-wb-btn-text { display: none; }
  nav .nex-web-trigger {
    min-height: 28px;
    padding: 4px 8px;
  }
  nav .nex-web-trigger .vision-wb-btn-text {
    display: inline;
    font-size: 9.5px;
  }
  nav .nex-web-trigger .wb-star {
    font-size: 7px;
  }
}

/* ===== Home page responsive final overrides ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 1180px) {
  nav {
    padding: 0 3%;
  }

  .nav-logo-mark {
    width: 200px;
    height: 62px;
  }

  .nav-menu a {
    font-size: 13px;
    padding: 7px 8px;
  }

  .nav-actions {
    gap: 8px;
  }
}

@media (max-width: 900px) {
  nav {
    height: 82px;
    padding: 0 18px;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 2400;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(44, 39, 65, 0.12);
  }

  .nav-menu.show a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  .nav-logo-mark {
    width: 170px;
    height: 52px;
  }

  #home {
    padding-top: 82px;
  }

  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .about-split-grid,
  .enroll-wrap {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 320px;
  }

  .courses-grid,
  .offer-cards-grid,
  .training-grid,
  .why-grid,
  .benefits-grid,
  .records-grid,
  .wr-grid,
  .f-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coaches-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero-inner {
    height: clamp(230px, 60vw, 360px);
    min-height: 230px;
  }

  .hero-copy {
    left: 5%;
    top: 4vh;
    width: min(88vw, 460px);
  }

  .hero-copy h1 {
    font-size: clamp(18px, 5.4vw, 28px);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 12px;
    line-height: 1.35;
    max-width: 90%;
  }

  .stats-band-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sband-item {
    min-height: 84px;
    padding: 10px 6px;
  }

  .courses-grid,
  .offer-cards-grid,
  .training-grid,
  .why-grid,
  .benefits-grid,
  .records-grid,
  .wr-grid,
  .coaches-grid,
  .enroll-wrap,
  .f-grid {
    grid-template-columns: 1fr;
  }

  .course-card,
  .offer-card,
  .training-card,
  .why-card,
  .benefit-card {
    width: min(92vw, 390px);
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 480px) {
  nav {
    height: 76px;
    padding: 0 12px;
  }

  .nav-logo-mark {
    width: 142px;
    height: 42px;
  }

  #home {
    padding-top: 76px;
  }

  .nav-menu.show {
    top: 76px;
  }

  .btn-login {
    padding: 6px 9px;
    font-size: 10px;
  }

  nav .nex-web-trigger {
    min-height: 26px;
    padding: 4px 7px;
  }

  nav .nex-web-trigger .vision-wb-btn-text {
    font-size: 9px;
  }

  .hero-inner {
    height: clamp(220px, 58vw, 290px);
  }

  .hero-copy {
    top: 3vh;
  }

  .hero-copy h1 {
    font-size: clamp(14px, 4.8vw, 20px);
  }

  .hero-copy p {
    font-size: 10px;
    line-height: 1.24;
  }

  .hero-excellence {
    width: calc(100% - 14px);
  }

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

  .course-card {
    width: min(86vw, 320px);
    min-height: 440px;
  }
}
