:root {
  --green: #2FA84F;
  --green-deep: #1A6B34;
  --green-ink: #145528;
  --gold: #C4922A;
  --gold-bright: #E8B923;
  --gold-soft: #F0D78C;
  --saffron: #E8740C;
  --marigold: #F5A623;
  --cream: #FAF6EF;
  --cream-deep: #F0E8DA;
  --ink: #0F1A14;
  --body: #3D4F44;
  --muted: #6B7C72;
  --soft: #94A89C;
  --line: rgba(15, 26, 20, 0.08);
  --bg: #FFFCF7;
  --bg-muted: #F5F0E8;
  --forest: #06120a;
  --forest-mid: #0D2818;
  --whatsapp: #25D366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

.site-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(196, 146, 42, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(47, 168, 79, 0.05) 0%, transparent 50%);
}

.site-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4922A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

main,
.nav-wrap,
.footer {
  position: relative;
  z-index: 1;
}

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

/* Media frames — crisp cover crops, no stretch/blur */
.media {
  --media-ratio: 125%;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #122418, #0a1a0d);
  isolation: isolate;
}

.media::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: var(--media-ratio);
}

.media picture,
.media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.media--portrait {
  --media-ratio: 125%; /* 4:5 */
}

.media--square {
  --media-ratio: 100%;
}

.media--card {
  --media-ratio: 68.75%; /* 16:11 */
}

.media--fill {
  width: 100%;
  height: 100%;
  min-height: 100%;
  --media-ratio: 0;
}

.media--fill::before {
  display: none;
}

.media--hero {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 420px;
}

.media--hero img {
  object-position: center 35%;
}

.media--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 18, 10, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.media--about {
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 360px;
}

.media--about img {
  object-position: center 28%;
}

.media--about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 18, 10, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.course-card .media img,
.gallery-item .media img {
  transition: transform 0.55s var(--ease);
}

.course-card:hover .media img,
.gallery-item:hover .media img {
  transform: scale(1.04) translateZ(0);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-ink);
}

::selection {
  background: rgba(47, 168, 79, 0.18);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  padding: 15px 30px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 9999px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 168, 79, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(47, 168, 79, 0.48);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}

/* Nav */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  transition: top 0.3s var(--ease);
}

body.nav-scrolled .nav-wrap {
  top: 10px;
}

body.nav-scrolled .nav {
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 12px 40px rgba(15, 26, 20, 0.12);
  border-color: rgba(196, 146, 42, 0.12);
}

.nav {
  width: 100%;
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  border-radius: 9999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--body);
  font-weight: 600;
  font-size: 14.5px;
}

.nav-links a:hover {
  color: var(--green-ink);
}

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9999px;
  cursor: pointer;
  flex: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-toggle:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.16);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.22s var(--ease), opacity 0.18s ease, width 0.22s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-sheet-head,
.nav-sheet-cta,
.nav-close {
  display: none;
}

.nav-sheet-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(232, 185, 35, 0.22), transparent 60%),
    radial-gradient(900px 500px at 6% 108%, rgba(47, 168, 79, 0.18), transparent 55%),
    linear-gradient(165deg, #06120a 0%, #0D2818 45%, #0a1a0d 100%);
  color: #fff;
  padding: 172px 20px 96px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l5 15h16l-13 9 5 15-13-10-13 10 5-15-13-9h16z' fill='%23E8B923'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 52, 0.4), transparent 65%);
  filter: blur(12px);
  animation: gvsGlow 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px 56px;
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  animation: gvsFadeUp 0.8s var(--ease) both;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  animation: gvsFadeUp 0.9s var(--ease) both;
}

.hero-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E9CE93;
  margin-bottom: 26px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF5200;
  box-shadow: 0 0 10px #FF5200;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-wrap: balance;
  max-width: 11em;
}

.hero h1 em {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #E7C56A, #C08E2A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #C8CDD3;
  max-width: 540px;
  margin-bottom: 0;
}

.hero-lead strong {
  color: #fff;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.hero-stat {
  position: relative;
  padding-left: 16px;
}

.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--green));
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #fff;
}

.stat-label {
  font-size: 13px;
  color: var(--soft);
  font-weight: 500;
}

.hero-media {
  position: relative;
  width: 100%;
  min-width: 0;
  animation: gvsFadeUp 1s var(--ease) both;
}

@media (min-width: 901px) {
  .hero-copy {
    align-self: end;
  }

  .hero-actions {
    align-self: start;
  }
}


.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: gvsFloat 6s ease-in-out infinite;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

.hero-badge-title {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}

.hero-badge-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hero-float-card {
  position: absolute;
  top: 24px;
  right: -16px;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.95), rgba(196, 146, 42, 0.95));
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: gvsFloat 6s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-float-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
}

.hero-float-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 100px;
  line-height: 1.3;
}

/* Trust strip */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(196, 146, 42, 0.15);
  padding: 20px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgba(196, 146, 42, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(15, 26, 20, 0.04);
}

/* Marquee */
.marquee {
  background: var(--forest-mid);
  border-bottom: 1px solid rgba(232, 185, 35, 0.12);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: gvsMarquee 26s linear infinite;
  white-space: nowrap;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.marquee .dot {
  color: var(--gold-bright);
}

/* Sections */
.section {
  padding: 100px 20px 90px;
  background: #fff;
}

.section-muted {
  background: var(--bg-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 96px 20px;
}

.section-dark {
  background: linear-gradient(160deg, #06120a, #0a1a0d);
  color: #fff;
  padding: 96px 20px;
}

.section-head {
  margin-bottom: 52px;
}

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-gold {
  color: var(--gold-bright);
}

.section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.heading-accent {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-style: italic;
  color: var(--green-deep);
}

.section-dark .heading-accent {
  background: linear-gradient(135deg, #E7C56A, #C08E2A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-courses {
  background: var(--bg);
}

.section-short {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg-muted) 100%);
  border-top: 1px solid rgba(196, 146, 42, 0.1);
  border-bottom: 1px solid rgba(196, 146, 42, 0.1);
}

.section-why {
  background: #fff;
}

.section-gallery {
  background: var(--bg-muted);
}

.section-about {
  background: var(--bg);
}

.section-dark h2 {
  color: #fff;
}

.section-aside {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.section-center-lead {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Courses */
.course-toolbar {
  margin-bottom: 24px;
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-filter {
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.course-filter:hover {
  border-color: rgba(47, 168, 79, 0.35);
  color: var(--green-ink);
}

.course-filter.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(47, 168, 79, 0.3);
}

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

.course-bento .course-card.is-hidden {
  display: none;
}

.course-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.course-card--featured .media--card {
  height: 100%;
  min-height: 280px;
  --media-ratio: 0;
}

.course-card--featured .media--card::before {
  display: none;
}

.course-card--featured .media--card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.course-track {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.course-highlights {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.course-highlights li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.course-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.course-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.course-tag--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
}

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

.course-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 26, 20, 0.06);
  transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.course-card .media--card {
  border-radius: 0;
  flex: none;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(47, 168, 79, 0.35);
}

.course-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 9999px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.course-body {
  padding: 22px;
}

.course-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}

.course-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}

.course-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 19px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fee-table-wrap {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid rgba(196, 146, 42, 0.15);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--cream) 0%, #fff 100%);
  box-shadow: 0 8px 32px rgba(15, 26, 20, 0.06);
}

.fee-table-head {
  margin-bottom: 22px;
}

.fee-table-lead {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.fee-table-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 18px;
}

.fee-table-scroll {
  overflow-x: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.fee-table th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.fee-table td:last-child {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--green-deep);
  white-space: nowrap;
}

.fee-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.fees-reveal-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(60, 181, 88, 0.22);
  border-radius: 14px;
  background: rgba(60, 181, 88, 0.06);
}

.fees-reveal-bar p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-ink);
  line-height: 1.45;
}

body.fees-hidden .fee-value {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.35s var(--ease);
}

body:not(.fees-hidden) .fee-value {
  filter: none;
}

body:not(.fees-hidden) .fees-reveal-bar {
  background: rgba(100, 116, 139, 0.05);
  border-color: var(--line);
}

body:not(.fees-hidden) .fees-reveal-bar p {
  color: var(--muted);
  font-weight: 500;
}

.short-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.short-card {
  background: #fff;
  border: 1px solid rgba(196, 146, 42, 0.12);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(15, 26, 20, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.short-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.short-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 26, 20, 0.1);
  border-color: rgba(47, 168, 79, 0.25);
}

.short-card:hover::before {
  opacity: 1;
}

.short-card--accent {
  background: linear-gradient(145deg, #fff 0%, var(--cream) 100%);
  border-color: rgba(196, 146, 42, 0.25);
}

.short-icon {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: rgba(196, 146, 42, 0.25);
}

.short-card strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.short-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Why */
.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.why-intro h2 {
  margin-bottom: 18px;
}

.why-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 32px;
  max-width: 420px;
}

.why-stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border: 1px solid rgba(196, 146, 42, 0.15);
  max-width: 320px;
}

.why-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--green-deep);
}

.why-stat-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(15, 26, 20, 0.05);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 26, 20, 0.08);
}

.why-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: rgba(196, 146, 42, 0.15);
  line-height: 1;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(60, 181, 88, 0.16), rgba(201, 154, 52, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.why-card h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #0a1a0d;
  min-height: 0;
  margin: 0;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 10, 0.85));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Testimonials */
.stories-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.stories-intro h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.testimonial--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(232, 185, 35, 0.2);
}

.testimonial--featured p {
  font-size: 17px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
}

.stars {
  color: var(--gold-bright);
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #E5E7EB;
  margin-bottom: 22px;
}

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

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  color: #fff;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  display: block;
}

.testimonial footer span:last-child {
  font-size: 13px;
  color: var(--soft);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
  min-width: 0;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -12px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(26, 107, 52, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-badge-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}

.about-badge-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  max-width: 100px;
  line-height: 1.3;
}

.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.credential-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 9999px;
  background: var(--cream);
  border: 1px solid rgba(196, 146, 42, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: 0.02em;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  margin-bottom: 22px;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}

.about-copy p:last-of-type {
  margin-bottom: 28px;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-checks div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
}

.about-checks span {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

/* Enroll */
.enroll-wrap {
  padding: 20px 0 96px;
  background: #fff;
}

.enroll {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(232, 185, 35, 0.28), transparent 60%),
    radial-gradient(600px 400px at 10% 110%, rgba(47, 168, 79, 0.2), transparent 55%),
    linear-gradient(150deg, #06120a, #0D2818);
  padding: 72px 20px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(26, 107, 52, 0.2);
}

.enroll-inner {
  max-width: 580px;
  margin: 0 auto;
}

.enroll h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.enroll-inner > p {
  font-size: 17px;
  color: #C8CDD3;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.enroll-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 34px;
}

.enroll-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
}

.enroll-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
.footer {
  background: var(--forest-mid);
  border-top: 1px solid rgba(232, 185, 35, 0.1);
  padding: 56px 20px 34px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: none;
}

.footer-brand span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

.footer-grid > div > p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}

.footer-heading {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes gvsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes gvsGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes gvsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy,
  .hero-media,
  .hero-actions,
  .hero-glow,
  .hero-badge,
  .marquee-track {
    animation: none !important;
  }
  .course-card,
  .btn,
  .course-card .media img,
  .gallery-item .media img {
    transition: none;
  }

  .course-card:hover .media img,
  .gallery-item:hover .media img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== Responsive / Mobile ========== */
@media (max-width: 1024px) {
  .course-bento,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stories-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .testimonial--featured {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 18px;
  }

  .nav-wrap {
    top: 12px;
    padding: 0 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .nav {
    position: relative;
    gap: 12px;
    padding: 10px 10px 10px 14px;
    border-radius: 22px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tag {
    display: none;
  }

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

  .nav-cta-desktop {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 360px);
    z-index: 130;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding:
      max(20px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.14);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    transition:
      transform 0.28s var(--ease),
      visibility 0.28s;
  }

  .nav-links.is-open,
  .nav-check:checked ~ .nav-links,
  body:has(.nav-check:checked) .nav-links {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-check:checked ~ .nav-toggle .nav-toggle-icon span:nth-child(1),
  body:has(.nav-check:checked) .nav-toggle .nav-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-check:checked ~ .nav-toggle .nav-toggle-icon span:nth-child(2),
  body:has(.nav-check:checked) .nav-toggle .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-check:checked ~ .nav-toggle .nav-toggle-icon span:nth-child(3),
  body:has(.nav-check:checked) .nav-toggle .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open,
  body:has(.nav-check:checked) {
    overflow: hidden;
  }

  body.nav-open .nav-backdrop,
  body:has(.nav-check:checked) .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .nav-wrap,
  body:has(.nav-check:checked) .nav-wrap {
    z-index: 140;
  }

  .nav-sheet-head,
  .nav-sheet-links,
  .nav-sheet-cta {
    display: flex;
  }

  .nav-sheet-head {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .nav-sheet-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--ink);
  }

  .nav-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-close:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  .nav-sheet-links {
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-sheet-links a {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    min-height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }

  .nav-sheet-links a:hover,
  .nav-sheet-links a:active {
    background: rgba(47, 168, 79, 0.08);
    border-color: rgba(47, 168, 79, 0.14);
    color: var(--green-ink);
  }

  .nav-sheet-cta {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    min-height: 52px;
    font-size: 16px;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 10, 0.52);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s var(--ease), visibility 0.24s;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-actions {
    order: 2;
  }

  .hero-media {
    order: 3;
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    z-index: 110;
  }

  .course-bento,
  .course-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .course-card--featured {
    grid-column: span 1;
  }

  .hero-float-card {
    display: none;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .course-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .course-filter {
    flex: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .short-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero {
    padding: 112px 16px 56px;
    padding-top: max(112px, calc(92px + env(safe-area-inset-top)));
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lead {
    font-size: 16.5px;
    max-width: none;
    margin-bottom: 0;
  }

  .hero-ctas {
    gap: 12px;
    margin-bottom: 0;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stats > div {
    min-width: 0;
    text-align: center;
  }

  .hero-actions {
    padding-top: 0;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .media--hero {
    min-height: 0;
    border-radius: 22px;
    max-width: none;
    margin: 0;
    --media-ratio: 72%;
  }

  .hero-badge {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    animation: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-badge-title {
    color: #fff;
  }

  .hero-badge-sub {
    color: rgba(255, 255, 255, 0.72);
  }

  .section {
    padding: 72px 16px 64px;
  }

  .section-muted,
  .section-dark {
    padding: 72px 16px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head-split {
    align-items: flex-start;
    gap: 14px;
  }

  .section-aside {
    max-width: none;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 180px;
  }

  .about-checks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-media {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .media--about {
    min-height: 0;
    border-radius: 22px;
  }

  .fee-table-wrap {
    padding: 22px 16px;
    border-radius: 18px;
    margin-top: 40px;
  }

  .fee-table-scroll {
    margin: 0 -4px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .fee-table {
    min-width: 480px;
  }

  .enroll-wrap {
    padding: 8px 0 72px;
  }

  .enroll {
    padding: 48px 18px;
    border-radius: 24px;
  }

  .enroll-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .enroll-ctas .btn {
    width: 100%;
  }

  .enroll-meta {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    padding: 48px 16px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .course-card:hover,
  .gallery-item:hover .media img,
  .course-card:hover .media img {
    transform: none;
  }

  .course-card:active {
    transform: translateY(-2px);
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 17px;
  }

  .nav .btn-sm {
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 104px 14px 52px;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-top: max(104px, calc(88px + env(safe-area-inset-top)));
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.4rem);
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .stat-num {
    font-size: 24px;
    line-height: 1.05;
  }

  .stat-label {
    font-size: 10.5px;
  }

  .media--portrait {
    --media-ratio: 72%;
  }

  .media--hero {
    border-radius: 20px;
  }

  .hero-badge {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .hero-badge-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-badge-title {
    font-size: 14px;
  }

  .hero-badge-sub {
    font-size: 11.5px;
  }

  .marquee {
    padding: 14px 0;
  }

  .marquee-track {
    font-size: 16px;
    gap: 36px;
  }

  .section,
  .section-muted,
  .section-dark {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .section-muted,
  .section-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section h2,
  .about-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .eyebrow {
    font-size: 11.5px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 20px 18px;
  }

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

  .short-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px;
  }

  .short-card span,
  .short-meta {
    white-space: nowrap;
    color: var(--green-deep);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 15px;
  }

  .about-badge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .about-badge-label {
    max-width: none;
  }

  .credentials-row {
    margin-bottom: 20px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
    min-height: 150px;
  }

  .testimonial {
    padding: 22px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .fee-table-wrap {
    padding: 16px 12px;
    margin-top: 32px;
  }

  .fee-table-title {
    font-size: 24px;
    padding: 0 4px;
  }

  .fee-note {
    padding: 0 4px;
    font-size: 12.5px;
  }

  .fee-table th,
  .fee-table td {
    padding: 11px 8px;
    font-size: 13.5px;
  }

  .fee-table td:last-child {
    font-size: 16px;
  }

  .enroll {
    padding: 40px 16px;
    border-radius: 22px;
  }

  .enroll h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .enroll-inner > p {
    font-size: 15.5px;
    margin-bottom: 26px;
  }

  .btn {
    min-height: 48px;
    padding: 14px 22px;
    font-size: 15.5px;
  }

  .btn-sm {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-grid > div > p {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (hover: none) {
  .course-card:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .course-card:hover .media img,
  .gallery-item:hover .media img {
    transform: none;
  }

  .course-card .media::after,
  .gallery-item figcaption {
    opacity: 1;
    transform: none;
  }

  .short-scroll-hint {
    display: block;
  }

  .btn:hover {
    transform: none;
  }
}

/* ========== Interactive layer ========== */

.batch-banner {
  background: linear-gradient(90deg, var(--forest-mid), #1A4D2E);
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 185, 35, 0.15);
}

.batch-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.batch-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.batch-banner a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.batch-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5200;
  box-shadow: 0 0 12px #FF5200;
  animation: batchPulse 1.8s ease-in-out infinite;
  flex: none;
}

@keyframes batchPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.section-journey {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.journey-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.journey-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.journey-tab:hover {
  border-color: rgba(47, 168, 79, 0.35);
  transform: translateY(-2px);
}

.journey-tab.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 168, 79, 0.35);
}

.journey-tab-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  opacity: 0.45;
}

.journey-tab.is-active .journey-tab-num {
  opacity: 0.85;
  color: #fff;
}

.journey-tab-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.journey-panels {
  position: relative;
  min-height: 320px;
}

.journey-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.journey-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.journey-panel-copy h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.journey-panel-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.journey-panel-media {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 26, 20, 0.12);
}

.journey-progress {
  height: 4px;
  background: rgba(15, 26, 20, 0.08);
  border-radius: 4px;
  margin-top: 28px;
  overflow: hidden;
}

.journey-progress-fill {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--green), var(--gold-bright));
  border-radius: 4px;
  transition: width 0.5s var(--ease);
}

.course-card .media {
  position: relative;
}

.course-card .media::after {
  content: "Enquire →";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 18, 10, 0.55);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.course-card:hover .media::after {
  opacity: 1;
}

.course-card.is-filter-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.course-bento .course-card {
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.28s, border-color 0.28s;
}

.course-bento {
  position: relative;
}

.short-scroll-wrap {
  position: relative;
}

.short-grid--scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.short-grid--scroll::-webkit-scrollbar {
  display: none;
}

.short-grid--scroll .short-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}

.short-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.gallery-trigger {
  cursor: zoom-in;
}

.gallery-zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 300;
  vertical-align: middle;
}

.gallery-item figcaption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 18, 10, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  max-width: min(900px, 92vw);
  margin: 0;
}

.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-inner figcaption {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
  margin: 0;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(232, 185, 35, 0.4);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--gold-bright);
  transform: scale(1.2);
}

.section-faq {
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(47, 168, 79, 0.3);
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.06);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex: none;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.float-actions {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

.float-whatsapp {
  background: var(--whatsapp);
  animation: waPulse 2.5s ease-in-out infinite;
}

.float-call {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55); }
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 -8px 30px rgba(15, 26, 20, 0.08);
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar-text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  min-width: 0;
}

.sticky-bar .btn-sm {
  flex: none;
  padding: 10px 14px;
  font-size: 13px;
}

body.sticky-visible .float-actions {
  bottom: calc(72px + env(safe-area-inset-bottom));
}

.nav-sheet-links a.is-active,
.nav-links .nav-sheet-links a.is-active {
  color: var(--green-ink);
  background: rgba(47, 168, 79, 0.08);
}

@media (min-width: 901px) {
  .short-grid--scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .short-grid--scroll .short-card {
    flex: none;
  }

  .sticky-bar {
    display: none;
  }

  body.sticky-visible .float-actions {
    bottom: max(24px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 900px) {
  .journey-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-panels {
    min-height: 480px;
  }

  .stories-layout {
    grid-template-columns: 1fr;
  }

  .short-scroll-hint {
    display: block;
  }

  .sticky-bar-text {
    display: none;
  }
}

@media (max-width: 620px) {
  .journey-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .journey-tab {
    padding: 12px 10px;
  }

  .journey-tab-num {
    font-size: 18px;
  }

  .journey-tab-label {
    font-size: 11.5px;
  }

  .float-call {
    display: none;
  }
}

/* ========== Course detail pages ========== */

.course-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.course-card-link:hover {
  color: inherit;
}

.course-details-link {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
}

.course-card-link:hover .course-details-link {
  color: var(--green-ink);
}

.fee-cards {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.fee-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fee-card:hover {
  color: inherit;
  border-color: rgba(47, 168, 79, 0.35);
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.08);
  transform: translateY(-2px);
}

.fee-card--featured {
  border-color: rgba(196, 146, 42, 0.35);
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.fee-card-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
}

.fee-card-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.fee-table td a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.fee-table td a:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fee-cards {
    display: flex;
  }

  .fee-table-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .fee-cards {
    display: none;
  }
}

.course-page .hero,
.course-page .marquee,
.course-page .batch-banner,
.course-page .float-actions,
.course-page .sticky-bar {
  /* course pages use course-hero instead */
}

.course-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 120px 20px 48px;
  overflow: hidden;
  color: #fff;
}

.course-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.course-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.course-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 18, 10, 0.35) 0%, rgba(6, 18, 10, 0.88) 100%);
}

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

.course-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  text-decoration: none;
}

.course-back:hover {
  color: #fff;
}

.course-hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.course-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 12px;
  max-width: 14ch;
}

.course-hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 22px;
}

.course-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 15px;
}

.course-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.course-hero-fee {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-bright);
}

.course-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 14px;
  padding: 11px 22px;
  cursor: pointer;
  font-family: inherit;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.course-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.course-block {
  margin-bottom: 40px;
}

.course-block h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 14px;
}

.course-block p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}

.course-learn-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.course-learn-list li {
  padding: 14px 16px 14px 40px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  position: relative;
}

.course-learn-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--green-deep);
  font-weight: 800;
}

.course-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(15, 26, 20, 0.06);
  margin-bottom: 16px;
  position: sticky;
  top: 100px;
}

.course-sidebar-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}

.course-dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.course-dl dt {
  color: var(--muted);
  font-weight: 500;
}

.course-dl dd {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.course-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-includes li {
  font-size: 14px;
  color: var(--body);
  padding-left: 18px;
  position: relative;
}

.course-includes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.course-related-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 20px;
}

.course-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.course-related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-related-card:hover {
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 26, 20, 0.08);
}

.course-related-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-related-card strong {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
}

.course-related-card span:last-child {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

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

  .course-sidebar-card {
    position: static;
  }

  .course-related-grid {
    grid-template-columns: 1fr;
  }

  .course-hero {
    min-height: 360px;
    padding-top: 100px;
  }

  .course-hero h1 {
    max-width: none;
  }
}
