:root {
  --bg: #f7eee1;
  --bg-soft: #f6ecdf;
  --bg-beige: #eedfc8;
  --surface: #fffdf9;
  --surface-alt: #fbf4e9;
  --text: #494038;
  --text-muted: #63584f;
  --primary: #bc7a88;
  --primary-dark: #a36371;
  --line: #e4d4bf;
  --shadow: 0 14px 34px rgba(112, 87, 61, 0.1);
  --radius: 18px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.6), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255, 247, 233, 0.58), transparent 22%),
    radial-gradient(circle at 74% 78%, rgba(235, 216, 190, 0.28), transparent 26%),
    linear-gradient(138deg, #f7ede1 0%, #f3e6d5 22%, #fbf7ef 48%, #ecd9bd 72%, #f6ebdd 100%);
  line-height: 1.85;
  letter-spacing: 0.02em;
  padding-bottom: 84px;
  background-attachment: fixed;
}

body.is-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

p {
  margin: 0 0 1rem;
}

.note-mark {
  font-size: 0.92em;
  line-height: 1.65;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  background: var(--text);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 10000;
}

.skip-link:focus {
  top: 8px;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.section-alt {
  background:
    linear-gradient(160deg, rgba(255, 251, 245, 0.86), rgba(249, 238, 221, 0.74));
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.9), rgba(244, 230, 208, 0.86));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-brand {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.site-brand small {
  display: block;
  margin-top: -2px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.92);
  color: var(--text);
  border-radius: 999px;
  position: relative;
  inline-size: 44px;
  block-size: 44px;
  flex: 0 0 44px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  font-weight: 600;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.2s ease, top 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle::before {
  top: 15px;
  box-shadow: 0 6px 0 currentColor;
}

.nav-toggle::after {
  top: 27px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(255, 249, 240, 0.97);
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 0.75rem 1rem 1rem;
}

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

.site-nav ul {
  display: grid;
  gap: 0.15rem;
}

.site-nav a {
  display: block;
  padding: 0.68rem 0.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--bg-soft);
  color: var(--text);
}

.site-header .header-cta {
  display: none;
}

.program-lp .site-brand-stack-mobile {
  display: inline;
}

.program-lp .site-brand-stack-mobile span {
  display: inline;
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 64px;
    gap: 0.5rem;
  }

  .site-brand {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.94rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .site-brand small {
    display: none;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-title-main {
    margin-bottom: 0.8rem;
    font-size: clamp(1.55rem, 8.2vw, 1.95rem);
    line-height: 1.34;
    letter-spacing: 0.03em;
    text-wrap: balance;
  }

  .hero-title-main br {
    display: none;
  }

  .hero-copy > p:first-of-type {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 425px) {
  .program-lp .site-brand-stack-mobile {
    display: block;
    line-height: 1.08;
  }

  .program-lp .site-brand-stack-mobile span {
    display: block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(151, 86, 100, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 13px 26px rgba(151, 86, 100, 0.3);
}

.btn--secondary {
  background: rgba(255, 251, 245, 0.94);
  border-color: var(--line);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(135deg, #fcf4ea 0%, #f9eedf 44%, #f3e3cc 100%);
  padding: 74px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: 1fr;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.8vw, 3.15rem);
  line-height: 1.48;
  letter-spacing: 0.06em;
}

.hero-copy p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero-eyebrow {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero--academy-fv {
  position: relative;
  background-image: linear-gradient(120deg, rgba(37, 28, 32, 0.52), rgba(39, 32, 30, 0.42)), url("../img/academy-fv-bg.svg");
  background-size: cover;
  background-position: center;
}

.hero--academy-fv .hero-grid {
  min-height: clamp(520px, calc(100vh - 74px), 900px);
  align-content: center;
  justify-items: center;
}

.hero--personal-fv {
  position: relative;
  background-image: linear-gradient(124deg, rgba(34, 25, 28, 0.58), rgba(35, 30, 27, 0.44)), url("../img/personal-fv-bg.svg");
  background-size: cover;
  background-position: center;
}

.hero--personal-fv .hero-grid {
  min-height: clamp(440px, calc(84vh - 74px), 760px);
  align-content: center;
  justify-items: center;
}

.hero-copy--center {
  width: min(100%, 940px);
  text-align: center;
  padding: clamp(0.3rem, 2vw, 1rem);
}

.hero-copy--center .hero-eyebrow {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy--center h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3.1vw, 2.08rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.hero-copy--center h1,
.hero-copy--center p,
.hero-copy--center .hero-eyebrow {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero--personal-fv .hero-copy--center .hero-eyebrow {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  letter-spacing: 0.06em;
}

.hero--personal-fv .hero-copy--center h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.85vw, 1.95rem);
  line-height: 1.56;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-copy--center p {
  margin-bottom: 0.95rem;
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  line-height: 1.92;
}

.hero-copy--center p:last-child {
  margin-bottom: 0;
}

.js-break-after-particle {
  text-wrap: pretty;
}

.js-motion .js-hero-enter {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.js-motion .js-hero-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-motion .js-hero-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions--center {
  justify-content: center;
}

.hero-figure {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f1e4dc;
  background: #fff;
}

.card {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

.empathy-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 22px rgba(109, 92, 92, 0.08);
}

.program-empathy-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.program-empathy-heading .section-title {
  margin: 0;
}

.program-empathy-list {
  display: grid;
  gap: 0.7rem;
  text-align: left;
}

.program-empathy-list li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.75;
}

.program-empathy-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
}

.program-empathy-copy {
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.program-empathy-copy p {
  margin: 0;
  line-height: 1.9;
}

.mini-cta {
  background: #fffaf8;
  padding: 40px 24px;
  margin: 48px 0 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.mini-cta h3 {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.mini-cta .mini-cta-badges {
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.mini-cta .btn {
  min-width: min(100%, 15rem);
}

.program-coaching-why-layout {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.program-coaching-why-text {
  text-align: center;
}

.program-coaching-why-text p {
  margin: 0 0 0.9rem;
}

.program-coaching-why-text p:last-child {
  margin-bottom: 0;
}

.program-coaching-why-heading .section-title {
  margin: 0;
  white-space: nowrap;
}

.personal-why-heading .section-title {
  white-space: normal;
}

.program-trust-section {
  background-color: #807071;
  background-image: url("../img/profile-eriko.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.program-trust-layout {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  display: flex;
  align-items: center;
  padding: 0.2rem 0 4.2rem;
}

.program-trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 40rem);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(18, 14, 16, 0.46);
  backdrop-filter: blur(3px);
}

.program-trust-section .section-title,
.program-trust-section .program-trust-copy h3,
.program-trust-section .program-trust-copy p,
.program-trust-section .program-trust-copy li {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.program-lp #program-trust-title {
  white-space: nowrap;
}

.program-trust-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.program-trust-list {
  display: grid;
  gap: 0.45rem;
  margin-left: clamp(0.6rem, 2vw, 1.4rem);
}

.program-trust-list li {
  position: relative;
  padding-left: 1.05rem;
}

.program-trust-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.program-trust-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-left: clamp(0.6rem, 2vw, 1.4rem);
}

.program-trust-modal-actions .btn {
  min-width: 9rem;
}

.program-lp .profile-modal[hidden] {
  display: none;
}

.program-lp .profile-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.program-lp .profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 13, 0.7);
  backdrop-filter: blur(2px);
}

.program-lp .profile-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  max-height: min(86vh, 54rem);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid #ead8c1;
  background: #fffdf9;
  box-shadow: 0 24px 56px rgba(22, 16, 13, 0.3);
  padding: 1.2rem 1.2rem 1.35rem;
}

.program-lp .profile-modal__title {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.program-lp .profile-modal__hero {
  margin: 0 0 1rem;
}

.program-lp .profile-modal__hero img {
  display: block;
  width: 100%;
  max-width: 21rem;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(42, 30, 21, 0.18);
}

.program-lp .profile-modal__hero.profile-modal__hero--contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.program-lp .profile-modal__content {
  color: var(--text);
}

.program-lp .profile-modal__content p {
  margin: 0 0 0.95rem;
  line-height: 1.82;
}

.program-lp .profile-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.program-trust-link {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
}

.program-detail-head {
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.program-detail-head .section-title {
  text-align: center;
}

.program-detail-note {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.program-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--program-tab-list-border, #ecddd6);
  background: var(--program-tab-list-bg, #fff9f6);
}

.program-tab-btn {
  appearance: none;
  position: relative;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.48rem 0.7rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.program-tab-panel--compact .program-tab-label-short {
  display: none;
}

.program-tab-btn:not(:last-child) {
  margin-right: 0.8rem;
}

.program-tab-btn:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b8a29a;
  font-weight: 500;
}

.program-tab-btn:hover {
  background: var(--program-tab-btn-hover, rgba(188, 122, 136, 0.08));
}

.program-tab-btn.is-active {
  color: var(--text);
  background: var(--program-tab-btn-active, rgba(188, 122, 136, 0.18));
}

.program-tab-panel {
  --program-tab-panel-bg: #fff;
  --program-tab-panel-border: var(--line);
  --program-tab-list-bg: #fff9f6;
  --program-tab-list-border: #ecddd6;
  --program-tab-btn-hover: rgba(188, 122, 136, 0.08);
  --program-tab-btn-active: rgba(188, 122, 136, 0.18);
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  background: var(--program-tab-panel-bg);
  border-color: var(--program-tab-panel-border);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 3.5s ease, transform 3.5s ease;
}

.program-tab-panel--basic {
  --program-tab-panel-bg: #fffaf6;
  --program-tab-panel-border: #ead7ce;
  --program-tab-list-bg: #fff5ef;
  --program-tab-list-border: #e8d5cb;
  --program-tab-btn-active: rgba(188, 122, 136, 0.16);
}

.program-tab-panel--standard {
  --program-tab-panel-bg: #f9fbff;
  --program-tab-panel-border: #d9e3ef;
  --program-tab-list-bg: #f2f6fd;
  --program-tab-list-border: #d7e0ec;
  --program-tab-btn-hover: rgba(123, 149, 182, 0.08);
  --program-tab-btn-active: rgba(123, 149, 182, 0.18);
}

.program-tab-panel--premium {
  --program-tab-panel-bg: #fffaf2;
  --program-tab-panel-border: #eadfcb;
  --program-tab-list-bg: #fff4e4;
  --program-tab-list-border: #e9dcc5;
  --program-tab-btn-hover: rgba(176, 133, 71, 0.08);
  --program-tab-btn-active: rgba(176, 133, 71, 0.18);
}

.program-tab-panel[hidden] {
  display: none;
}

.program-tab-panel.is-entering {
  opacity: 0;
  transform: translateY(14px);
}

.program-tab-panel h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
}

.program-tab-content {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

.program-tab-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.program-tab-content .program-course-thumb {
  margin: 0;
}

.program-course-thumb {
  margin: 0 0 1rem;
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, #fbf5ef 0%, #eef2eb 100%);
}

.program-course-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.program-course-thumb-caption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  color: #fff;
  text-align: left;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.program-course-thumb-name,
.program-course-thumb-copy {
  margin: 0;
  width: 100%;
}

.program-course-thumb-name {
  font-size: clamp(0.98rem, 2.9vw, 1.28rem);
  font-weight: 700;
  line-height: 1.3;
}

.program-course-thumb-copy {
  font-size: clamp(0.84rem, 2vw, 0.96rem);
  line-height: 1.45;
}

.program-tab-panel p {
  color: var(--text);
}

.program-tab-panel .list-check {
  margin-left: 1rem;
}

.course-detail-toggle {
  margin-top: 16px;
}

.course-detail-toggle summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.course-detail-toggle summary::-webkit-details-marker {
  display: none;
}

.course-detail-toggle summary::after {
  content: "+";
  font-size: 0.95rem;
}

.course-detail-toggle[open] summary {
  color: #c07c7c;
}

.course-detail-toggle[open] summary::after {
  content: "-";
}

.course-detail-toggle ul {
  padding-left: 20px;
  margin-top: 10px;
}

.course-detail-toggle .list-check {
  margin-left: 0;
}

.program-tab-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.program-tab-note {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.program-tab-cta {
  display: flex;
  justify-content: center;
}

.program-flow-list {
  --program-flow-gap: 2.1rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0.15rem 0.2rem 0.5rem;
  display: flex;
  gap: var(--program-flow-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}

.program-flow-item {
  position: relative;
  flex: 0 0 clamp(210px, 42vw, 260px);
  min-height: 160px;
  padding: 1rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  scroll-snap-align: start;
}

.program-flow-item + .program-flow-item::before {
  content: "";
  position: absolute;
  left: calc(var(--program-flow-gap) * -0.5);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6d7d0;
  box-shadow: 0 6px 14px rgba(133, 103, 104, 0.14);
  z-index: 1;
}

.program-flow-item + .program-flow-item::after {
  content: "";
  position: absolute;
  left: calc(var(--program-flow-gap) * -0.5);
  top: 50%;
  width: 0.44rem;
  height: 0.44rem;
  border-top: 2px solid #b39d97;
  border-right: 2px solid #b39d97;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
}

.program-flow-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f6e8e3;
  border: 1px solid #ead3cb;
  font-size: 1.38rem;
  line-height: 1;
}

.program-flow-item p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.62;
}

.program-flow-note {
  font-size: 0.84em;
  font-weight: 500;
}

.consult-list--indented {
  margin-left: 1rem;
}

.program-voice-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.program-voice-card {
  padding: 1rem;
}

.program-voice-thumb {
  margin: 0 0 0.9rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #f4ece4;
}

.program-voice-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-voice-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.voice-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.program-voice-comment {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.voice-follow-up {
  margin-top: 2rem;
  text-align: center;
}

.after-voice-text {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.voice-follow-up .btn {
  min-width: min(100%, 16rem);
}

.centered-action {
  text-align: center;
}

@media (min-width: 1100px) {
  .program-flow-list {
    overflow: visible;
  }

  .program-flow-item {
    flex: 1 1 0;
  }
}

@media (min-width: 768px) {
  .program-tab-content {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
  }

  .program-tab-content .program-course-thumb {
    margin: 0;
  }

  .program-course-thumb-caption {
    top: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    left: auto;
    width: min(50%, 19rem);
    justify-content: center;
    padding: 1rem 1.05rem;
  }

  .program-tab-content .program-course-thumb-name {
    font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  }

  .program-tab-content .program-course-thumb-copy {
    font-size: clamp(0.8rem, 0.96vw, 0.92rem);
  }

  .program-voice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card h3,
.course-card h3,
.story-card h3,
.contact-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.13rem;
}

.value-card p,
.course-card p,
.story-card p {
  color: var(--text-muted);
}

.value-card .value-card-list {
  margin-left: 1rem;
}

.value-card .value-card-list li {
  color: var(--text-muted);
}

.value-card h3.value-card-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.72rem;
  width: min(100%, 20rem);
  margin: 0 auto 0.85rem;
  text-align: left;
  line-height: 1.45;
}

.value-card h3.value-card-title .icon-chip {
  margin-bottom: 0;
  flex: 0 0 42px;
  justify-self: center;
}

.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.consult-panel {
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.94), rgba(252, 244, 231, 0.9));
  border: 1px solid #e7d6c1;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid #edd7ce;
  color: var(--text);
}

.list-check li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.profile-brief {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.profile-brief figure {
  margin: 0;
}

.profile-brief img {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flow-list {
  display: grid;
  gap: 0.85rem;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem 0.8rem 2.7rem;
}

.flow-list li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 0.88rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-soft);
  color: var(--text);
}

.mini-faq {
  margin: 1rem 0 1.2rem;
}

.mini-faq li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e8d7d0;
}

.course-compare {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 251, 245, 0.94);
}

.course-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 690px;
}

.course-compare th,
.course-compare td {
  border-bottom: 1px solid #f2e4de;
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.93rem;
}

.course-compare th {
  background: rgba(255, 244, 232, 0.92);
  color: var(--text);
  font-weight: 700;
}

.course-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.course-detail-list li {
  margin: 0;
  line-height: 1.7;
}

.course-detail-list strong {
  color: var(--text);
}

.course-detail-note {
  margin: 0.6rem 0 0;
}

.course-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid #edd8d0;
  margin-bottom: 0.6rem;
}

.story-timeline {
  display: grid;
  gap: 0.75rem;
}

.story-timeline li {
  background: rgba(255, 251, 245, 0.92);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
}

.quote-box {
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 0.9rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text);
}

.line-registration-layout {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.line-registration-card {
  text-align: center;
}

.line-registration-card .section-title,
.line-registration-panel .section-title {
  text-align: center;
}

.line-registration-qr-frame {
  width: min(100%, 22rem);
  margin: 0 auto 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.94);
  box-shadow: var(--shadow);
}

.line-registration-qr-image {
  display: block;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
}

.line-registration-caption {
  margin: 0;
  color: var(--text-muted);
}

.line-registration-list {
  margin-left: 1rem;
}

.line-registration-note {
  margin: 1rem 0 1.2rem;
  color: var(--text-muted);
  text-align: center;
}

.qa-list {
  display: grid;
  gap: 0.75rem;
}

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

.qa-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(112, 86, 88, 0.08);
}

.qa-question {
  width: 100%;
  text-align: left;
  appearance: none;
  border: 0;
  background: rgba(255, 251, 245, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  cursor: pointer;
}

.qa-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #e6d6d0;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.qa-question[aria-expanded="true"]::after {
  content: "-";
}

.qa-answer {
  padding: 0 1rem 1rem;
  color: var(--text-muted);
}

.qa-answer[hidden] {
  display: none;
}

.qa-highlight {
  background: rgba(255, 243, 230, 0.9);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  color: var(--text);
  font-weight: 700;
}

.contact-panel {
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-grid label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid #dacdc9;
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 252, 248, 0.95);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.link-inline {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(247, 238, 226, 0.88), rgba(239, 223, 198, 0.9));
  border-top: 1px solid #e4d4bf;
  padding: 2.2rem 0 1.6rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-copy {
  font-size: 0.83rem;
  color: var(--text);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(250, 241, 227, 0.95);
  border-top: 1px solid #e2d1bb;
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.mobile-cta .btn {
  font-size: 0.95rem;
  padding-top: 0.88rem;
  padding-bottom: 0.88rem;
}

.top-space {
  margin-top: 1rem;
}

.section-title--sub {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  margin-top: 1.6rem;
}

.menu-primary-grid {
  margin: 1.2rem 0 2rem;
}

.menu-primary-card {
  border-width: 2px;
  border-radius: 20px;
  padding: 1.5rem;
}

.menu-primary-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.15rem, 2.25vw, 1.6rem);
  line-height: 1.45;
}

.menu-primary-card p {
  color: var(--text-muted);
}

.academy-hierarchy {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.academy-stage {
  position: relative;
  padding: 0.9rem 1rem 1rem 1.15rem;
  border: 1px solid #e9dbd2;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.academy-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d9a9b5, #d7c2ad);
}

.academy-stage-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.academy-stage h4 {
  margin: 0.2rem 0 0.2rem;
  font-size: 1.03rem;
  line-height: 1.45;
}

.academy-stage p {
  margin: 0;
  color: var(--text);
}

.academy-stage-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  text-decoration: underline;
}

.academy-action-card .hero-actions {
  margin-top: 0.85rem;
}

.menu-primary-label {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid #e2cfc8;
  background: #fff;
}

.menu-primary-label--sub {
  border-color: #e5d8cd;
  background: #fffdf8;
}

.menu-primary-card--main {
  background: linear-gradient(150deg, #fff8fa, #fffdf9);
  border-color: #e8cdd1;
}

.menu-primary-card--sub {
  background: linear-gradient(150deg, #fffefb, #fbf5ef);
  border-color: #e6d8cc;
}

.menu-detail-block + .menu-detail-block {
  margin-top: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 760px) {
  .section {
    padding: 84px 0;
  }

  .hero {
    padding: 94px 0 84px;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-card h3.value-card-title {
    min-height: 3.2em;
  }

  .profile-brief {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 1.6rem;
  }

  .line-registration-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
  }

  .program-empathy-layout {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 2.2rem;
  }

  .program-coaching-why-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 2.2rem;
  }

  .program-coaching-why-layout.personal-why-layout-wide {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  }

  .program-trust-section {
    background-size: cover;
    background-position: center right;
  }

  .program-trust-layout {
    min-height: clamp(420px, 42vw, 620px);
    padding-bottom: 4.6rem;
  }

  .program-trust-copy {
    width: min(100%, 56%);
  }

  .program-trust-link {
    right: 0.2rem;
    bottom: 0.3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: auto;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.55rem 0.75rem;
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.6rem;
  }

  .hero--academy-fv .hero-copy--center .hero-eyebrow,
  .hero--academy-fv .hero-copy--center h1 {
    white-space: nowrap;
  }

  .hero--personal-fv .hero-copy--center .hero-eyebrow,
  .hero--personal-fv .hero-copy--center h2 {
    white-space: nowrap;
  }

  .qa-list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .site-header .header-cta {
    display: inline-flex;
    margin-left: 0.6rem;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1099px) {
  .program-lp .header-inner {
    gap: 0.45rem;
  }

  .program-lp .site-brand {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .program-lp .site-brand small {
    font-size: 0.64rem;
  }

  .program-lp .site-header .site-nav ul {
    gap: 0;
  }

  .program-lp .site-header .site-nav a {
    padding: 0.45rem 0.34rem;
    font-size: 0.84rem;
  }

  .program-lp .site-header .header-cta {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 0.35rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }
}

.program-lp [id] {
  scroll-margin-top: 92px;
}

.program-lp .site-nav ul {
  gap: 0.1rem;
}

.program-lp .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.program-lp .footer-cta {
  white-space: nowrap;
}

.program-lp .hero--academy-fv .hero-grid {
  min-height: clamp(400px, calc(72vh - 74px), 700px);
}

.program-lp .hero--academy-fv {
  background-image:
    linear-gradient(140deg, rgba(28, 21, 24, 0.82) 0%, rgba(47, 35, 32, 0.7) 48%, rgba(84, 58, 50, 0.56) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 235, 219, 0.14), transparent 30%),
    url("../img/academy-fv-bg.svg");
  background-position: center;
}

.program-lp .hero-copy--center {
  width: min(100%, 880px);
}

.program-lp .program-hero-heading {
  width: min(100%, 68rem);
  margin: 0 auto clamp(1.5rem, 3vw, 2.6rem);
  text-align: center;
}

.program-lp .program-hero-heading .hero-eyebrow {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f8dfcf;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.program-lp .program-hero-heading h1 {
  margin: 0;
  font-size: clamp(1.35rem, 3.1vw, 2.08rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fffaf6;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
  white-space: normal;
}

.program-lp .program-hero-heading .lp-hero-subcopy {
  margin: clamp(0.9rem, 2vw, 1.15rem) auto 0;
  max-width: 42rem;
  color: #fff4ea;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.program-lp .program-hero-heading .lp-hero-subcopy strong {
  font-weight: 700;
}

.program-lp .program-hero-title-line {
  display: block;
}

.program-lp .program-hero-title-tail {
  display: inline;
}

@media (max-width: 1023px) {
  .program-lp .program-hero-title-tail {
    display: block;
  }
}

.program-lp .hero-section {
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  justify-items: stretch;
  gap: clamp(1.25rem, 3.2vw, 2.8rem);
}

.program-lp .program-hero-copy {
  width: min(100%, 38rem);
  margin: 0 auto;
  text-align: left;
}

.program-lp .hero-section .lp-hero-card {
  margin-top: 0;
}

.program-lp .hero-image {
  position: relative;
  width: min(100%, 32rem);
  margin: 0 auto;
}

.program-lp .hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(28, 20, 20, 0.22);
}

.program-lp .hero-image-overlay {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  margin: 0;
  max-width: min(94%, 24rem);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  color: #fffaf2;
  background: rgba(36, 25, 15, 0.48);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.52);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.program-lp .lp-hero-subcopy {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}

.program-lp .lp-hero-subcopy--body {
  color: #fff1e5;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  font-weight: 500;
  line-height: 1.92;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.program-lp .program-empathy-copy.lp-hero-promise {
  margin-top: 1.15rem;
  max-width: 39rem;
  gap: 0.8rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.program-lp .program-empathy-copy.lp-hero-promise p {
  color: #fff4ea;
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.program-lp .program-empathy-copy.lp-hero-promise p:last-child {
  color: #fff8f1;
  font-size: clamp(1rem, 1.28vw, 1.08rem);
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.025em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.program-lp .lp-hero-card {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.program-lp .lp-hero-support-copy {
  margin-bottom: 0;
  color: #fff7f0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.program-lp .lp-hero-support-copy strong {
  color: #fffdfa;
}

.program-lp .lp-hero-journey {
  display: grid;
  gap: 0.8rem;
}

.program-lp .lp-hero-journey-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
}

.program-lp .lp-hero-journey-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
}

.program-lp .lp-hero-journey-from {
  text-align: left;
}

.program-lp .lp-hero-journey-to {
  text-align: left;
  font-weight: 700;
}

.program-lp .lp-hero-journey-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 232, 215, 0.95));
  border: 1px solid rgba(228, 212, 191, 0.9);
  box-shadow: 0 8px 18px rgba(112, 87, 61, 0.1);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.program-lp .lp-hero-transformation {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 241, 230, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.program-lp .lp-hero-transformation-title {
  margin: 0 0 0.8rem;
  color: #fff7ef;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.26);
}

.program-lp .lp-hero-transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto minmax(0, 1.05fr);
  align-items: end;
  gap: 0.85rem;
}

.program-lp .lp-hero-transformation-item {
  margin: 0;
}

.program-lp .lp-hero-transformation-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 249, 241, 0.34);
  background: rgba(255, 250, 245, 0.2);
  box-shadow: 0 16px 34px rgba(23, 17, 18, 0.18);
}

.program-lp .lp-hero-transformation-item--before .lp-hero-transformation-frame {
  aspect-ratio: 4 / 3;
}

.program-lp .lp-hero-transformation-item--after .lp-hero-transformation-frame {
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 38px rgba(23, 17, 18, 0.24);
}

.program-lp .lp-hero-transformation-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-lp .lp-hero-transformation-item--before img {
  object-position: center 30%;
}

.program-lp .lp-hero-transformation-item--after img {
  object-position: center 18%;
}

.program-lp .lp-hero-transformation-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(38, 29, 26, 0.76);
  color: #fff8f1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.program-lp .lp-hero-transformation-badge--after {
  background: linear-gradient(135deg, rgba(179, 121, 135, 0.92), rgba(128, 78, 90, 0.88));
}

.program-lp .lp-hero-transformation-item figcaption {
  margin-top: 0.5rem;
  color: #fff6ee;
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.26);
}

.program-lp .lp-hero-transformation-item--after figcaption {
  font-weight: 700;
}

.program-lp .lp-hero-transformation-arrow {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 232, 215, 0.95));
  border: 1px solid rgba(228, 212, 191, 0.9);
  box-shadow: 0 10px 24px rgba(112, 87, 61, 0.16);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.program-lp .lp-hero-actions {
  margin-top: 0.25rem;
}

.program-lp .lp-hero-cta-copy {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.program-lp .lp-hero-actions .btn {
  min-width: min(100%, 21rem);
}

.program-lp .lp-hero-story-action {
  display: flex;
  justify-content: center;
  margin-top: 0.95rem;
}

.program-lp .lp-hero-story-action .btn {
  min-width: 9rem;
}

.program-lp .lp-badge-row,
.program-lp .lp-consult-badges {
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.program-lp .lp-badge-row .badge,
.program-lp .lp-consult-badges .badge {
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 228, 0.42);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34) 8%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0) 78%),
    linear-gradient(145deg, rgba(251, 244, 234, 0.9), rgba(238, 223, 198, 0.82));
  color: rgba(79, 64, 48, 0.9);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px rgba(66, 49, 33, 0.08);
  backdrop-filter: blur(4px);
}

.program-lp .program-empathy-copy h3 {
  margin: 0.2rem 0 0.25rem;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.program-lp .lp-emphasis-line {
  padding-left: 1rem;
  border-left: 2px solid rgba(170, 140, 106, 0.42);
  color: var(--text);
}

.program-lp .lp-card-note {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.program-lp .program-empathy-layout {
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}

.program-lp .section-image-center {
  margin: clamp(0.6rem, 2vw, 1.25rem) auto clamp(1.4rem, 3vw, 2.5rem);
  max-width: 900px;
  text-align: center;
}

.program-lp .section-image-center img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(82, 60, 44, 0.12);
}

.program-lp .program-empathy-content {
  min-width: 0;
}

.program-lp .program-empathy-layout .program-empathy-image {
  margin: clamp(0.6rem, 2vw, 1.25rem) auto clamp(1.4rem, 3vw, 2.5rem);
  width: min(100%, 22rem);
  text-align: center;
}

.program-lp .program-empathy-layout .program-empathy-image--lower {
  margin-top: clamp(1.1rem, 3vw, 1.8rem);
}

.program-lp .program-empathy-layout .program-empathy-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(82, 60, 44, 0.14);
}

.program-lp .program-value-bridge,
.program-lp .lp-pillar-intro,
.program-lp .lp-value-copy {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.program-lp .program-value-bridge {
  margin-bottom: 0.8rem;
}

.program-lp .lp-pillar-intro {
  margin-bottom: 2rem;
}

.program-lp .program-value-layout {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.program-lp .program-value-heading {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.program-lp .program-value-heading .section-title {
  margin: 0;
}

.program-lp .lp-no-wrap {
  white-space: nowrap;
}

.program-lp .lp-value-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}

.program-lp .lp-value-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  text-align: left;
}

.program-lp .lp-value-copy p:last-child {
  margin-bottom: 0;
}

.program-lp .lp-section-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.program-lp .lp-section-cta .btn {
  min-width: min(100%, 18rem);
}

.program-lp .lp-trust-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.program-lp .dialogue-image {
  margin: 0;
  text-align: center;
}

.program-lp .dialogue-video {
  margin: clamp(0.6rem, 2vw, 1.25rem) auto clamp(1.4rem, 3vw, 2rem);
  max-width: 52rem;
  text-align: center;
}

.program-lp .dialogue-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 16px 36px rgba(89, 69, 55, 0.16);
}

.program-lp .dialogue-video .program-detail-note {
  margin-top: 0.7rem;
}

.program-lp .dialogue-image img {
  display: block;
  width: 100%;
  max-width: 34.5rem;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(89, 69, 55, 0.14);
}

.program-lp .lp-trust-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.program-lp .lp-course-grid {
  align-items: stretch;
}

.program-lp .lp-course-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.45rem;
}

.program-lp .lp-course-card .course-tag {
  width: fit-content;
  margin-bottom: 0;
}

.program-lp .lp-course-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.15vw, 1.52rem);
}

.program-lp .lp-course-lead {
  margin: 0;
  color: var(--text-muted);
}

.program-lp .lp-course-meta {
  display: grid;
  gap: 0.85rem;
}

.program-lp .lp-course-block {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid #efdfd7;
  background: #fff9f6;
}

.program-lp .lp-course-block h4 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.program-lp .lp-course-block .list-check {
  margin-left: 1rem;
}

.program-lp .lp-course-details {
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid #f0e2db;
}

.program-lp .lp-course-details summary,
.program-lp .lp-secondary-details summary {
  list-style: none;
  cursor: pointer;
}

.program-lp .lp-course-details summary::-webkit-details-marker,
.program-lp .lp-secondary-details summary::-webkit-details-marker {
  display: none;
}

.program-lp .lp-course-details summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.program-lp .lp-course-details summary::after,
.program-lp .lp-secondary-details summary::after {
  content: "+";
  margin-left: auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #ead6ce;
  background: #fff;
}

.program-lp .lp-course-details[open] summary::after,
.program-lp .lp-secondary-details[open] summary::after {
  content: "-";
}

.program-lp .lp-course-details-body {
  margin-top: 0.8rem;
}

.program-lp .lp-course-details-body .list-check {
  margin-left: 1rem;
}

.program-lp .lp-flow-intro,
.program-lp .lp-voice-intro {
  max-width: 46rem;
  margin: 0 auto 1.4rem;
  text-align: center;
  color: var(--text-muted);
}

.program-lp .program-flow-item {
  align-items: flex-start;
  text-align: left;
  min-height: 208px;
  padding: 1.15rem 1rem;
}

.program-lp .program-flow-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.program-lp .lp-flow-step {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.program-lp .program-flow-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.program-lp .program-voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: none;
  padding: clamp(1.2rem, 2.4vw, 1.55rem) clamp(1.1rem, 2.3vw, 1.45rem);
  border: 1px solid var(--voice-border, #ead8cc);
  border-radius: 22px;
  background: var(--voice-surface, linear-gradient(145deg, rgba(255, 251, 247, 0.98), rgba(250, 241, 235, 0.94)));
  box-shadow: 0 14px 30px rgba(88, 67, 49, 0.1);
  overflow: hidden;
}

.program-lp .program-voice-grid {
  max-width: 52rem;
  margin: 1.4rem auto 0;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.program-lp .program-voice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--voice-accent, #d9b29c);
}

.program-lp .program-voice-card > p:first-child {
  margin: 0;
}

.program-lp .program-voice-card > p:first-child strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.program-lp .program-voice-card .program-voice-comment + .program-voice-comment {
  margin-top: 0.65rem;
}

.program-lp .program-voice-card:nth-child(1) {
  --voice-accent: #d6a38f;
  --voice-border: #ecd2c4;
  --voice-surface: linear-gradient(145deg, #fff8f3, #fbefe7);
}

.program-lp .program-voice-card:nth-child(2) {
  --voice-accent: #a7c7b2;
  --voice-border: #d5e5da;
  --voice-surface: linear-gradient(145deg, #f8fcf8, #edf7f1);
}

.program-lp .program-voice-card:nth-child(3) {
  --voice-accent: #c8a8ca;
  --voice-border: #e7d7e7;
  --voice-surface: linear-gradient(145deg, #fff8fc, #f7eef8);
}

.program-lp .program-voice-card:nth-child(4) {
  --voice-accent: #9fb8d7;
  --voice-border: #d7e2ef;
  --voice-surface: linear-gradient(145deg, #f7fbff, #edf4fb);
}

.program-lp .program-voice-card:nth-child(5) {
  --voice-accent: #d8bf86;
  --voice-border: #eadfbe;
  --voice-surface: linear-gradient(145deg, #fffaf2, #f8f1e3);
}

.program-lp .program-trust-section {
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(142deg, #807071 0%, #8d7a79 48%, #6e5f60 100%);
}

.program-lp .program-trust-layout {
  min-height: auto;
  padding: 0;
}

.program-lp .profile-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.program-lp .profile-image {
  flex: 0 1 22rem;
}

.program-lp .profile-image img {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(18, 14, 16, 0.22);
}

.program-lp .program-trust-copy.profile-text {
  width: auto;
  flex: 1 1 0;
  min-width: 0;
}

.program-lp .program-voice-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.program-lp .program-voice-header h3 {
  margin: 0 0 0.2rem;
}

.program-lp .program-voice-header .voice-meta {
  margin: 0;
}

.program-lp .voice-avatar-frame {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(112, 87, 61, 0.14);
}

.program-lp .voice-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
  border: 0;
  transform: scale(1.25);
  transform-origin: center;
}

.program-lp .lp-consult-panel {
  max-width: 64rem;
  margin: 0 auto;
}

.program-lp .lp-consult-lead {
  margin: 0;
}

.program-lp .lp-consult-badges {
  margin-top: 1rem;
}

.program-lp .lp-consult-list {
  display: grid;
  gap: 0.9rem;
}

.program-lp .lp-consult-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  align-items: start;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-bottom: 1.1rem;
}

.program-lp .lp-consult-intro-layout .consult-image {
  width: 100%;
  max-width: 26.4rem;
  justify-self: end;
}

.program-lp .lp-consult-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.program-lp .lp-consult-column {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 0;
}

.program-lp .lp-consult-grid .lp-consult-column:first-child {
  padding-right: clamp(0.9rem, 2.2vw, 1.6rem);
}

.program-lp .lp-consult-grid .lp-consult-column + .lp-consult-column {
  border-left: 1px solid rgba(170, 140, 106, 0.36);
  padding-left: clamp(0.9rem, 2.2vw, 1.6rem);
}

.program-lp .lp-consult-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}

.program-lp .lp-consult-bullet-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.25rem;
}

.program-lp .lp-consult-bullet-list li {
  list-style: disc;
  display: list-item;
  margin-bottom: 0;
  padding-left: 0;
}

.program-lp .lp-consult-note {
  margin: 0;
  color: var(--text-muted);
}

.program-lp .lp-consult-feedback-note {
  margin-top: 0.2rem;
}

.program-lp .lp-consult-feedback {
  margin: 0.85rem auto 1.2rem;
  max-width: 42rem;
}

.program-lp .lp-consult-feedback img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(88, 67, 49, 0.14);
}

.program-lp .consult-layout {
  display: block;
}

.program-lp .consult-text {
  flex: 1 1 0;
  min-width: 0;
}

.program-lp .consult-text .lp-section-cta {
  justify-content: flex-start;
}

.program-lp .consult-text .lp-section-cta--centered {
  justify-content: center;
}

.program-lp .consult-image {
  flex: 0 1 22rem;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(88, 67, 49, 0.14);
}

.program-lp .consult-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(41, 30, 18, 0.58) 0%, rgba(41, 30, 18, 0.24) 42%, rgba(41, 30, 18, 0) 74%);
}

.program-lp .consult-image--plain {
  aspect-ratio: 16 / 9;
}

.program-lp .consult-image--plain::before {
  content: none;
}

.program-lp .consult-image-overlay {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  margin: 0;
  max-width: min(90%, 18rem);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  color: #fffaf2;
  background: rgba(36, 25, 15, 0.48);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.52);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.program-lp .consult-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-lp .consult-image.consult-image--contain {
  aspect-ratio: auto;
  background: #f7f1e8;
}

.program-lp .consult-image.consult-image--contain img {
  height: auto;
  object-fit: contain;
  transform: none;
  object-position: center;
}

.program-lp .consult-image--lower-left-focus img {
  object-position: 38% 68%;
  transform: scale(1.08);
  transform-origin: 38% 68%;
}

.program-lp .lp-secondary-details {
  max-width: 64rem;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.program-lp .lp-secondary-details summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  font-weight: 700;
}

.program-lp .lp-secondary-content {
  padding: 0 1.2rem 1.2rem;
  display: grid;
  gap: 1.2rem;
}

.program-lp .lp-secondary-group {
  display: grid;
  gap: 0.8rem;
}

.program-lp .lp-secondary-group h3 {
  margin: 0;
  font-size: 1rem;
}

.program-lp .lp-secondary-group h4,
.program-lp .value-card .value-card-title {
  margin: 0 0 0.5rem;
}

.program-lp .value-card .value-card-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.72rem;
  width: min(100%, 20rem);
  line-height: 1.45;
}

.program-lp .value-card .value-card-title .icon-chip {
  margin-bottom: 0;
}

.program-lp .course-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.13rem;
}

.program-lp .lp-secondary-group p {
  margin: 0;
}

.program-lp .lp-secondary-course-grid {
  display: grid;
  gap: 0.85rem;
}

.program-lp .lp-voice-snippet {
  display: grid;
  gap: 0.7rem;
}

.program-lp .lp-voice-snippet p {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid #ecddd6;
  background: #fff9f6;
}

.program-lp .lp-final-section {
  background: linear-gradient(160deg, #fffaf7, #f8efe9);
}

.program-lp .section:not(.program-trust-section) {
  background: transparent;
}

.program-lp .lp-final-card {
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 24px;
  border: 1px solid #ead9d1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.program-lp .lp-question-shell {
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.program-lp .lp-question-image {
  margin: 0;
  flex: 0 1 20rem;
}

.program-lp .lp-question-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  margin: 0;
  text-align: left;
}

.program-lp .lp-question-copy {
  text-align: left;
}

.program-lp .lp-question-copy .section-title {
  text-align: left;
}

.program-lp .lp-final-note {
  max-width: 42rem;
  margin: 0 auto 0.4rem;
  color: var(--text-muted);
}

.program-lp .lp-mini-faq {
  max-width: 42rem;
  margin: 1.2rem auto 1.6rem;
  text-align: left;
}

.program-lp .lp-mini-faq li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed #e7d6ce;
}

.program-lp .lp-mini-faq strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

@media (min-width: 769px) {
  .program-lp .program-hero-heading h1 {
    white-space: normal;
  }

  .program-lp .program-hero-title-line {
    display: block;
    padding-left: 1.65em;
  }

  .program-lp .hero-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    grid-template-areas:
      "copy image"
      "cta image";
  }

  .program-lp .program-hero-copy {
    grid-area: copy;
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .program-lp .hero-image {
    grid-area: image;
    width: min(100%, 30rem);
    justify-self: center;
  }

  .program-lp .hero-section .lp-hero-card {
    grid-area: cta;
    width: min(100%, 30rem);
    justify-self: start;
  }

  .program-lp .hero-section .lp-badge-row {
    justify-content: center;
  }
}

@media (min-width: 760px) {
  .program-lp .program-empathy-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
    gap: clamp(1.8rem, 4vw, 3rem);
  }

  .program-lp .program-empathy-layout .program-empathy-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .program-lp .program-empathy-layout .program-empathy-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    width: 100%;
    justify-self: end;
    align-self: start;
  }

  .program-lp .program-empathy-layout .program-empathy-image--lower {
    margin-top: clamp(7.5rem, 18vw, 13.5rem);
  }

  .program-lp .program-empathy-layout .program-empathy-content {
    grid-column: 1;
    grid-row: 2;
  }

  .program-lp .program-value-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    align-items: start;
  }

  .program-lp .program-value-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .program-lp .program-value-heading .dialogue-image {
    text-align: center;
  }

  .program-lp .program-value-heading .dialogue-image img {
    margin: 0 auto;
  }

  .program-lp .program-value-heading .section-title {
    text-align: left;
  }

  .program-lp .lp-value-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .program-lp .lp-secondary-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .program-lp .footer-inner {
    flex-direction: row;
    align-items: center;
  }

  .program-lp .footer-cta {
    margin-left: auto;
  }

  .program-lp .header-cta {
    box-shadow: 0 12px 28px rgba(151, 86, 100, 0.24);
  }
}

@media (max-width: 768px) {
  .program-tab-panel--compact .program-tab-list {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.6rem 0.7rem;
  }

  .program-tab-panel--compact .program-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.42rem 0.38rem;
    font-size: clamp(0.74rem, 3.4vw, 0.88rem);
    white-space: nowrap;
    text-align: center;
  }

  .program-tab-panel--compact .program-tab-btn:not(:last-child) {
    margin-right: 0.55rem;
  }

  .program-tab-panel--compact .program-tab-btn:not(:last-child)::after {
    right: -0.38rem;
  }

  .program-tab-panel--compact .program-tab-label-full {
    display: none;
  }

  .program-tab-panel--compact .program-tab-label-short {
    display: inline;
  }

  .program-lp {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .program-lp .mobile-cta {
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
    background: rgba(248, 236, 221, 0.94);
    border-top-color: rgba(176, 139, 105, 0.22);
    box-shadow: 0 -10px 30px rgba(73, 64, 56, 0.12);
    z-index: 1002;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .program-lp .mobile-cta .btn {
    min-height: 56px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .program-lp .mobile-cta.is-dimmed {
    opacity: 0.42;
    pointer-events: none;
  }

  .program-lp .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  }

  .program-lp .hero {
    padding: 28px 0 22px;
  }

  .program-lp .hero--academy-fv {
    background-image:
      linear-gradient(180deg, rgba(31, 24, 27, 0.9) 0%, rgba(39, 30, 29, 0.78) 52%, rgba(52, 40, 36, 0.68) 100%),
      radial-gradient(circle at 20% 14%, rgba(255, 236, 218, 0.14), transparent 30%),
      url("../img/academy-fv-bg.svg");
    background-position: center top;
  }

  .program-lp .hero-section {
    gap: 0.75rem;
  }

  .program-lp .hero--academy-fv .hero-grid {
    min-height: auto;
    align-content: start;
  }

  .program-lp .program-hero-heading {
    max-width: none;
    margin-bottom: 0.65rem;
    padding-inline: 0.1rem;
  }

  .program-lp .program-hero-heading .hero-eyebrow {
    margin-bottom: 0.3rem;
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
    letter-spacing: 0.06em;
  }

  .program-lp .program-hero-heading h1 {
    font-size: clamp(1.14rem, 5.4vw, 1.44rem);
    line-height: 1.48;
    letter-spacing: 0.01em;
    text-wrap: normal;
  }

  .program-lp .program-hero-title-line {
    display: inline;
    padding-left: 0;
    margin-top: 0;
  }

  .program-lp .program-hero-title-tail {
    display: inline;
  }

  .program-lp .program-hero-copy,
  .program-lp .hero-section .lp-hero-card {
    width: 100%;
  }

  .program-lp .program-hero-copy {
    display: block;
    margin-bottom: 0.35rem;
    text-align: left;
    padding-inline: 0.1rem;
    order: 2;
  }

  .program-lp .hero-image {
    order: 1;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .program-lp .hero-image img {
    aspect-ratio: 4 / 4.6;
    object-position: center 18%;
    border-radius: 0;
  }

  .program-lp .hero-image-overlay {
    left: 0.6rem;
    bottom: 0.6rem;
    max-width: calc(100% - 1.2rem);
    font-size: 0.82rem;
    line-height: 1.45;
    white-space: normal;
    padding: 0.45rem 0.55rem;
  }

  .program-lp .hero-section .lp-hero-card {
    order: 3;
    margin-top: 0;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
  }


  .program-lp .lp-hero-mobile-summary[hidden] {
    display: none;
  }

  .program-lp .hero-section .program-hero-copy .lp-hero-subcopy {
    max-width: 32rem;
    margin: 0 0 0.62rem;
    text-align: left;
    color: #fff6ee;
    font-size: 0.95rem;
    line-height: 1.72;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.36);
  }

  .program-lp .hero-section .program-hero-copy .lp-hero-subcopy:last-child {
    margin-bottom: 0;
  }

  .program-lp .hero-section .lp-hero-subcopy--body {
    color: #fff0e4;
    font-size: 0.98rem;
    line-height: 1.82;
    letter-spacing: 0.022em;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
  }

  .program-lp .program-empathy-copy.lp-hero-promise {
    margin-top: 0.95rem;
    max-width: none;
    gap: 0.72rem;
  }

  .program-lp .program-empathy-copy.lp-hero-promise p {
    font-size: 0.94rem;
    line-height: 1.68;
    letter-spacing: 0.015em;
  }

  .program-lp .program-empathy-copy.lp-hero-promise p:last-child {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .program-lp .lp-hero-mobile-summary p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  }

  .program-lp .lp-hero-mobile-summary strong {
    font-weight: 700;
  }

  .program-lp .lp-hero-actions {
    margin-top: 0;
  }

  .program-lp .lp-hero-cta-copy {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .program-lp .lp-hero-journey-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    text-align: center;
  }

  .program-lp .lp-hero-journey-from,
  .program-lp .lp-hero-journey-to {
    text-align: center;
  }

  .program-lp .lp-hero-journey-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .program-lp .lp-hero-transformation {
    padding: 0.85rem;
  }

  .program-lp .lp-hero-transformation-title {
    margin-bottom: 0.72rem;
    font-size: 0.84rem;
  }

  .program-lp .lp-hero-transformation-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .program-lp .lp-hero-transformation-item {
    width: min(100%, 18rem);
    justify-self: center;
  }

  .program-lp .lp-hero-transformation-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .program-lp .hero-section .lp-hero-actions .btn {
    min-width: 0;
  }

  .program-lp .lp-hero-story-action .btn {
    width: min(100%, 12rem);
    min-width: 0;
  }

  .program-lp .hero-section .lp-badge-row,
  .program-lp .consult-text .lp-consult-badges,
  .program-lp .consult-text .lp-section-cta {
    justify-content: center;
  }

  .program-lp .hero-section .lp-badge-row,
  .program-lp .consult-text .lp-consult-badges {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }

  .program-lp .lp-badge-row .badge,
  .program-lp .lp-consult-badges .badge {
    min-height: 2.1rem;
    font-size: 0.72rem;
    padding-inline: 0.68rem;
  }

  .program-lp .lp-mini-faq-preview[hidden] {
    display: block;
    padding: 1rem 0 0.5rem;
  }

  .program-lp .lp-mini-faq-preview .lp-final-card {
    padding: 1.2rem 1rem;
    border-radius: 20px;
  }

  .program-lp .lp-mini-faq-accordion {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1rem;
  }

  .program-lp .lp-mini-faq-item {
    border: 1px solid #eadad2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    overflow: hidden;
  }

  .program-lp .lp-mini-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.55;
  }

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

  .program-lp .lp-mini-faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--primary-dark);
  }

  .program-lp .lp-mini-faq-item[open] summary::after {
    content: "-";
  }

  .program-lp .lp-mini-faq-item p {
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
  }

  .program-lp .lp-mini-faq-cta {
    margin-top: 0.25rem;
  }

  .program-lp .section p,
  .program-lp .section li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .program-lp .section-title {
    margin-bottom: 0.8rem;
  }

  .program-lp .section-lead {
    margin-bottom: 1.25rem;
  }

  .program-lp .program-empathy-copy {
    gap: 1rem;
  }

  .program-lp .program-empathy-copy p,
  .program-lp .lp-value-copy p,
  .program-lp .program-trust-copy p,
  .program-lp .lp-flow-intro,
  .program-lp .lp-voice-intro,
  .program-lp .qa-answer p,
  .program-lp .lp-final-note,
  .program-lp .lp-consult-lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .program-lp .program-empathy-copy p:last-child,
  .program-lp .lp-value-copy p:last-child,
  .program-lp .program-trust-copy p:last-child,
  .program-lp .qa-answer p:last-child {
    margin-bottom: 0;
  }

  .program-lp .lp-mobile-inline-cta[hidden] {
    display: block;
    margin-top: 1.25rem;
  }

  .program-lp .lp-mobile-inline-cta--faq[hidden] {
    margin-top: 1.5rem;
  }

  .program-lp .program-trust-modal-actions {
    margin-left: 0;
  }

  .program-lp .program-trust-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .program-lp .profile-modal {
    padding: 0.75rem;
  }

  .program-lp .profile-modal__dialog {
    max-height: 88vh;
    padding: 1rem 0.95rem 1.1rem;
  }

  .program-lp .profile-modal__content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .program-lp .hero-actions .btn,
  .program-lp .mini-cta .btn,
  .program-lp .program-tab-cta .btn,
  .program-lp .voice-follow-up .btn,
  .program-lp .lp-section-cta .btn,
  .program-lp .lp-final-card > .btn,
  .program-lp .lp-mobile-inline-cta .btn,
  .program-lp .lp-mini-faq-cta {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .program-lp .mini-cta,
  .program-lp .voice-follow-up,
  .program-lp .lp-section-cta,
  .program-lp .program-tab-cta {
    margin-top: 1rem;
  }

  .program-lp .dialogue-image img,
  .program-lp .section-image-center img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
  }

  .program-lp .consult-image {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .program-lp .consult-image-overlay {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.88rem;
    padding: 0.52rem 0.7rem;
  }

  .program-lp .lp-consult-intro-layout,
  .program-lp .lp-consult-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .program-lp .lp-consult-intro-layout {
    margin-bottom: 0.9rem;
  }

  .program-lp .lp-consult-intro-layout .consult-image {
    max-width: none;
    justify-self: stretch;
  }

  .program-lp .lp-consult-column {
    padding: 0;
  }

  .program-lp .lp-consult-grid .lp-consult-column:first-child {
    padding-right: 0;
  }

  .program-lp .lp-consult-grid .lp-consult-column + .lp-consult-column {
    border-left: 0;
    padding-left: 0;
  }

  .program-lp .lp-consult-badges {
    margin-top: 0.85rem;
  }

  .program-lp .profile-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .program-lp .profile-image,
  .program-lp .consult-image {
    width: 100%;
  }

  .program-lp .program-trust-copy.profile-text,
  .program-lp .consult-text {
    width: 100%;
  }

  .program-lp .profile-image img,
  .program-lp .consult-image img {
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 979px) {
  .program-lp .mobile-cta {
    display: none;
  }
}
