@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --color-bg: #F7F3EE;
  --color-bg-secondary: #EFE8E1;
  --color-bg-clean: #FBF9F6;
  --color-surface: #FCFAF7;
  --color-surface-premium: #F5EFE9;
  --color-dark-card: #2A564C;
  --color-dark-plum-card: #4A3955;
  --color-text: #243F39;
  --color-heading-purple: #3E3148;
  --color-heading-dark: #F7F2EC;
  --color-body: #4D4A47;
  --color-muted: #6B6662;
  --color-light-text: #EDE6DF;
  --color-muted-light: #CFC5BE;
  --color-primary: #2D5B51;
  --color-primary-dark: #214C43;
  --color-accent: #3F314A;
  --color-accent-rose: #4E3B59;
  --color-clay: #B9775F;
  --color-mauve: #8C6A8A;
  --color-sage-section: #E8EEE8;
  --color-paths-section: #E8ECE4;
  --color-parchment: #E8E2DC;
  --color-gold: #A58D9D;
  --color-mist: #EFE8E1;
  --color-sand: #FBF9F6;
  --border-soft: #D8D0C9;
  --border-refined: #E4DCD5;
  --border-accent: #A58D9D;
  --divider-dark: rgba(255, 255, 255, 0.12);
  --brand-gradient: linear-gradient(135deg, #214C43 0%, #3F314A 100%);
  --brand-gradient-soft: linear-gradient(135deg, #2D5B51 0%, #4E3B59 100%);
  --light-wash: linear-gradient(135deg, #F7F3EE 0%, #EFE8E1 100%);
  --ambient-overlay: linear-gradient(180deg, rgba(33, 76, 67, 0.00) 0%, rgba(63, 49, 74, 0.10) 100%);
  --shadow-soft: 0 22px 60px rgba(33, 76, 67, 0.12);
  --bg: var(--color-bg);
  --bg-soft: var(--color-mist);
  --surface: var(--color-surface);
  --sage: var(--color-primary);
  --sage-dark: var(--color-primary-dark);
  --sage-soft: var(--color-mist);
  --blush: var(--color-accent-rose);
  --sand: var(--color-sand);
  --ink: var(--color-text);
  --muted: var(--color-muted);
  --line: var(--border-soft);
  --shadow: var(--shadow-soft);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1160px;
  --section: clamp(64px, 9vw, 112px);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: var(--font-body);
  --font-serif: var(--font-heading);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-body);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { overflow-wrap: anywhere; }
h1, h2 { color: var(--ink); font-family: var(--font-heading); }
h3 { color: var(--ink); font-family: var(--font-body); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(33, 76, 67, 0.34); outline-offset: 4px; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 820px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 246, 0.94);
  border-bottom: 1px solid rgba(33, 76, 67, 0.10);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 24px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--brand-gradient);
  border-radius: 50%;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-copy small { color: var(--muted); font-size: 0.76rem; font-weight: 500; }
.nav-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}
.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}
.nav-toggle span[aria-hidden="true"]::before { transform: translateY(-6px); }
.nav-toggle span[aria-hidden="true"]::after { transform: translateY(4px); }
.site-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: none;
  padding: 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
body.menu-open .site-nav { display: grid; }
.site-nav a {
  padding: 12px;
  border-radius: var(--radius);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--sage-dark);
  background: rgba(33, 76, 67, 0.08);
}
.header-cta { display: none; }
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
}
.btn-primary {
  color: var(--surface);
  background: var(--brand-gradient);
  box-shadow: 0 14px 34px rgba(33, 76, 67, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(33, 76, 67, 0.26);
}
.btn-secondary {
  color: var(--sage-dark);
  background: transparent;
  border: 1px solid var(--color-primary-dark);
}
.btn-secondary:hover {
  color: var(--color-primary-dark);
  background: #EDE7E1;
  border-color: var(--color-primary-dark);
}
.btn-recommended {
  color: var(--surface);
  background: var(--brand-gradient);
  box-shadow: 0 14px 34px rgba(33, 76, 67, 0.22);
}
.btn-recommended:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(33, 76, 67, 0.3);
}
.btn-pricing-live {
  color: var(--color-primary-dark);
  background: transparent;
  border: 1px solid var(--color-primary-dark);
  box-shadow: 0 12px 28px rgba(33, 76, 67, 0.08);
}
.btn-pricing-live:hover {
  color: var(--surface);
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn-pricing-pro {
  color: var(--surface);
  background: var(--brand-gradient-soft);
  box-shadow: 0 14px 34px rgba(63, 49, 74, 0.22);
}
.btn-pricing-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(63, 49, 74, 0.3);
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 var(--section);
  background:
    linear-gradient(135deg, #F7F3EE 0%, #EFE8E1 55%, rgba(33, 76, 67, 0.14) 100%),
    url("../../images/blagaline-hero-mandala-background-desktop.webp"),
    var(--bg);
  background-size: cover;
  background-position: center;
}
.hero-section::before {
  position: absolute;
  inset: auto -120px -160px auto;
  width: min(620px, 78vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.14;
  content: "";
  pointer-events: none;
}
.hero-section::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(9px, 2vw);
  background: linear-gradient(180deg, var(--color-primary-dark), var(--color-accent));
  opacity: 0.82;
  content: "";
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
}
.hero-copy::before {
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 0 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-mauve));
  content: "";
}
.hero-grid, .split-grid, .contact-grid {
  display: grid;
  gap: 34px;
}
.hero-copy h1, .page-hero h1, .article-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero-lead, .page-hero p, .article-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.18vw, 18px);
  line-height: 1.7;
  font-weight: 400;
}
.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 12px;
  color: var(--sage-dark);
  background: rgba(33, 76, 67, 0.08);
  border: 1px solid rgba(33, 76, 67, 0.14);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px, 4vw, 42px); }
.hero-visual { position: relative; }
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
}
.image-card img {
  width: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-image {
  border-radius: 28px;
  border-color: rgba(33, 76, 67, 0.18);
  box-shadow: 0 28px 80px rgba(33, 76, 67, 0.16);
}
.hero-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(252, 250, 247, 0.96), rgba(232, 238, 232, 0.82)),
    var(--surface);
}
.hero-note {
  position: absolute;
  right: clamp(14px, 4vw, 28px);
  bottom: clamp(14px, 4vw, 28px);
  max-width: min(260px, 78%);
  margin-top: 0;
  padding: 16px 18px;
  border: 1px solid rgba(33, 76, 67, 0.14);
  border-radius: 18px;
  background: rgba(251, 249, 246, 0.92);
  box-shadow: 0 18px 46px rgba(33, 76, 67, 0.16);
  backdrop-filter: blur(12px);
}
.hero-note strong { display: block; color: var(--sage-dark); font-size: 1.2rem; }
.section { padding: var(--section) 0; }
.soft-band { background: var(--light-wash); }
.home-trust-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(180deg, #F7F3EE 0%, #EFE8E1 100%);
  border-top: 1px solid rgba(33, 76, 67, 0.08);
  border-bottom: 1px solid rgba(33, 76, 67, 0.08);
}
.home-trust-section::before {
  position: absolute;
  right: -180px;
  top: -160px;
  width: min(560px, 86vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.08;
  content: "";
  pointer-events: none;
}
.home-trust-section .container {
  position: relative;
  z-index: 1;
}
.trust-intro {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 48px);
  text-align: center;
}
.trust-intro .eyebrow {
  margin-inline: auto;
}
.trust-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}
.trust-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.trust-card-grid {
  display: grid;
  gap: 24px;
}
.trust-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid #DED5CD;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(252, 250, 247, 0.98) 0%, rgba(245, 239, 233, 0.62) 100%),
    #FCFAF7;
  box-shadow: 0 18px 40px rgba(63, 49, 74, 0.08);
}
.trust-card:nth-child(1) {
  border-color: rgba(33, 76, 67, 0.18);
  box-shadow: 0 18px 40px rgba(33, 76, 67, 0.09);
}
.trust-card:nth-child(2) {
  border-color: rgba(63, 49, 74, 0.2);
  box-shadow: 0 18px 40px rgba(63, 49, 74, 0.1);
}
.trust-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #214C43 0%, rgba(33, 76, 67, 0.36) 100%);
  content: "";
}
.trust-card:nth-child(2)::before {
  background: linear-gradient(90deg, #3F314A 0%, rgba(63, 49, 74, 0.36) 100%);
}
.trust-card::after {
  position: absolute;
  right: -52px;
  bottom: -64px;
  width: 170px;
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.06;
  content: "";
  pointer-events: none;
}
.trust-card > * {
  position: relative;
  z-index: 1;
}
.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #214C43;
  background: rgba(33, 76, 67, 0.08);
  box-shadow: inset 0 0 0 1px rgba(33, 76, 67, 0.12);
}
.trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-icon svg circle:last-child {
  fill: currentColor;
  stroke: none;
  opacity: 0.88;
}
.trust-card:nth-child(2) .trust-icon {
  color: #3F314A;
  background: rgba(63, 49, 74, 0.08);
  box-shadow: inset 0 0 0 1px rgba(63, 49, 74, 0.12);
}
.trust-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.trust-support {
  display: block;
  margin: 0 0 16px;
  color: #214C43;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.trust-card:nth-child(2) .trust-support {
  color: #3F314A;
}
.trust-card p {
  margin: 0;
  color: var(--color-body);
  font-size: 16.5px;
  line-height: 1.7;
}
.trust-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 360px;
  margin: clamp(30px, 5vw, 44px) auto 0;
  color: rgba(33, 76, 67, 0.38);
}
.trust-divider::before,
.trust-divider::after {
  height: 1px;
  flex: 1;
  background: rgba(33, 76, 67, 0.28);
  content: "";
}
.trust-divider span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(33, 76, 67, 0.22);
  border-radius: 999px;
  background:
    url("../../images/mandala-lineart-transparent-sage.png") center / 22px 22px no-repeat,
    rgba(252, 250, 247, 0.72);
}
.somatic-check-section {
  position: relative;
  overflow: hidden;
  background: var(--color-sage-section);
}
.somatic-check-section::before {
  position: absolute;
  left: -140px;
  top: 8%;
  width: min(480px, 78vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.12;
  content: "";
  pointer-events: none;
}
.somatic-check-section .container {
  position: relative;
  z-index: 1;
}
.somatic-check-section .signal-card {
  background: #FBF9F6;
  border-color: rgba(33, 76, 67, 0.12);
  box-shadow: 0 16px 38px rgba(33, 76, 67, 0.08);
}
.somatic-check-section .signal-card:nth-child(2n) span {
  background: var(--color-clay);
}
.somatic-check-section .signal-card:nth-child(3n) span {
  background: var(--color-mauve);
}
.somatic-check-section .signal-card:hover {
  border-color: var(--color-primary-dark);
}
.paths-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 236, 228, 0.98), rgba(231, 226, 220, 0.9)),
    var(--color-paths-section);
}
.paths-section .soft-card {
  position: relative;
  overflow: hidden;
  background: #FBF9F6;
  box-shadow: 0 18px 46px rgba(63, 49, 74, 0.08);
}
.paths-section .soft-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-primary-dark);
  content: "";
}
.paths-section .soft-card:nth-child(2)::before {
  background: var(--color-mauve);
}
.paths-section .soft-card:nth-child(3)::before {
  background: var(--color-clay);
}
.paths-section .media-strip {
  gap: 22px;
}
.paths-section .image-card {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(33, 76, 67, 0.14);
}
.paths-section .image-card::after {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--color-light-text);
  background: rgba(33, 76, 67, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  content: "Практика";
}
.paths-section .image-card:nth-child(2)::after {
  content: "Нервна система";
}
.split-section {
  background:
    linear-gradient(135deg, var(--color-bg) 0%, var(--color-parchment) 100%);
}
.split-section .split-grid {
  align-items: start;
}
.split-section .stack-list {
  gap: 14px;
}
.split-section .stack-list .soft-card {
  background: #FBF9F6;
  border-left: 4px solid var(--color-primary-dark);
  box-shadow: 0 16px 42px rgba(33, 76, 67, 0.09);
}
.split-section .stack-list .soft-card:nth-child(2n) {
  border-left-color: var(--color-mauve);
}
.split-section .stack-list .soft-card:nth-child(3n) {
  border-left-color: var(--color-clay);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-intro.center { margin-inline: auto; text-align: center; }
.section-intro h2, .final-cta h2, .decision-box h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.section-intro p, .soft-card p, .service-card p, .blog-card p, .resource-card p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}
.signal-grid, .card-grid, .pricing-grid, .resource-grid, .blog-grid, .service-grid, .related-grid, .media-strip {
  display: grid;
  gap: 16px;
}
.balance-section {
  padding-block: clamp(70px, 9vw, 118px);
  background: var(--color-bg);
}
.balance-panel {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    var(--brand-gradient),
    url("../../images/mandala-lineart-transparent-white.png");
  background-repeat: no-repeat;
  background-size: auto, min(540px, 82vw);
  background-position: center, right -140px center;
  box-shadow: 0 30px 90px rgba(33, 76, 67, 0.24);
}
.balance-panel h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-light-text);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.balance-panel p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-muted-light);
  font-size: clamp(17px, 1.18vw, 18px);
  line-height: 1.7;
}
.outcome-grid {
  display: grid;
  gap: 20px;
}
.outcomes-section {
  background: var(--color-bg);
}
.outcomes-section .section-intro {
  position: relative;
  max-width: 920px;
  padding-top: 18px;
}
.outcomes-section .section-intro::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-mauve));
  content: "";
}
.outcomes-section .section-intro h2 {
  color: var(--color-heading-purple);
}
.outcome-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(63, 49, 74, 0.09);
}
.outcome-card .card-image {
  aspect-ratio: 16 / 10;
}
.outcome-card div {
  position: relative;
  padding: 22px;
}
.outcome-card div::before {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 0 16px;
  border-radius: 99px;
  background: var(--color-primary-dark);
  content: "";
}
.outcome-card:nth-child(2n) div::before {
  background: var(--color-mauve);
}
.outcome-card:nth-child(3n) div::before {
  background: var(--color-clay);
}
.outcome-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.2;
}
.outcome-card p {
  margin: 0;
  color: var(--muted);
}
.signal-card, .soft-card, .pricing-card, .resource-card, .blog-card, .service-card, .contact-card, .contact-form, .schedule-card, .decision-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(33, 76, 67, 0.08);
}
.signal-card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.signal-card span {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-gradient);
}
.signal-card p { margin: 0; font-weight: 600; }
.soft-card h3, .pricing-card h3, .resource-card h3, .service-card h2, .blog-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}
.card-image {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin: -8px -8px 18px;
  width: calc(100% + 16px);
}
.visual-stack {
  display: grid;
  gap: 16px;
}
.media-strip {
  margin-top: clamp(28px, 5vw, 48px);
}
.program-gallery {
  padding-bottom: 0;
}
.program-gallery + .section {
  padding-top: clamp(42px, 6vw, 72px);
}
.program-copy-section {
  padding-top: clamp(52px, 7vw, 88px);
}
.program-detail-grid {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}
.program-detail-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.program-detail-card.is-featured {
  border-color: var(--border-accent);
  background:
    linear-gradient(135deg, rgba(245, 239, 233, 0.98), rgba(239, 232, 225, 0.46)),
    var(--surface);
}
.program-detail-header {
  margin-bottom: 22px;
}
.program-detail-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.program-detail-subtitle {
  margin: 12px 0 0;
  color: var(--color-heading-purple);
  font-size: 1.12rem;
  font-weight: 700;
}
.program-detail-card > p,
.program-detail-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.program-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.program-detail-list p {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  background: rgba(239, 232, 225, 0.58);
}
.program-detail-list strong {
  color: var(--ink);
}
.program-detail-price {
  margin: 26px 0 0;
  color: var(--color-primary-dark) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(44px, 4.8vw, 56px) !important;
  line-height: 1;
}
.payment-section {
  background: var(--light-wash);
}
.payment-grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}
.payment-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 247, 0.94);
  box-shadow: var(--shadow);
}
.payment-card-primary {
  align-content: start;
  border-color: var(--border-accent);
  background:
    linear-gradient(135deg, rgba(252, 250, 247, 0.96), rgba(245, 239, 233, 0.74)),
    var(--surface);
}
.payment-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.payment-card p {
  margin: 0;
  color: var(--muted);
}
.payment-card .btn {
  width: fit-content;
  margin-top: 8px;
}
.payment-details {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
}
.payment-details div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(247, 243, 238, 0.78);
  border: 1px solid rgba(33, 76, 67, 0.12);
}
.payment-details dt {
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.payment-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.payment-example {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(33, 76, 67, 0.08);
}
.program-consultation {
  display: grid;
  gap: 18px;
}
.program-consultation p {
  margin: 0 auto;
}
.program-consultation .btn {
  max-width: min(100%, 560px);
  white-space: normal;
  text-align: center;
}
.bys-hero .btn {
  margin-top: clamp(24px, 4vw, 38px);
}
.bys-intro-section p {
  color: var(--muted);
  font-size: 1.06rem;
}
.bys-feature-grid {
  display: grid;
  gap: 16px;
}
.bys-feature-card,
.bys-schedule-card,
.bys-method-box,
.bys-library-box {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.bys-feature-card h2,
.bys-schedule-card h2,
.bys-method-box h2,
.bys-library-box h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.bys-feature-card h3 {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.bys-feature-card p,
.bys-schedule-card p,
.bys-method-box p,
.bys-library-box li,
.bys-dynamic-copy p,
.bys-plan-grid .pricing-card p {
  color: var(--muted);
  line-height: 1.7;
}
.bys-core-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 232, 225, 0.96) 0%, rgba(247, 243, 238, 0.98) 100%);
}
.bys-core-section::before {
  position: absolute;
  right: -170px;
  top: -130px;
  width: min(520px, 82vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.08;
  content: "";
  pointer-events: none;
}
.bys-core-section .container {
  position: relative;
  z-index: 1;
}
.bys-core-section .section-intro {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.bys-core-grid {
  gap: 24px;
  margin-top: clamp(30px, 4vw, 44px);
}
.bys-core-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(252, 250, 247, 0.98) 0%, rgba(245, 239, 233, 0.72) 100%),
    var(--color-surface);
  box-shadow: 0 22px 58px rgba(63, 49, 74, 0.1);
}
.bys-core-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--core-accent, #214C43);
  content: "";
}
.bys-core-card::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 190px;
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.055;
  content: "";
  pointer-events: none;
}
.bys-core-card > * {
  position: relative;
  z-index: 1;
}
.bys-core-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.bys-core-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: var(--core-accent, #214C43);
  background: var(--core-soft, rgba(33, 76, 67, 0.09));
  box-shadow: inset 0 0 0 1px var(--core-border, rgba(33, 76, 67, 0.14));
}
.bys-core-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bys-core-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--core-border, rgba(33, 76, 67, 0.14));
  border-radius: 999px;
  color: var(--core-accent, #214C43);
  background: rgba(251, 249, 246, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bys-core-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 38px);
  letter-spacing: 0;
}
.bys-core-card h3 {
  color: var(--core-accent, #214C43);
  font-size: 17px;
  line-height: 1.45;
}
.bys-core-card p {
  margin-top: 4px;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.75;
}
.bys-core-card-start {
  --core-accent: #214C43;
  --core-soft: rgba(33, 76, 67, 0.09);
  --core-border: rgba(33, 76, 67, 0.18);
  border-color: rgba(33, 76, 67, 0.2);
}
.bys-core-card-live {
  --core-accent: #3F314A;
  --core-soft: rgba(63, 49, 74, 0.09);
  --core-border: rgba(63, 49, 74, 0.18);
  border-color: rgba(63, 49, 74, 0.2);
}
.bys-core-card-library {
  --core-accent: #2D5B51;
  --core-soft: rgba(45, 91, 81, 0.1);
  --core-border: rgba(45, 91, 81, 0.2);
  border-color: rgba(45, 91, 81, 0.2);
}
.bys-core-card-community {
  --core-accent: #A58D9D;
  --core-soft: rgba(165, 141, 157, 0.13);
  --core-border: rgba(165, 141, 157, 0.28);
  border-color: rgba(165, 141, 157, 0.3);
}
.bys-schedule-card p + p {
  margin-top: 14px;
}
.bys-method-box {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(252, 250, 247, 0.96), rgba(239, 232, 225, 0.62)),
    url("../../images/mandala-lineart-transparent-gold.png");
  background-repeat: no-repeat;
  background-size: auto, min(420px, 70vw);
  background-position: center, right -110px center;
}
.bys-pillar-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.bys-pillar-grid article {
  padding: 16px;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  background: rgba(247, 243, 238, 0.74);
}
.bys-pillar-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
}
.bys-pillar-grid p {
  margin: 0;
}
.bys-library-box {
  background: rgba(252, 250, 247, 0.88);
}
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}
.bys-dynamic-copy > p {
  max-width: 820px;
}
.bys-feature-grid.three {
  margin-top: 24px;
}
.bys-closing-line {
  margin-top: 24px;
  color: var(--color-primary-dark) !important;
  font-weight: 700;
}
.bys-different-section {
  background: var(--light-wash);
}
.bys-different-intro {
  align-items: center;
}
.bys-contrast-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 5vw, 48px);
}
.bys-contrast-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 247, 0.92);
  box-shadow: var(--shadow);
}
.bys-contrast-card .eyebrow {
  margin-bottom: 18px;
}
.bys-contrast-card .plain-list {
  gap: 14px;
  padding-left: 0;
  list-style: none;
}
.bys-contrast-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.bys-contrast-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(63, 49, 74, 0.11);
}
.bys-start-card {
  border-color: rgba(33, 76, 67, 0.22);
  background: linear-gradient(135deg, rgba(252, 250, 247, 0.96), rgba(239, 232, 225, 0.76));
}
.bys-start-card li::before {
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(33, 76, 67, 0.11);
}
.bys-programs-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #F7F3EE 0%, #EFE8E1 52%, #F7F3EE 100%);
}
.bys-programs-section::before {
  position: absolute;
  left: -180px;
  top: -120px;
  width: min(560px, 84vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.07;
  content: "";
  pointer-events: none;
}
.bys-programs-section .container {
  position: relative;
  z-index: 1;
}
.bys-programs-section .section-intro {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.bys-program-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -10px auto clamp(26px, 4vw, 40px);
}
.bys-program-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(33, 76, 67, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(252, 250, 247, 0.72);
  font-size: 13px;
  font-weight: 700;
}
.bys-program-legend i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #214C43;
}
.bys-program-legend span:nth-child(2) i {
  background: linear-gradient(135deg, #214C43 0%, #3F314A 100%);
}
.bys-program-legend span:nth-child(3) i {
  background: #3F314A;
}
.bys-program-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.bys-program-card {
  --program-accent: #214C43;
  --program-soft: rgba(33, 76, 67, 0.06);
  --program-soft-strong: rgba(33, 76, 67, 0.1);
  --program-border: rgba(33, 76, 67, 0.18);
  --program-header-bg: linear-gradient(135deg, rgba(33, 76, 67, 0.12), rgba(33, 76, 67, 0.04));
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #DED5CD;
  border-radius: 28px;
  background: #FCFAF7;
  box-shadow: 0 18px 40px rgba(63, 49, 74, 0.08);
}
.bys-program-card-live {
  border-color: rgba(33, 76, 67, 0.2);
}
.bys-program-card-full {
  --program-accent: #214C43;
  --program-soft: rgba(63, 49, 74, 0.04);
  --program-soft-strong: rgba(33, 76, 67, 0.12);
  --program-border: rgba(63, 49, 74, 0.24);
  --program-header-bg: linear-gradient(135deg, #214C43 0%, #3F314A 100%);
  border: 1px solid transparent;
  background:
    linear-gradient(#FCFAF7, #FCFAF7) padding-box,
    linear-gradient(135deg, rgba(33, 76, 67, 0.72), rgba(63, 49, 74, 0.76)) border-box;
  box-shadow: 0 30px 86px rgba(33, 76, 67, 0.18);
}
.bys-program-card-pro {
  --program-accent: #3F314A;
  --program-soft: rgba(63, 49, 74, 0.06);
  --program-soft-strong: rgba(63, 49, 74, 0.11);
  --program-border: rgba(63, 49, 74, 0.2);
  --program-header-bg: linear-gradient(135deg, rgba(63, 49, 74, 0.13), rgba(63, 49, 74, 0.04));
  border-color: rgba(63, 49, 74, 0.2);
}
.bys-program-header {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: var(--program-header-bg);
}
.bys-program-card-full .bys-program-header {
  color: var(--color-heading-dark);
}
.bys-program-header::after {
  position: absolute;
  right: -56px;
  top: -58px;
  width: 180px;
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.11;
  content: "";
  pointer-events: none;
}
.bys-program-card-full .bys-program-header::after {
  background-image: url("../../images/mandala-lineart-transparent-white.png");
  opacity: 0.13;
}
.bys-program-header > * {
  position: relative;
  z-index: 1;
}
.bys-program-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
}
.bys-program-badge {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid var(--program-border);
  border-radius: 999px;
  color: var(--program-accent);
  background: rgba(252, 250, 247, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bys-program-card-full .bys-program-badge {
  color: #F7F2EC;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.bys-program-icon,
.bys-program-benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--program-accent);
  background: var(--program-soft-strong);
}
.bys-program-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--program-border);
  border-radius: 18px;
}
.bys-program-card-full .bys-program-icon {
  color: #F7F2EC;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.bys-program-icon svg,
.bys-program-benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bys-program-header h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}
.bys-program-header p {
  max-width: 360px;
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.bys-program-card-full .bys-program-header p {
  color: rgba(247, 242, 236, 0.88);
}
.bys-program-intro {
  margin: 0;
  padding: 24px 26px 0;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.7;
}
.bys-program-benefits {
  display: grid;
  gap: 10px;
  padding: 22px 26px 24px;
}
.bys-program-benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--program-border);
  border-left-width: 4px;
  border-radius: 16px;
  background: var(--program-soft);
}
.bys-program-benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}
.bys-program-benefit-icon svg {
  width: 19px;
  height: 19px;
}
.bys-program-benefit h4 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.bys-program-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.bys-program-footer {
  margin-top: auto;
  padding: 22px 26px 26px;
  border-top: 1px solid var(--program-border);
  background:
    linear-gradient(180deg, rgba(252, 250, 247, 0), var(--program-soft));
}
.bys-program-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--program-accent);
  font-family: var(--font-heading);
  line-height: 1;
}
.bys-program-price span {
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 600;
}
.bys-program-price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}
.bys-program-card-full .bys-program-price span {
  background: linear-gradient(135deg, #214C43 0%, #3F314A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bys-program-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  color: #fff;
  background: var(--program-accent);
  box-shadow: 0 16px 36px rgba(33, 76, 67, 0.16);
}
.bys-program-card-full .bys-program-btn {
  background: linear-gradient(135deg, #214C43 0%, #3F314A 100%);
  box-shadow: 0 18px 42px rgba(33, 76, 67, 0.2);
}
.bys-program-card-pro .bys-program-btn {
  background: linear-gradient(135deg, #3F314A 0%, #4E3B59 100%);
  box-shadow: 0 18px 42px rgba(63, 49, 74, 0.18);
}
.bys-plan-grid .pricing-card {
  grid-template-rows: auto auto 1fr auto;
}
.stack-list { display: grid; gap: 12px; }
.program-preview {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(33, 76, 67, 0.95), rgba(63, 49, 74, 0.88)),
    url("../../images/mandala-lineart-transparent-white.png"),
    var(--sage-dark);
  background-repeat: no-repeat;
  background-size: auto, min(520px, 70vw), auto;
  background-position: center, right -120px center, center;
}
.program-preview .section-intro p, .program-preview .soft-card p { color: var(--color-muted-light); }
.program-preview .section-intro h2,
.final-cta-box h2 {
  color: var(--color-heading-dark);
}
.program-preview .eyebrow,
.final-cta-box .eyebrow {
  color: var(--color-heading-dark);
  background: rgba(255, 245, 238, 0.08);
  border-color: var(--divider-dark);
}
.program-preview .soft-card {
  color: var(--color-light-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.program-preview .soft-card h3 {
  color: var(--color-light-text);
}
.program-preview .soft-card p {
  color: var(--color-muted-light);
}
.program-preview .btn-primary {
  color: var(--color-primary-dark);
  background: var(--color-bg);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}
.program-preview .btn-primary:hover {
  background: var(--color-light-text);
}
.premium-pricing-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 232, 225, 0.98), rgba(232, 226, 220, 0.92)),
    var(--color-bg-secondary);
}
.premium-pricing-section::before {
  position: absolute;
  right: -160px;
  top: 8%;
  width: min(620px, 86vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.12;
  content: "";
  pointer-events: none;
}
.premium-pricing-section .container {
  position: relative;
  z-index: 1;
}
.premium-pricing-section .section-intro {
  max-width: 860px;
}
.premium-pricing-grid {
  align-items: stretch;
  gap: clamp(18px, 3vw, 28px);
}
.pricing-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.premium-pricing-section .pricing-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #DDD3CB;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(252, 250, 247, 0.98), rgba(245, 239, 233, 0.9)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(63, 49, 74, 0.12);
}
.premium-pricing-section .pricing-card-live {
  background:
    linear-gradient(145deg, rgba(252, 250, 247, 0.99), rgba(239, 232, 225, 0.48)),
    var(--surface);
}
.premium-pricing-section .pricing-card-pro {
  background:
    linear-gradient(145deg, rgba(252, 250, 247, 0.99), rgba(245, 239, 233, 0.62)),
    var(--surface);
}
.premium-pricing-section .pricing-card.is-recommended {
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(251, 249, 246, 0.99), rgba(245, 239, 233, 0.68)) padding-box,
    linear-gradient(135deg, rgba(33, 76, 67, 0.82), rgba(165, 141, 157, 0.86), rgba(63, 49, 74, 0.78)) border-box;
  box-shadow: 0 30px 86px rgba(33, 76, 67, 0.18);
}
.pricing-card-head {
  display: grid;
  gap: 8px;
}
.pricing-label {
  width: fit-content;
  padding: 6px 10px;
  color: var(--color-primary-dark);
  background: rgba(33, 76, 67, 0.08);
  border: 1px solid rgba(33, 76, 67, 0.14);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premium-pricing-section .pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}
.pricing-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}
.pricing-price-wrap {
  padding: 10px 0 4px;
}
.pricing-card .btn {
  width: 100%;
  min-height: 64px;
  align-self: end;
  padding-inline: 22px;
}
.premium-pricing-section .pricing-card .btn {
  min-height: 58px;
  margin-top: 0;
  border-radius: 999px;
  white-space: normal;
  text-align: center;
}
.pricing-card.is-recommended {
  border-color: var(--border-accent);
  box-shadow: 0 18px 50px rgba(33, 76, 67, 0.13);
}
.premium-pricing-section .pricing-card.is-recommended .pricing-label {
  color: var(--surface);
  background: var(--brand-gradient);
}
.badge {
  width: fit-content;
  padding: 6px 10px;
  color: var(--surface);
  background: var(--brand-gradient);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.premium-pricing-section .badge {
  margin-bottom: -2px;
  box-shadow: 0 12px 28px rgba(33, 76, 67, 0.18);
}
.price {
  margin: 0;
  color: var(--color-heading-purple);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
}
.premium-pricing-section .price {
  font-size: clamp(44px, 4.2vw, 52px);
}
.premium-pricing-section .pricing-card.is-recommended .price {
  color: var(--color-primary-dark);
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}
.pricing-benefits {
  gap: 8px;
}
.premium-pricing-section .check-list li {
  min-height: 26px;
  display: flex;
  align-items: flex-start;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 400;
}
.premium-pricing-section .check-list li::before {
  top: 0.1em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(33, 76, 67, 0.11);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 700;
}
.pricing-note {
  margin: auto 0 0;
  padding: 13px 14px;
  color: var(--muted);
  background: rgba(247, 243, 238, 0.72);
  border: 1px solid rgba(33, 76, 67, 0.12);
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.55;
}
.pricing-reassurance {
  max-width: 760px;
  margin: clamp(24px, 4vw, 36px) auto 0;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-align: center;
}
.center-actions { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 46px); }
.testimonial-section {
  background: var(--color-paths-section);
}
.testimonial-section .section-intro {
  margin-inline: auto;
  text-align: center;
}
.testimonial-shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 68px;
}
.testimonial-track { min-height: 240px; }
.testimonial-card {
  position: relative;
  overflow: hidden;
  display: none;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(63, 49, 74, 0.12);
  border: 1px solid var(--border-soft);
}
.testimonial-card::before {
  position: absolute;
  right: clamp(22px, 5vw, 46px);
  top: -24px;
  color: var(--color-mauve);
  content: "“";
  font-family: var(--font-heading);
  font-size: clamp(92px, 12vw, 160px);
  line-height: 1;
  opacity: 0.22;
}
.testimonial-card.is-active { display: block; }
.testimonial-card p { margin-top: 0; font-family: var(--font-heading); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.28; }
.testimonial-card strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.bys-testimonials-section {
  background:
    linear-gradient(180deg, #EFE8E1 0%, #F7F3EE 100%);
}
.bys-testimonials-section .section-intro {
  max-width: 820px;
}
.bys-testimonial-track {
  min-height: 520px;
}
.bys-testimonial-card {
  padding: clamp(30px, 5vw, 54px);
}
.bys-testimonial-card::before {
  color: var(--color-primary-dark);
  opacity: 0.12;
}
.bys-testimonial-card h3 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}
.bys-testimonial-card p {
  max-width: 840px;
  margin: 0 0 14px;
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
}
.bys-testimonial-card p:last-of-type {
  margin-bottom: 0;
}
.bys-testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 250, 247, 0.94);
  box-shadow: 0 14px 34px rgba(33, 76, 67, 0.12);
  color: var(--color-primary-dark);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-btn:hover {
  color: var(--surface);
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-50%) translateY(-2px);
}
.resource-card a, .blog-card a, .service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-accent);
  font-weight: 700;
}
.resources-section {
  background: var(--color-bg);
}
.resources-section .resource-card {
  position: relative;
  padding-left: 76px;
  background: #FBF9F6;
  border-left: 5px solid var(--color-primary-dark);
}
.resources-section .resource-card:nth-child(2) {
  border-left-color: var(--color-mauve);
}
.resources-section .resource-card:nth-child(3) {
  border-left-color: var(--color-clay);
}
.resources-section .resource-card::before {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-light-text);
  background: var(--brand-gradient);
  content: "•";
  font-size: 24px;
  line-height: 1;
}
.resources-section .resource-card a {
  color: var(--color-primary-dark);
}
.final-cta { padding-top: 0; }
.final-cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(33, 76, 67, 0.94), rgba(63, 49, 74, 0.88)),
    url("../../images/blagaline-hero-mandala-background-deep.webp"),
    var(--sage-dark);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.final-cta-box > * { position: relative; z-index: 1; }
.final-cta-box p { max-width: 680px; margin: 16px auto 24px; color: var(--color-muted-light); }
.home-faq-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 104px);
  background:
    linear-gradient(180deg, #F7F3EE 0%, #EFE8E1 100%);
  border-top: 1px solid rgba(33, 76, 67, 0.08);
}
.home-faq-section::before {
  position: absolute;
  right: -170px;
  top: -120px;
  width: min(520px, 84vw);
  aspect-ratio: 1;
  background: url("../../images/mandala-lineart-transparent-sage.png") center / contain no-repeat;
  opacity: 0.07;
  content: "";
  pointer-events: none;
}
.home-faq-section .container {
  position: relative;
  z-index: 1;
}
.home-faq-section .section-intro {
  margin-inline: auto;
  text-align: center;
}
.home-faq-list {
  max-width: 980px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}
.home-faq-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid #D8D0C9;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(252, 250, 247, 0.96) 0%, rgba(245, 239, 233, 0.78) 100%),
    #FCFAF7;
  box-shadow: 0 16px 42px rgba(63, 49, 74, 0.07);
}
.home-faq-item[open] {
  border-color: rgba(33, 76, 67, 0.24);
  box-shadow: 0 20px 54px rgba(33, 76, 67, 0.1);
}
.home-faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item summary::after {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 76, 67, 0.18);
  border-radius: 999px;
  color: #214C43;
  background: rgba(33, 76, 67, 0.08);
  content: "+";
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.home-faq-item[open] summary::after {
  color: #F7F2EC;
  background: var(--brand-gradient);
  content: "−";
}
.faq-marker,
.faq-answer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #F7F2EC;
  background: #214C43;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.faq-answer-label {
  color: #3F314A;
  background: rgba(63, 49, 74, 0.1);
}
.home-faq-item p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-body);
  font-size: 16.5px;
  line-height: 1.75;
}
.page-hero .btn,
.section-intro + .btn,
.article-cta .btn,
.final-cta-box .btn,
.decision-box .btn {
  display: flex;
  width: fit-content;
  margin-top: clamp(22px, 3vw, 34px);
}
.final-cta-box .btn {
  margin-inline: auto;
}
.final-cta-box p + .btn {
  margin-top: clamp(12px, 2vw, 22px);
}
.decision-box .btn {
  justify-self: start;
}
.page-hero, .article-hero {
  padding: clamp(70px, 10vw, 128px) 0;
  background:
    linear-gradient(135deg, rgba(247, 243, 238, 0.95), rgba(239, 232, 225, 0.8), rgba(251, 249, 246, 0.62)),
    url("../../images/mandala-lineart-transparent-sage.png"),
    var(--bg);
  background-repeat: no-repeat;
  background-size: auto, min(560px, 72vw), auto;
  background-position: center, right -120px center, center;
}
.schedule-card p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.schedule-card p:last-child { border-bottom: 0; }
.schedule-card span { color: var(--muted); }
.pricing-grid.full { align-items: stretch; }
.decision-box {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  align-items: center;
}
.faq-list { display: grid; gap: 12px; }
details {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); }
.article-layout { display: grid; gap: 28px; padding: var(--section) 0; }
.toc {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  height: fit-content;
}
.toc h2 { margin-top: 0; font-size: 1rem; }
.toc a { display: block; padding: 8px 0; color: var(--sage-dark); font-weight: 600; }
.article-content {
  display: grid;
  gap: 42px;
}
.article-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.article-image img {
  aspect-ratio: 16 / 8;
}
.article-content p { color: var(--muted); font-size: 1.05rem; }
.callout, .video-card, .article-cta {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--sage-soft);
  color: var(--sage-dark);
}
.callout.muted { background: var(--bg-soft); color: var(--muted); }
.video-card button {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: var(--radius);
  color: var(--surface);
  background: linear-gradient(135deg, var(--sage-dark), var(--color-accent-rose));
  font-weight: 700;
  cursor: pointer;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
}
.related-grid a {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
}
.contact-grid { align-items: start; }
.newsletter-form {
  margin-top: clamp(24px, 5vw, 44px);
  padding: clamp(24px, 5vw, 42px);
  display: grid;
  gap: 18px;
  align-items: end;
  border: 1px solid var(--border-refined);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(252, 250, 247, 0.94), rgba(239, 232, 225, 0.58)),
    url("../../images/mandala-lineart-transparent-gold.png");
  background-repeat: no-repeat;
  background-size: auto, min(340px, 70vw);
  background-position: center, right -90px center;
  box-shadow: var(--shadow);
}
.newsletter-form h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.newsletter-form p:not(.eyebrow),
.newsletter-status {
  max-width: 620px;
  color: var(--muted);
}
.newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}
.newsletter-form .btn {
  width: 100%;
  min-height: 54px;
}
.newsletter-status {
  margin: 0;
  font-weight: 600;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--sage-dark); font-weight: 600; }
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
}
.form-status { margin: 0; color: var(--sage-dark); font-weight: 600; }
.site-footer {
  color: var(--color-light-text);
  background:
    linear-gradient(135deg, rgba(33, 76, 67, 0.97), rgba(63, 49, 74, 0.94)),
    url("../../images/mandala-lineart-transparent-white.png"),
    var(--color-primary-dark);
  background-repeat: no-repeat;
  background-size: auto, min(520px, 80vw), auto;
  background-position: center, right -160px center, center;
}
.footer-grid {
  display: grid;
  gap: 28px;
  padding: 52px 0;
}
.footer-brand, .site-footer h2 { color: var(--surface); }
.site-footer h2 { margin: 0 0 12px; font-size: 1rem; }
.footer-tagline { color: var(--surface); font-weight: 600; }
.footer-disclaimer { max-width: 640px; color: var(--color-muted-light); }
.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a { color: var(--color-muted-light); }
.footer-social-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.footer-social-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--color-light-text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
  font-weight: 700;
}
.footer-social-links a::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(247, 242, 236, 0.74);
  content: "";
}
.footer-social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--divider-dark);
  color: rgba(237, 230, 223, 0.66);
}
@media (prefers-reduced-motion: no-preference) {
  .btn,
  .signal-card,
  .soft-card,
  .pricing-card,
  .resource-card,
  .blog-card,
  .service-card,
  .image-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
  }
  .signal-card:hover,
  .soft-card:hover,
  .pricing-card:hover,
  .resource-card:hover,
  .blog-card:hover,
  .service-card:hover,
  .image-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-copy h1, .page-hero h1, .article-hero h1 {
    font-size: clamp(42px, 11vw, 52px);
    line-height: 1.02;
  }
  .section-intro h2, .final-cta h2, .decision-box h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }
  .hero-lead, .page-hero p, .article-hero p {
    font-size: 16px;
    line-height: 1.65;
  }
  .home-faq-section {
    padding-top: 56px;
  }
  .home-faq-item {
    border-radius: 18px;
  }
  .home-faq-item summary {
    gap: 10px;
    padding: 18px;
    font-size: 15.5px;
  }
  .home-faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .faq-marker,
  .faq-answer-label {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .home-faq-item p {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 18px 20px;
    font-size: 15.5px;
    line-height: 1.7;
  }
  .site-nav a {
    font-size: 16px;
    font-weight: 500;
  }
  .btn {
    font-size: 15px;
    font-weight: 700;
  }
  .home-trust-section {
    padding: 56px 0;
  }
  .trust-intro h2 {
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.08;
  }
  .trust-intro p:not(.eyebrow) {
    font-size: 16px;
  }
  .trust-card {
    padding: 30px;
  }
  .bys-core-card {
    padding: 26px 22px;
  }
  .bys-core-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .bys-core-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .bys-core-card h2 {
    font-size: clamp(28px, 8vw, 34px);
  }
  .bys-core-card h3 {
    font-size: 16px;
  }
  .bys-core-card p {
    font-size: 15.5px;
    line-height: 1.7;
  }
  .bys-program-legend {
    justify-content: flex-start;
    margin-top: -4px;
  }
  .bys-program-card {
    border-radius: 22px;
  }
  .bys-program-header {
    min-height: 210px;
    padding: 24px 22px;
  }
  .bys-program-header h3 {
    font-size: clamp(32px, 9vw, 40px);
  }
  .bys-program-header-top {
    align-items: flex-start;
  }
  .bys-program-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .bys-program-intro {
    padding: 22px 20px 0;
  }
  .bys-program-benefits {
    padding: 20px;
  }
  .bys-program-benefit {
    grid-template-columns: 1fr;
  }
  .bys-program-footer {
    padding: 20px;
  }
  .bys-program-price span {
    font-size: 42px;
  }
  .hero-section {
    background:
      linear-gradient(180deg, rgba(247, 243, 238, 0.97) 0%, rgba(247, 243, 238, 0.86) 62%, rgba(239, 232, 225, 0.62) 100%),
      url("../../images/blagaline-hero-mandala-background-mobile.webp"),
      var(--bg);
    background-size: cover;
    background-position: center top;
  }
  .page-hero, .article-hero {
    background-size: auto, min(420px, 92vw), auto;
    background-position: center, right -160px top -60px, center;
  }
  .testimonial-shell {
    padding-inline: 0;
    padding-bottom: 64px;
  }
  .testimonial-track {
    min-height: 0;
  }
  .bys-testimonial-card {
    padding: 28px 22px;
  }
  .bys-testimonial-card h3 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .bys-testimonial-card p {
    font-size: 15.5px;
    line-height: 1.7;
  }
  .bys-testimonial-card strong {
    font-size: 15px;
  }
  .carousel-btn {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .carousel-btn.prev {
    left: calc(50% - 58px);
  }
  .carousel-btn.next {
    right: calc(50% - 58px);
  }
  .carousel-btn:hover {
    transform: translateY(-2px);
  }
}
@media (min-width: 720px) {
  .signal-grid, .card-grid.six, .blog-grid, .resource-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid, .pricing-grid, .media-strip.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid.two, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bys-core-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bys-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-grid { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr); }
  .bys-contrast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-box { grid-template-columns: 1fr auto; }
}
@media (min-width: 980px) {
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { padding: 10px 11px; font-size: 15px; font-weight: 500; }
  .header-cta { display: block; }
  .hero-grid, .split-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr); align-items: center; }
  .outcome-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .premium-pricing-section .pricing-card.is-recommended {
    transform: translateY(-14px) scale(1.02);
  }
  .premium-pricing-section .pricing-card.is-recommended:hover {
    transform: translateY(-18px) scale(1.02);
  }
  .bys-program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bys-program-card.is-featured {
    transform: translateY(-12px);
  }
  .article-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
  .toc { position: sticky; top: 96px; }
  .footer-grid { grid-template-columns: minmax(260px, 1.45fr) minmax(140px, 0.72fr) minmax(190px, 0.88fr) minmax(220px, 1fr); }
  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr) auto;
  }
  .newsletter-status {
    grid-column: 1 / -1;
  }
}
