@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --purple: #4b1f78;
  --orange: #ff950f;
  --green: #1fbd3a;
  --red: #f20f3a;

  --cream: #fffaf2;
  --lavender: #f7f2ff;
  --soft-orange: #fff0d9;
  --soft-green: #eaffef;
  --soft-red: #ffe8ee;

  --text: #30233f;
  --muted: #7a7088;
  --white: #ffffff;

  --shadow: 0 20px 50px rgba(75, 31, 120, 0.10);
  --shadow-soft: 0 12px 35px rgba(75, 31, 120, 0.07);

  --font-main: 'Nunito', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 149, 15, 0.13), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(31, 189, 58, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.modern-navbar {
  height: 88px;
  background: rgb(255 255 255);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(75, 31, 120, 0.08);
  border-radius: 24px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.logo-wrap img {
  height: 72px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: 0.25s ease;
}

.nav-link-custom::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--orange);
  position: absolute;
  left: 0;
  bottom: -7px;
  border-radius: 20px;
  transition: 0.25s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--purple);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.call-btn {
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: var(--white);
  padding: 13px 24px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(255, 149, 15, 0.22);
  transition: 0.25s ease;
}

.call-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--lavender);
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
}

/* MOBILE MENU */

.mobile-menu {
  background: var(--cream);
}

.mobile-logo {
  height: 58px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(75, 31, 120, 0.08);
}

.mobile-call-btn {
  margin-top: 24px;
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: var(--white);
  padding: 16px;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

/* COMMON */

.section-padding {
  padding: 95px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading span,
.mini-label {
  display: inline-block;
  background: var(--soft-orange);
  color: var(--purple);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading h2,
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-heading p,
.section-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.primary-btn,
.secondary-btn,
.white-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 500;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--purple), #6e35a0);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(75, 31, 120, 0.22);
}

.primary-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.secondary-btn {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow-soft);
}

.secondary-btn:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* HERO */

.hero-section {
  padding: 175px 0 0;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  background: var(--soft-orange);
  color: var(--purple);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(33px, 48px, 68px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--orange);
}

.hero-text {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-contact span {
  color: var(--muted);
  font-size: 14px;
}

.hero-contact a {
  color: var(--purple);
  font-size: 18px;
  font-weight: 600;
}

/* HERO CARD */

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(75, 31, 120, 0.08);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--orange);
  opacity: 0.12;
  border-radius: 50%;
  top: -40px;
  right: -30px;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--green);
  opacity: 0.12;
  border-radius: 50%;
  bottom: -35px;
  left: -30px;
}

.hero-top-card {
  background: linear-gradient(135deg, var(--lavender), #fff7ec);
  border-radius: 28px;
  padding: 34px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.hero-top-card p {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-top-card h3 {
  font-family: var(--font-heading);
  color: var(--purple);
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-feature-grid div {
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-feature-grid span {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.hero-feature-grid h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 8px;
}

.hero-feature-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* INFO CARDS */

.info-card,
.course-card,
.step-card {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(75, 31, 120, 0.06);
  height: 100%;
  transition: 0.25s ease;
}

.info-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.icon.purple {
  background: var(--lavender);
}

.icon.orange {
  background: var(--soft-orange);
}

.icon.green {
  background: var(--soft-green);
}

.icon.red {
  background: var(--soft-red);
}

.info-card h3,
.step-card h3 {
  font-family: var(--font-heading);
  color: var(--purple);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}

.info-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* COURSE */

.course-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 149, 15, 0.12), transparent 30%),
    var(--lavender);
}

.course-card {
  box-shadow: var(--shadow);
}

.course-card h3 {
  font-family: var(--font-heading);
  color: var(--purple);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 22px;
}

.course-list li {
  padding: 11px 0;
  color: var(--text);
  font-size: 16.5px;
}

.course-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
  margin-right: 10px;
}

/* STEPS */

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--soft-orange);
  color: var(--purple);
  border-radius: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 20px;
}

/* CTA */

.cta-section {
  padding: 80px 0 100px;
}

.cta-box {
  background:
    radial-gradient(circle at top left, rgba(255, 149, 15, 0.28), transparent 34%),
    linear-gradient(135deg, var(--purple), #6b319c);
  border-radius: 34px;
  padding: 58px;
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 18px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.white-btn {
  background: var(--white);
  color: var(--purple);
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.white-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
  color: var(--orange);
}

/* FOOTER */

.footer {
  background: var(--purple);
  color: var(--white);
  padding: 55px 0 24px;
}

.footer-logo {
  height: 70px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 18px;
}

.footer h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .site-header {
    top: 10px;
  }

  .modern-navbar {
    height: 78px;
    padding: 0 16px;
    border-radius: 22px;
  }

  .logo-wrap img {
    height: 58px;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-section {
    padding: 135px 0 70px;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact {
    flex-direction: column;
    gap: 4px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo-wrap img {
    height: 52px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text,
  .section-heading p,
  .section-text {
    font-size: 16.5px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .white-btn,
  .outline-btn {
    width: 100%;
  }

  .hero-card {
    padding: 20px;
    border-radius: 26px;
  }

  .hero-top-card {
    padding: 26px;
  }

  .hero-top-card h3 {
    font-size: 30px;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .course-card,
  .step-card {
    padding: 24px;
  }

  .cta-section {
    padding: 60px 0 80px;
  }
}.training-video-card {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.training-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  z-index: 3;
}

.video-caption h5 {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.video-caption h3 {
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.video-close-btn,
.video-audio-btn {
  display: none;
}

/* Fullscreen when video is active */
.training-video-card.fullscreen-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  z-index: 99999;
  background: #000;
}

.training-video-card.fullscreen-video .training-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.training-video-card.fullscreen-video .video-close-btn,
.training-video-card.fullscreen-video .video-audio-btn {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--purple);
  font-size: 24px;
}

.training-video-card.fullscreen-video .video-close-btn {
  top: 22px;
  right: 22px;
  font-size: 34px;
  line-height: 1;
}

.training-video-card.fullscreen-video .video-audio-btn {
  top: 22px;
  right: 82px;
}

@media (max-width: 767px) {
  .training-video-card {
    height: 520px;
    border-radius: 28px;
  }

  .training-video-card.fullscreen-video .video-caption {
    left: 16px;
    right: 16px;
    bottom: 20px;
  }

  .video-caption h3 {
    font-size: 20px;
  }
}
.soft-divider {
  height: 90px;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 242, 0) 0%,
    #ffffff 100%
  );
}
.testimonial-section {
  padding: 35px 0 45px;
  background: #fff;
  overflow: hidden;
}

.testimonial-section .section-heading {
  margin-bottom: 22px;
}

.testimonial-section .section-heading h2 {
  margin-bottom: 0;
}

.testimonial-slider {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 54px;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 5px 0 12px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-video-card {
  flex: 0 0 calc((100% - 66px) / 4);
  aspect-ratio: 9 / 16;
  max-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.testimonial-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.testimonial-arrow.left {
  left: 4px;
}

.testimonial-arrow.right {
  right: 4px;
}

/* Tablet */
@media (max-width: 991px) {
  .testimonial-video-card {
    flex: 0 0 calc((100% - 22px) / 2);
    max-height: 420px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .testimonial-section {
    padding: 25px 0 35px;
  }

  .testimonial-slider {
    padding: 0 42px;
  }

  .testimonial-track {
    gap: 16px;
  }

  .testimonial-video-card {
    flex: 0 0 100%;
    max-height: 430px;
    border-radius: 20px;
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

    .course-page {
      padding-top: 125px;
      background:
        radial-gradient(circle at 8% 12%, rgba(255,149,15,.10), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(75,31,120,.10), transparent 30%),
        linear-gradient(180deg, #fffafc 0%, #ffffff 100%);
    }

    .course-hero {
      padding: 28px 0 45px;
    }

    .course-hero-title {
      font-family: var(--font-heading);
      font-size: clamp(38px, 4.2vw, 45px);
      line-height: 1.08;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 18px;
      letter-spacing: -1.2px;
    }

    .course-hero-title span {
      color: var(--purple);
      display: block;
    }

    .course-hero-text {
      max-width: 560px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .course-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .course-pill {
      background: #fff;
      color: var(--text);
      border: 1px solid rgba(75,31,120,.08);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: var(--shadow-soft);
    }

    .course-visual-card {
      position: relative;
      background: #fff;
      border-radius: 30px;
      padding: 10px;
      box-shadow: var(--shadow);
      overflow: visible;
    }

    .course-visual-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 24px;
      background: var(--lavender);
    }

    .course-image-placeholder {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(75,31,120,.12), rgba(255,149,15,.14)),
        url("course-hero.jpg");
      background-size: cover;
      background-position: center;
    }

    .floating-card {
      position: absolute;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      padding: 13px 16px;
      box-shadow: 0 16px 38px rgba(75,31,120,.16);
      min-width: 135px;
    }

    .floating-card strong {
      display: block;
      font-family: var(--font-heading);
      color: var(--purple);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .floating-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .floating-card.top {
      top: 24px;
      left: -16px;
    }

    .floating-card.bottom {
      right: -16px;
      bottom: 28px;
      max-width: 210px;
    }

    .hero-stats-row {
      margin-top: 28px;
      background: #fff;
      border-radius: 24px;
      padding: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      box-shadow: var(--shadow-soft);
    }

    .hero-stats-row div {
      padding: 8px 14px;
      border-right: 1px solid rgba(75,31,120,.08);
    }

    .hero-stats-row div:last-child {
      border-right: 0;
    }

    .hero-stats-row strong {
      display: block;
      color: var(--purple);
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .hero-stats-row span {
      color: var(--muted);
      font-size: 13.5px;
    }

    .compact-section {
      padding: 55px 0;
    }

    .soft-bg {
      background: var(--lavender);
    }

    .mini-title {
      max-width: 720px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .mini-title span {
      display: inline-block;
      background: var(--soft-orange);
      color: var(--purple);
      padding: 8px 15px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .mini-title h2 {
      font-family: var(--font-heading);
      color: var(--purple);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .mini-title p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .modern-card {
      height: 100%;
      background: #fff;
      border-radius: 26px;
      padding: 26px;
      border: 1px solid rgba(75,31,120,.07);
      box-shadow: var(--shadow-soft);
      transition: .25s ease;
    }

    .modern-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .icon-dot {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      background: var(--lavender);
      color: var(--purple);
      font-weight: 700;
      margin-bottom: 16px;
      font-size: 18px;
    }

    .modern-card h3 {
      font-family: var(--font-heading);
      color: var(--purple);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .modern-card p,
    .modern-card li {
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.7;
    }

    .modern-card ul {
      padding-left: 0;
      margin: 0;
    }

    .modern-card li {
      list-style: none;
      padding: 7px 0;
    }

    .modern-card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 700;
      margin-right: 9px;
    }

    .module-accordion .accordion-item {
      border: 0;
      margin-bottom: 13px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .module-accordion .accordion-button {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--purple);
      padding: 17px 22px;
      box-shadow: none;
    }

    .module-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, var(--purple), #6e35a0);
      color: #fff;
    }

    .module-accordion .accordion-body {
      padding: 18px 24px;
      color: var(--muted);
      line-height: 1.75;
    }

    .module-accordion ul {
      padding-left: 0;
      margin: 0;
    }

    .module-accordion li {
      list-style: none;
      padding: 6px 0;
    }

    .module-accordion li::before {
      content: "✓";
      color: var(--green);
      font-weight: 700;
      margin-right: 9px;
    }

    .course-cta-strip {
      background:
        radial-gradient(circle at top left, rgba(255,149,15,.26), transparent 34%),
        linear-gradient(135deg, var(--purple), #6b319c);
      color: #fff;
      border-radius: 30px;
      padding: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: var(--shadow);
    }

    .course-cta-strip h2 {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .course-cta-strip p {
      margin-bottom: 0;
      opacity: .9;
      line-height: 1.7;
    }

    .whatsapp-btn {
      background: #25D366;
      color: #fff;
      border-radius: 999px;
      padding: 14px 24px;
      font-family: var(--font-heading);
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 14px 32px rgba(37,211,102,.24);
    }

    .whatsapp-btn:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    @media (max-width: 991px) {
      .course-page {
        padding-top: 105px;
      }

      .course-hero {
        text-align: center;
        padding-top: 22px;
      }

      .course-hero-text {
        margin-left: auto;
        margin-right: auto;
      }

      .course-pill-row,
      .hero-actions {
        justify-content: center;
      }

      .course-visual-card {
        margin-top: 8px;
      }

      .course-visual-card img,
      .course-image-placeholder {
        height: 360px;
      }

      .floating-card.top {
        left: 18px;
      }

      .floating-card.bottom {
        right: 18px;
      }
    }

    @media (max-width: 768px) {
      .course-page {
        padding-top: 96px;
      }

      .course-hero {
        padding-bottom: 36px;
      }

      .course-hero-title {
        font-size: 40px;
        letter-spacing: -0.6px;
      }

      .course-hero-text {
        font-size: 16.5px;
      }

      .course-visual-card {
        border-radius: 24px;
      }

      .course-visual-card img,
      .course-image-placeholder {
        height: 310px;
        border-radius: 18px;
      }

      .floating-card {
        padding: 11px 13px;
        border-radius: 15px;
        min-width: 118px;
      }

      .floating-card strong {
        font-size: 15px;
      }

      .floating-card span {
        font-size: 12px;
      }

      .hero-stats-row {
        grid-template-columns: 1fr;
      }

      .hero-stats-row div {
        border-right: 0;
        border-bottom: 1px solid rgba(75,31,120,.08);
      }

      .hero-stats-row div:last-child {
        border-bottom: 0;
      }

      .compact-section {
        padding: 42px 0;
      }

      .modern-card {
        padding: 22px;
        border-radius: 22px;
      }

      .course-cta-strip {
        padding: 30px 22px;
        border-radius: 24px;
        text-align: center;
      }

      .course-cta-strip .whatsapp-btn {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 575px) {
      .course-hero-title {
        font-size: 34px;
      }

      .course-pill {
        font-size: 13px;
        padding: 7px 12px;
      }

      .course-visual-card img,
      .course-image-placeholder {
        height: 270px;
      }
    }
 .video-modal{
    background:#000;
    border:0;
    border-radius:24px;
    overflow:hidden;
    position:relative;
}

.video-modal video{
    width:100%;
    max-height:80vh;
    display:block;
}

.video-close{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#000;
    font-size:28px;
    z-index:100;
    line-height:1;
}
.affiliation-card{
    background: rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    padding:24px;
}

.affiliation-label{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:6px 14px;
    border-radius:999px;
    font-size:13px;
    margin-bottom:14px;
}

.affiliation-card h3{
    font-size:42px;
    font-weight:700;
    color:#ffd54a;
    margin-bottom:8px;
    line-height:1;
}

.affiliation-main{
    color:#fff !important;
    font-weight:600;
    margin-bottom:8px !important;
}

.affiliation-card p{
    color:rgba(255,255,255,.82);
    margin-bottom:6px;
    line-height:1.6;
}

@media(max-width:768px){

    .affiliation-card{
        text-align:center;
    }

    .affiliation-card h3{
        font-size:34px;
    }

}
.floating-contact{
    position:fixed;
    right:15px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.whatsapp-float,
.call-float{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:all .3s ease;
}

.whatsapp-float{
    background:#25D366;
    animation:whatsappPulse 2s infinite;
}

.call-float{
    background:#ff6f3c;
}

.whatsapp-float:hover,
.call-float:hover{
    transform:translateY(-4px) scale(1.05);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){

    .floating-contact{
        right:12px;
        bottom:15px;
    }

    .whatsapp-float,
    .call-float{
        width:55px;
        height:55px;
    }
}