:root {
  --bg: #fef9ef;
  --panel: #f5eee1;
  --accent: #d87850;
  --accent-dark: #8f4528;
  --text: #0f3a58;
  --body-text: #2a2b2f;
  --muted: #67645f;
  --line: #d7ccbd;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 56px;
  padding: 12px clamp(24px, 6vw, 96px);
  border-bottom: 1px solid rgba(15, 58, 88, 0.12);
  background: #fbfdfe;
}

.brand,
.header-email {
  font-size: 14px;
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 140px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  color: #333236;
}

.header-email {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 58, 88, 0.82);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 180ms ease;
}

.header-email:hover {
  color: #d87850;
}

.header-cta {
  justify-self: end;
  padding: 13px 28px;
  border: 1px solid #0f3a58;
  border-radius: 999px;
  color: #0f3a58;
}

.hero {
  padding: 92px clamp(24px, 7vw, 112px) 56px;
  text-align: center;
  background:
    url("https://w.ladicdn.com/615e97ab04a20500141ed38e/background-sales-page-20260614103212-wfz9y.png") center top / cover no-repeat,
    #fbfdfe;
}

.hero-copy {
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

h3 {
  color: var(--text);
  font-size: 24px;
}

.headline-main {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 400;
  white-space: nowrap;
}

.headline-accent {
  display: block;
  font-family: Lora, "Times New Roman", serif;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.mobile-headline-break {
  display: none;
}

.hero-subtitle {
  max-width: 1240px;
  margin: 22px auto 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.hero-media {
  max-width: 1080px;
  margin: 64px auto 0;
}

.media-card {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 18px;
  background: #f2f7fa;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 120, 80, 0.13), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #e9f2f7 42%, #b9d0dc 100%);
}

.hero-video,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 2;
  object-fit: cover;
  border: none;
}

.video-cover-logo {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 170px;
  height: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 1px solid rgba(251, 253, 254, 0.74);
  border-radius: 999px;
  background: rgba(15, 58, 88, 0.82);
  box-shadow: 0 18px 48px rgba(15, 58, 88, 0.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.video-play-button:hover {
  background: rgba(216, 120, 80, 0.88);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--white);
}

.video-play-button.is-playing {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(15, 58, 88, 0.42), transparent 55%),
    linear-gradient(145deg, rgba(15, 58, 88, 0.88), rgba(216, 120, 80, 0.28));
  pointer-events: none;
}

.play-button {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(254, 249, 239, 0.72);
  border-radius: 999px;
  background: rgba(254, 249, 239, 0.18);
  backdrop-filter: blur(12px);
}

.play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 30px 0 0 36px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--white);
}

.video-placeholder p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 52px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 320px;
  min-height: 76px;
  padding: 22px 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: #0f3a58;
  color: #fbfdfe;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 22px 54px rgba(15, 58, 88, 0.32);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primary-cta:hover {
  background: #d87850;
  color: #fbfdfe;
  box-shadow:
    0 12px 28px rgba(216, 120, 80, 0.3),
    0 3px 8px rgba(216, 120, 80, 0.18);
  transform: translateY(-4px);
}

.header-cta:hover {
  border-color: #d87850;
  background: #d87850;
  color: #fbfdfe;
}

.hero-actions p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 86px auto 0;
  text-align: center;
}

.metrics div {
  margin: 0;
  padding: 0 42px;
}

.metrics div + div {
  border-left: 1px solid rgba(15, 58, 88, 0.18);
}

.metrics dt {
  font-family: Lora, "Times New Roman", serif;
  color: var(--text);
  font-size: clamp(52px, 6vw, 72px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.metrics dd {
  margin: 18px 0 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
}

.logo-strip {
  margin-top: 104px;
}

.logo-strip p {
  margin: 0 0 42px;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.logo-strip p span {
  color: var(--accent);
}

.logos {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow: hidden;
  color: rgba(15, 58, 88, 0.38);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logos::before,
.logos::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(140px, 18vw, 260px);
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, #fbfdfe, rgba(251, 253, 254, 0));
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, #fbfdfe, rgba(251, 253, 254, 0));
}

.logos-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  animation: logo-marquee 28s linear infinite;
}

.logos span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.logos span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 58, 88, 0.22);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.problem-section {
  padding: 118px clamp(24px, 7vw, 112px) 92px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading h2 {
  max-width: 1180px;
  margin: 0 auto;
}

.problem-section .section-heading h2,
.problem-section .section-heading h2 span {
  font-weight: 400;
}

.section-heading h2 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.framework-section .section-heading {
  max-width: none;
}

.framework-section .section-heading h2 {
  max-width: none;
  text-align: center;
}

.framework-section .section-heading h2,
.framework-section .section-heading h2 span {
  font-weight: 400;
}

.framework-section .section-heading h2,
.framework-section .section-heading h2 span {
  width: 100%;
  white-space: nowrap;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 74px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.problem-visual {
  min-height: 620px;
}

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 100%, rgba(15, 58, 88, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #e9f2f7);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 58, 88, 0.1), transparent 48%),
    linear-gradient(to right, rgba(15, 58, 88, 0.1), transparent 45%);
}

.image-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder:has(img)::before {
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
}

.image-placeholder span {
  position: relative;
  width: 44%;
  aspect-ratio: 4 / 3;
  border: 18px solid rgba(15, 58, 88, 0.16);
  border-radius: 18px;
}

.image-placeholder span::before,
.image-placeholder span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.16);
}

.image-placeholder span::before {
  left: 12%;
  right: 12%;
  bottom: 14%;
  height: 42%;
  clip-path: polygon(0 100%, 35% 22%, 58% 72%, 78% 42%, 100% 100%);
}

.image-placeholder span::after {
  top: 16%;
  right: 16%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
}


.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 74px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.problem-visual {
  min-height: 620px;
}

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 100%, rgba(15, 58, 88, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #e9f2f7);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 58, 88, 0.1), transparent 48%),
    linear-gradient(to right, rgba(15, 58, 88, 0.1), transparent 45%);
}

.image-placeholder span {
  position: relative;
  width: 44%;
  aspect-ratio: 4 / 3;
  border: 18px solid rgba(15, 58, 88, 0.16);
  border-radius: 18px;
}

.image-placeholder span::before,
.image-placeholder span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.16);
}

.image-placeholder span::before {
  left: 12%;
  right: 12%;
  bottom: 14%;
  height: 42%;
  clip-path: polygon(0 100%, 35% 22%, 58% 72%, 78% 42%, 100% 100%);
}

.image-placeholder span::after {
  top: 16%;
  right: 16%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
}

.pain-list {
  display: grid;
  gap: 24px;
}

.pain-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 104px;
  margin: 0;
  padding: 28px 34px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 12px;
  background: rgba(242, 247, 250, 0.86);
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.pain-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.pain-card span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fbfdfe;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.pain-card p {
  margin: 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.45;
}

.pain-card strong {
  font-weight: 600;
}

.problem-closing {
  max-width: 720px;
  margin: 70px auto 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.problem-closing span {
  color: var(--accent);
}

.framework-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}

.framework-card {
  display: grid;
  justify-items: center;
  align-content: start;
  margin: 0;
  min-height: 460px;
  padding: 48px 28px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  text-align: center;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.framework-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.framework-icon {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 28px;
  color: var(--accent);
}

.framework-icon::before,
.framework-icon::after,
.framework-icon span,
.framework-icon span::before,
.framework-icon span::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  opacity: 0.72;
}

.framework-icon::before {
  inset: 8px;
  border-radius: 999px;
}

.framework-icon::after {
  inset: 22px;
  border-radius: 999px;
}

.framework-icon span {
  left: 50%;
  bottom: 4px;
  width: 38px;
  height: 26px;
  border-radius: 8px 8px 4px 4px;
  background: rgba(216, 120, 80, 0.1);
  transform: translateX(-50%);
}

.framework-icon span::before {
  left: 50%;
  bottom: 100%;
  width: 42px;
  height: 20px;
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  transform: translateX(-50%);
}

.framework-icon span::after {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 0;
  border-width: 1px 0 0;
  transform: translate(-50%, -50%);
}

.framework-number {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.framework-card h3 {
  max-width: 260px;
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.framework-card > p:last-child {
  max-width: 300px;
  margin: 16px 0 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.5;
}

.framework-illustration {
  position: relative;
  width: min(100%, 320px);
  height: 178px;
  margin-bottom: 28px;
}

.segment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.segment-row span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 10px;
  background: rgba(251, 253, 254, 0.72);
  color: rgba(42, 43, 47, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.segment-row .is-active {
  border-color: rgba(216, 120, 80, 0.72);
  background: var(--accent);
  color: #fbfdfe;
}

.target-map {
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 0;
  height: 104px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(rgba(15, 58, 88, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 58, 88, 0.06) 1px, transparent 1px),
    rgba(251, 253, 254, 0.42);
  background-size: 34px 34px;
}

.map-line {
  position: absolute;
  background: rgba(216, 120, 80, 0.58);
}

.map-line.horizontal {
  left: 24px;
  right: 24px;
  top: 58%;
  height: 1px;
}

.map-line.vertical {
  top: 18px;
  bottom: 18px;
  left: 34%;
  width: 1px;
}

.target-dot {
  position: absolute;
  top: 46%;
  left: 34%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(216, 120, 80, 0.16);
  transform: translate(-50%, -50%);
}

.target-ring {
  position: absolute;
  top: 46%;
  left: 34%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 120, 80, 0.62);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.fit-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 12px;
  background: rgba(251, 253, 254, 0.92);
  text-align: left;
}

.fit-card span {
  display: block;
  color: rgba(42, 43, 47, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.fit-card strong {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-family: Lora, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.enrollment-illustration {
  display: block;
}

.enrollment-illustration::before {
  display: none;
}

.channel-source {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 86px;
  height: 38px;
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 999px;
  background: rgba(251, 253, 254, 0.74);
  color: rgba(42, 43, 47, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.source-left {
  top: 0;
  left: 0;
}

.source-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.source-right {
  top: 0;
  right: 0;
}

.channel-line {
  position: absolute;
  top: 44px;
  height: 68px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(216, 120, 80, 0.12), rgba(216, 120, 80, 0.72));
  transform-origin: bottom center;
}

.channel-line::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.line-left {
  left: 54px;
  transform: rotate(-28deg);
}

.line-center {
  left: 50%;
}

.line-right {
  right: 54px;
  transform: rotate(28deg);
}

.channel-funnel {
  position: absolute;
  top: 78px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.channel-funnel span {
  display: grid;
  place-items: center;
  height: 26px;
  border: 1px solid rgba(216, 120, 80, 0.7);
  background: rgba(216, 120, 80, 0.12);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.channel-funnel span:nth-child(1) {
  width: 148px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  border-radius: 10px 10px 6px 6px;
}

.channel-funnel span:nth-child(2) {
  width: 104px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
}

.channel-funnel span:nth-child(3) {
  width: 82px;
  border-color: var(--accent);
  border-radius: 4px 4px 10px 10px;
  background: var(--accent);
  color: #fbfdfe;
}

.finance-illustration {
  display: grid;
  align-content: start;
  gap: 8px;
}

.finance-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.finance-summary div {
  padding: 9px 12px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 12px;
  background: rgba(251, 253, 254, 0.74);
  text-align: left;
}

.finance-summary span {
  display: block;
  color: rgba(42, 43, 47, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.finance-summary strong {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.finance-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 58px;
  padding: 9px 16px 0;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(rgba(15, 58, 88, 0.05) 1px, transparent 1px),
    rgba(251, 253, 254, 0.42);
  background-size: 100% 25%;
}

.finance-chart span {
  flex: 1;
  border: 1px solid rgba(216, 120, 80, 0.7);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: rgba(216, 120, 80, 0.18);
}

.finance-chart span:nth-child(1) {
  height: 42%;
}

.finance-chart span:nth-child(2) {
  height: 68%;
}

.finance-chart span:nth-child(3) {
  height: 54%;
}

.finance-chart span:nth-child(4) {
  height: 88%;
  background: var(--accent);
}

.payroll-list {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 12px;
  background: rgba(251, 253, 254, 0.78);
  color: rgba(42, 43, 47, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.payroll-list strong {
  display: grid;
  min-width: 42px;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fbfdfe;
  font-size: 12px;
}

.system-illustration {
  display: grid;
  place-items: center;
}

.control-panel {
  width: min(100%, 260px);
  padding: 14px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(rgba(15, 58, 88, 0.04) 1px, transparent 1px),
    rgba(251, 253, 254, 0.72);
  background-size: 100% 34px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(42, 43, 47, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.panel-header i {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(216, 120, 80, 0.7);
  border-radius: 999px;
  background:
    repeating-conic-gradient(
      rgba(216, 120, 80, 0.32) 0deg 18deg,
      transparent 18deg 36deg
    ),
    rgba(251, 253, 254, 0.82);
}

.toggle-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(15, 58, 88, 0.1);
  border-radius: 999px;
  background: rgba(251, 253, 254, 0.76);
}

.toggle-row + .toggle-row {
  margin-top: 8px;
}

.toggle-row span {
  color: rgba(42, 43, 47, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.toggle-row strong {
  position: relative;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: rgba(216, 120, 80, 0.24);
}

.toggle-row strong::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
}

.auto-status {
  position: absolute;
  right: 16px;
  bottom: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fbfdfe;
  font-size: 12px;
  font-weight: 800;
}

.framework-illustration .segment-row .is-active {
  border-color: rgba(15, 58, 88, 0.72);
  background: var(--text);
  color: #fbfdfe;
}

.framework-illustration .map-line {
  background: rgba(15, 58, 88, 0.58);
}

.framework-illustration .target-dot {
  background: var(--text);
  box-shadow: 0 0 0 7px rgba(15, 58, 88, 0.16);
}

.framework-illustration .target-ring {
  border-color: rgba(15, 58, 88, 0.62);
}

.framework-illustration .fit-card strong,
.framework-illustration .finance-summary strong {
  color: var(--text);
}

.framework-illustration .channel-line {
  background: linear-gradient(to bottom, rgba(15, 58, 88, 0.12), rgba(15, 58, 88, 0.72));
}

.framework-illustration .channel-line::after {
  background: var(--text);
}

.framework-illustration .channel-funnel span {
  border-color: rgba(15, 58, 88, 0.7);
  background: rgba(15, 58, 88, 0.12);
}

.framework-illustration .channel-funnel span:nth-child(3),
.framework-illustration .finance-chart span:nth-child(4),
.framework-illustration .payroll-list strong,
.framework-illustration .auto-status {
  border-color: var(--text);
  background: var(--text);
  color: #fbfdfe;
}

.framework-illustration .finance-chart span {
  border-color: rgba(15, 58, 88, 0.7);
  background: rgba(15, 58, 88, 0.16);
}

.framework-illustration .panel-header i {
  border-color: rgba(15, 58, 88, 0.7);
  background:
    repeating-conic-gradient(
      rgba(15, 58, 88, 0.32) 0deg 18deg,
      transparent 18deg 36deg
    ),
    rgba(251, 253, 254, 0.82);
}

.framework-illustration .toggle-row strong {
  background: rgba(15, 58, 88, 0.22);
}

.framework-illustration .toggle-row strong::after {
  background: var(--text);
}

.section-actions {
  margin-top: 78px;
  text-align: center;
}

.stacked-cta {
  flex-direction: column;
  gap: 6px;
  min-width: 440px;
  min-height: 92px;
  padding: 20px 58px;
  line-height: 1.2;
}

.stacked-cta strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.stacked-cta span {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: none;
}

.cta-arrow {
  flex-shrink: 0;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  min-height: 58px;
  padding: 16px 34px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.secondary-cta:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.section-actions p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 48px;
    padding: 8px 20px;
    gap: 16px;
  }

  .brand {
    width: 118px;
  }

  .header-email {
    grid-column: 2;
    gap: 6px;
    font-size: 13px;
  }

  .header-email svg {
    width: 15px;
    height: 15px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero .mobile-headline-break {
    display: block;
  }

  .headline-main {
    white-space: normal;
  }

  .desktop-break {
    display: none;
  }

  .hero-media {
    max-width: none;
    width: 100%;
    margin-top: 44px;
  }

  .media-card {
    margin-right: -24px;
    margin-left: -24px;
    padding: 10px;
    border: 1px solid rgba(15, 58, 88, 0.14);
    border-radius: 14px;
    background: #f2f7fa;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    margin: -10px;
  }

  .video-cover-logo {
    width: 150px;
    top: 13px;
    left: 23px;
  }

  .video-play-button {
    top: 45%;
    left: 50%;
    width: 68px;
    height: 68px;
  }

  .video-play-button span {
    margin-left: 6px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }

  .metrics {
    display: none;
  }

  .metrics div + div {
    border-top: 1px solid rgba(15, 58, 88, 0.18);
    border-left: 0;
    padding-top: 42px;
  }

  .metrics dd {
    white-space: normal;
  }

  .logos {
    font-size: 17px;
  }

  .logos-track,
  .logos span {
    gap: 22px;
  }

  .logos span::after {
    width: 5px;
    height: 5px;
  }

  .problem-section {
    padding: 68px 24px 64px;
  }

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

  .section-heading h2 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .framework-section .section-heading h2,
  .framework-section .section-heading h2 span {
    white-space: normal;
  }

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

  .problem-visual {
    min-height: 420px;
  }

  .pain-card {
    padding: 24px;
  }

  .problem-closing {
    margin-top: 52px;
    font-size: 24px;
  }

  .framework-section {
    padding: 84px 24px 76px;
  }

  .framework-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .framework-card h3,
  .framework-card > p:last-child {
    max-width: 360px;
  }

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

  .section-actions {
    margin-top: 58px;
  }
}

/* ─── SECTION 4 — SOLUTION ─────────────────────────────────────── */

.solution-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.solution-section .section-heading {
  max-width: none;
  margin: 0 auto 64px;
}

.solution-section .section-heading h2 {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.solution-section .section-heading h2 span {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  white-space: normal;
}

.solution-subtitle {
  max-width: 680px;
  margin: 20px auto 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* Media block */
.solution-media {
  max-width: 1080px;
  margin: 0 auto 72px;
}

.solution-media-inner {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.solution-media-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.solution-media-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-media-placeholder span {
  width: 38%;
  aspect-ratio: 4 / 3;
  border: 16px solid rgba(15, 58, 88, 0.14);
  border-radius: 14px;
}

.solution-media-placeholder span::before,
.solution-media-placeholder span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.14);
}

.solution-media-placeholder span::before {
  left: 31%;
  right: 31%;
  bottom: 18%;
  height: 38%;
  clip-path: polygon(0 100%, 28% 22%, 54% 72%, 76% 38%, 100% 100%);
}

.solution-media-placeholder span::after {
  top: 20%;
  right: 33%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 999px;
}

/* Bento grid */
.solution-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

/* Row 1: two large cards */
.solution-card--large {
  grid-column: span 1;
}

/* Row 2: three small cards */
.solution-card--small {
  grid-column: span 1;
}

/* Third small card spans across into a 3-col context — override grid */
.solution-bento {
  grid-template-columns: repeat(6, 1fr);
}

.solution-card--large {
  grid-column: span 3;
}

.solution-card--small {
  grid-column: span 2;
}

.solution-card--small:last-child {
  grid-column: span 2;
}

/* Card base */
.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 36px 32px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 16px;
  background: #f2f7fa;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.solution-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

/* Icon — solid fill, gradient cực nhẹ, viền ngoài màu */
.solution-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: linear-gradient(145deg, #16486b 0%, #0f3a58 100%);
  outline: 2px solid rgba(15, 58, 88, 0.24);
  outline-offset: 3px;
  color: #fbfdfe;
  flex-shrink: 0;
}

/* Card text — tuân thủ Design System: h3 = 24px, Lora, weight 500 */
.solution-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.55;
}

/* ─── RESPONSIVE — SOLUTION ─────────────────────────────────────── */
@media (max-width: 820px) {
  .solution-section {
    padding: 84px 24px 76px;
  }

  .solution-section .section-heading h2 {
    white-space: normal;
  }

  .solution-bento {
    grid-template-columns: 1fr;
  }

  .solution-card--large,
  .solution-card--small {
    grid-column: span 1;
  }

  .solution-card--small:last-child {
    grid-column: span 1;
  }

  .solution-media-placeholder {
    aspect-ratio: 4 / 3;
  }
}

/* ─── SECTION 5 — SOCIAL PROOF ─────────────────────────────────── */

.social-proof-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.testimonial-list {
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.social-proof-section .section-heading h2,
.social-proof-section .section-heading h2 span {
  font-weight: 400;
}

/* Card — Function Health style: internal padding, photo not full-bleed */
.testimonial-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  margin: 0;
  padding: 36px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.testimonial-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

/* Reverse variant — photo on right */
.testimonial-card--reverse {
  grid-template-columns: 1fr 220px;
}

.testimonial-card--reverse .testimonial-photo {
  order: 2;
}

.testimonial-card--reverse .testimonial-content {
  order: 1;
}

/* Photo — with its own border-radius, inside card padding */
.testimonial-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 28%, rgba(15, 58, 88, 0.14), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #d9e8ef 100%);
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-photo span {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-photo span::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(15, 58, 88, 0.15);
  margin-bottom: -4px;
}

.testimonial-photo span::after {
  content: "";
  width: 110px;
  height: 74px;
  border-radius: 55px 55px 0 0;
  background: rgba(15, 58, 88, 0.11);
}

/* Content — flex column */
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Author block at TOP */
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

/* Body text — middle */
.testimonial-body {
  margin: 0;
  color: #3d3d3d;
  font-size: 17px;
  line-height: 1.65;
}

/* Pull-quote with left accent border — bottom, like Function Health */
.testimonial-pullquote {
  margin: 4px 0 0;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--accent);
}

.testimonial-pullquote p {
  margin: 0;
  color: var(--accent);
  font-family: Lora, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

/* Stars */
.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
}

/* ─── RESPONSIVE — SOCIAL PROOF ─────────────────────────────────── */
@media (max-width: 820px) {
  .social-proof-section {
    padding: 84px 24px 76px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .testimonial-photo {
    aspect-ratio: 4 / 3;
    max-height: 220px;
  }

  .testimonial-card--reverse .testimonial-photo {
    order: -1;
  }

  .testimonial-card--reverse .testimonial-content {
    order: 0;
  }

  .testimonial-pullquote p {
    font-size: 16px;
  }
}

/* ─── SECTION 6 — CURRICULUM ────────────────────────────────────── */

.curriculum-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.curriculum-section .section-heading h2,
.curriculum-section .section-heading h2 span {
  font-weight: 400;
}

.curriculum-card {
  display: block;
  padding: 14px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease, border-color 250ms ease;
}

.curriculum-card:hover {
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
  border-color: rgba(15, 58, 88, 0.34);
}

.curriculum-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #d9e8ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Landscape icon placeholder using embedded SVG */
.curriculum-thumb::before {
  content: "";
  position: absolute;
  width: 34%;
  height: 34%;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 70' fill='none' stroke='%230f3a58' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='90' height='60' rx='8'/%3E%3Ccircle cx='68' cy='28' r='12'/%3E%3Cpolygon points='12,58 38,28 62,58'/%3E%3Cpolygon points='45,58 65,36 88,58'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.curriculum-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide broken image icon when files are missing */
.curriculum-thumb img:not([src]),
.curriculum-thumb img[src=""],
.curriculum-thumb img:invalid {
  opacity: 0;
}

.curriculum-card:hover .curriculum-thumb img,
.curriculum-card:hover .curriculum-thumb::before {
  transform: scale(1.04);
}

/* ─── RESPONSIVE — CURRICULUM ───────────────────────────────────── */
@media (max-width: 900px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .curriculum-section {
    padding: 84px 24px 76px;
  }

  .curriculum-card {
    padding: 12px;
  }
}

/* ─── SECTION 7 — TOOLS / TEMPLATES ────────────────────────────── */

.tools-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.tools-section .section-heading h2,
.tools-section .section-heading h2 span {
  font-weight: 400;
}

.tools-section .section-heading {
  max-width: none;
}

.tools-section .section-heading h2,
.tools-section .section-heading h2 span {
  white-space: nowrap;
}

.tools-list {
  display: grid;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) 1px minmax(0, 1.5fr);
  gap: 42px;
  align-items: center;
  margin: 0;
  padding: 46px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.tool-card::before {
  content: "";
  width: 1px;
  align-self: stretch;
  background: rgba(15, 58, 88, 0.2);
  grid-column: 2;
  grid-row: 1;
}

.tool-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.tool-visual {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tool-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(15, 58, 88, 0.06);
  border-radius: 12px;
  pointer-events: none;
}

.tool-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: contain;
  display: block;
}

.tool-visual:has(img)::after,
.tool-visual:has(img) > :not(img) {
  display: none;
}

.tool-content {
  grid-column: 3;
}

.tool-number {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tool-content h3 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
}

.tool-content p:not(.tool-number) {
  margin: 18px 0 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.55;
}

.tool-content > strong {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(216, 120, 80, 0.13);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.folder-stack,
.salary-panel,
.form-flow,
.mini-dashboard {
  position: relative;
  z-index: 1;
  width: min(78%, 250px);
}

.folder-stack {
  height: 138px;
}

.folder-stack span {
  position: absolute;
  display: block;
  width: 178px;
  height: 112px;
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 14px;
  background: rgba(251, 253, 254, 0.76);
}

.folder-stack span::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 18px;
  width: 70px;
  height: 22px;
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(251, 253, 254, 0.76);
}

.folder-stack span:first-child {
  top: 14px;
  left: 16px;
  opacity: 0.55;
  transform: rotate(-4deg);
}

.folder-stack span:nth-child(2) {
  top: 28px;
  left: 42px;
}

.folder-stack strong {
  position: absolute;
  right: 8px;
  bottom: 0;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--text);
  color: #fbfdfe;
  font-size: 12px;
}

.salary-panel {
  display: grid;
  gap: 10px;
}

.salary-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 14px;
  background: rgba(251, 253, 254, 0.78);
}

.salary-panel div span {
  color: rgba(42, 43, 47, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.salary-panel div strong {
  display: grid;
  min-width: 46px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--text);
  color: #fbfdfe;
  font-size: 12px;
}

.salary-panel i {
  display: block;
  height: 22px;
  border: 1px solid rgba(15, 58, 88, 0.5);
  border-radius: 999px;
  background: rgba(15, 58, 88, 0.12);
}

.salary-panel i:nth-child(3) {
  width: 82%;
}

.salary-panel i:nth-child(4) {
  width: 64%;
}

.form-flow {
  display: grid;
  gap: 14px;
}

.form-flow span {
  position: relative;
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 999px;
  background: rgba(251, 253, 254, 0.78);
  color: rgba(42, 43, 47, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.form-flow span + span::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 15px;
  background: rgba(15, 58, 88, 0.44);
}

.form-flow span:last-child {
  background: var(--text);
  color: #fbfdfe;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-dashboard span,
.mini-dashboard strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 14px;
  background: rgba(251, 253, 254, 0.74);
}

.mini-dashboard span::before {
  content: "";
  width: 54%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 58, 88, 0.24);
}

.mini-dashboard strong {
  grid-column: span 2;
  min-height: 42px;
  background: var(--text);
  color: #fbfdfe;
  font-size: 13px;
}

@media (max-width: 820px) {
  .tools-section {
    padding: 84px 24px 76px;
  }

  .tools-section .section-heading h2,
  .tools-section .section-heading h2 span {
    white-space: normal;
  }

  .tool-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .tool-card::before {
    width: auto;
    height: 1px;
    grid-column: 1;
    grid-row: 2;
  }

  .tool-content {
    grid-column: 1;
  }

  .tool-content h3 {
    font-size: 24px;
  }
}

/* ─── SECTION 8 — BONUS ────────────────────────────────────────── */

.bonus-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.bonus-section .section-heading h2,
.bonus-section .section-heading h2 span {
  font-weight: 400;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.bonus-card {
  display: grid;
  align-content: start;
  margin: 0;
  min-height: 340px;
  padding: 18px 18px 28px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  text-align: center;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.bonus-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.bonus-thumb {
  position: relative;
  display: grid;
  height: clamp(132px, 11vw, 164px);
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bonus-thumb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(15, 58, 88, 0.06);
  border-radius: 10px;
}

.bonus-thumb img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  display: block;
}

.bonus-thumb:has(img)::after {
  display: none;
}

.bonus-thumb span {
  position: relative;
  z-index: 1;
  width: 42%;
  aspect-ratio: 4 / 3;
  border: 8px solid rgba(15, 58, 88, 0.15);
  border-radius: 8px;
}

.bonus-thumb span::before,
.bonus-thumb span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.15);
}

.bonus-thumb span::before {
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 45%;
  clip-path: polygon(0 100%, 32% 28%, 58% 78%, 80% 48%, 100% 100%);
}

.bonus-thumb span::after {
  top: 14%;
  right: 14%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
}

.bonus-card h3 {
  margin: 22px auto 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.bonus-card p {
  display: inline-flex;
  justify-self: center;
  margin: 18px 0 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(216, 120, 80, 0.13);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

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

@media (max-width: 600px) {
  .bonus-section {
    padding: 84px 24px 76px;
  }

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

  .bonus-thumb {
    height: auto;
    min-height: 154px;
    overflow: visible;
  }

  .bonus-thumb img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
  }
}

/* ─── SECTION 9 — MORE SOCIAL PROOF ───────────────────────────── */

.more-proof-section {
  padding: 116px clamp(24px, 7vw, 112px) 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.more-proof-section .section-heading h2,
.more-proof-section .section-heading h2 span {
  font-weight: 400;
}

.review-masonry {
  column-count: 3;
  column-gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.review-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  padding: 26px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background: #f2f7fa;
  break-inside: avoid;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.review-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.review-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 999px;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 34%, rgba(15, 58, 88, 0.26) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 88%, rgba(15, 58, 88, 0.16) 0 34%, transparent 35%),
    linear-gradient(145deg, rgba(251, 253, 254, 0.92), rgba(15, 58, 88, 0.12));
}

.review-author strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.review-author p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.review-stars {
  margin-top: 18px;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
}

.review-card > p {
  margin: 14px 0 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.55;
}

.review-card--video .review-video-wrap {
  margin-top: 14px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #dfeaf0;
}

.review-card--video .review-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  object-fit: cover;
  background: #0f3a58;
}

@media (max-width: 1020px) {
  .review-masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .more-proof-section {
    padding: 84px 24px 76px;
  }

  .review-masonry {
    column-count: 1;
  }
}

/* ─── SECTION 10 — CLASS GALLERY ───────────────────────────────── */

.class-gallery-section {
  padding: 116px 0 104px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  overflow: hidden;
  background: #fbfdfe;
}

.class-gallery-section .section-heading {
  margin-bottom: 28px;
  padding: 0 clamp(24px, 7vw, 112px);
}

.class-gallery-section .section-heading h2 {
  font-weight: 400;
}

.class-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 72px;
  padding: 0 24px;
}

.class-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 999px;
  background: #f2f7fa;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 700;
}

.gallery-marquee {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(90px, 12vw, 180px);
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fbfdfe, rgba(251, 253, 254, 0));
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fbfdfe, rgba(251, 253, 254, 0));
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: gallery-marquee 34s linear infinite;
}

.gallery-item {
  position: relative;
  display: grid;
  flex: 0 0 clamp(224px, 24vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(15, 58, 88, 0.12), transparent 28%),
    linear-gradient(145deg, #ffffff, #e9f2f7);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-item span {
  position: relative;
  width: 42%;
  aspect-ratio: 4 / 3;
  border: 12px solid rgba(15, 58, 88, 0.14);
  border-radius: 14px;
}

.gallery-item span::before,
.gallery-item span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.14);
}

.gallery-item span::before {
  left: 9%;
  right: 9%;
  bottom: 12%;
  height: 44%;
  clip-path: polygon(0 100%, 32% 28%, 58% 78%, 80% 48%, 100% 100%);
}

.gallery-item span::after {
  top: 14%;
  right: 14%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
}

@keyframes gallery-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (max-width: 640px) {
  .class-gallery-section {
    padding: 84px 0 76px;
  }

  .class-tags {
    display: flex;
    gap: 10px;
    max-width: none;
    margin-bottom: 48px;
  }

  .class-tags span {
    padding: 0 20px;
    text-align: center;
    font-size: 15px;
  }

  .gallery-track {
    gap: 18px;
  }
}

/* ─── SECTION 11 — VALUE STACK ─────────────────────────────────── */

.value-stack-section {
  padding: 116px clamp(24px, 7vw, 112px) 120px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background:
    radial-gradient(circle at 50% 20%, rgba(15, 58, 88, 0.12), transparent 34%),
    #fbfdfe;
}

.value-stack-section .section-heading h2,
.value-stack-section .section-heading h2 span {
  font-weight: 400;
}

.value-stack-panel {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 72px clamp(28px, 6vw, 96px);
  border: 1px solid rgba(15, 58, 88, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(242, 247, 250, 0.96), rgba(242, 247, 250, 0.78)),
    #f2f7fa;
  box-shadow: 0 26px 80px rgba(15, 58, 88, 0.1);
}

.value-media {
  display: grid;
  width: min(940px, 92%);
  aspect-ratio: 16 / 9;
  margin: 72px auto 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.value-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.value-media span {
  position: relative;
  width: 34%;
  aspect-ratio: 4 / 3;
  border: 12px solid rgba(15, 58, 88, 0.14);
  border-radius: 14px;
}

.value-media span::before,
.value-media span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.14);
}

.value-media span::before {
  left: 9%;
  right: 9%;
  bottom: 12%;
  height: 44%;
  clip-path: polygon(0 100%, 32% 28%, 58% 78%, 80% 48%, 100% 100%);
}

.value-media span::after {
  top: 14%;
  right: 14%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
}

.value-content > h3 {
  margin: 0 0 22px;
  color: var(--body-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-list {
  display: grid;
  gap: 13px;
}

.value-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.value-row span {
  display: grid;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  place-items: center;
  border-radius: 999px;
  background: #20a64f;
}

.value-row span::after {
  content: "";
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  transform: rotate(-45deg) translate(1px, -1px);
}

.value-row p {
  margin: 0;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.45;
}

.value-row strong {
  display: inline-flex;
  justify-self: end;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(216, 120, 80, 0.16);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}


.dream-box {
  margin-top: 34px;
  padding: 30px 34px 32px;
  border: 1px solid rgba(15, 58, 88, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 14%, rgba(15, 58, 88, 0.1), transparent 24%),
    rgba(251, 253, 254, 0.72);
}

.dream-header {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dream-header div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dream-header span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  place-items: center;
  border-radius: 999px;
  background: #20a64f;
}

.dream-header span::after {
  content: "";
  width: 9px;
  height: 6px;
  border-bottom: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  transform: rotate(-45deg) translate(1px, -1px);
}

.dream-header h3 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.dream-header strong {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(216, 120, 80, 0.16);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.dream-box h4 {
  margin: 0 0 10px 36px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 700;
}

.dream-box ul {
  margin: 0;
  padding-left: 56px;
}

.dream-box li {
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.65;
}

.total-value {
  margin-top: 44px;
  text-align: center;
}

.total-value p {
  margin: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.total-value p span {
  color: var(--accent);
  text-decoration: line-through;
  text-transform: none;
}

.total-value h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.total-value h3 strong {
  color: #20a64f;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.value-actions {
  margin-top: 48px;
}

.guarantee-section {
  padding: 32px clamp(24px, 5vw, 72px) 120px;
  background: #fbfdfe;
}

.guarantee-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 76px clamp(32px, 7vw, 112px) 84px;
  overflow: hidden;
  border: 1px solid rgba(216, 120, 80, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 14%, rgba(216, 120, 80, 0.28), transparent 32%),
    radial-gradient(circle at 84% 86%, rgba(254, 249, 239, 0.12), transparent 36%),
    linear-gradient(145deg, #16486b 0%, #0f3a58 52%, #0a2d46 100%);
  box-shadow: 0 34px 90px rgba(15, 58, 88, 0.22);
  text-align: center;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 120, 80, 0.34);
  border-radius: 22px;
  pointer-events: none;
}

.guarantee-badge {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(150px, 18vw, 230px);
  margin: 0 auto 34px;
  filter: drop-shadow(0 18px 26px rgba(15, 58, 88, 0.24));
}

.guarantee-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.guarantee-copy h2 {
  margin: 0 0 28px;
  color: var(--bg);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  white-space: nowrap;
}

.guarantee-copy p {
  margin: 0 auto;
  color: #fff7ee;
  font-size: 20px;
  line-height: 1.65;
}

.guarantee-copy p + p {
  margin-top: 24px;
}

.guarantee-quote {
  position: relative;
  max-width: 760px;
  margin: 34px auto 0;
  padding: 26px 32px;
  border: 1px solid rgba(254, 249, 239, 0.34);
  border-radius: 18px;
  background: rgba(254, 249, 239, 0.12);
}

.guarantee-quote::before,
.guarantee-quote::after {
  position: absolute;
  color: rgba(254, 249, 239, 0.28);
  font-family: Lora, "Times New Roman", serif;
  font-size: 86px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.guarantee-quote::before {
  content: "“";
  top: -16px;
  left: 18px;
}

.guarantee-quote::after {
  content: "”";
  right: 18px;
  bottom: -48px;
}

.guarantee-quote p {
  color: #f5b08f;
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.guarantee-quote p + p {
  margin-top: 6px;
}

@media (max-width: 820px) {
  .value-stack-section {
    padding: 72px 24px 76px;
  }

  .value-stack-panel {
    margin-top: 64px;
    padding: 66px 22px 42px;
  }

  .value-media {
    margin-top: 28px;
    width: 100%;
  }

  .value-row {
    grid-template-columns: auto 1fr;
  }

  .value-row strong {
    grid-column: 2;
    white-space: normal;
  }

  .dream-box {
    padding: 22px;
  }

  .dream-header {
    flex-direction: column;
    gap: 14px;
  }

  .dream-box h4 {
    margin-left: 0;
  }

  .dream-box ul {
    padding-left: 20px;
  }

  .guarantee-section {
    padding: 72px 20px 88px;
  }

  .guarantee-card {
    padding: 54px 24px 58px;
  }

  .guarantee-copy h2 {
    white-space: normal;
  }

.guarantee-copy p {
  font-size: 18px;
}

  .guarantee-quote {
    padding: 22px;
  }

  .guarantee-quote p {
    font-size: 18px;
  }
}

.origin-section {
  padding: 116px clamp(24px, 7vw, 112px) 112px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.origin-heading {
  max-width: 920px;
}

.origin-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.origin-heading h2 span {
  display: block;
}

.origin-heading h2 span:first-child {
  color: var(--text);
  font-style: normal;
}

.origin-heading h2 span:last-child {
  color: var(--accent);
  font-style: italic;
}

.origin-media {
  margin: 0 0 58px;
}

.origin-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 717 / 465;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(15, 58, 88, 0.1), transparent 28%),
    linear-gradient(145deg, #ffffff, #e9f2f7);
}

.origin-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.origin-placeholder span {
  position: relative;
  width: min(360px, 46%);
  aspect-ratio: 4 / 3;
  border: 16px solid rgba(15, 58, 88, 0.16);
  border-radius: 18px;
}

.origin-placeholder span::before,
.origin-placeholder span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.16);
}

.origin-placeholder span::before {
  right: 8%;
  bottom: 11%;
  left: 8%;
  height: 48%;
  clip-path: polygon(0 100%, 31% 25%, 62% 88%, 80% 58%, 100% 100%);
}

.origin-placeholder span::after {
  top: 16%;
  right: 15%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 999px;
}

.origin-letter {
  max-width: 860px;
  margin: 72px auto 0;
  padding: clamp(42px, 5.2vw, 76px);
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 58, 88, 0.08), transparent 28%),
    #f2f7fa;
  box-shadow: 0 24px 70px rgba(15, 58, 88, 0.08);
  color: #3d3d3d;
}

.origin-letter h3 {
  margin: 0 0 34px;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.origin-letter p {
  margin: 0;
  color: #3d3d3d;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.origin-letter p + p {
  margin-top: 20px;
}

.origin-letter strong {
  font-weight: 600;
}

.origin-letter p:nth-of-type(5),
.origin-letter p:nth-of-type(7),
.origin-letter p:nth-of-type(12),
.origin-letter p:nth-of-type(14),
.origin-letter p:nth-of-type(17) {
  margin-top: 30px;
}

.origin-signature {
  margin-top: 52px;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  text-align: right;
}

@media (max-width: 820px) {
  .origin-section {
    padding: 84px 20px 94px;
  }

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

  .origin-media {
    margin-bottom: 40px;
  }

  .origin-placeholder {
    aspect-ratio: 717 / 465;
  }

  .origin-placeholder span {
    width: 58%;
    border-width: 12px;
  }

  .origin-letter {
    margin-top: 50px;
    padding: 22px;
  }

  .origin-letter h3 {
    font-size: 30px;
  }
}

.mentor-section {
  padding: 116px clamp(24px, 7vw, 112px) 112px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}

.mentor-media {
  align-self: center;
}

.mentor-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 625 / 469;
  place-items: center;
  overflow: hidden;
  max-width: 625px;
  margin: 0 auto;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 58, 88, 0.1), transparent 28%),
    linear-gradient(145deg, #ffffff, #e9f2f7);
}

.mentor-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mentor-placeholder span {
  position: relative;
  width: min(330px, 58%);
  aspect-ratio: 4 / 3;
  border: 14px solid rgba(15, 58, 88, 0.16);
  border-radius: 18px;
}

.mentor-placeholder span::before,
.mentor-placeholder span::after {
  content: "";
  position: absolute;
  background: rgba(15, 58, 88, 0.16);
}

.mentor-placeholder span::before {
  right: 8%;
  bottom: 11%;
  left: 8%;
  height: 48%;
  clip-path: polygon(0 100%, 31% 25%, 62% 88%, 80% 58%, 100% 100%);
}

.mentor-placeholder span::after {
  top: 16%;
  right: 15%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 999px;
}

.mentor-content h2 {
  margin: 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.14;
}

.mentor-content ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding-left: 0;
  color: #3d3d3d;
  list-style: none;
}

.mentor-content li {
  position: relative;
  padding-left: 34px;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.55;
}

.mentor-content li:first-child,
.mentor-content li:nth-child(5) {
  white-space: nowrap;
}

.mentor-content strong {
  font-weight: 600;
}

.mentor-content li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: transparent;
}

.mentor-content li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--text);
  border-left: 2px solid var(--text);
  transform: rotate(-45deg);
}

.mentor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  margin-top: 48px;
}

.mentor-logos:empty {
  display: none;
  margin: 0;
}

.mentor-logos span {
  color: rgba(15, 58, 88, 0.48);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.mentor-logos span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 14px;
  margin-right: 8px;
  border-top: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  border-left: 10px solid currentColor;
  border-radius: 999px 0 0 999px;
  transform: translateY(2px);
}

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

  .mentor-content li:first-child,
  .mentor-content li:nth-child(5) {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .mentor-section {
    padding: 84px 20px 94px;
  }
}

.transformation-section {
  padding: 116px clamp(24px, 7vw, 112px) 112px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1160px;
  margin: 72px auto 0;
}

.transformation-card {
  padding: clamp(34px, 4.8vw, 64px);
  border: 1px solid rgba(15, 58, 88, 0.14);
  border-radius: 18px;
  background: #f2f7fa;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.transformation-card:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 18px 48px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.transformation-card h3 {
  margin: 0 0 34px;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
}

.transformation-section .section-heading h2,
.transformation-section .section-heading h2 span {
  font-weight: 400;
}

.transformation-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transformation-card li {
  position: relative;
  padding-left: 34px;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.5;
}

.transformation-card li::before,
.transformation-card li::after {
  content: "";
  position: absolute;
}

.transformation-card--before li::before,
.transformation-card--before li::after {
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
}

.transformation-card--before li::before {
  content: "×";
  display: grid;
  place-items: center;
  color: #fbfdfe;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: none;
}

.transformation-card--before li::after {
  display: none;
}

.transformation-card--after {
  position: relative;
  overflow: hidden;
  border-color: rgba(216, 120, 80, 0.34);
  background:
    radial-gradient(circle at 14% 16%, rgba(216, 120, 80, 0.26), transparent 32%),
    radial-gradient(circle at 82% 88%, rgba(254, 249, 239, 0.1), transparent 34%),
    linear-gradient(145deg, #16486b 0%, #0f3a58 52%, #0a2d46 100%);
  box-shadow: 0 30px 74px rgba(15, 58, 88, 0.2);
}

.transformation-card--after::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(254, 249, 239, 0.14);
  border-radius: 14px;
  pointer-events: none;
}

.transformation-card--after h3,
.transformation-card--after li {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.transformation-card--after li:last-child {
  white-space: nowrap;
}

.transformation-card--after li::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #20a64f;
}

.transformation-card--after li::after {
  top: 9px;
  left: 5px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  transform: rotate(-45deg);
}

@media (max-width: 820px) {
  .transformation-section {
    padding: 84px 20px 94px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .transformation-card--after li:last-child {
    white-space: normal;
  }
}

/* ─── SECTION 16 — FINAL CTA ────────────────────────────────────── */

.final-cta-section {
  padding: 116px clamp(24px, 7vw, 112px) 120px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background:
    radial-gradient(circle at 50% 16%, rgba(15, 58, 88, 0.12), transparent 36%),
    #fbfdfe;
  text-align: center;
}

.final-cta-top {
  max-width: 860px;
  margin: 0 auto 64px;
}

.final-cta-top h2 {
  font-weight: 400;
}

.final-cta-proof {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.final-cta-stars {
  color: #e8a320;
  font-size: 18px;
  letter-spacing: 3px;
}

.final-cta-panel {
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(15, 58, 88, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(15, 58, 88, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(242, 247, 250, 0.96), rgba(242, 247, 250, 0.8));
  box-shadow: 0 26px 80px rgba(15, 58, 88, 0.1);
  text-align: left;
}

.final-cta-course-name {
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 58, 88, 0.1);
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--accent);
  text-align: center;
}

.final-cta-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-cta-list li {
  position: relative;
  padding-left: 34px;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.5;
}

.final-cta-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #20a64f;
}

.final-cta-list li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  transform: rotate(-45deg);
}

.final-cta-price {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  text-align: center;
}

.final-cta-price p {
  margin: 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta-price p span {
  text-decoration: line-through;
  opacity: 0.72;
}

.final-cta-price h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-family: Lora, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.final-cta-price h3 strong {
  color: #20a64f;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.final-cta-actions {
  margin-top: 28px;
  text-align: center;
}

.final-cta-actions .primary-cta {
  width: 100%;
  min-width: 0;
}

.final-cta-actions p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .final-cta-section {
    padding: 84px 24px 88px;
  }

  .final-cta-top {
    margin-bottom: 48px;
  }

  .final-cta-top h2 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .final-cta-panel {
    padding: 28px 20px;
  }

  .final-cta-price h3 {
    white-space: normal;
  }

  .final-cta-price h3 strong {
    white-space: normal;
  }

  .value-actions .stacked-cta,
  .final-cta-actions .stacked-cta {
    padding-left: 34px;
    padding-right: 34px;
  }
}

/* =============================================
   SECTION 17 — FAQs
   ============================================= */
.faq-section {
  padding: 116px clamp(24px, 7vw, 112px) 160px;
  border-top: 1px solid rgba(15, 58, 88, 0.1);
  background: #fbfdfe;
}

.faq-section #faq-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  white-space: normal;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto 72px;
  display: grid;
  gap: 24px;
}

.faq-item {
  border: 1px solid rgba(15, 58, 88, 0.12);
  border-radius: 12px;
  background: #f2f7fa;
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.faq-item:hover {
  border-color: rgba(15, 58, 88, 0.34);
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
  transform: translateY(-3px);
}

.faq-item[open] {
  border-color: rgba(15, 58, 88, 0.34);
  transform: none;
  box-shadow: 0 14px 38px rgba(15, 58, 88, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 34px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-q-text {
  flex: 1;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 1.45;
}

.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'%3E%3Cpath d='M1 1L4.5 4.5L8 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.22s ease;
}

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

.faq-answer {
  padding: 20px 34px 28px 34px;
  border-top: 1px solid rgba(15, 58, 88, 0.08);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.75;
}

.faq-cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta .primary-cta {
  width: 100%;
  min-width: 0;
}


.faq-cta > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .faq-section {
    padding: 84px 24px 88px;
  }

  .faq-section #faq-title {
    font-size: 38px;
  }

  .faq-question {
    padding: 22px 24px;
  }

  .faq-answer {
    padding: 16px 24px 22px 24px;
    font-size: 15px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 16%, rgba(216, 120, 80, 0.26), transparent 32%),
    radial-gradient(circle at 82% 88%, rgba(254, 249, 239, 0.1), transparent 34%),
    linear-gradient(145deg, #16486b 0%, #0f3a58 52%, #0a2d46 100%);
  padding: 64px clamp(24px, 7vw, 112px);
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://img.magnific.com/premium-photo/communityled-environmental-campaign-showcases-treeplanting-efforts-revitalize-ecosystems-concept-environmental-conservation-community-initiatives-treeplanting-campaign_864588-71148.jpg?w=1480");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: screen;
  opacity: 0.05;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  margin: 0 auto 24px;
  width: 120px;
  height: auto;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-divider {
  margin: 20px auto;
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

@media (max-width: 820px) {
  .page-shell > section:not(.hero) {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .section-heading h2,
  .solution-section .section-heading h2,
  .origin-heading h2,
  .mentor-content h2,
  .final-cta-top h2 {
    font-size: 42px;
  }

  .faq-section #faq-title {
    font-size: 38px;
  }

  .hero-actions p,
  .section-actions p,
  .final-cta-actions p,
  .faq-cta > p {
    font-size: 12px;
  }

  .framework-grid {
    gap: 32px;
  }

  .solution-section .section-heading {
    margin-bottom: 36px;
  }

  .solution-media {
    margin-top: -12px;
    margin-bottom: 20px;
  }

  .tools-section .section-heading h2,
  .tools-section .section-heading h2 span {
    font-size: 36px;
    white-space: normal;
  }

  .tools-section .section-heading h2 span {
    display: inline;
  }
}
