:root {
  --bg-main: #020617;
  --bg-section: #031126;
  --bg-blue-neon: #031b3f;
  --bg-card: rgba(255, 255, 255, 0.06);
  --blue-neon: #00b7ff;
  --blue-light: #38bdf8;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --green: #20d68a;
  --cyan: #22d3ee;
  --gold: #f5b942;
  --white: #ffffff;
  --muted: #cbd5e1;
  --border: rgba(56, 189, 248, 0.2);
  --deep-purple: #2b095f;
  --shadow-blue: 0 0 56px rgba(0, 183, 255, 0.34);
  --shadow-purple: 0 0 54px rgba(139, 92, 246, 0.28);
  --shadow-green: 0 0 38px rgba(32, 214, 138, 0.28);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-card: 18px;
  --radius-large: 28px;
  --container: 1160px;
  --color-green: var(--green);
  --color-green-dark: #071b17;
  --color-gold: var(--gold);
  --color-blue: var(--cyan);
  --color-blue-dark: #080d22;
  --color-white: var(--white);
  --color-text: var(--white);
  --color-muted: var(--muted);
  --color-line: var(--border);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 183, 255, 0.25), transparent 35%),
    radial-gradient(circle at left, rgba(139, 92, 246, 0.18), transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(34, 211, 238, 0.1), transparent 26rem),
    linear-gradient(180deg, #020617 0%, #031b3f 45%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 183, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.08), transparent 38rem),
    radial-gradient(circle at 50% 72%, rgba(32, 214, 138, 0.06), transparent 30rem);
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  width: 1.12em;
  height: 1.12em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(var(--container), calc(100% - 34px));
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.58);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: top 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  top: 8px;
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(3, 7, 18, 0.82);
  box-shadow: 0 14px 62px rgba(0, 183, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 50%;
  object-fit: cover;
  background: #0a0d1d;
  box-shadow: 0 0 28px rgba(0, 183, 255, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}

.brand-copy strong::first-letter {
  color: var(--green);
  text-shadow: 0 0 18px rgba(32, 214, 138, 0.72);
}

.brand-copy small {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(0, 183, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.22);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button-purple,
.button-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 18px 42px rgba(139, 44, 246, 0.36);
}

.button-cyan {
  color: #031126;
  background: linear-gradient(135deg, var(--blue-neon), var(--cyan));
  box-shadow: 0 18px 46px rgba(0, 183, 255, 0.34);
}

.button-whatsapp {
  color: #022016;
  background: linear-gradient(135deg, var(--green), #11c7a8);
  box-shadow: 0 16px 36px rgba(32, 214, 138, 0.32);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: var(--shadow-purple);
}

.button-cta {
  color: #131827;
  background: linear-gradient(135deg, #ffffff, #f2eaff);
  box-shadow: 0 18px 52px rgba(255, 255, 255, 0.24);
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(182, 92, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(139, 44, 246, 0.2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 740px;
  padding: 150px max(20px, calc((100vw - var(--container)) / 2)) 84px;
  background:
    radial-gradient(circle at 76% 24%, rgba(32, 214, 138, 0.42), transparent 22rem),
    radial-gradient(circle at 58% 44%, rgba(17, 199, 168, 0.24), transparent 26rem),
    radial-gradient(circle at 22% 18%, rgba(34, 211, 238, 0.14), transparent 20rem),
    radial-gradient(circle at 40% 82%, rgba(32, 214, 138, 0.16), transparent 18rem),
    linear-gradient(180deg, #020617 0%, #022c22 42%, #020617 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(32, 214, 138, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(32, 214, 138, 0.065) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 60% 44%, black, transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg-section));
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 120px;
  right: 4%;
  width: 620px;
  height: 420px;
  border: none;
  border-radius: 0;
  background:
    conic-gradient(
      from 215deg at 50% 50%,
      transparent 0deg,
      rgba(245, 185, 66, 0) 18deg,
      rgba(245, 185, 66, 0.55) 24deg,
      rgba(255, 215, 120, 0.88) 28deg,
      transparent 36deg,
      transparent 72deg,
      rgba(245, 185, 66, 0.45) 80deg,
      rgba(255, 215, 120, 0.75) 85deg,
      transparent 96deg,
      transparent 135deg,
      rgba(245, 185, 66, 0.38) 142deg,
      transparent 154deg,
      transparent 360deg
    );
  opacity: 0.72;
  filter: blur(1px);
  box-shadow: none;
  transform: rotate(-12deg);
  mask-image: radial-gradient(circle at center, black 0%, black 48%, transparent 72%);
  animation: goldenRaysPulse 6s ease-in-out infinite, goldenRaysRotate 18s ease-in-out infinite;
}

.hero-orbit-two {
  right: 3%;
  bottom: 120px;
  width: 720px;
  height: 320px;
  border-radius: 0;
  background:
    radial-gradient(ellipse at center, rgba(245, 185, 66, 0.3), transparent 58%),
    linear-gradient(110deg, transparent 0 28%, rgba(245, 185, 66, 0.42) 31%, transparent 36% 48%, rgba(255, 217, 120, 0.34) 52%, transparent 58% 100%);
  filter: blur(14px);
  opacity: 0.8;
  transform: rotate(-8deg);
  animation: goldenGlowFloat 7s ease-in-out infinite;
}

.hero-orbit-one::before,
.hero-orbit-one::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 185, 66, 0.95), transparent);
  box-shadow: 0 0 24px rgba(245, 185, 66, 0.75);
  transform-origin: center;
  animation: goldenSparkLine 3.8s ease-in-out infinite;
}

.hero-orbit-one::before {
  transform: translate(-50%, -50%) rotate(-18deg);
}

.hero-orbit-one::after {
  transform: translate(-50%, -50%) rotate(18deg);
  animation-delay: 1.2s;
}

.hero-orbit-two::before,
.hero-orbit-two::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5b942;
  box-shadow:
    0 0 12px rgba(245, 185, 66, 0.9),
    0 0 28px rgba(245, 185, 66, 0.55);
  animation: goldenSparkle 4s ease-in-out infinite;
}

.hero-orbit-two::before {
  top: 24%;
  left: 32%;
}

.hero-orbit-two::after {
  right: 26%;
  bottom: 30%;
  animation-delay: 1.6s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 64px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(3.05rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--green);
  text-shadow: 0 0 34px rgba(32, 214, 138, 0.62);
}

.hero-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 7px 12px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  color: #b8efff;
  background: rgba(0, 183, 255, 0.12);
  box-shadow: inset 0 0 22px rgba(0, 183, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-badge::before,
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 24px;
}

.hero-course-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 174px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-course-card:hover {
  border-color: rgba(182, 92, 255, 0.42);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.hero-course-green:hover {
  border-color: rgba(32, 214, 138, 0.46);
  box-shadow: var(--shadow-green);
}

.hero-course-icon,
.course-icon,
.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), #4f13a9);
  box-shadow: 0 0 30px rgba(139, 44, 246, 0.38);
}

.hero-course-green .hero-course-icon {
  color: #022016;
  background: linear-gradient(135deg, var(--green), #0ba987);
  box-shadow: 0 0 30px rgba(32, 214, 138, 0.32);
}

.hero-course-card h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-course-card p {
  max-width: none;
  min-height: 48px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-course-card .button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  font-size: 0.86rem;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.hero-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-perks svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.62));
}

.hero-media {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 520px;
  perspective: 1200px;
}

.student-frame {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(100%, 480px);
  height: 560px;
  overflow: visible;
  border-radius: 42px;
}

.student-frame::before {
  content: "";
  position: absolute;
  inset: 68px 26px 32px;
  z-index: -2;
  border: 3px solid rgba(182, 92, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(182, 92, 255, 0.82), inset 0 0 44px rgba(182, 92, 255, 0.2);
  transform: rotate(-9deg);
}

.student-frame::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -20px;
  left: -10px;
  z-index: -3;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(139, 44, 246, 0.58), transparent 70%);
  filter: blur(22px);
}

.floating-icon,
.floating-stat,
.video-card {
  position: absolute;
  z-index: 4;
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(182, 92, 255, 0.34);
  border-radius: 18px;
  color: #d9b6ff;
  background: rgba(6, 11, 24, 0.6);
  box-shadow: 0 0 28px rgba(139, 44, 246, 0.24);
  backdrop-filter: blur(12px);
  animation: floaty 5s ease-in-out infinite;
}

.floating-target {
  top: 220px;
  left: 22px;
  color: var(--cyan);
  animation-delay: -1.2s;
}

.floating-trophy {
  top: 112px;
  left: 92px;
}

.floating-chart {
  top: 176px;
  right: 0;
  color: var(--green);
  animation-delay: -2.2s;
}

.floating-stat {
  right: -6px;
  bottom: -18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  min-width: 272px;
  padding: 20px 22px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 18px;
  background: rgba(3, 17, 38, 0.82);
  box-shadow: var(--shadow-deep), 0 0 42px rgba(0, 183, 255, 0.2);
  backdrop-filter: blur(18px);
}

.floating-stat span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0, 183, 255, 0.14);
  box-shadow: inset 0 0 18px rgba(0, 183, 255, 0.16);
}

.floating-stat strong {
  font-size: 1.7rem;
  line-height: 1;
}

.floating-stat small {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 700;
}

.video-card {
  position: relative;
  z-index: 5;
  left: auto;
  bottom: auto;
  width: min(92%, 590px);
  aspect-ratio: 16 / 10;
  margin-top: 84px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 30px;
  background: rgba(3, 17, 38, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 54px rgba(0, 183, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.video-card:hover {
  border-color: rgba(34, 211, 238, 0.76);
  transform: translateY(-8px) rotateY(-2deg) rotateX(1deg) scale(1.015);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.56),
    0 0 78px rgba(0, 183, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 39%, transparent 42% 100%);
  background-size: 220% 220%;
  pointer-events: none;
  animation: sweep 4.5s linear infinite;
}

.video-poster,
.image-placeholder.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: center;
  justify-items: center;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(to top, rgba(2, 6, 23, 0.92), rgba(3, 27, 63, 0.2) 55%, rgba(0, 183, 255, 0.08)),
    radial-gradient(circle at center, rgba(0, 183, 255, 0.14), transparent 34%);
  font-size: 0.95rem;
  font-weight: 900;
}

.video-kicker {
  justify-self: start;
  padding: 7px 11px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: 999px;
  color: #d9f8ff;
  background: rgba(2, 6, 23, 0.56);
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-title {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  text-shadow: 0 0 18px rgba(0, 183, 255, 0.44);
}

.player-bar {
  position: relative;
  display: block;
  justify-self: stretch;
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.player-bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-neon), var(--cyan), var(--green));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}

.play-button {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: #031126;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.68), 0 0 0 14px rgba(0, 183, 255, 0.12);
}

.play-button svg {
  width: 2rem;
  height: 2rem;
  transform: translateX(2px);
}

.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -24px;
  padding-bottom: 34px;
}

.stats-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(182, 92, 255, 0.2);
  border-radius: var(--radius-large);
  background: rgba(6, 11, 24, 0.74);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.stats-heading h2,
.section-intro h2,
.cta-panel h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(245, 185, 66, 0.1), 0 0 22px rgba(245, 185, 66, 0.72);
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 8px;
  color: rgba(203, 213, 225, 0.76);
  font-weight: 700;
}

.benefits,
.courses,
.process,
.testimonials,
.final-cta {
  position: relative;
  padding: 92px 0 0;
}

.benefits::before,
.courses::before,
.process::before,
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 44, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(6, 11, 24, 0.72), rgba(3, 7, 18, 0));
  pointer-events: none;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-intro p,
.cta-panel p {
  margin: 16px auto 0;
  max-width: 680px;
  color: rgba(203, 213, 225, 0.78);
  font-size: 1.04rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: rgba(6, 11, 24, 0.5);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.benefit-card,
.testimonial-card,
.process-step {
  border: 0;
  background: transparent;
}

.benefit-card {
  min-height: 255px;
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  transition: background 0.24s ease, transform 0.24s ease;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card:hover {
  background: rgba(139, 44, 246, 0.1);
  transform: translateY(-4px);
}

.benefit-card:nth-child(2) .icon-badge {
  color: #022016;
  background: linear-gradient(135deg, var(--green), #0bbca1);
  box-shadow: var(--shadow-green);
}

.benefit-card:nth-child(3) .icon-badge {
  color: #241400;
  background: linear-gradient(135deg, var(--gold), #ffda7b);
  box-shadow: 0 0 34px rgba(245, 185, 66, 0.28);
}

.benefit-card:nth-child(4) .icon-badge {
  background: linear-gradient(135deg, #ff5adf, var(--purple));
}

.benefit-card h3,
.course-content h3,
.process-step h3,
.testimonial-card h3 {
  margin: 20px 0 10px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.2;
}

.benefit-card p,
.course-content p,
.process-step p,
.testimonial-card p {
  margin: 0;
  color: rgba(203, 213, 225, 0.76);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.course-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(32, 214, 138, 0.32);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(3, 17, 38, 0.92), rgba(2, 6, 23, 0.96));
  box-shadow: var(--shadow-deep), 0 0 42px rgba(32, 214, 138, 0.16);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.course-card:hover {
  border-color: rgba(32, 214, 138, 0.58);
  box-shadow: var(--shadow-deep), var(--shadow-green);
  transform: translateY(-5px);
}

.course-blue {
  border-color: rgba(32, 214, 138, 0.32);
  background: linear-gradient(135deg, rgba(4, 73, 66, 0.88), rgba(5, 16, 31, 0.94));
  box-shadow: var(--shadow-deep), 0 0 42px rgba(32, 214, 138, 0.16);
}

.course-blue:hover {
  border-color: rgba(32, 214, 138, 0.54);
  box-shadow: var(--shadow-deep), var(--shadow-green);
}

.course-glow {
  position: absolute;
  inset: auto -18% -32% 28%;
  z-index: -1;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 92, 255, 0.42), transparent 66%);
  filter: blur(12px);
}

.course-blue .course-glow {
  background: radial-gradient(circle, rgba(32, 214, 138, 0.38), transparent 66%);
}

.course-image-wrap {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  padding: 16px 16px 0;
}

.course-image,
.image-placeholder.course-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.course-card::after {
  display: none;
}

.course-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 32px;
}

.course-content h3 {
  margin-top: 18px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.course-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.course-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.course-content li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--purple-light);
  filter: drop-shadow(0 0 8px rgba(182, 92, 255, 0.5));
}

.course-blue .course-content li svg,
.course-blue .course-icon {
  color: var(--green);
  filter: drop-shadow(0 0 8px rgba(32, 214, 138, 0.5));
}

.course-blue .button-dark {
  color: #022016;
  background: linear-gradient(135deg, var(--green), #12c9a8);
  box-shadow: var(--shadow-green);
}

.course-content .button {
  margin-top: auto;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 9%;
  left: 9%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(182, 92, 255, 0.32) 50%, transparent 50%);
  background-size: 18px 2px;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 0 8px;
}

.step-number {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: var(--shadow-purple);
  font-size: 1.05rem;
  font-weight: 950;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: 12px;
  color: var(--green);
  filter: drop-shadow(0 0 12px rgba(32, 214, 138, 0.5));
  vertical-align: middle;
}

.process-step h3 {
  margin-top: 20px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.88rem;
}

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

.references-card {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(32, 214, 138, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 20%, rgba(32, 214, 138, 0.18), transparent 14rem),
    radial-gradient(circle at 88% 15%, rgba(139, 92, 246, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(3, 17, 38, 0.88), rgba(2, 6, 23, 0.9));
  box-shadow: var(--shadow-deep), 0 0 58px rgba(32, 214, 138, 0.16);
  backdrop-filter: blur(18px);
  text-align: center;
}

.references-card::before {
  content: "";
  position: absolute;
  inset: -50% -20%;
  background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.1), transparent 66%);
  transform: rotate(10deg);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.references-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 24px;
  color: var(--cyan);
  background: rgba(0, 183, 255, 0.12);
  box-shadow: 0 0 34px rgba(0, 183, 255, 0.28), inset 0 0 22px rgba(255, 255, 255, 0.06);
}

.references-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.references-card > * {
  position: relative;
  z-index: 1;
}

.references-card p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 850;
  line-height: 1.35;
}

.references-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.reference-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 214, 138, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 28px rgba(32, 214, 138, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.reference-image-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 214, 138, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 38px rgba(32, 214, 138, 0.24);
}

.reference-image,
.image-placeholder.reference-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.reference-image-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.references-button {
  margin-top: 2px;
}

.testimonial-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.testimonial-card:hover {
  border-color: rgba(182, 92, 255, 0.4);
  transform: translateY(-4px);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar,
.image-placeholder.testimonial-avatar {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border: 2px solid rgba(182, 92, 255, 0.35);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(139, 44, 246, 0.26);
}

.testimonial-card h3 {
  margin: 0 0 3px;
  font-size: 1.05rem;
}

.testimonial-card span {
  color: var(--purple-light);
  font-weight: 850;
}

.final-cta {
  padding-bottom: 58px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(182, 92, 255, 0.36);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(41, 10, 91, 0.96), rgba(139, 44, 246, 0.86));
  box-shadow: var(--shadow-purple), var(--shadow-deep);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12), transparent 70%);
  transform: rotate(8deg);
  animation: ctaGlow 7s ease-in-out infinite;
}

.cta-panel .eyebrow,
.cta-panel p {
  display: none;
}

.cta-panel h2 {
  position: relative;
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.cta-panel .button {
  position: relative;
  min-width: 300px;
}

.cta-panel small {
  position: relative;
  grid-column: 2;
  margin-top: -14px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 750;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), #02040b 18%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, minmax(0, 1fr));
  gap: 28px;
  padding: 38px 0 30px;
}

.site-footer .brand-copy strong,
.site-footer .brand-copy small {
  color: var(--white);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.96rem;
}

.footer-column a,
.footer-column span {
  color: rgba(203, 213, 225, 0.68);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--purple-light);
}

.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.social-row a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.38));
}

.social-row a span {
  display: inline-block;
  color: currentColor;
}

.social-row a:hover {
  border-color: rgba(56, 189, 248, 0.48);
  background: rgba(0, 183, 255, 0.12);
  box-shadow: var(--shadow-blue);
}

.footer-bottom {
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(203, 213, 225, 0.58);
  font-size: 0.9rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 11, 0.8);
  backdrop-filter: blur(12px);
}

.video-dialog {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(182, 92, 255, 0.32);
  border-radius: 24px;
  background: var(--bg-section);
  box-shadow: var(--shadow-purple), 0 42px 100px rgba(0, 0, 0, 0.6);
}

.video-stage,
.video-stage video,
.video-fallback {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.video-stage video {
  object-fit: cover;
  background: #000;
}

.video-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  display: block;
}

.video-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(139, 44, 246, 0.34), transparent 35%),
    linear-gradient(135deg, #120623, var(--bg-section));
}

.video-fallback h3,
.video-fallback p {
  margin: 0;
}

.video-fallback p {
  color: rgba(203, 213, 225, 0.78);
}

.video-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(182, 92, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: #120623;
  box-shadow: var(--shadow-purple);
  cursor: pointer;
  font-size: 1.5rem;
}

.image-placeholder {
  display: block;
  background:
    radial-gradient(circle at 50% 28%, rgba(182, 92, 255, 0.56), transparent 32%),
    linear-gradient(135deg, rgba(139, 44, 246, 0.74), rgba(32, 214, 138, 0.32)),
    #090f24;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@keyframes sweep {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -80% 100%;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes ctaGlow {
  0%,
  100% {
    transform: translateX(-12%) rotate(8deg);
  }

  50% {
    transform: translateX(12%) rotate(8deg);
  }
}

@keyframes goldenRaysPulse {
  0%,
  100% {
    opacity: 0.58;
    filter: blur(1px) brightness(1);
  }

  50% {
    opacity: 0.88;
    filter: blur(1.5px) brightness(1.35);
  }
}

@keyframes goldenRaysRotate {
  0%,
  100% {
    transform: rotate(-12deg) scale(1);
  }

  50% {
    transform: rotate(-6deg) scale(1.025);
  }
}

@keyframes goldenGlowFloat {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(0) rotate(-8deg) scale(1);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-18px) rotate(-5deg) scale(1.04);
  }
}

@keyframes goldenSparkLine {
  0%,
  100% {
    opacity: 0.35;
    box-shadow: 0 0 18px rgba(245, 185, 66, 0.35);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 22px rgba(245, 185, 66, 0.9),
      0 0 48px rgba(245, 185, 66, 0.45);
  }
}

@keyframes goldenSparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  45% {
    opacity: 1;
    transform: scale(1.25);
  }

  70% {
    opacity: 0.35;
    transform: scale(0.9);
  }
}

@media (min-width: 901px) {
  .hero-media {
    transform: translateY(-32px);
  }
}

@media (max-width: 900px) {
  .hero-media {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(182, 92, 255, 0.2);
    border-radius: 24px;
    background: rgba(3, 7, 18, 0.94);
    box-shadow: var(--shadow-purple), var(--shadow-deep);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-whatsapp {
    order: 2;
  }

  .hero-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-media {
    min-height: 600px;
  }

  .video-card {
    left: auto;
    width: min(92%, 660px);
    margin: 0 auto;
    margin-top: 120px;
    transform: none;
  }

  .video-card:hover {
    transform: translateY(-7px) scale(1.01);
  }

  .floating-stat {
    right: calc(50% - 330px);
    bottom: -24px;
  }

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

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .course-grid,
  .process-track,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    border-radius: 22px;
  }

  .header-whatsapp {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 14px 62px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-course-grid,
  .stats-grid,
  .benefit-grid,
  .course-grid,
  .process-track,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-course-card {
    min-height: auto;
  }

  .hero-course-card p {
    min-height: 0;
  }

  .references-card {
    text-align: left;
  }

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

  .references-button {
    width: 100%;
  }

  .references-icon {
    width: 72px;
    height: 72px;
  }

  .hero-perks {
    gap: 12px;
  }

  .hero-perks span {
    width: calc(50% - 6px);
    font-size: 0.82rem;
  }

  .hero-media {
    display: grid;
    gap: 0;
    min-height: auto;
  }

  .floating-stat {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 310px);
    min-width: 225px;
    margin: -22px auto 0;
    padding: 16px;
  }

  .video-card {
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 22px;
    transform: none;
  }

  .video-card:hover {
    transform: translateY(-5px);
  }

  .video-overlay {
    padding: 18px;
  }

  .play-button {
    width: 78px;
    height: 78px;
  }

  .video-title {
    font-size: 0.94rem;
  }

  .stats-band {
    margin-top: 0;
  }

  .benefits,
  .courses,
  .process,
  .testimonials,
  .final-cta {
    padding-top: 72px;
  }

  .benefit-grid {
    border-radius: 22px;
  }

  .benefit-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .course-card {
    min-height: auto;
  }

  .course-content {
    padding: 26px;
  }

  .process-step {
    min-height: auto;
    padding: 0 0 22px;
    border-bottom: 1px dashed rgba(182, 92, 255, 0.24);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
    text-align: left;
  }

  .cta-panel .button {
    width: 100%;
    min-width: 0;
  }

  .cta-panel small {
    grid-column: auto;
    margin-top: -10px;
  }

  .final-cta {
    padding-bottom: 50px;
  }

  .video-dialog {
    border-radius: 18px;
  }

  .video-close {
    top: 8px;
    right: 8px;
  }
}
@media (min-width: 901px) {
  .hero {
    overflow: visible !important;
  }

  .hero-grid {
    overflow: visible !important;
  }

  .hero .hero-grid .hero-media {
    position: relative !important;
    justify-self: end !important;
    align-self: start !important;
    min-height: 420px !important;
  }

  .hero .hero-grid .hero-media .video-card {
    position: relative !important;
    top: 100px !important;
    left: 105px !important;
    margin-top: 0 !important;
    width: min(680px, 100%) !important;
    max-width: 680px !important;
    z-index: 20 !important;
    transform: rotateY(-5deg) rotateX(2deg) !important;
  }

  .hero .hero-grid .hero-media .video-card:hover {
    transform: translateY(-8px) rotateY(-2deg) rotateX(1deg) scale(1.015) !important;
  }

  .hero .hero-grid .hero-media .floating-stat {
    right: -95px !important;
    bottom: -25px !important;
  }
}

@media (max-width: 900px) {
  .hero .hero-grid .hero-media .video-card {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
  }
}
@media (min-width: 901px) {
  .course-card {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto;
    align-items: stretch;
  }

  .course-image-wrap {
    display: flex;
    align-items: center;
    padding: 12px 0 12px 12px;
  }

  .course-image,
  .image-placeholder.course-image {
    height: 100%;
    min-height: 520px;
    object-fit: contain;
  }

  .course-content {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .course-image-wrap {
    padding: 16px 16px 0;
  }

  .course-image,
  .image-placeholder.course-image {
    height: 340px;
    object-fit: contain;
  }
}

.hero-copy p,
.benefit-card p,
.course-content p,
.process-step p,
.references-card p,
.cta-panel p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.75;
}

.section-intro {
  text-align: center;
}

.section-intro p {
  max-width: 760px;
  text-align: center;
  line-height: 1.75;
}

.hero-copy p {
  max-width: 620px;
}

.course-content p {
  max-width: 95%;
}

.course-content ul {
  gap: 12px;
  margin: 24px 0 28px;
}

.course-content li {
  align-items: flex-start;
  line-height: 1.55;
}

.course-content li span {
  display: block;
}

.hero-copy h1,
.section-intro h2,
.course-content h3,
.benefit-card h3,
.process-step h3 {
  text-wrap: balance;
}

@media (max-width: 720px) {
  .hero-copy p,
  .benefit-card p,
  .course-content p,
  .process-step p,
  .references-card p {
    text-align: left;
  }

  .section-intro p {
    text-align: center;
  }
}
