* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
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.93);
  backdrop-filter: blur(12px);
  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: #4c4557;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  transition: all 0.2s;
}
.nav-menu a:hover {
  color: #1f1b2c;
  background: transparent;
  text-decoration: underline;
  text-decoration-color: #c98a2c;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-menu a.is-active {
  color: #d27a12;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #d27a12;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-menu a.is-active:hover {
  color: #d27a12;
  background: transparent;
}
.mobile-auth-item { display: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.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 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.btn-login:hover { border-color: var(--pink); }
.login-dropdown {
  position: relative;
}
.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: none;
  gap: 8px;
}
.login-dropdown.open .login-dropdown-menu {
  display: grid;
}
.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, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.btn-enroll-nav:hover { filter: brightness(0.96); }
.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: 46px 6% 26px;
  background: #ececec;
}
.video-promo-shell {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid #242424;
  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: 50%;
  left: 50%;
  width: 156%;
  height: 156%;
  min-width: 156%;
  min-height: 156%;
  transform: translate(-50%, -50%);
  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;
  filter: grayscale(100%);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.offer-card:hover .offer-card-media img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.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: 65vh;
  padding: clamp(64px, 8vh, 96px) 4% clamp(72px, 9vh, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f8ff 0%, #eef7f5 52%, #fff8ee 100%);
}
#courses::before {
  content: none;
}
#courses::after {
  content: 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: #1d293f;
}
#courses .sec-sub { color: #4e5f7b; }
.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: none;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  transition:
    transform 0.07s ease-out,
    filter 0.07s ease-out;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 410px;
}
@media (hover: hover) and (pointer: fine) {
  .course-card:hover {
    transform: translateZ(0) scale(1.07);
    filter: saturate(1.04);
    z-index: 3;
  }
  .course-card.fi.in:hover {
    transform: translateZ(0) scale(1.07);
  }
  .courses-grid:hover .course-card:not(:hover) {
    transform: translateZ(0) scale(1);
    filter: none;
  }
}
.course-card.pop { border-color: #d7caef; }
.c-head { background: linear-gradient(135deg, #eef4ff 0%, #e2edff 100%); padding: 28px 22px 20px; border-bottom: 1px solid #dbe5f6; min-height: 134px; }
.c-head.mid { background: linear-gradient(135deg, #efe9ff 0%, #e4ddff 100%); }
.c-head.elite-head { background: linear-gradient(135deg, #e9edff 0%, #dfe5ff 100%); }
.c-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: rgba(24,184,200,0.18);
  color: var(--teal);
}
.c-badge.hot { background: rgba(233,30,140,0.14); color: var(--pink-deep); }
.c-name { font-size: 22px; font-weight: 600; color: #27223c; margin-bottom: 6px; }
.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; }
.c-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.c-features li { display: flex; align-items: flex-start; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: #3a4a6a; line-height: 1.45; }
.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, #4b5563 0%, #2f3744 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: 7px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}
.btn-enroll:hover {
  filter: brightness(1.02);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(33, 41, 54, 0.34);
}
.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: #ffffff !important;
}
.training-formats {
  padding-top: 86px;
  padding-bottom: 112px;
}
.training-formats .sec-head {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 54px;
}
.training-formats .sec-title {
  color: #1e2f50;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.12;
  white-space: nowrap;
}
.training-formats .sec-title span { color: #0f8f95; }
.training-formats .sec-sub {
  color: #6c7b95;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
}
.training-grid {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  gap: 0 58px;
  position: relative;
  padding-top: 0;
}
.training-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 12px;
  width: 6px;
  height: auto;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #9cb0d8 0%, #7c4fe0 52%, #0f9b8e 100%);
  border-radius: 999px;
}
.training-card {
  padding: 0 8px 90px;
  border: none;
  background: transparent;
  box-shadow: none;
  position: relative;
  min-height: 258px;
  display: grid;
  grid-template-columns: 1fr 104px 1fr;
  grid-column: 1 / -1;
  align-items: flex-start;
}
.training-node {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 8px solid #4b6eb4;
  background: #ffffff;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: auto;
  transform: none;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
}
.training-node i {
  font-size: 25px;
  color: #4b6eb4;
}
.training-card h3 {
  font-size: 28px;
  color: #2a4169;
  text-align: left;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  max-width: 360px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  grid-row: 1;
}
.training-list {
  list-style: none;
  display: grid;
  gap: 13px;
  padding: 0;
  max-width: 360px;
  margin: 0;
  padding-left: 0;
  grid-row: 2;
}
.training-list li {
  position: relative;
  padding-left: 22px;
  color: #6d86a8;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  text-align: left;
}
.training-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #4b6eb4;
  border-radius: 2px;
}
.training-card:nth-child(odd) h3,
.training-card:nth-child(odd) .training-list {
  grid-column: 3;
}
.training-card:nth-child(even) h3,
.training-card:nth-child(even) .training-list {
  grid-column: 1;
  justify-self: end;
}
.training-card:nth-child(even) h3 {
  text-align: right;
}
.training-card:nth-child(even) .training-list li {
  text-align: right;
  padding-left: 0;
  padding-right: 22px;
}
.training-card:nth-child(even) .training-list li::before {
  left: auto;
  right: 0;
}

/* Per-block color system */
.training-card:nth-child(1) {
  background: transparent;
}
.training-card:nth-child(1) .training-node {
  border-color: #3f6fd0;
  background: #eef4ff;
}
.training-card:nth-child(1) .training-node i {
  color: #3f6fd0;
}
.training-card:nth-child(1) .training-list li::before {
  background: #3f6fd0;
}

.training-card:nth-child(2) {
  background: transparent;
}
.training-card:nth-child(2) .training-node {
  border-color: #7c4fe0;
  background: #f3ecff;
}
.training-card:nth-child(2) .training-node i {
  color: #7c4fe0;
}
.training-card:nth-child(2) .training-list li::before {
  background: #7c4fe0;
}

.training-card:nth-child(3) {
  background: transparent;
}
.training-card:nth-child(3) .training-node {
  border-color: #0f9b8e;
  background: #e8faf7;
}
.training-card:nth-child(3) .training-node i {
  color: #0f9b8e;
}
.training-card:nth-child(3) .training-list li::before {
  background: #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 {
  min-height: 100vh;
  padding: 42px 4% 54px;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.wr-head {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}
.wr-pill {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #8d5508;
  border: 1px solid rgba(214, 161, 74, 0.5);
  background: rgba(255, 238, 205, 0.86);
}
.wr-head h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.1;
  color: #18263f;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}
.wr-head h2 span { color: #cf8c1e; }
.wr-head p {
  margin-top: 10px;
  color: #44526d;
  font-size: 18px;
  line-height: 1.55;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.wr-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.wr-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #ded8c9;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(72, 62, 44, 0.08);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .wr-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #cdbb94;
    box-shadow: 0 18px 34px rgba(72, 62, 44, 0.18);
  }
}
.wr-card:nth-child(2) {
  background: #ffffff;
  border-color: #ded8c9;
}
.wr-card:nth-child(3) {
  background: #ffffff;
  border-color: #ded8c9;
}
.wr-card:nth-child(4) {
  background: #ffffff;
  border-color: #ded8c9;
}
.wr-card:nth-child(5) {
  background: #ffffff;
  border-color: #ded8c9;
}
.wr-card:nth-child(6) {
  background: #ffffff;
  border-color: #ded8c9;
}
.wr-media {
  width: calc(100% - 24px);
  height: 230px;
  border: 1px solid #e4dfd2;
  border-radius: 0;
  overflow: hidden;
  background: #f4f1e8;
  margin: 12px 12px 0;
}
.wr-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wr-copy {
  padding: 16px 18px 18px;
  background: #ffffff;
}
.wr-copy h3 {
  color: #32486d;
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.wr-sub {
  color: #667a99;
  font-size: 13px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.wr-meta {
  display: grid;
  gap: 8px;
}
.wr-meta p {
  margin: 0;
  color: #5b6c86;
  font-size: 12px;
  line-height: 1.35;
}
.wr-meta p span {
  color: #6a4f4f;
  font-weight: 700;
  margin-right: 6px;
}
.wr-card:nth-child(1) .wr-meta p span { color: #365782; }
.wr-card:nth-child(2) .wr-meta p span { color: #8b6233; }
.wr-card:nth-child(3) .wr-meta p span { color: #2f6b4d; }
.wr-card:nth-child(4) .wr-meta p span { color: #8a3e63; }
.wr-card:nth-child(5) .wr-meta p span { color: #3f5f8a; }
.wr-card:nth-child(6) .wr-meta p span { color: #7b5a32; }

#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: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f9fbff 0%, #eef3fb 100%);
  border: 1px solid #e1e8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 16px;
  color: #2b5dc1;
  transition: 0.2s;
}
.why-icon.tone-gold i { color: #d28415; }
.why-icon.tone-blue i { color: #2b63ea; }
.why-icon.tone-teal i { color: #0f9d84; }
.why-icon.tone-purple i { color: #7d3beb; }
.why-icon.tone-red i { color: #e11d48; }
.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: #ffffff; padding: 58px 6% 0; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 42px; }
.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: 8px; margin-top: 0; }
.footer-socials-top { margin-bottom: 14px; }
.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9dee7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #263656;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}
.fsoc:hover {
  background: linear-gradient(135deg, #ffe8a9 0%, #ffd27a 100%);
  color: #3d2d13;
  border-color: #ffd27a;
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 20px rgba(255, 205, 102, 0.35);
}

/* Floating utility icons */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-whatsapp,
.floating-instagram,
.floating-book-demo,
.floating-to-top {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
  animation: floatMove 2.8s ease-in-out infinite;
}

.floating-whatsapp {
  background: #25d366;
  color: #fff;
}

.floating-instagram {
  background: linear-gradient(135deg, #fd1d1d 0%, #fcb045 48%, #833ab4 100%);
  color: #fff;
}

.floating-book-demo {
  width: auto;
  min-width: 52px;
  padding: 0 14px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f8f95 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
}

.floating-book-demo i {
  font-size: 16px;
}

.floating-to-top {
  background: #3b57c7;
  color: #fff;
  font-size: 20px;
}

.floating-whatsapp:hover,
.floating-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  animation-play-state: paused;
}

@keyframes floatMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
.f-col h4 { font-size: 18px; font-weight: 500; color: #1f2937; margin-bottom: 14px; font-family: 'Fredoka', sans-serif; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-links a { color: #4b5563; text-decoration: none; font-size: 15px; transition: 0.2s; display: flex; align-items: center; gap: 6px; }
.f-links a:hover { color: #0f8f95; }
.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: #0f8f95; margin-top: 4px; width: 14px; flex-shrink: 0; }
.f-bottom {
  border-top: 1px solid #d9dee7;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.f-bottom p { font-size: 15px; color: #4b5563; }
.f-bottom a { color: #0f8f95; text-decoration: none; }
.f-bottom-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; margin-left: auto; }

.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-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: 168%;
    height: 168%;
    min-width: 168%;
    min-height: 168%;
  }
  .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)); }
  .training-formats .sec-title { white-space: normal; font-size: clamp(28px, 4.2vw, 40px); }
  .training-grid { max-width: 820px; grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr); gap: 0 30px; padding-top: 0; }
  .training-card { grid-template-columns: 1fr 78px 1fr; min-height: 210px; padding-bottom: 56px; }
  .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: 220%;
    height: 220%;
    min-width: 220%;
    min-height: 220%;
  }
  .video-promo {
    padding: 22px 4% 16px;
  }
  .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: 46px 6% 54px;
  }
  #courses .sec-head {
    margin-bottom: 28px;
  }
  .course-card {
    min-height: auto;
  }
  .courses-grid, .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 { grid-template-columns: 1fr; }
  .training-grid::before { left: 22px; transform: none; }
  .training-card {
    min-height: auto;
    padding: 0 2px 26px 58px;
    display: block;
  }
  .training-node { width: 54px; height: 54px; margin-bottom: 12px; }
  .training-card .training-node {
    position: absolute;
    left: 0;
    top: 0;
  }
  .training-card h3 { font-size: 22px; }
  .training-card:nth-child(odd) h3,
  .training-card:nth-child(odd) .training-list,
  .training-card:nth-child(even) h3,
  .training-card:nth-child(even) .training-list {
    grid-column: auto;
    justify-self: auto;
  }
  .training-card:nth-child(even) h3,
  .training-card:nth-child(even) .training-list li {
    text-align: left;
  }
  .training-card:nth-child(even) .training-list li {
    padding-left: 16px;
    padding-right: 0;
  }
  .training-card:nth-child(even) .training-list li::before {
    left: 0;
    right: auto;
  }
  .training-list li { font-size: 15px; }
  .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 {
    right: auto;
    left: 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: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.fi.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@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: 6px;
  }
  .btn-login {
    padding: 6px 12px;
    font-size: 12px;
  }
  .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 10px;
    font-size: 11px;
  }
  .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;
  }
}
  .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;
  }
