:root {
  --green-950: #0a2f22;
  --green-900: #0d3d2c;
  --green-800: #12553c;
  --green-700: #18704e;
  --green-600: #1f8b60;
  --green-500: #2aa871;
  --green-300: #91d9b4;
  --green-200: #c5ecd7;
  --green-100: #e7f7ee;
  --green-50: #f3fbf7;

  --ink-950: #13211b;
  --ink-800: #293a32;
  --ink-600: #5b6c64;
  --ink-500: #718078;
  --line: #deebe4;
  --line-strong: #cfe1d7;
  --surface: #ffffff;
  --surface-alt: #f7faf8;

  --shadow-sm: 0 12px 30px rgba(16, 61, 44, .06);
  --shadow-md: 0 24px 70px rgba(16, 61, 44, .10);
  --shadow-green: 0 20px 55px rgba(31, 139, 96, .22);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;

  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--ink-950);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

.section {
  padding: 112px 0;
  position: relative;
}

.top-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 1050px;
  height: 650px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 240, 207, .36) 0%, rgba(255,255,255,0) 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222,235,228,.78);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px rgba(14,56,41,.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(145deg, var(--green-600), var(--green-900));
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(31,139,96,.18);
}

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

.brand-text strong {
  font-size: 14px;
  letter-spacing: -.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 700;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-600);
  transition: width .25s ease;
}

.desktop-nav a:hover {
  color: var(--green-800);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

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

.button-small {
  min-height: 43px;
  padding: 0 17px;
  color: white;
  background: var(--green-900);
  box-shadow: 0 10px 24px rgba(13,61,44,.14);
}

.button-small:hover {
  background: var(--green-800);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: var(--shadow-green);
}

.button-primary:hover {
  box-shadow: 0 24px 58px rgba(31, 139, 96, .30);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.85);
  color: var(--green-900);
}

.button-secondary:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}

.button-white {
  background: white;
  color: var(--green-900);
  box-shadow: 0 20px 50px rgba(4, 32, 22, .18);
}

.button-full {
  width: 100%;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--green-900);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  padding: 20px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: .28s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu > a:not(.button) {
  padding: 12px 4px;
  font-weight: 700;
  color: var(--ink-800);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.eyebrow.light {
  color: #bff0d2;
}

.hero {
  padding-top: 94px;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 84px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -.055em;
}

.hero-copy h1 span {
  display: block;
  color: var(--green-600);
}

.hero-lead {
  max-width: 660px;
  margin-top: 25px;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.75;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 26px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-800);
  font-size: 12px;
  font-weight: 700;
}

.trust-points svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
}

.microcopy svg {
  width: 14px;
  height: 14px;
}

.hero-visual {
  min-height: 575px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.organic-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 43% 57% 54% 46% / 47% 39% 61% 53%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.88), transparent 26%),
    linear-gradient(145deg, #d8f3e4, #b8e9ce);
  transform: rotate(-4deg);
}

.organic-shape::before,
.organic-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
}

.organic-shape::before {
  width: 90px;
  height: 90px;
  top: 4%;
  right: 3%;
}

.organic-shape::after {
  width: 42px;
  height: 42px;
  bottom: 18%;
  left: -3%;
}

.portrait-card {
  width: min(86%, 410px);
  height: 490px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-md);
}

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

.photo-note {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(14, 63, 44, .10);
}

.photo-note svg {
  width: 14px;
  height: 14px;
  color: var(--green-600);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(13, 61, 44, .13);
  animation: float 5.5s ease-in-out infinite;
}

.floating-card-a {
  left: -8px;
  top: 29%;
}

.floating-card-b {
  right: -6px;
  bottom: 22%;
  animation-delay: -2.2s;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--ink-500);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.floating-card strong {
  margin-top: 2px;
  font-size: 12px;
}

.mini-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.authority-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.authority-strip .container {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1.25fr 1.75fr;
  align-items: center;
  gap: 50px;
}

.authority-title {
  color: var(--ink-800);
  font-size: 14px;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 5px 24px;
  border-left: 1px solid var(--line);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--green-800);
  font-family: "Sora", sans-serif;
  font-size: 21px;
}

.stat span {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p {
  margin-top: 17px;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.75;
}

.problem-section {
  background:
    linear-gradient(180deg, rgba(243,251,247,.86), rgba(255,255,255,1)),
    radial-gradient(circle at 10% 10%, rgba(151,220,183,.18), transparent 30%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: stretch;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.problem-item:hover {
  transform: translateX(6px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.problem-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.problem-item p {
  color: var(--ink-800);
  font-size: 14px;
  font-weight: 650;
}

.insight-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 210, 160, .28), transparent 34%),
    linear-gradient(145deg, var(--green-900), #082b20);
  box-shadow: var(--shadow-md);
}

.insight-card .eyebrow {
  color: #aee6c6;
}

.insight-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.insight-card h3 {
  max-width: 430px;
  font-size: 29px;
}

.insight-card > p {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255,255,255,.62);
}

.signature-line span {
  width: 38px;
  height: 1px;
  background: rgba(255,255,255,.35);
}

.method-section {
  background: white;
}

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

.method-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  transition: .35s ease;
}

.method-card:hover {
  transform: translateY(-7px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.method-card.featured {
  background: var(--green-50);
  border-color: #c3ead4;
}

.method-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #dfeae4;
  font-family: "Sora", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
}

.method-card.featured .method-number {
  color: #ccebd9;
}

.method-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 72px 0 26px;
  border-radius: 16px;
  color: white;
  background: var(--green-800);
}

.method-icon svg {
  width: 24px;
  height: 24px;
}

.method-card h3 {
  font-size: 24px;
}

.method-card p {
  margin-top: 12px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.75;
}

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

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

.benefit-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 25px rgba(13, 61, 44, .035);
  transition: .35s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--green-700);
  background: var(--green-100);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 18px;
}

.benefit-card p {
  margin-top: 10px;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.75;
}

.curriculum-section {
  background: white;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.curriculum-copy {
  position: sticky;
  top: 125px;
}

.curriculum-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.curriculum-copy > p {
  margin-top: 18px;
  color: var(--ink-600);
  line-height: 1.8;
}

.included-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.included-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 700;
}

.included-list svg {
  width: 17px;
  height: 17px;
  color: var(--green-600);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.accordion-item.open {
  border-color: var(--green-300);
  box-shadow: 0 10px 30px rgba(19, 85, 60, .05);
}

.accordion-trigger {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink-950);
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.accordion-trigger strong {
  margin-right: 10px;
  color: var(--green-600);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.accordion-trigger svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--green-700);
  transition: transform .32s ease;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s ease;
}

.accordion-content > * {
  overflow: hidden;
}

.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-content p {
  margin: 0 22px 22px;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.75;
}

.audience-section {
  padding-top: 0;
}

.audience-box {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 56px 62px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 85, 60, .98), rgba(8, 46, 34, .98)),
    radial-gradient(circle at 20% 30%, rgba(92, 197, 138, .3), transparent 36%);
  box-shadow: var(--shadow-md);
}

.audience-box h2 {
  max-width: 430px;
  font-size: clamp(32px, 4vw, 48px);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.audience-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 650;
}

.audience-list svg {
  width: 16px;
  height: 16px;
  color: #a8ecc6;
}

.expert-section {
  background: var(--green-50);
}

.expert-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.expert-image {
  overflow: hidden;
  aspect-ratio: .86;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  background: white;
}

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

.expert-copy h2 {
  max-width: 600px;
  font-size: clamp(34px, 4vw, 50px);
}

.expert-name {
  margin-top: 28px;
  color: var(--green-900);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.expert-role {
  margin-top: 4px;
  margin-bottom: 20px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.expert-copy > p:not(.expert-name):not(.expert-role) {
  max-width: 640px;
  margin-top: 13px;
  color: var(--ink-600);
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.credentials span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--ink-800);
  font-size: 11px;
  font-weight: 700;
}

.credentials svg {
  width: 15px;
  height: 15px;
  color: var(--green-600);
}

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

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}

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

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--green-100);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.testimonial-head strong,
.testimonial-head small {
  display: block;
}

.testimonial-head strong {
  font-size: 13px;
}

.testimonial-head small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 10px;
}

.stars {
  margin-top: 22px;
  color: #d6a800;
  letter-spacing: .08em;
  font-size: 12px;
}

.testimonial-card > p {
  margin-top: 13px;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.8;
}

.placeholder-warning {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 650;
}

.placeholder-warning svg {
  width: 14px;
  height: 14px;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 232, 201, .25), transparent 28%),
    var(--surface-alt);
}

.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 16px 46px rgba(13,61,44,.06);
}

.pricing-card-featured {
  border: 1px solid var(--green-500);
  box-shadow: var(--shadow-green);
  transform: translateY(-10px);
}

.best-value {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: var(--green-700);
  box-shadow: 0 10px 30px rgba(31,139,96,.18);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}

.plan-label {
  color: var(--green-900);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.pricing-top p {
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 11px;
}

.price {
  min-height: 86px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 26px;
}

.price > span {
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 700;
}

.price strong {
  font-family: "Sora", sans-serif;
  font-size: 46px;
  letter-spacing: -.06em;
}

.price small {
  color: var(--ink-500);
  font-size: 12px;
}

.annual-note {
  margin-top: -8px;
  color: var(--ink-500);
  font-size: 10px;
}

.annual-note strong {
  color: var(--green-700);
}

.plan-features {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-800);
  font-size: 12px;
  font-weight: 650;
}

.plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
}

.pricing-microcopy {
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 9px;
  text-align: center;
}

.comparison-wrap {
  max-width: 900px;
  margin: 56px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr .55fr .55fr;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
}

.comparison-head {
  color: var(--green-900);
  background: var(--green-50);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span {
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 650;
}

.comparison-row svg {
  justify-self: center;
  width: 17px;
  height: 17px;
  color: var(--green-600);
}

.guarantee-section {
  padding-bottom: 30px;
}

.guarantee-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: center;
  padding: 40px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, white, var(--green-50));
}

.guarantee-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--green-700);
  background: white;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon svg {
  width: 34px;
  height: 34px;
}

.guarantee-box h2 {
  font-size: 28px;
}

.guarantee-box p {
  max-width: 850px;
  margin-top: 9px;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.75;
}

.faq-section {
  padding-top: 90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.faq-heading p {
  margin-top: 17px;
  color: var(--ink-600);
  line-height: 1.8;
}

.final-cta {
  padding: 108px 0;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(92, 197, 138, .22), transparent 28%),
    radial-gradient(circle at 85% 90%, rgba(92, 197, 138, .14), transparent 26%),
    linear-gradient(135deg, #0f5139, #082d21);
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 58px);
}

.final-cta p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.8;
}

.final-cta .button {
  margin-top: 30px;
}

.final-cta small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.final-cta small svg {
  width: 13px;
  height: 13px;
}

.footer {
  padding: 64px 0 28px;
  background: #071f17;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .7fr .7fr;
  gap: 60px;
  padding-bottom: 50px;
}

.brand-footer .brand-mark {
  background: #155c41;
}

.brand-footer .brand-text small {
  color: rgba(255,255,255,.45);
}

.footer-grid > div:first-child > p {
  max-width: 350px;
  margin-top: 20px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 4px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
}

.footer-grid > div:not(:first-child) a {
  width: fit-content;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  transition: color .25s ease;
}

.footer-grid > div:not(:first-child) a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

.mobile-sticky-cta {
  display: none;
}

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

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

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

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

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 44px;
  }

  .floating-card-a {
    left: -18px;
  }

  .floating-card-b {
    right: -18px;
  }

  .problem-grid,
  .curriculum-grid,
  .faq-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 84px 0;
  }

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

  .menu-button {
    display: grid;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid,
  .problem-grid,
  .curriculum-grid,
  .expert-grid,
  .faq-grid,
  .audience-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 62px;
  }

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

  .hero-copy .eyebrow,
  .microcopy {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-points,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .authority-strip .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .authority-title {
    text-align: center;
  }

  .method-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .curriculum-copy,
  .faq-heading {
    position: static;
  }

  .audience-box {
    padding: 48px;
  }

  .audience-box h2 {
    max-width: none;
  }

  .expert-image {
    max-height: 650px;
  }

  .expert-copy {
    max-width: 760px;
  }

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

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

  .section {
    padding: 70px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .trust-points {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    min-height: 450px;
  }

  .organic-shape {
    width: 390px;
    height: 390px;
  }

  .portrait-card {
    width: 78%;
    height: 390px;
  }

  .floating-card {
    padding: 10px 11px;
  }

  .floating-card-a {
    left: -6px;
    top: 25%;
  }

  .floating-card-b {
    right: -6px;
    bottom: 16%;
  }

  .floating-card strong {
    max-width: 130px;
    font-size: 10px;
  }

  .floating-card small {
    font-size: 8px;
  }

  .photo-note {
    display: none;
  }

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

  .stat:nth-child(3) {
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .curriculum-copy h2,
  .faq-heading h2 {
    font-size: 34px;
  }

  .problem-grid {
    gap: 20px;
  }

  .problem-item {
    grid-template-columns: 36px 1fr;
    padding: 16px;
  }

  .insight-card {
    padding: 30px;
  }

  .method-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 280px;
  }

  .method-icon {
    margin-top: 48px;
  }

  .curriculum-grid {
    gap: 34px;
  }

  .audience-box {
    padding: 34px 24px;
    gap: 32px;
    border-radius: 24px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .expert-grid {
    gap: 40px;
  }

  .pricing-card-featured {
    transform: none;
    margin-top: 10px;
  }

  .price strong {
    font-size: 42px;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1.4fr .5fr .5fr;
    padding: 0 14px;
  }

  .comparison-row span {
    font-size: 11px;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .guarantee-icon {
    width: 62px;
    height: 62px;
  }

  .guarantee-box h2 {
    font-size: 24px;
  }

  .faq-grid {
    gap: 36px;
  }

  .final-cta {
    padding: 84px 0 100px;
  }

  .final-cta h2 {
    font-size: 37px;
  }

  .footer {
    padding-bottom: 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 45;
    left: 14px;
    right: 14px;
    bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 15px;
    color: white;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    box-shadow: 0 18px 42px rgba(13,61,44,.28);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-sticky-cta svg {
    width: 17px;
    height: 17px;
  }
}
