/* Fluent Pluz — premium layout (summer workshop palette) */
:root {
  --background: hsl(40, 33%, 96%);
  --foreground: hsl(0, 0%, 17%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(40, 30%, 92%);
  --muted-fg: hsl(220, 15%, 40%);
  --primary: hsl(157, 50%, 48%);
  --primary-dim: hsl(157, 50%, 40%);
  --primary-soft: hsl(157, 45%, 94%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(233, 47%, 23%);
  --border: hsl(40, 20%, 85%);
  --radius: 0.85rem;
  --radius-lg: 1.35rem;
  --radius-xl: 1.75rem;
  --cta-gradient: linear-gradient(135deg, #3fb58a, #1f2453);
  --shadow-sm: 0 4px 14px -4px rgba(31, 36, 83, 0.12);
  --shadow-soft: 0 22px 56px -24px rgba(31, 36, 83, 0.28);
  --shadow-card: 0 16px 48px -28px rgba(31, 36, 83, 0.35);
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --space-3xl: 4rem;
  --section-y: clamp(3.25rem, 8.5vw, 5.25rem);
  --container: min(1180px, 100% - 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

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

a.link-underline {
  color: var(--primary-dim);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a.link-underline:hover {
  color: var(--secondary);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Icons (inline SVG) ---- */
.icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1.1rem;
  height: 1.1rem;
}

.icon--md {
  width: 1.55rem;
  height: 1.55rem;
}

.icon--lg {
  width: 1.85rem;
  height: 1.85rem;
}

.icon--white {
  color: #fff;
}

.icon--brand {
  color: var(--primary-dim);
}

.icon--hero-pill {
  color: #b8f0de;
}

.icon-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary-dim);
  border: 1px solid rgba(63, 181, 138, 0.22);
}

.icon-swatch--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.icon-swatch--dark .icon {
  color: #b8f0de;
}

.ph-card .icon-swatch {
  margin-bottom: var(--space-md);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  min-height: 4.25rem;
}

.site-header__logo {
  height: 46px;
  width: auto;
}

@media (max-width: 599px) {
  .site-header__inner .btn--primary {
    font-size: 0.8rem;
    padding: 0.62rem 0.95rem;
    white-space: nowrap;
  }

  .site-header__logo {
    height: 38px;
  }
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-dim);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.82rem 1.45rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(63, 181, 138, 0.55);
}

.btn--primary:hover {
  opacity: 0.97;
  box-shadow: 0 16px 40px -10px rgba(31, 36, 83, 0.42);
}

.btn--secondary {
  background: var(--card);
  color: var(--secondary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dim);
}

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

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

.btn--outline-dark {
  background: transparent;
  color: var(--secondary);
  border: 2px solid rgba(31, 36, 83, 0.22);
  box-shadow: none;
}

.btn--outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary-dim);
  background: var(--primary-soft);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: calc(5rem + var(--space-2xl)) 0 var(--space-3xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-bg-light-DDDaquzL.jpg") center/cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 70% at 75% 15%, rgba(63, 181, 138, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 90%, rgba(255, 255, 255, 0.2) 0%, transparent 55%),
    linear-gradient(115deg, rgba(253, 250, 245, 0.65) 0%, rgba(31, 36, 83, 0.5) 45%, rgba(22, 28, 52, 0.88) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: stretch;
}

@media (min-width: 960px) and (orientation: landscape) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 1fr);
    grid-template-areas: "content visual";
    gap: var(--space-3xl);
    align-items: center;
  }

  .hero__visual {
    order: 0;
  }
}

.hero__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content-panel {
  background: rgba(255, 252, 248, 0.97);
  border: 1px solid rgba(63, 181, 138, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 28px 70px -28px rgba(31, 36, 83, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: var(--space-lg);
}

.hero__badge--on-light {
  background: var(--primary-soft);
  border: 1px solid rgba(63, 181, 138, 0.35);
  color: var(--primary-dim);
}

.hero__content-panel h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  font-weight: 700;
  max-width: 22ch;
  margin: 0 0 var(--space-md);
  color: var(--secondary);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  max-width: 42ch;
  margin: 0 0 var(--space-lg);
  line-height: 1.62;
  color: var(--muted-fg);
}

.hero__sub strong {
  color: var(--secondary);
  font-weight: 700;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
}

.hero__bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #3fb58a, #2d8f68);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.hero-pill--on-light {
  background: var(--primary-soft);
  border: 1px solid rgba(63, 181, 138, 0.3);
  color: var(--secondary);
}

.hero__visual {
  order: -1;
  grid-area: visual;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-lg);
}

.hero__video-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 32px 80px -24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(63, 181, 138, 0.25);
  width: 100%;
}

.hero__visual-card--video {
  max-width: 100%;
}

.hero__embed {
  background: #0a0e14;
}

.hero__embed--wide {
  aspect-ratio: 16 / 9;
}

.hero__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero__visual-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 100%;
}

.hero__stats--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.hero__stats--glass .stat strong {
  color: #fff;
}

.hero__stats--glass .stat span {
  color: rgba(232, 234, 239, 0.82);
}

.stat {
  text-align: center;
  min-width: 5.25rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}

.stat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Stats band (post-hero) ---- */
.stats-band {
  position: relative;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #1b2250 0%, #24335f 40%, #1a4d45 85%, #1f2453 100%);
  color: #f4f7fb;
  border-block: 1px solid rgba(63, 181, 138, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stats-band > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-band__header {
  width: 100%;
  max-width: 48rem;
  margin: var(--space-lg) auto var(--space-2xl);
  padding: var(--space-sm) var(--space-lg);
  text-align: center;
}

.stats-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
  text-wrap: balance;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #f4f7fb;
}

.stats-band__grid {
  display: grid;
  width: 100%;
  align-self: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-md);
  text-align: center;
}

@media (min-width: 900px) {
  .stats-band__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

.stats-band__item {
  padding: var(--space-sm) var(--space-md);
}

.stats-band__value {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #e8fff6;
}

.stats-band__plus {
  font-size: 0.58em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 0.06em;
  color: #7ee3c4;
}

.stats-band__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(232, 240, 247, 0.88);
  max-width: 16rem;
  margin-inline: auto;
}

/* ---- Sections ---- */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

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

.section--texture {
  background-color: var(--muted);
  background-image: url("../assets/section-bg-tzoQnpCi.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
}

.section--dark {
  background: linear-gradient(165deg, var(--secondary) 0%, #101628 100%);
  color: #e8eaef;
}

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

.section--dark .muted {
  color: rgba(232, 234, 239, 0.78);
}

.section--dark .check-list li {
  color: rgba(232, 234, 239, 0.92);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--space-xl);
}

.section-header--left {
  text-align: left;
  max-width: 40rem;
  margin: 0 0 var(--space-xl) 0;
}

.section-header--left .section__subtitle {
  text-align: left;
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-dim);
  margin-bottom: var(--space-sm);
}

.section__kicker--icon {
  gap: 0.5rem;
}

.section__kicker--on-dark {
  color: #7ee3c4;
}

.section__kicker--on-dark .icon {
  color: #7ee3c4;
}

.section--dark .section__kicker {
  color: #7ee3c4;
}

.section__title {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  margin: 0 0 var(--space-md);
}

.section__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-md);
  text-align: center;
}

.section__subtitle--lg {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.section__subtitle--compact {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.section__lead--center-wide {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.section__lead--left {
  text-align: left;
}

.lead-fine {
  font-size: 0.98rem;
  line-height: 1.7;
}

.card--limit {
  max-width: 54rem;
  margin: 0 auto var(--space-2xl);
}

.card--limit-sm {
  max-width: 44rem;
  margin-inline: auto;
}

.card__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.media-frame--center {
  max-width: 48rem;
  margin-inline: auto;
}

.trust-badge {
  margin-top: var(--space-lg);
}

.pull-quote--dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.guidance-card__p {
  margin: 0 0 var(--space-md);
}

.guidance-card__label {
  margin: 0 0 var(--space-sm);
}

.guidance-card__check {
  margin-bottom: 0;
}

.guidance-card__foot {
  margin: var(--space-md) 0 0;
}

.text-strong-fg {
  color: var(--foreground);
}

.section__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

.section--dark .section__lead {
  color: rgba(232, 234, 239, 0.84);
}

.section-block {
  margin-top: var(--space-lg);
}

.section-block--tight {
  margin-top: var(--space-md);
}

/* ---- Grids ---- */
.two-col {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Pain points: tighter layout, smaller illustrations */
.two-col--pain {
  align-items: start;
}

@media (min-width: 900px) {
  .two-col--pain {
    grid-template-columns: 1fr minmax(220px, 0.38fr);
    gap: var(--space-lg) var(--space-xl);
    align-items: center;
  }

  .two-col--pain.two-col--pain-student {
    grid-template-columns: minmax(220px, 0.38fr) 1fr;
  }
}

.media-frame--pain-illu {
  margin: 0 auto;
  width: 100%;
  max-width: min(300px, 100%);
}

@media (min-width: 900px) {
  .media-frame--pain-illu {
    margin: 0 0 0 auto;
    max-width: none;
  }

  .media-frame--pain-illu--lead {
    margin: 0 auto 0 0;
    justify-self: start;
  }
}

.media-frame--pain-illu img {
  width: 100%;
  height: auto;
  max-height: clamp(180px, 32vw, 240px);
  object-fit: contain;
  object-position: center;
}

#pain-points {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

#pain-points > .container > .section-header:first-of-type {
  margin-bottom: var(--space-lg);
}

#pain-points .section__title {
  margin-bottom: var(--space-sm);
}

#pain-points .section__lead {
  max-width: 40rem;
  margin-inline: auto;
}

#pain-points .quote-grid {
  gap: var(--space-sm);
}

#pain-points .quote-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--space-sm);
  padding: var(--space-md);
  font-size: 0.93rem;
}

#pain-points .quote-grid--student-feelings {
  text-align: left;
  justify-items: stretch;
  width: 100%;
}

#pain-points .quote-card--student {
  text-align: left;
}

@media (min-width: 720px) {
  #pain-points .quote-grid--student-feelings .quote-card--student:last-child {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 36rem;
  }
}

#pain-points .section-block.section-header {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

#pain-points .section-block.section-header .section__subtitle {
  margin-bottom: var(--space-sm);
}

#pain-points .pull-quote {
  margin-top: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  max-width: none;
  width: 100%;
}

#pain-points .pull-quote--focus,
#programs .container > .pull-quote.pull-quote--focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

#pain-points .pull-quote--focus .icon-swatch,
#programs .container > .pull-quote.pull-quote--focus .icon-swatch {
  justify-self: auto;
}

#pain-points .pull-quote--focus > span:not(.icon-swatch),
#programs .container > .pull-quote.pull-quote--focus > span:not(.icon-swatch) {
  width: 100%;
  max-width: 48rem;
  text-align: center;
}

#programs .container > .pull-quote.pull-quote--focus {
  max-width: none;
  width: 100%;
  margin-bottom: var(--space-2xl);
}

.pull-quote--focus {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--space-lg);
}

.pull-quote--focus .icon-swatch {
  width: 2.875rem;
  height: 2.875rem;
  flex-shrink: 0;
  justify-self: start;
}

.pull-quote--focus > span:not(.icon-swatch) {
  display: block;
  text-align: center;
}

.pull-quote--focus .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.quote-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-card {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  border-left: 3px solid var(--primary);
  padding: var(--space-lg);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.quote-card .icon-swatch {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.quote-card .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--foreground);
}

.bullet-list li {
  margin-bottom: 0.6rem;
  padding-left: 0.2rem;
}

.bullet-list li::marker {
  color: var(--primary-dim);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
  text-align: center;
  max-width: 52rem;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, rgba(63, 181, 138, 0.14), rgba(31, 36, 83, 0.09));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  line-height: 1.55;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.72rem;
  align-items: flex-start;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #3fb58a, #2d8f68);
  line-height: 1;
}

.check-list--center-wrap {
  max-width: 44rem;
  margin-inline: auto;
}

.feature-inline {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.feature-inline .icon-swatch {
  margin-top: 0.1rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.icon-list li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.icon-list__icon {
  flex-shrink: 0;
}

.media-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--card);
}

.media-frame img {
  width: 100%;
  vertical-align: middle;
}

/* ---- Why learn early: image + copy split ---- */
.section--why-early .why-early__split {
  align-items: start;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .section--why-early .why-early__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-2xl);
    align-items: center;
  }
}

.section--why-early .why-early__figure {
  margin: 0;
}

.section--why-early .why-early__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.section--why-early .why-early__content {
  text-align: left;
}

.section--why-early .why-early__subhead.section-header--left {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--space-lg);
  max-width: none;
  width: 100%;
}

.section--why-early .why-early__subhead .section__subtitle,
.section--why-early .why-early__subhead .section__lead {
  text-align: left;
}

.section--why-early .why-early__subhead .section__lead {
  margin-top: var(--space-sm);
}

.section--why-early .check-list--left-col {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ---- Bento visuals ---- */
.bento {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.bento__large {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.bento__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento__stack {
  display: grid;
  gap: var(--space-md);
}

.bento__small {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.bento__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 200px;
}

/* ---- Cards & programs ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.card--elevated {
  box-shadow: var(--shadow-soft);
}

.program-highlights {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .program-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .program-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ph-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
  height: 100%;
}

.ph-card:hover {
  border-color: rgba(63, 181, 138, 0.55);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.ph-card h4 {
  margin: 0 0 var(--space-xs);
  font-size: 1.08rem;
}

.ph-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted-fg);
  line-height: 1.58;
}

/* ---- Videos ---- */
.videos-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 720px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c1018;
  box-shadow: var(--shadow-soft);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Testimonial carousel (YouTube Shorts) ---- */
.testimonial-carousel {
  position: relative;
  margin-top: var(--space-xl);
  padding: 0 clamp(2.75rem, 6vw, 3.75rem);
}

.testimonial-carousel__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-sm) var(--space-xs) var(--space-md);
  padding-inline-end: max(2rem, min(22vw, 10rem));
  margin: 0 calc(-1 * var(--space-xs));
  scrollbar-width: thin;
  scrollbar-color: rgba(63, 181, 138, 0.45) var(--muted);
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.testimonial-carousel__track:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel__track {
    scroll-behavior: auto;
  }
}

.testimonial-carousel__slide {
  flex: 0 0 min(260px, 78vw);
  flex-shrink: 0;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .testimonial-carousel__slide {
    flex: 0 0 240px;
  }
}

@media (min-width: 900px) {
  .testimonial-carousel__slide {
    flex: 0 0 260px;
  }
}

.testimonial-carousel__frame {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c1018;
  box-shadow: var(--shadow-soft);
}

.testimonial-carousel__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonial-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary);
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  pointer-events: auto;
}

.testimonial-carousel__btn:hover {
  background: var(--primary-soft);
  border-color: rgba(63, 181, 138, 0.5);
  color: var(--primary-dim);
}

.testimonial-carousel__btn--prev {
  left: 0;
}

.testimonial-carousel__btn--next {
  right: 0;
}

@media (max-width: 479px) {
  .testimonial-carousel {
    padding: 0 2.35rem;
  }

  .testimonial-carousel__btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}

.cta-row--follow {
  gap: var(--space-sm) var(--space-lg);
}

.cta-row__follow-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
}

.cta-row__social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.cta-row__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--primary-dim);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.cta-row__social-link:hover {
  border-color: rgba(63, 181, 138, 0.45);
  background: var(--primary-soft);
  color: var(--secondary);
  transform: translateY(-2px);
}

.cta-row__social-link .icon {
  width: 1.35rem;
  height: 1.35rem;
}

/* ---- Review screenshots (justified responsive grid) ---- */
.review-gallery {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.review-gallery__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.02em;
}

.review-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: var(--space-md);
  justify-content: space-between;
  align-items: stretch;
}

@media (min-width: 640px) {
  .review-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(10.25rem, 1fr));
  }
}

@media (min-width: 960px) {
  .review-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.review-gallery__cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.review-gallery__cell:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.review-gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.review-gallery__cell img {
  width: 100%;
  height: auto;
  max-height: min(22rem, 62vh);
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ---- Visual gallery (assets) ---- */
.gallery {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  --gallery-thumb: clamp(13.5rem, 38vw, 20rem);
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.gallery__item img {
  display: block;
  width: 100%;
  height: var(--gallery-thumb);
  box-sizing: border-box;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  object-fit: contain;
  object-position: center center;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

.gallery__cap {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: clamp(1.08rem, 2.65vw, 1.22rem);
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
}

/* ---- Language fit (two-col + open-source photo) ---- */
.section--lang-fit .lang-fit__split {
  align-items: start;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .section--lang-fit .lang-fit__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-2xl);
    align-items: center;
  }
}

.section--lang-fit .lang-fit__figure {
  margin: 0;
}

.section--lang-fit .lang-fit__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.section--lang-fit .lang-fit__content {
  text-align: left;
}

.section--lang-fit .lang-fit__header.section-header--left {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--space-md);
  max-width: none;
  width: 100%;
}

.section--lang-fit .lang-fit__header .section__kicker,
.section--lang-fit .lang-fit__header .section__title,
.section--lang-fit .lang-fit__header .section__lead {
  text-align: left;
}

.section--lang-fit .check-list--left-col.lang-fit__bullets {
  max-width: none;
  margin: 0;
  padding: 0;
}

.lang-fit-domains {
  max-width: 54rem;
  margin-inline: auto;
  margin-top: var(--space-2xl);
}

.lang-fit-domains__heading {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.lang-fit-domains__bubbles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  justify-content: center;
  align-items: center;
}

.lang-fit-domains__bubbles li {
  margin: 0;
  padding: 0.42rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--secondary);
  background: linear-gradient(145deg, var(--primary-soft), hsl(157, 40%, 92%));
  border: 1px solid rgba(63, 181, 138, 0.28);
  border-radius: 999px;
  box-shadow: 0 2px 8px -3px rgba(31, 36, 83, 0.12);
}

.section--lang-fit .guidance-split {
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

@media (min-width: 900px) {
  .section--lang-fit .guidance-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
}

.section--lang-fit .guidance-split__figure {
  margin: 0 auto;
  max-width: min(100%, 42rem);
}

@media (min-width: 900px) {
  .section--lang-fit .guidance-split__figure {
    margin: 0;
    max-width: none;
  }
}

.section--lang-fit .guidance-split__figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(56rem, 92vh);
  object-fit: cover;
  object-position: center 18%;
}

.section--lang-fit .guidance-split__content {
  text-align: left;
}

.section--lang-fit .guidance-split__heading {
  text-align: left;
  margin-bottom: var(--space-md);
  max-width: none;
}

/* ---- Language ---- */
.lang-split {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .lang-split {
    grid-template-columns: 1fr 1fr;
  }
}

.lang-box {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.lang-box--jp {
  border-top: 4px solid #bc002d;
}

.lang-box--de {
  border-top: 4px solid #1a1a1a;
}

.lang-head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.flag {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--muted);
  border: 1px solid var(--border);
}

.lang-box h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* ---- About & Team ---- */
.about-us--standalone {
  max-width: min(52rem, 100%);
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

.about-us--standalone .about-us__header.section-header {
  max-width: none;
  width: 100%;
}

.about-us--standalone .section__kicker {
  justify-content: center;
}

.about-us--standalone .section__lead {
  text-align: center;
}

.about-us--standalone .about-us__highlights {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
}

.about-us--standalone .check-list li {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.about-us--standalone .about-us__trust {
  display: flex;
  justify-content: center;
}

.about-us--standalone .about-us__trust .trust-badge {
  margin-inline: auto;
}

.about-us--standalone .about-us__moneyback-copy {
  text-align: center;
  max-width: none;
  width: 100%;
  margin-inline: auto;
}

#team .team-section__header {
  margin-bottom: var(--space-md);
}

#team .team-carousel {
  margin-inline: auto;
}

.about-us {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 0;
}

.about-us__header {
  margin-bottom: 0;
  max-width: 38rem;
}

.about-us__highlights li:last-child {
  margin-bottom: 0;
}

.about-us__trust {
  padding-top: var(--space-xs);
}

.about-us__trust .trust-badge {
  display: block;
  margin: 0;
  max-width: 140px;
  height: auto;
}

.about-us__moneyback-copy {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(63, 181, 138, 0.12), rgba(31, 36, 83, 0.08));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-us__moneyback-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.about-us__moneyback-copy > p {
  margin: 0 0 var(--space-sm);
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--muted-fg);
}

.about-us__moneyback-copy > p:last-child {
  margin-bottom: 0;
}

.about-us__moneyback-tagline {
  font-weight: 700 !important;
  color: var(--primary-dim) !important;
  font-size: 1rem !important;
}

/* Team carousel (#team) */
.team-carousel {
  position: relative;
  margin-top: var(--space-md);
  padding: 0 clamp(2.75rem, 6vw, 3.75rem);
}

.team-carousel__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-sm) var(--space-xs) var(--space-md);
  padding-inline-end: max(2rem, min(22vw, 10rem));
  margin: 0 calc(-1 * var(--space-xs));
  scrollbar-width: thin;
  scrollbar-color: rgba(63, 181, 138, 0.45) var(--muted);
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.team-carousel__track:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .team-carousel__track {
    scroll-behavior: auto;
  }
}

.team-carousel__slide {
  flex: 0 0 min(300px, 86vw);
  flex-shrink: 0;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .team-carousel__slide {
    flex: 0 0 min(280px, 70vw);
    scroll-snap-align: center;
  }
}

.team-card {
  height: 100%;
  padding: var(--space-xl) var(--space-lg);
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  min-height: 16rem;
}

.team-card__photo-wrap {
  margin-bottom: var(--space-sm);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(63, 181, 138, 0.38);
  display: block;
  margin-inline: auto;
}

.team-card__placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary-dim);
  background: var(--primary-soft);
  border: 3px solid rgba(63, 181, 138, 0.35);
}

.team-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

.team-card__role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dim);
  line-height: 1.45;
}

.team-card__org {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.45;
}

.team-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary);
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.team-carousel__btn:hover {
  background: var(--primary-soft);
  border-color: rgba(63, 181, 138, 0.5);
  color: var(--primary-dim);
}

.team-carousel__btn--prev {
  left: 0;
}

.team-carousel__btn--next {
  right: 0;
}

@media (max-width: 479px) {
  .team-carousel {
    padding: 0 2.35rem;
  }

  .team-carousel__btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }
}

.trainer-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl);
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 619px) {
  .trainer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trainer-card img {
    margin-inline: auto;
  }
}

.trainer-card img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 3px solid rgba(63, 181, 138, 0.35);
}

.trainer-card h4 {
  margin: 0 0 var(--space-xs);
  font-size: 1.25rem;
}

.trainer-card .role {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dim);
  margin-bottom: var(--space-sm);
}

.trainer-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.mentor-panel {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(180deg, var(--card) 0%, var(--muted) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.mentor-panel__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-dim);
  margin: 0 0 var(--space-sm);
  text-align: center;
}

.mentor-panel > p {
  margin: 0 0 var(--space-lg);
  color: var(--muted-fg);
  max-width: 50rem;
  margin-inline: auto;
}

.mentor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.mentor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.mentor-chip__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--primary);
}

/* ---- Difference grid ---- */
.diff-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 960px) {
  .diff-grid {
    grid-template-columns: 1fr 0.95fr;
  }
}

.split-sticky-visual {
  position: sticky;
  top: 6.5rem;
}

/* ---- FAQ ---- */
.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  padding: 0 var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: var(--space-md) 1.75rem var(--space-md) 0;
  list-style: none;
  position: relative;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--primary-dim);
  border-bottom: 2px solid var(--primary-dim);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq details[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq p {
  padding: var(--space-md) 0 var(--space-lg);
  margin: 0;
  color: var(--muted-fg);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* ---- CTA ---- */
.cta-block {
  text-align: center;
  padding: clamp(3.25rem, 7vw, 4.5rem) var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--cta-gradient);
  color: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-block h2 {
  color: #fff;
  margin: 0 0 var(--space-md);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.cta-block > p {
  max-width: 46ch;
  margin: 0 auto var(--space-lg);
  opacity: 0.96;
  font-size: 1.05rem;
}

.cta-block .btn--primary {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.cta-block .btn--primary:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.cta-block ul {
  text-align: left;
  max-width: 40ch;
  margin: 0 auto var(--space-xl);
  padding-inline-start: 1.35rem;
  line-height: 1.75;
}

/* ---- Footer ---- */
.footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted-fg);
  max-width: 28ch;
  line-height: 1.55;
}

.footer__col h5 {
  margin: 0 0 var(--space-md);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--secondary);
}

.footer__links a:hover {
  color: var(--primary-dim);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted-fg);
}

.footer__legal {
  margin: 0;
  line-height: 1.55;
}

.footer__legal-sep {
  margin: 0 0.5rem;
  opacity: 0.45;
  font-weight: 300;
}

.footer__legal a {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--primary-dim);
  text-decoration: underline;
}

/* ---- Floating WhatsApp chat widget ---- */
.wa-float {
  --wa-fab-size: 3.5rem;
  --wa-gap: 0.75rem;
  position: fixed;
  z-index: 350;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  width: min(22.5rem, calc(100vw - 2rem));
  pointer-events: none;
}

.wa-float__panel,
.wa-float__fab {
  pointer-events: auto;
}

.wa-float__panel {
  position: absolute;
  right: 0;
  bottom: calc(var(--wa-fab-size) + var(--wa-gap));
  width: 100%;
  max-height: min(26rem, 70vh);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 12px 48px -8px rgba(7, 94, 84, 0.35), 0 24px 64px -24px rgba(31, 36, 83, 0.35);
  border: 1px solid rgba(7, 94, 84, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.6rem) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.wa-float.is-open .wa-float__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__panel {
    transition: none;
  }
}

.wa-float__head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm) var(--space-md) var(--space-md);
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: #fff;
}

.wa-float__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.wa-float__meta {
  flex: 1;
  min-width: 0;
}

.wa-float__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-float__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  opacity: 0.92;
  margin-top: 0.15rem;
}

.wa-float__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #6cff94;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.wa-float__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.wa-float__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.wa-float__body {
  padding: var(--space-md);
  background: linear-gradient(180deg, #e8ebe4 0%, #e5ddd5 100%);
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.wa-float__bubble {
  align-self: flex-start;
  max-width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.wa-float__bubble-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--foreground);
}

.wa-float__bubble-meta {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.72rem;
  color: var(--muted-fg);
}

.wa-float__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.65);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.wa-float__cta:hover {
  background: #20bd5a;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(37, 211, 102, 0.55);
}

.wa-float__cta:active {
  transform: scale(0.98);
}

.wa-float__cta-icon,
.wa-float__fab-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.wa-float__fab {
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--wa-fab-size);
  height: var(--wa-fab-size);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: #25d366;
  box-shadow: 0 6px 24px -4px rgba(37, 211, 102, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.wa-float__fab:hover {
  box-shadow: 0 10px 28px -4px rgba(37, 211, 102, 0.85);
}

.wa-float__fab:active {
  transform: scale(0.96);
}

.wa-float__fab-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.wa-float.is-open .wa-float__fab {
  background: #128c7e;
}

.muted {
  color: var(--muted-fg);
}
