:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f0ebe3;
  --color-bg-dark: #2c2926;
  --color-surface: #ffffff;
  --color-primary: #c4873b;
  --color-primary-hover: #ab742f;
  --color-primary-light: rgba(196, 135, 59, 0.1);
  --color-text: #2c2926;
  --color-text-secondary: #6b635b;
  --color-text-on-dark: #faf7f2;
  --color-accent-green: #5a8a6a;
  --color-accent-red: #b85c5c;
  --color-border: rgba(44, 41, 38, 0.08);
  --color-timer-bg: #3a2f28;
  --color-timer-text: #f5deb3;

  --radius-card: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-cta: 0 4px 14px rgba(196, 135, 59, 0.3);
  --shadow-cta-hover: 0 6px 20px rgba(196, 135, 59, 0.4);
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", "Manrope", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  color: inherit;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.25;
}

p {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 18px);
}

p + p {
  margin-top: 1em;
}

a {
  color: var(--color-primary);
}

img,
svg {
  max-width: 100%;
}

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

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: blur(12px);
}

.site-head__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
}

.top-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-text-secondary);
}

.site-head.scrolled {
  border-bottom-color: var(--color-border);
}

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

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

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.section-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.section-header {
  margin-bottom: 24px;
}

.section-header.center {
  text-align: center;
}

.section-header p {
  margin-top: 12px;
  color: var(--color-text-secondary);
}

.section-dark .section-header p,
.section-primary .section-header p {
  color: rgba(250, 247, 242, 0.88);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -220px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(196, 135, 59, 0.08);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero-note {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hero-media {
  width: 100%;
}

.photo-placeholder {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, #efe8de 0%, #e4dac9 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--color-text-secondary);
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
}

.photo-placeholder p {
  margin-top: 10px;
  font-size: 14px;
}

.photo-portrait {
  aspect-ratio: 4 / 5;
}

.photo-square {
  aspect-ratio: 1 / 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 8px;
  padding: 6px 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.badge.inline {
  margin-bottom: 10px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: var(--radius-pill);
  min-height: 52px;
  padding: 16px 32px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease,
    color 0.25s ease;
}

.btn:focus-visible,
.faq-trigger:focus-visible,
input:focus-visible,
.top-link:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(196, 135, 59, 0.3);
}

.btn-secondary {
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
}

.btn-light {
  background: #ffffff;
  color: var(--color-primary);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.btn.block {
  width: 100%;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.is-success {
  background: var(--color-accent-green);
  box-shadow: 0 4px 14px rgba(90, 138, 106, 0.3);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.card[data-stagger] {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card[data-stagger]:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.muted {
  color: var(--color-text-secondary);
}

.kicker {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.plain-list,
.feature-list,
.check-list,
.cross-list,
.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(16px, 2.2vw, 18px);
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 20px;
  color: var(--color-text-secondary);
}

.check-list li,
.cross-list li,
.icon-list li,
.principles li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.icon-list .list-icon,
.check-list .list-icon,
.cross-list .list-icon,
.principles .list-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.check-list .list-icon {
  color: var(--color-accent-green);
}

.cross-list .list-icon {
  color: var(--color-accent-red);
}

.reframe {
  margin-top: 20px;
  font-style: italic;
  font-weight: 500;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.method-grid .card {
  padding-top: 20px;
}

.method-grid .icon-wrap,
.include-grid .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-primary-light);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.method-grid .icon-wrap svg,
.include-grid .icon-wrap svg {
  width: 48px;
  height: 48px;
}

.section-wave {
  position: relative;
}

.section-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 20px;
  background-image: linear-gradient(
      to right,
      transparent 0,
      rgba(196, 135, 59, 0.08) 50%,
      transparent 100%
    ),
    radial-gradient(circle at 10px 10px, rgba(196, 135, 59, 0.08) 2px, transparent 3px);
  background-size: 100% 2px, 24px 20px;
  background-repeat: no-repeat, repeat-x;
  pointer-events: none;
}

.divider-dots {
  display: inline-flex;
  gap: 10px;
  margin: 0 auto;
}

.divider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
}

.expert-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.expert-grid .photo-placeholder {
  border-color: rgba(250, 247, 242, 0.2);
  color: rgba(250, 247, 242, 0.72);
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.12), rgba(250, 247, 242, 0.05));
}

.principles {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.principles .list-icon {
  color: var(--color-primary);
}

.cases-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 16px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.case-card {
  scroll-snap-align: center;
  position: relative;
}

.case-card .quote-decor {
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.06;
  pointer-events: none;
}

.case-card blockquote {
  margin: 0;
  font-style: italic;
}

.case-card footer {
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.case-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
}

.case-dot.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.form-wrap {
  display: grid;
  gap: 18px;
}

.form-card {
  max-width: 520px;
  margin: 0 auto;
}

.field {
  margin-bottom: 14px;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  outline: none;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-checkbox {
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 6px;
  border: 1.5px solid var(--color-border);
  appearance: none;
  background: var(--color-surface);
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.consent-checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.consent-checkbox:checked::after {
  content: "";
  width: 14px;
  height: 14px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='m3 8 3 3 7-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lock-note {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.lock-note svg {
  width: 14px;
  height: 14px;
}

.error {
  min-height: 20px;
  color: var(--color-accent-red);
  font-size: 14px;
  margin-bottom: 10px;
}

.form-shell.is-shaking {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  padding: 20px 0;
  color: inherit;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.faq-panel p {
  padding: 0 0 20px;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 2.1vw, 18px);
}

.faq-item.is-open .faq-icon {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-panel {
  opacity: 1;
}

.timer-box {
  border-radius: 16px;
  padding: 20px 16px;
  background: var(--color-timer-bg);
  color: var(--color-timer-text);
  text-align: center;
}

.timer-caption {
  font-size: 14px;
  opacity: 0.72;
  margin-bottom: 14px;
}

.timer {
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.timer-item {
  min-width: 60px;
  border-radius: 10px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.08);
}

.timer-value {
  display: block;
  font-size: clamp(26px, 5.2vw, 40px);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.56;
}

.timer-sep {
  font-size: 24px;
  opacity: 0.64;
}

.timer-note {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.72;
}

.timer-seconds.is-pulse {
  animation: pulse-second 0.3s ease;
}

@keyframes pulse-second {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.timer-box.is-flash {
  animation: timer-flash 0.5s ease;
}

@keyframes timer-flash {
  0% {
    background: var(--color-primary);
  }
  100% {
    background: var(--color-timer-bg);
  }
}

.price-main {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.price-main.dark {
  color: var(--color-text-on-dark);
}

.price-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.price-steps::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 2px;
  background: var(--color-border);
}

.price-step {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  display: grid;
  gap: 4px;
}

.price-step:last-child {
  margin-bottom: 0;
}

.price-step::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 5px;
  border: 2px solid var(--color-border);
  background: #fff;
}

.price-step .price-date {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.price-step .price-amount {
  font-size: 18px;
  font-weight: 600;
}

.price-step.current {
  background: var(--color-primary-light);
  border-radius: 12px;
  padding: 12px 12px 12px 34px;
}

.price-step.current::before {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(196, 135, 59, 0.15);
}

.price-step.past {
  opacity: 0.45;
}

.price-step.past .price-amount {
  text-decoration: line-through;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  position: relative;
  padding-left: 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: -14px;
  width: 2px;
  background: rgba(196, 135, 59, 0.25);
}

.timeline-item:last-child::after {
  display: none;
}

.payment-box {
  display: grid;
  gap: 18px;
}

.notice {
  border-radius: 12px;
  border: 1px solid rgba(184, 92, 92, 0.25);
  background: rgba(184, 92, 92, 0.08);
  color: #7f3030;
  font-size: 14px;
  padding: 12px 14px;
}

.notice.ok {
  border-color: rgba(90, 138, 106, 0.3);
  background: rgba(90, 138, 106, 0.12);
  color: #2d5f3f;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.with-sticky {
  padding-bottom: 96px;
}

.site-foot {
  background: var(--color-bg-dark);
  color: rgba(250, 247, 242, 0.6);
  padding: 32px 0;
}

.site-foot p {
  font-size: 14px;
  margin: 0;
}

.site-foot a {
  color: rgba(250, 247, 242, 0.88);
}

.site-foot__inner {
  display: grid;
  gap: 8px;
  text-align: center;
}

.single-center {
  min-height: calc(100svh - 56px);
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.single-card {
  width: min(620px, 100%);
}

.success-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(90, 138, 106, 0.15);
  color: var(--color-accent-green);
  display: grid;
  place-items: center;
  animation: pop-check 0.5s ease;
}

.success-check svg {
  width: 44px;
  height: 44px;
}

@keyframes pop-check {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

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

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

.reveal [data-stagger] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible [data-stagger] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .btn {
    width: 100%;
  }

  .row {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .site-head__inner {
    min-height: 64px;
  }

  .timer-item {
    min-width: 72px;
    padding: 12px 10px;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(1120px, 100% - 56px);
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .cases-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
  }

  .case-dots {
    display: none;
  }

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

  .timeline-item::after {
    display: none;
  }

  .expert-grid {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 32px;
  }
}

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

  .sticky-cta {
    display: none;
  }

  .with-sticky {
    padding-bottom: 0;
  }

  .btn {
    width: auto;
    min-width: 280px;
    padding: 18px 40px;
    font-size: 17px;
  }

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

  .timeline-item {
    padding: 34px 16px 0;
    text-align: center;
  }

  .timeline-item::before {
    left: calc(50% - 6px);
    top: 4px;
  }

  .timeline-item::after {
    display: block;
    left: 50%;
    top: 10px;
    width: calc(100% + 12px);
    height: 2px;
    transform: translateX(6px);
  }

  .timeline-item:last-child::after {
    display: none;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1120px, 100% - 80px);
  }
}

/* --- New blocks: base styles --- */

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

.format-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.format-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  font-size: clamp(16px, 2.2vw, 18px);
}

.format-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.format-meta {
  margin-top: 20px;
  font-size: clamp(16px, 2.2vw, 18px);
}

.format-meta p + p {
  margin-top: 8px;
}

.credentials-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: clamp(15px, 2vw, 17px);
}

.credentials-list li {
  position: relative;
  padding-left: 20px;
}

.credentials-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.coach-quote {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-left: 3px solid var(--color-primary);
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--color-text-secondary);
}

.coach-results {
  margin-top: 24px;
}

.coach-results h3 {
  margin-bottom: 12px;
}

.anti-promises {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.anti-promises h3 {
  margin-bottom: 14px;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.metric {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--color-primary-light);
}

.metric strong {
  display: block;
  font-size: clamp(24px, 4vw, 32px);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--color-primary);
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Home redesign V2: vivid volumetric glass style (scoped to / only). */
.page-home {
  --home-text: #ffffff;
  --home-text-soft: rgba(255, 255, 255, 0.78);
  --home-accent: #5ec4f0;
  --home-accent-strong: #7dd4f7;
  --home-border-soft: rgba(255, 255, 255, 0.14);
  --home-border-strong: rgba(255, 255, 255, 0.22);
  --home-shadow-1: 0 12px 30px rgba(4, 30, 52, 0.32);
  --home-shadow-2: 0 20px 46px rgba(3, 24, 44, 0.4);
  --home-shadow-3: 0 24px 54px rgba(2, 18, 36, 0.48);

  --space-section-y: 40px;
  --space-panel-pad: 20px;
  --space-card-pad: 16px;
  --space-stack: 10px;

  background:
    radial-gradient(ellipse 80% 60% at 15% 6%, rgba(70, 200, 255, 0.55) 0%, transparent 48%),
    radial-gradient(ellipse 60% 50% at 78% 3%, rgba(50, 180, 240, 0.45) 0%, transparent 42%),
    radial-gradient(ellipse 50% 35% at 6% 82%, rgba(40, 165, 225, 0.4) 0%, transparent 40%),
    radial-gradient(ellipse 40% 30% at 88% 65%, rgba(55, 190, 245, 0.3) 0%, transparent 38%),
    radial-gradient(ellipse 100% 80% at 50% 40%, rgba(15, 80, 130, 0.35) 0%, transparent 60%),
    linear-gradient(168deg, #1a7cb0 0%, #145a82 18%, #0c4668 38%, #072e4c 60%, #031d32 85%, #021524 100%);
  color: var(--home-text);
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
}

/* --- Ambient light orbs (fixed, behind content) --- */

.page-home::before,
.page-home::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.page-home::before {
  width: min(60vw, 900px);
  height: min(60vw, 900px);
  top: -220px;
  right: -140px;
  background:
    radial-gradient(circle at 38% 38%, rgba(80, 210, 255, 0.5) 0%, rgba(50, 180, 230, 0.22) 30%, transparent 62%);
  filter: blur(60px);
}

.page-home::after {
  width: min(50vw, 750px);
  height: min(50vw, 750px);
  bottom: -180px;
  left: -140px;
  background:
    radial-gradient(circle at 55% 38%, rgba(60, 200, 250, 0.45) 0%, rgba(35, 150, 200, 0.18) 32%, transparent 64%);
  filter: blur(60px);
}

.page-home main {
  position: relative;
  isolation: isolate;
}

/* --- Mid-page glow spots --- */

.page-home main::before,
.page-home main::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.page-home main::before {
  left: -220px;
  top: 380px;
  width: 700px;
  height: 450px;
  background:
    radial-gradient(50% 70% at 50% 50%, rgba(55, 190, 245, 0.32) 0%, transparent 68%);
  filter: blur(60px);
}

.page-home main::after {
  right: -200px;
  top: 1100px;
  width: 650px;
  height: 400px;
  background:
    radial-gradient(55% 65% at 50% 50%, rgba(45, 175, 235, 0.28) 0%, transparent 70%);
  filter: blur(60px);
}

.page-home a {
  color: var(--home-accent);
}

.page-home .container {
  width: min(1360px, 100% - 48px);
}

.page-home .site-head {
  background: rgba(8, 46, 72, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(2, 18, 36, 0.3);
  backdrop-filter: blur(22px);
}

.page-home .site-head.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.page-home .brand {
  color: #ffffff;
  letter-spacing: 0.02em;
  font-size: 16px;
}

.page-home .top-link {
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
}

.page-home .top-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.page-home .section {
  padding: var(--space-section-y) 0;
  background: transparent;
}

.page-home .section-alt,
.page-home .section-dark,
.page-home .section-primary {
  background: transparent;
  color: inherit;
}

.page-home .section .container {
  position: relative;
  z-index: 1;
}

.page-home .section--glass-soft .container,
.page-home .section--glass-strong .container,
.page-home .section--expert .container {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: var(--space-panel-pad);
  backdrop-filter: blur(20px);
}

.page-home .section--expert .container {
  overflow: hidden;
}

.page-home .section--glass-soft .container {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1) 0%, rgba(100, 190, 240, 0.12) 100%);
  box-shadow:
    var(--home-shadow-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-home .section--glass-strong .container,
.page-home .section--expert .container {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.12) 0%, rgba(80, 170, 230, 0.14) 100%),
    radial-gradient(circle at 100% 0%, rgba(60, 160, 220, 0.16) 0%, transparent 40%);
  box-shadow:
    var(--home-shadow-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-home .section--glass-strong .container::before,
.page-home .section--expert .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(60, 165, 225, 0.12) 0%, transparent 45%);
}

.page-home .section--plain .container {
  padding: 0;
}

.page-home .section-header {
  margin-bottom: calc(var(--space-stack) * 2);
}

.page-home .section-header h2 {
  color: #ffffff;
  letter-spacing: -0.025em;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1.08;
}

.page-home h1,
.page-home h3 {
  color: #ffffff;
}

.page-home h1 {
  font-size: clamp(44px, 6.2vw, 98px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.page-home h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
}

.page-home .section-header p,
.page-home .muted,
.page-home .kicker,
.page-home .hero-note {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .badge {
  border-radius: 999px;
  padding: 11px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
}

/* --- Min font-size overrides (floor: 16px) --- */

.page-home .kicker {
  font-size: 16px;
}

.page-home .case-card footer {
  font-size: 16px;
}

.page-home .field-label {
  font-size: 16px;
}

.page-home .checkbox-field {
  font-size: 16px;
}

.page-home .lock-note {
  font-size: 16px;
}

.page-home .error {
  font-size: 16px;
}

.page-home .credentials-list {
  font-size: clamp(16px, 2vw, 18px);
}

.page-home .site-foot p {
  font-size: 16px;
}

.page-home .metric span {
  font-size: 16px;
}

.page-home .notice {
  font-size: 16px;
}

.page-home .btn {
  border-radius: 999px;
  min-height: 58px;
  min-width: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-home .btn-primary {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #0a3a5c;
  font-weight: 700;
  box-shadow:
    0 14px 34px rgba(4, 30, 52, 0.3);
  z-index: 0;
}

.page-home .btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #5ec4f0, #2a8fc4, #5ec4f0);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.25s;
}

.page-home .btn-primary:hover {
  background: #ffffff;
  box-shadow:
    0 18px 40px rgba(4, 30, 52, 0.36);
  transform: translateY(-1px);
}

.page-home .btn-primary:hover::before {
  opacity: 1;
}

.page-home .btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.page-home .btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.page-home .btn:focus-visible,
.page-home .faq-trigger:focus-visible,
.page-home input:focus-visible,
.page-home .top-link:focus-visible,
.page-home .brand:focus-visible {
  outline-color: var(--home-accent-strong);
}

.page-home .section--hero {
  padding-top: 22px;
  padding-bottom: 0;
  min-height: calc(100svh - 64px);
  position: relative;
  overflow: hidden;
}

/* --- Decorative depth rings on hero --- */

.page-home .section--hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 820px);
  height: min(70vw, 820px);
  top: -18%;
  right: -12%;
  border-radius: 50%;
  border: 2px solid rgba(80, 210, 255, 0.12);
  background: radial-gradient(circle at 40% 40%, rgba(70, 200, 250, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.page-home .section--hero::after {
  content: "";
  position: absolute;
  width: min(40vw, 480px);
  height: min(40vw, 480px);
  bottom: 5%;
  left: -8%;
  border-radius: 50%;
  border: 1.5px solid rgba(80, 210, 255, 0.08);
  background: radial-gradient(circle at 60% 55%, rgba(60, 190, 245, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page-home .section--hero .hero-grid {
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  gap: 32px;
}

.page-home .hero-copy {
  display: grid;
  gap: calc(var(--space-stack) + 4px);
  min-width: 0;
}

.page-home .hero-copy .muted {
  max-width: 36ch;
  font-size: clamp(18px, 2.05vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .hero-actions {
  margin-top: calc(var(--space-stack) - 2px);
}

.page-home .hero-note {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .hero-media-shell {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(60, 170, 230, 0.12) 100%);
  padding: calc(var(--space-card-pad) + 2px);
  box-shadow:
    var(--home-shadow-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: grid;
  gap: calc(var(--space-stack) + 2px);
  grid-template-areas:
    "trust"
    "photo";
}

.page-home .hero-media {
  min-width: 0;
}

.page-home .hero-trust {
  grid-area: trust;
  gap: calc(var(--space-stack) - 1px);
}

.page-home .hero-trust-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: calc(var(--space-stack) - 1px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.75vw, 24px);
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(2, 18, 36, 0.2);
  min-width: 0;
}

.page-home .hero-trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--home-accent);
}

.page-home .hero-photo {
  grid-area: photo;
  border-radius: 28px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 3 / 4;
}

.page-home .hero-photo--open {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  box-shadow:
    0 20px 50px rgba(2, 18, 36, 0.5),
    0 0 80px rgba(50, 180, 240, 0.08);
}

.page-home .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  border-radius: 28px;
}

.page-home .card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--space-card-pad);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1) 0%, rgba(80, 180, 240, 0.12) 100%);
  box-shadow:
    var(--home-shadow-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.page-home .card[data-stagger]:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-2);
}

.page-home .feature-list,
.page-home .check-list,
.page-home .cross-list,
.page-home .principles {
  gap: calc(var(--space-stack) + 4px);
}

.page-home .feature-list li {
  border-radius: 18px;
  padding: 16px 16px 16px 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.page-home .feature-list li::before {
  left: 16px;
  top: 10px;
  color: var(--home-accent);
}

.page-home .check-list li,
.page-home .cross-list li,
.page-home .principles li {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.page-home .check-list .list-icon,
.page-home .principles .list-icon {
  color: var(--home-accent);
}

.page-home .cross-list .list-icon {
  color: rgba(255, 255, 255, 0.5);
}

.page-home .check-list + .kicker {
  margin-top: calc(var(--space-stack) * 2);
}

.page-home .kicker + .row {
  margin-top: calc(var(--space-stack) + 6px);
}

.page-home .method-grid .icon-wrap,
.page-home .include-grid .icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--home-accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-home .case-card .quote-decor {
  color: var(--home-accent);
  opacity: 0.18;
}

.page-home .case-card footer {
  color: rgba(255, 255, 255, 0.6);
}

.page-home .case-dot {
  border-color: rgba(255, 255, 255, 0.24);
}

.page-home .case-dot.is-active {
  border-color: var(--home-accent);
  background: var(--home-accent);
}

.page-home input[type="text"],
.page-home input[type="tel"],
.page-home input[type="email"] {
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-home input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.page-home input:focus {
  border-color: rgba(94, 196, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(94, 196, 240, 0.15);
}

.page-home .checkbox-field,
.page-home .lock-note,
.page-home .field-label,
.page-home .faq-panel p,
.page-home .faq-icon {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .consent-checkbox {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.page-home .consent-checkbox:checked {
  background: var(--home-accent);
  border-color: var(--home-accent);
}

.page-home .faq {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.page-home .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-home .faq-item:last-child {
  border-bottom: 0;
}

.page-home .faq-trigger {
  color: #ffffff;
}

.page-home .section-wave::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -6px;
  height: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, transparent 0%, rgba(94, 196, 240, 0.2) 50%, transparent 100%);
  filter: blur(5px);
}

.page-home .section--expert .expert-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.page-home .section--expert article {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.page-home .section--expert .section-header p {
  max-width: 34ch;
  line-height: 1.44;
}

.page-home .section--expert .principles {
  margin-top: calc(var(--space-stack) + 8px);
}

.page-home .coach-photo {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(2, 18, 36, 0.4);
  aspect-ratio: 3 / 4;
}

.page-home .coach-photo svg,
.page-home .coach-photo p {
  display: none;
}

.page-home .coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* --- .page-home overrides for new blocks --- */

.page-home .reasons-grid .reason-card {
  text-align: center;
}

.page-home .reasons-grid .reason-card .badge {
  margin-bottom: 10px;
}

.page-home .reframe {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.page-home .format-list {
  gap: 12px;
}

.page-home .format-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.page-home .format-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--home-accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-home .format-meta {
  color: rgba(255, 255, 255, 0.6);
}

.page-home .credentials-list {
  gap: 10px;
}

.page-home .credentials-list li::before {
  color: var(--home-accent);
}

.page-home .coach-quote {
  border-left-color: var(--home-accent);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .coach-results {
  margin-top: 20px;
}

.page-home .anti-promises {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.page-home .anti-promises h3 {
  color: #ffffff;
}

.page-home .test-drive-card h3 {
  color: #ffffff;
}

.page-home .metrics-bar {
  gap: 16px;
}

.page-home .metric {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 16px;
}

.page-home .metric strong {
  color: var(--home-accent);
}

.page-home .metric span {
  color: rgba(255, 255, 255, 0.65);
}

.page-home .section#final-cta .container {
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-panel-pad);
  background:
    linear-gradient(142deg, rgba(35, 120, 180, 0.55) 0%, rgba(18, 80, 135, 0.5) 62%, rgba(10, 55, 95, 0.5) 100%);
  color: #ffffff;
  box-shadow:
    var(--home-shadow-3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-home .section#final-cta h2,
.page-home .section#final-cta p {
  color: #ffffff;
}

.page-home .sticky-cta {
  background: rgba(8, 42, 68, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 20px rgba(2, 14, 28, 0.3);
  backdrop-filter: blur(14px);
}

.page-home .site-foot {
  background: rgba(4, 28, 48, 0.8);
  color: rgba(255, 255, 255, 0.7);
}

.page-home .site-foot a {
  color: #ffffff;
}

/* --- Navigation --- */

.page-home .site-head__inner {
  gap: 8px;
}

.page-home .site-nav {
  display: none;
}

.page-home .site-head__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.page-home .site-head__right .top-link {
  display: none;
}

.page-home .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: background 0.2s;
}

.page-home .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-home .btn-sm {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* --- Accent Number --- */

.page-home .accent-num {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 800;
  color: var(--home-accent);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

/* --- Hero Trust Compact --- */

.page-home .hero-trust-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-home .hero-trust-compact li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .hero-trust-compact li svg {
  color: var(--home-accent);
  flex-shrink: 0;
}

/* --- Stats Bar --- */

.page-home .section--stats {
  padding: 0 0 var(--space-section-y);
  margin-top: 24px;
}

.page-home .stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: var(--space-card-pad);
}

.page-home .stats-bar__title {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.page-home .stats-bar__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.page-home .stats-bar__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-home .stat-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.page-home .stat-ring svg {
  width: 100%;
  height: 100%;
}

.page-home .stat-ring__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 5;
}

.page-home .stat-ring__fill {
  fill: none;
  stroke: var(--home-accent);
  stroke-width: 5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}

.page-home .stat-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.page-home .stat-text {
  min-width: 0;
}

.page-home .stat-label {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 700;
  color: #ffffff;
}

.page-home .stat-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .stat-text p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .page-home .section--expert .coach-photo {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .page-home .section--audience .grid.two {
    gap: 16px;
  }

  .page-home .section--audience .card {
    padding: 18px 16px;
  }

  .page-home .section--audience .check-list,
  .page-home .section--audience .cross-list {
    margin-top: 10px !important;
    gap: 8px;
  }

  .page-home .section--audience .check-list li,
  .page-home .section--audience .cross-list li {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    padding: 12px 0;
  }

  .page-home .section--audience .check-list li:last-child,
  .page-home .section--audience .cross-list li:last-child {
    border-bottom: 0;
  }

  .page-home .section--method .method-grid .card {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "step icon"
      "title title"
      "text text";
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    row-gap: 10px;
  }

  .page-home .section--method .method-grid .card > .badge {
    grid-area: step;
    margin: 0;
    justify-self: start;
  }

  .page-home .section--method .method-grid .card > .icon-wrap {
    grid-area: icon;
    margin: 0;
    width: 56px;
    height: 56px;
    justify-self: start;
  }

  .page-home .section--method .method-grid .card > h3 {
    grid-area: title;
    margin-top: 4px;
  }

  .page-home .section--method .method-grid .card > .muted {
    grid-area: text;
  }
}

@media (min-width: 768px) {
  .page-home {
    --space-section-y: 52px;
    --space-panel-pad: 26px;
    --space-card-pad: 20px;
    --space-stack: 14px;
  }

  .page-home .container {
    width: min(1360px, 100% - 56px);
  }

  .page-home .site-nav {
    display: flex;
    gap: 4px;
  }

  .page-home .site-head__right .top-link {
    display: inline-flex;
  }

  .page-home .section--hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 32px;
    align-items: center;
  }

  .page-home .hero-photo {
    aspect-ratio: 3 / 4;
  }

  .page-home .stats-bar {
    grid-template-columns: minmax(200px, 0.35fr) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    padding: var(--space-panel-pad);
  }

  .page-home .stats-bar__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .section--expert .expert-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .page-home .coach-photo {
    max-width: 440px;
    margin: 0 auto;
  }

  .page-home .sticky-cta {
    display: none;
  }

  .page-home .with-sticky {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .page-home {
    --space-section-y: 68px;
    --space-panel-pad: 32px;
    --space-card-pad: 24px;
    --space-stack: 18px;
  }

  .page-home .container {
    width: min(1360px, 100% - 72px);
  }

  .page-home .section--hero {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .page-home .section--hero .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
    padding: 0;
  }

  .page-home .section--hero .hero-grid > * {
    min-width: 0;
  }

  .page-home h1 {
    font-size: clamp(44px, 4.2vw, 72px);
    line-height: 1.03;
  }

  .page-home .hero-copy .muted {
    max-width: 36ch;
    font-size: clamp(18px, 1.3vw, 20px);
    line-height: 1.4;
  }

  .page-home .hero-note {
    font-size: 16px;
  }

  .page-home .hero-actions {
    margin-top: 6px;
  }

  .page-home .hero-photo {
    aspect-ratio: 3 / 4;
  }

  .page-home .section--stats {
    margin-top: 16px;
  }

  .page-home .section--expert .expert-grid {
    grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
    gap: clamp(30px, 3.2vw, 44px);
  }

  .page-home .coach-photo {
    max-width: none;
    margin: 0;
  }

  .page-home .section--expert .section-header p {
    max-width: 36ch;
  }
}

@media (min-width: 1280px) {
  .page-home .container {
    width: min(1400px, 100% - 92px);
  }

  .page-home .section--hero .hero-grid {
    gap: 48px;
    padding: 0;
  }

  .page-home .accent-num {
    font-size: 1.7em;
  }

  .page-home .hero-trust-compact li {
    font-size: 16px;
    gap: 8px;
  }
}

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

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

  .reveal,
  .reveal [data-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Home V3: Soft Tactile 3D Wellness landing */
body.page-home {
  --home-bg: #f7f5f2;
  --home-ivory: #fffdfa;
  --home-mist: #eaf2f6;
  --home-mist-strong: #d6e6ec;
  --home-mint: #c7e9e0;
  --home-mint-deep: #76b4a6;
  --home-clay: #ffdcd3;
  --home-coral: #ff685c;
  --home-coral-hover: #f55449;
  --home-coral-pressed: #dd453e;
  --home-blue: #cde2f4;
  --home-ink: #1d2833;
  --home-ink-soft: #263644;
  --home-muted: #62717c;
  --home-line: rgba(29, 40, 51, 0.1);
  --home-focus: #5aa9e6;
  --home-radius-xl: 34px;
  --home-radius-lg: 24px;
  --home-radius-md: 18px;
  --home-shadow-soft: 0 24px 80px rgba(47, 76, 91, 0.16);
  --home-shadow-card: 0 18px 46px rgba(44, 70, 84, 0.13);
  --home-shadow-button: 0 14px 28px rgba(255, 104, 92, 0.34);
  background: var(--home-bg);
  color: var(--home-ink);
}

.page-home .landing-page {
  min-height: 100vh;
  padding: 2px 0 40px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(205, 226, 244, 0.9), transparent 30%),
    radial-gradient(circle at 78% 14%, rgba(199, 233, 224, 0.72), transparent 28%),
    linear-gradient(180deg, #edf5f8 0%, #f8f5f0 54%, #fffdfa 100%);
}

.page-home .home-container {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.page-home .hero-shell {
  position: relative;
  margin-top: 2px;
  padding: 20px 24px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--home-radius-xl);
  background:
    radial-gradient(circle at 60% 32%, rgba(255, 255, 255, 0.84), transparent 22%),
    linear-gradient(135deg, #eaf2f6 0%, #f6fbfb 43%, #edf4f0 100%);
  box-shadow: var(--home-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.page-home .hero-shell::before,
.page-home .hero-shell::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
}

.page-home .hero-shell::before {
  width: 360px;
  height: 360px;
  right: 18%;
  top: 150px;
  background: radial-gradient(circle, rgba(255, 220, 211, 0.48), transparent 68%);
}

.page-home .hero-shell::after {
  width: 440px;
  height: 260px;
  left: 26%;
  bottom: -130px;
  background: radial-gradient(ellipse, rgba(118, 180, 166, 0.26), transparent 70%);
}

.page-home .home-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 38px rgba(57, 78, 91, 0.1);
  backdrop-filter: blur(18px);
}

.page-home .home-header.scrolled {
  box-shadow: 0 18px 42px rgba(57, 78, 91, 0.14);
}

.page-home .home-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--home-ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.page-home .logo-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #ffffff 0 18%, var(--home-mint) 19% 48%, var(--home-mint-deep) 49% 100%);
  box-shadow: inset -6px -7px 12px rgba(66, 127, 118, 0.23), 0 10px 18px rgba(72, 130, 121, 0.16);
}

.page-home .logo-mark::before {
  width: 18px;
  height: 18px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-28deg);
}

.page-home .home-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(55, 73, 85, 0.08);
}

.page-home .home-nav a {
  color: var(--home-ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.page-home .home-nav a:hover {
  color: var(--home-coral);
}

.page-home .nav-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-mint-deep);
  box-shadow: 0 0 0 6px rgba(118, 180, 166, 0.14);
}

.page-home .home-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--home-coral), #ff806c);
  box-shadow: 0 12px 24px rgba(255, 104, 92, 0.24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
}

.page-home .home-menu-button {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--home-ink);
}

.page-home .home-menu-button span,
.page-home .home-menu-button::before,
.page-home .home-menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.page-home .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 42px 36px 0;
}

.page-home .hero-copy {
  display: grid;
  gap: 22px;
  max-width: 650px;
}

.page-home .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 35px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-coral), #ff7e67);
  box-shadow: 0 12px 24px rgba(255, 104, 92, 0.24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
}

.page-home .hero-title {
  max-width: 13ch;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(42px, 4.75vw, 70px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.page-home .hero-subtitle {
  max-width: 49ch;
  margin: 0;
  color: var(--home-ink-soft);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.48;
}

.page-home .home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  min-height: 64px;
  padding: 0 14px 0 34px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--home-coral), #ff806c);
  box-shadow: var(--home-shadow-button);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.page-home .home-cta:hover {
  background: linear-gradient(135deg, var(--home-coral-hover), #ff7563);
  box-shadow: 0 18px 32px rgba(255, 104, 92, 0.38);
  transform: translateY(-1px);
}

.page-home .home-cta:active {
  background: var(--home-coral-pressed);
  transform: translateY(0);
}

.page-home .home-cta:focus-visible,
.page-home .home-header a:focus-visible,
.page-home .home-nav a:focus-visible,
.page-home .explainer-toggle:focus-visible,
.page-home .input:focus-visible,
.page-home .checkbox:focus-visible {
  outline: 3px solid rgba(90, 169, 230, 0.52);
  outline-offset: 3px;
}

.page-home .arrow-circle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--home-coral);
  font-size: 22px;
  box-shadow: inset 0 -2px 0 rgba(29, 40, 51, 0.08);
}

.page-home .trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.page-home .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(44, 70, 84, 0.1);
  color: var(--home-ink-soft);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.15;
}

.page-home .chip-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.page-home .chip-icon--clock::before,
.page-home .chip-icon--clock::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: bottom center;
}

.page-home .chip-icon--clock::before {
  height: 8px;
  transform: translate(-50%, -100%) rotate(0deg);
}

.page-home .chip-icon--clock::after {
  height: 6px;
  transform: translate(-50%, -100%) rotate(120deg);
}

.page-home .chip-icon--leaf {
  border-radius: 64% 8% 64% 8%;
  transform: rotate(-22deg);
}

.page-home .chip-icon--gift {
  border-radius: 7px;
}

.page-home .chip-icon--gift::before,
.page-home .chip-icon--gift::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.page-home .chip-icon--gift::before {
  width: 1.8px;
  height: 18px;
}

.page-home .chip-icon--gift::after {
  width: 18px;
  height: 1.8px;
}

.page-home .hero-visual {
  position: relative;
  min-height: 440px;
}

.page-home .visual-stage {
  position: absolute;
  inset: 2% 1% 3% 0;
  overflow: hidden;
}

.page-home .plinth-main,
.page-home .plinth-side {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #d6e6ec 100%);
  box-shadow: inset 0 -18px 18px rgba(99, 140, 153, 0.15), 0 20px 38px rgba(76, 103, 116, 0.12);
}

.page-home .plinth-main {
  right: 18%;
  bottom: 5%;
  width: 330px;
  height: 92px;
}

.page-home .plinth-side {
  right: 41%;
  bottom: 12%;
  width: 170px;
  height: 50px;
}

.page-home .object-ribbon,
.page-home .object-ring,
.page-home .object-sphere {
  position: absolute;
  filter: drop-shadow(0 18px 24px rgba(63, 91, 105, 0.18));
}

.page-home .object-ribbon {
  left: 5%;
  top: 10%;
  width: 290px;
  height: 330px;
  border: 44px solid rgba(199, 233, 224, 0.92);
  border-left-width: 64px;
  border-bottom-color: rgba(167, 220, 211, 0.96);
  border-radius: 56% 44% 52% 48%;
  transform: rotate(24deg);
  mask: radial-gradient(circle at 51% 47%, transparent 0 38px, #000 39px);
  box-shadow: inset -20px -24px 30px rgba(100, 162, 151, 0.2), inset 22px 24px 34px rgba(255, 255, 255, 0.76);
}

.page-home .object-ring {
  right: 28%;
  top: 33%;
  width: 126px;
  height: 126px;
  border: 34px solid #ff9a83;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset -12px -14px 18px rgba(215, 90, 72, 0.22), inset 10px 10px 15px rgba(255, 255, 255, 0.58);
}

.page-home .object-sphere {
  right: 10%;
  top: 45%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #f6fbff 0 10%, #b9d8ee 36%, #87b3d4 100%);
  box-shadow: inset -16px -18px 18px rgba(61, 110, 146, 0.2), 0 18px 30px rgba(61, 110, 146, 0.16);
}

.page-home .leaf {
  position: absolute;
  right: 2%;
  width: 26px;
  height: 74px;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(135deg, #7eb581, #4a875f);
  transform-origin: bottom center;
  box-shadow: inset 6px 6px 10px rgba(255, 255, 255, 0.22);
}

.page-home .leaf-one {
  top: 21%;
  transform: rotate(-36deg);
}

.page-home .leaf-two {
  top: 31%;
  right: -1%;
  transform: rotate(-12deg);
}

.page-home .leaf-three {
  top: 39%;
  right: 6%;
  transform: rotate(-56deg);
}

.page-home .trainer-card {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  grid-template-rows: auto auto;
  width: min(330px, 48%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 54px rgba(44, 70, 84, 0.2);
  backdrop-filter: blur(16px);
}

.page-home .trainer-photo {
  width: 100%;
  height: 286px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 30%;
  background: #eef5f3;
}

.page-home .trainer-info {
  margin: -22px 14px 14px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 26px rgba(53, 72, 83, 0.12);
}

.page-home .trainer-name {
  margin: 0 0 4px;
  color: var(--home-ink);
  font-size: 20px;
  font-weight: 850;
}

.page-home .trainer-role,
.page-home .trainer-note {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.page-home .trainer-note {
  margin-top: 14px;
  max-width: 23ch;
}

.page-home .explainer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(520px, 1.72fr);
  gap: 24px;
  align-items: stretch;
  margin-top: -10px;
  padding: 24px 34px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--home-shadow-card);
  backdrop-filter: blur(16px);
}

.page-home .explainer-toggle {
  display: none;
}

.page-home .explainer-content {
  display: contents;
}

.page-home .explainer-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.page-home .explainer-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff 0 12%, var(--home-mint) 62%, #9fd1c6 100%);
  box-shadow: inset -12px -14px 18px rgba(90, 153, 143, 0.2), 0 14px 26px rgba(84, 139, 130, 0.16);
}

.page-home .explainer-icon::before {
  width: 38px;
  height: 20px;
  border: 2px solid var(--home-ink-soft);
  border-top: 0;
  border-radius: 0 0 38px 38px;
  content: "";
}

.page-home .explainer-icon::after {
  position: absolute;
  top: 20px;
  width: 2px;
  height: 16px;
  background: var(--home-ink-soft);
  box-shadow: -14px 8px 0 -0.4px var(--home-ink-soft), 14px 8px 0 -0.4px var(--home-ink-soft);
  content: "";
}

.page-home .section-kicker {
  display: inline-flex;
  margin: 0 0 7px;
  color: var(--home-coral);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-home .explainer h2,
.page-home .panel-title,
.page-home .form-title {
  margin: 0;
  color: var(--home-ink);
  font-weight: 850;
  letter-spacing: 0;
}

.page-home .explainer h2 {
  max-width: 16ch;
  font-size: 25px;
  line-height: 1.12;
}

.page-home .explainer p,
.page-home .card-text,
.page-home .form-subtitle,
.page-home .practice-meta,
.page-home .privacy-note {
  color: var(--home-ink-soft);
  line-height: 1.46;
}

.page-home .reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
}

.page-home .reason-chip {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(245, 251, 252, 0.95), rgba(236, 245, 243, 0.85));
  text-align: center;
}

.page-home .reason-chip:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 220, 211, 0.68), rgba(255, 255, 255, 0.82));
}

.page-home .reason-chip:nth-child(4) {
  background: linear-gradient(135deg, rgba(214, 230, 236, 0.92), rgba(255, 255, 255, 0.78));
}

.page-home .reason-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-soft);
  font-size: 22px;
  line-height: 1;
}

.page-home .reason-chip span:last-child {
  color: var(--home-ink-soft);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
}

.page-home .lower-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.08fr) minmax(320px, 0.82fr) minmax(330px, 0.9fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.page-home .method-panel,
.page-home .practices-panel,
.page-home .lead-form-card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--home-shadow-card);
  backdrop-filter: blur(16px);
}

.page-home .method-panel,
.page-home .practices-panel {
  padding: 22px;
}

.page-home .panel-title {
  font-size: 22px;
  line-height: 1.2;
}

.page-home .method-cards,
.page-home .practice-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.page-home .method-card,
.page-home .practice-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(224, 244, 239, 0.92), rgba(247, 253, 251, 0.9));
}

.page-home .method-card--muscle {
  background: linear-gradient(145deg, rgba(214, 230, 236, 0.94), rgba(247, 252, 255, 0.9));
}

.page-home .method-card--habit {
  background: linear-gradient(145deg, rgba(255, 220, 211, 0.9), rgba(255, 248, 244, 0.92));
}

.page-home .step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-soft);
  font-size: 18px;
  font-weight: 820;
}

.page-home .method-card h3,
.page-home .practice-card h3 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  margin: 22px 0 8px;
  color: var(--home-ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.page-home .card-text,
.page-home .practice-meta {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 13px;
}

.page-home .step-arrow {
  position: absolute;
  right: -15px;
  top: 88px;
  z-index: 3;
  color: var(--home-ink-soft);
  font-size: 25px;
  font-weight: 700;
}

.page-home .card-visual {
  position: absolute;
  right: -14px;
  bottom: -20px;
  width: 150px;
  height: 86px;
  opacity: 0.82;
}

.page-home .card-visual--wave {
  border: 22px solid rgba(157, 217, 207, 0.76);
  border-top: 0;
  border-radius: 8% 80% 52% 42%;
  transform: rotate(-12deg);
}

.page-home .card-visual--stones::before,
.page-home .card-visual--stones::after,
.page-home .card-visual--flag::before,
.page-home .card-visual--flag::after {
  position: absolute;
  content: "";
}

.page-home .card-visual--stones::before,
.page-home .card-visual--stones::after {
  left: 16px;
  right: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d5e7f6, #9fc3dc);
  box-shadow: inset -10px -10px 12px rgba(72, 120, 151, 0.16);
}

.page-home .card-visual--stones::before {
  bottom: 10px;
  height: 32px;
}

.page-home .card-visual--stones::after {
  left: 42px;
  right: 28px;
  bottom: 40px;
  height: 26px;
}

.page-home .card-visual--flag::before {
  left: 66px;
  bottom: 22px;
  width: 3px;
  height: 64px;
  border-radius: 999px;
  background: var(--home-coral);
}

.page-home .card-visual--flag::after {
  left: 69px;
  bottom: 66px;
  width: 50px;
  height: 30px;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, #ff816d, #ffb59e);
}

.page-home .practice-grid {
  grid-template-columns: 1fr;
}

.page-home .practice-card {
  min-height: 214px;
  background: linear-gradient(145deg, rgba(224, 244, 239, 0.94), rgba(255, 255, 255, 0.86));
}

.page-home .practice-card--blue {
  background: linear-gradient(145deg, rgba(214, 230, 236, 0.94), rgba(249, 253, 255, 0.9));
}

.page-home .practice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-soft);
  font-size: 23px;
}

.page-home .card-arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-ink);
  font-size: 20px;
  text-decoration: none;
}

.page-home .practice-card .card-visual {
  right: -26px;
  bottom: -38px;
  width: 168px;
  height: 116px;
}

.page-home .lead-form-card {
  padding: 28px;
}

.page-home .form-title {
  font-size: 24px;
  line-height: 1.18;
}

.page-home .form-subtitle {
  margin: 10px 0 22px;
  font-size: 14px;
}

.page-home .prechat-form {
  display: grid;
  gap: 13px;
}

.page-home .field {
  display: grid;
  gap: 6px;
}

.page-home .field-label {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 720;
}

.page-home .input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(29, 40, 51, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--home-ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.page-home .input::placeholder {
  color: rgba(98, 113, 124, 0.65);
}

.page-home .input:focus {
  border-color: var(--home-focus);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(90, 169, 230, 0.14);
  outline: none;
}

.page-home .input.is-filled {
  border-color: rgba(118, 180, 166, 0.55);
}

.page-home .input.is-error {
  border-color: rgba(255, 104, 92, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 104, 92, 0.1);
}

.page-home .checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: var(--home-ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.page-home .checkbox {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #2d93d8;
}

.page-home .form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--home-coral), #ff806c);
  box-shadow: var(--home-shadow-button);
  color: #ffffff;
  font-size: 16px;
  font-weight: 820;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, opacity 170ms ease;
}

.page-home .form-submit:hover {
  transform: translateY(-1px);
}

.page-home .form-submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.page-home .form-submit.is-success {
  background: #4f9d83;
  box-shadow: 0 14px 28px rgba(79, 157, 131, 0.28);
}

.page-home .privacy-note {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: start;
  margin: 13px 0 0;
  color: var(--home-muted);
  font-size: 12px;
}

.page-home .privacy-note::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.page-home .error {
  min-height: 20px;
  margin: 1px 0 0;
  color: #d94038;
  font-size: 13px;
  line-height: 1.35;
}

.page-home .reveal,
.page-home .reveal [data-stagger] {
  opacity: 1;
  transform: none;
}

.page-home .is-shaking {
  animation: homeShake 420ms ease;
}

@keyframes homeShake {
  0%,
  100% {
    transform: translateX(0);
  }
  22% {
    transform: translateX(-7px);
  }
  44% {
    transform: translateX(6px);
  }
  66% {
    transform: translateX(-4px);
  }
  88% {
    transform: translateX(3px);
  }
}

@media (max-width: 1180px) {
  .page-home .hero-content {
    grid-template-columns: 1fr;
  }

  .page-home .hero-title {
    max-width: 16ch;
  }

  .page-home .hero-visual {
    min-height: 390px;
  }

  .page-home .visual-stage {
    inset: 0;
  }

  .page-home .trainer-card {
    width: min(320px, 42%);
  }

  .page-home .explainer {
    grid-template-columns: 1fr;
  }

  .page-home .explainer-content {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 22px;
  }

  .page-home .lower-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .page-home .lead-form-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .page-home .home-container {
    width: min(100% - 32px, 760px);
  }

  .page-home .hero-shell {
    padding-inline: 18px;
  }

  .page-home .home-header {
    display: flex;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px 16px;
  }

  .page-home .home-nav,
  .page-home .home-header__cta {
    display: none;
  }

  .page-home .home-menu-button {
    display: block;
  }

  .page-home .hero-content {
    padding: 32px 14px 0;
  }

  .page-home .method-cards {
    grid-template-columns: 1fr;
  }

  .page-home .step-arrow {
    display: none;
  }

  .page-home .lower-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-home .landing-page {
    padding: 0 0 22px;
    background:
      radial-gradient(circle at 0% 0%, rgba(205, 226, 244, 0.98), transparent 44%),
      linear-gradient(180deg, #eef6f8 0%, #f8f5f0 62%, #fffdfa 100%);
  }

  .page-home .home-container {
    width: min(100% - 24px, 430px);
  }

  .page-home .hero-shell {
    width: 100%;
    margin-top: 0;
    padding: 14px 12px 20px;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 44px rgba(47, 76, 91, 0.13);
  }

  .page-home .home-header {
    min-height: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
  }

  .page-home .home-logo {
    gap: 10px;
    font-size: 15px;
  }

  .page-home .logo-mark {
    width: 34px;
    height: 34px;
  }

  .page-home .logo-mark::before {
    width: 13px;
    height: 13px;
    border-width: 6px;
  }

  .page-home .hero-content {
    gap: 18px;
    padding: 24px 8px 0;
  }

  .page-home .hero-copy {
    gap: 16px;
  }

  .page-home .hero-badge {
    min-height: 30px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .page-home .hero-title {
    max-width: 13ch;
    font-size: 30px;
    line-height: 1.09;
  }

  .page-home .hero-subtitle {
    max-width: 31ch;
    font-size: 14px;
    line-height: 1.45;
  }

  .page-home .home-cta {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 10px 0 20px;
    font-size: 14px;
  }

  .page-home .arrow-circle {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .page-home .trust-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .page-home .trust-chip {
    display: grid;
    min-height: 56px;
    justify-items: center;
    gap: 4px;
    padding: 8px 5px;
    border-radius: 12px;
    font-size: 10px;
    text-align: center;
  }

  .page-home .chip-icon {
    width: 20px;
    height: 20px;
  }

  .page-home .hero-visual {
    min-height: 218px;
  }

  .page-home .visual-stage {
    inset: 0 -6px 0 0;
  }

  .page-home .plinth-main {
    right: 4%;
    bottom: 0;
    width: 176px;
    height: 42px;
  }

  .page-home .plinth-side {
    right: 36%;
    bottom: 22px;
    width: 100px;
    height: 30px;
  }

  .page-home .object-ribbon {
    left: 26%;
    top: 44px;
    width: 116px;
    height: 138px;
    border-width: 20px;
    border-left-width: 27px;
    mask: radial-gradient(circle at 51% 47%, transparent 0 16px, #000 17px);
  }

  .page-home .object-ring {
    right: 7%;
    top: 82px;
    width: 58px;
    height: 58px;
    border-width: 15px;
  }

  .page-home .object-sphere {
    right: 29%;
    top: 105px;
    width: 58px;
    height: 58px;
  }

  .page-home .leaf {
    display: none;
  }

  .page-home .trainer-card {
    left: 0;
    right: auto;
    top: 12px;
    display: grid;
    grid-template-columns: 76px 1fr;
    width: min(250px, 74%);
    min-height: 108px;
    border-radius: 17px;
  }

  .page-home .trainer-photo {
    height: 100%;
    min-height: 108px;
    aspect-ratio: auto;
  }

  .page-home .trainer-info {
    margin: 0;
    padding: 14px 12px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
  }

  .page-home .trainer-name {
    font-size: 13px;
  }

  .page-home .trainer-role,
  .page-home .trainer-note {
    font-size: 10px;
    line-height: 1.35;
  }

  .page-home .trainer-note {
    margin-top: 8px;
  }

  .page-home .explainer {
    margin-top: 16px;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
  }

  .page-home .explainer-toggle {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 0;
    background: rgba(255, 255, 255, 0.78);
    color: var(--home-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 820;
    text-align: left;
  }

  .page-home .explainer-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .page-home .explainer.is-open .explainer-chevron {
    transform: rotate(225deg);
  }

  .page-home .explainer-content {
    display: none;
    padding: 16px;
  }

  .page-home .explainer.is-open .explainer-content {
    display: grid;
    gap: 16px;
  }

  .page-home .explainer-copy {
    grid-template-columns: auto 1fr;
  }

  .page-home .explainer-icon {
    width: 58px;
    height: 58px;
  }

  .page-home .explainer h2 {
    max-width: none;
    font-size: 18px;
  }

  .page-home .explainer p {
    margin-top: 6px;
    font-size: 13px;
  }

  .page-home .reason-grid {
    grid-template-columns: 1fr;
  }

  .page-home .reason-chip {
    grid-template-columns: 42px 1fr;
    min-height: 62px;
    justify-items: start;
    text-align: left;
  }

  .page-home .lower-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .page-home .method-panel,
  .page-home .practices-panel,
  .page-home .lead-form-card {
    border-radius: 20px;
  }

  .page-home .method-panel,
  .page-home .practices-panel,
  .page-home .lead-form-card {
    padding: 18px;
  }

  .page-home .panel-title,
  .page-home .form-title {
    font-size: 18px;
  }

  .page-home .method-card,
  .page-home .practice-card {
    min-height: 150px;
    padding: 16px;
  }

  .page-home .method-card h3,
  .page-home .practice-card h3 {
    margin-top: 14px;
    max-width: 18ch;
    font-size: 15px;
  }

  .page-home .card-text,
  .page-home .practice-meta,
  .page-home .form-subtitle {
    font-size: 12px;
  }

  .page-home .card-visual {
    right: -34px;
    bottom: -42px;
    transform: scale(0.78);
  }

  .page-home .practice-card .card-visual {
    opacity: 0.58;
  }

  .page-home .input {
    min-height: 50px;
  }
}

/* Current home markup compatibility hooks */
.page-home .home-logo__mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #ffffff 0 18%, var(--home-mint) 19% 48%, var(--home-mint-deep) 49% 100%);
  box-shadow: inset -6px -7px 12px rgba(66, 127, 118, 0.23), 0 10px 18px rgba(72, 130, 121, 0.16);
}

.page-home .home-logo__mark::before {
  width: 18px;
  height: 18px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-28deg);
}

.page-home .home-nav__link.is-active {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-home .home-nav__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-mint-deep);
  box-shadow: 0 0 0 6px rgba(118, 180, 166, 0.14);
}

.page-home .home-burger {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--home-ink);
}

.page-home .home-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.page-home .hero-badge svg,
.page-home .trust-chip svg,
.page-home .reason-chip svg,
.page-home .privacy-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .hero-badge svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  stroke-width: 2;
}

.page-home .trust-chip svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.page-home .object-leaf {
  position: absolute;
  right: 2%;
  width: 26px;
  height: 74px;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(135deg, #7eb581, #4a875f);
  box-shadow: inset 6px 6px 10px rgba(255, 255, 255, 0.22);
  transform-origin: bottom center;
}

.page-home .object-leaf-a {
  top: 21%;
  transform: rotate(-36deg);
}

.page-home .object-leaf-b {
  top: 34%;
  right: -1%;
  transform: rotate(-12deg);
}

.page-home .explainer-icon svg {
  display: none;
}

.page-home .reason-chip svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-soft);
  stroke-width: 1.8;
}

.page-home .method-card--blue {
  background: linear-gradient(145deg, rgba(214, 230, 236, 0.94), rgba(247, 252, 255, 0.9));
}

.page-home .method-card--clay {
  background: linear-gradient(145deg, rgba(255, 220, 211, 0.9), rgba(255, 248, 244, 0.92));
}

.page-home .method-card p,
.page-home .practice-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 13px;
  line-height: 1.46;
}

.page-home .method-cards > .step-arrow {
  display: none;
}

.page-home .practice-card p + p {
  margin-top: 4px;
}

.page-home .practice-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 156px;
  height: 92px;
  border: 20px solid rgba(157, 217, 207, 0.42);
  border-top: 0;
  border-radius: 10% 78% 52% 40%;
  content: "";
  opacity: 0.72;
  transform: rotate(-12deg);
}

.page-home .practice-card--blue::after {
  border-color: rgba(159, 195, 220, 0.42);
}

.page-home .card-visual--stack::before,
.page-home .card-visual--stack::after {
  position: absolute;
  left: 16px;
  right: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d5e7f6, #9fc3dc);
  box-shadow: inset -10px -10px 12px rgba(72, 120, 151, 0.16);
  content: "";
}

.page-home .card-visual--stack::before {
  bottom: 10px;
  height: 32px;
}

.page-home .card-visual--stack::after {
  left: 42px;
  right: 28px;
  bottom: 40px;
  height: 26px;
}

.page-home .practice-icon::before {
  display: block;
  width: 25px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  content: "";
}

.page-home .practice-icon--person::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 42% 42%;
}

.page-home .field label {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 720;
}

.page-home .input,
.page-home input.input[type="text"],
.page-home input.input[type="tel"],
.page-home input.input[type="email"] {
  border-color: rgba(29, 40, 51, 0.24);
  background: #f9fcfd;
  color: var(--home-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 14px rgba(44, 70, 84, 0.04);
}

.page-home .privacy-note::before {
  display: none;
}

.page-home .privacy-note svg {
  width: 18px;
  height: 18px;
  color: var(--home-muted);
  stroke-width: 2;
}

@media (max-width: 920px) {
  .page-home .home-burger {
    display: block;
  }
}

@media (min-width: 641px) {
  .page-home .explainer {
    display: block;
  }

  .page-home .explainer-content {
    display: grid;
    grid-template-columns: 86px minmax(180px, 0.66fr) minmax(520px, 1.45fr);
    gap: 20px;
    align-items: center;
  }

  .page-home .explainer-copy {
    display: block;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .page-home .explainer-content {
    grid-template-columns: 86px 1fr;
  }

  .page-home .reason-grid {
    grid-column: 1 / -1;
  }
}

@media (min-width: 921px) and (max-width: 1320px) {
  .page-home .lower-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  }

  .page-home .method-panel,
  .page-home .practices-panel {
    grid-column: 1;
  }

  .page-home .lead-form-card {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

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

  .page-home .practice-card {
    min-height: 220px;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .page-home .method-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .method-card {
    min-height: 250px;
  }

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

  .page-home .practice-card {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .page-home .home-logo__mark {
    width: 34px;
    height: 34px;
  }

  .page-home .home-logo__mark::before {
    width: 13px;
    height: 13px;
    border-width: 6px;
  }

  .page-home .object-leaf {
    display: none;
  }

  .page-home .explainer-chevron {
    font-size: 0;
  }

  .page-home .reason-chip svg {
    width: 42px;
    height: 42px;
  }
}

/* Home V4: long-form Soft Tactile 3D landing recovery */
body.page-home {
  --home-bg-page: #f7f5f2;
  --home-bg-mist: #eaf2f6;
  --home-blue-soft: #d6e6ec;
  --home-mint: #c7e9e0;
  --home-mint-deep: #7fb7a9;
  --home-clay: #ffdcd3;
  --home-coral: #ff685c;
  --home-coral-hover: #f55449;
  --home-coral-pressed: #dd453e;
  --home-ivory: #f7f5f2;
  --home-white: #fff;
  --home-ink: #1d2833;
  --home-ink-2: #263644;
  --home-muted: #62717c;
  --home-line: rgba(29, 40, 51, 0.1);
  --home-line-strong: rgba(29, 40, 51, 0.16);
  --home-focus: #5aa9e6;
  --home-success: #4faf7b;
  --home-radius-sm: 12px;
  --home-radius-md: 16px;
  --home-radius-lg: 22px;
  --home-radius-xl: 28px;
  --home-radius-2xl: 34px;
  --home-radius-pill: 999px;
  --home-shadow-soft: 0 16px 48px rgba(29, 40, 51, 0.1);
  --home-shadow-card: 0 18px 42px rgba(29, 40, 51, 0.12), 0 2px 8px rgba(29, 40, 51, 0.06);
  --home-shadow-chip: 0 10px 28px rgba(29, 40, 51, 0.1);
  --home-shadow-button: 0 12px 26px rgba(255, 104, 92, 0.32);
  --home-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 2%, rgba(199, 233, 224, 0.48) 0, rgba(199, 233, 224, 0) 28%),
    radial-gradient(circle at 9% 5%, rgba(214, 230, 236, 0.96) 0, rgba(214, 230, 236, 0) 36%),
    linear-gradient(180deg, #eaf2f6 0%, #f7f5f2 32%, #f7f5f2 100%);
  color: var(--home-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home button,
.page-home input {
  font: inherit;
}

.page-home svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .landing-page {
  position: relative;
  z-index: 1;
  display: flow-root;
  padding: 18px 0 72px;
}

.page-home .home-container {
  width: min(calc(100% - 48px), 1360px);
  margin-inline: auto;
}

.page-home .hero-shell {
  position: relative;
  min-height: auto;
  margin-top: 0;
  padding: 20px 24px 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--home-radius-2xl);
  background:
    radial-gradient(circle at 64% 36%, rgba(199, 233, 224, 0.58) 0, rgba(199, 233, 224, 0) 35%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 39%),
    linear-gradient(135deg, #eaf2f6 0%, #ddecf1 52%, #eaf2f6 100%);
  box-shadow: 0 28px 70px rgba(29, 40, 51, 0.11);
}

.page-home .home-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--home-radius-2xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
  backdrop-filter: blur(18px);
}

.page-home .home-logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.page-home .home-logo__mark {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff 0 12%, rgba(255, 255, 255, 0) 13%),
    conic-gradient(from 35deg, #7fb7a9 0 285deg, rgba(127, 183, 169, 0.18) 285deg 360deg);
  box-shadow: 0 12px 24px rgba(74, 121, 110, 0.2), inset 0 0 0 9px rgba(255, 255, 255, 0.62);
}

.page-home .home-logo__mark::after {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--home-bg-mist);
  content: "";
}

.page-home .home-nav {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 52px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--home-radius-pill);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 26px rgba(29, 40, 51, 0.08), var(--home-shadow-inset);
}

.page-home .home-nav__link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: var(--home-radius-pill);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.page-home .home-nav__link.is-active {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 20px rgba(29, 40, 51, 0.08);
}

.page-home .home-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-mint-deep);
}

.page-home .home-header__cta,
.page-home .home-cta,
.page-home .section-cta,
.page-home .form-submit,
.page-home .sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--home-radius-pill);
  background: var(--home-coral);
  color: #fff;
  box-shadow: var(--home-shadow-button);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.page-home .home-header__cta {
  justify-self: end;
  padding: 0 24px;
  font-size: 14px;
}

.page-home .home-cta {
  gap: 14px;
  width: max-content;
  max-width: 100%;
  min-height: 58px;
  padding: 0 13px 0 28px;
  font-size: 17px;
}

.page-home .section-cta {
  min-width: 238px;
  padding: 0 24px;
  font-size: 15px;
}

.page-home .home-header__cta:hover,
.page-home .home-cta:hover,
.page-home .section-cta:hover,
.page-home .form-submit:hover,
.page-home .sticky-cta:hover {
  background: var(--home-coral-hover);
  box-shadow: 0 16px 34px rgba(255, 104, 92, 0.38);
  transform: translateY(-1px);
}

.page-home .home-header__cta:active,
.page-home .home-cta:active,
.page-home .section-cta:active,
.page-home .form-submit:active,
.page-home .sticky-cta:active {
  background: var(--home-coral-pressed);
  transform: translateY(0);
}

.page-home .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--home-coral);
  font-size: 24px;
  line-height: 1;
}

.page-home .home-burger {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--home-ink);
}

.page-home .home-burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
}

.page-home .hero-content {
  display: grid;
  grid-template-columns: minmax(560px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: 44px 36px 0;
}

.page-home .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.page-home .hero-badge,
.page-home .eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: var(--home-radius-pill);
  background: var(--home-coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(255, 104, 92, 0.22);
}

.page-home .eyebrow {
  background: rgba(127, 183, 169, 0.18);
  color: #3e766a;
  box-shadow: none;
}

.page-home .hero-badge svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.page-home .hero-title {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 3.35vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-home .hero-subtitle {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--home-ink-2);
  font-size: 18px;
  line-height: 1.45;
}

.page-home .hero-actions {
  display: grid;
  gap: 10px;
  align-items: start;
  margin-top: 26px;
}

.page-home .hero-action-note {
  max-width: 370px;
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.4;
}

.page-home .trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .trust-chip {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--home-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  color: var(--home-ink);
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.15;
  backdrop-filter: blur(14px);
}

.page-home .trust-chip svg {
  width: 24px;
  height: 24px;
  color: var(--home-ink-2);
  stroke-width: 1.9;
}

.page-home .hero-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.page-home .visual-stage {
  position: absolute;
  inset: 32px 6px 0 0;
  overflow: hidden;
  border-radius: var(--home-radius-2xl);
}

.page-home .plinth {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(214, 230, 236, 0.78));
  box-shadow: 0 18px 40px rgba(29, 40, 51, 0.12), inset 0 1px 0 #fff;
}

.page-home .plinth-main {
  right: 118px;
  bottom: 62px;
  width: 360px;
  height: 124px;
}

.page-home .plinth-side {
  right: 28px;
  bottom: 80px;
  width: 168px;
  height: 74px;
  background: linear-gradient(180deg, #d6e6ec, #b9d4df);
}

.page-home .object {
  position: absolute;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(29, 40, 51, 0.13));
}

.page-home .object-ribbon {
  right: 270px;
  bottom: 114px;
  width: 220px;
  height: 280px;
  border: 48px solid rgba(154, 207, 197, 0.72);
  border-top-color: rgba(218, 242, 237, 0.95);
  border-right-color: rgba(111, 169, 158, 0.62);
  border-radius: 52% 48% 55% 45%;
  transform: rotate(-28deg);
}

.page-home .object-ring {
  right: 176px;
  bottom: 168px;
  width: 136px;
  height: 136px;
  border: 33px solid #ff887c;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset -10px -10px 22px rgba(174, 58, 48, 0.16), 0 18px 32px rgba(255, 104, 92, 0.22);
}

.page-home .object-sphere {
  right: 60px;
  bottom: 146px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff 0 9%, rgba(255, 255, 255, 0) 10%),
    linear-gradient(135deg, #d9efff, #93bdda);
  box-shadow: inset -18px -18px 24px rgba(48, 96, 127, 0.16), 0 22px 38px rgba(29, 40, 51, 0.13);
}

.page-home .object-leaf {
  right: 6px;
  width: 32px;
  height: 96px;
  border-radius: 72% 0 72% 0;
  background: linear-gradient(135deg, #87ba81, #4a875f);
  box-shadow: inset 7px 7px 12px rgba(255, 255, 255, 0.2);
  transform-origin: bottom center;
}

.page-home .object-leaf-a {
  top: 130px;
  transform: rotate(-36deg);
}

.page-home .object-leaf-b {
  top: 218px;
  right: -8px;
  transform: rotate(-14deg);
}

.page-home .trainer-card {
  position: absolute;
  z-index: 5;
  right: 28px;
  top: 22px;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  width: min(460px, 78%);
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--home-radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
  backdrop-filter: blur(18px);
}

.page-home .trainer-photo {
  width: 132px;
  height: 174px;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 16%;
  box-shadow: 0 16px 28px rgba(29, 40, 51, 0.14);
}

.page-home .trainer-info {
  min-width: 0;
}

.page-home .trainer-name {
  margin: 0;
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.page-home .trainer-role,
.page-home .trainer-note {
  margin: 8px 0 0;
  color: var(--home-ink-2);
  font-size: 14px;
  line-height: 1.45;
}

.page-home .trainer-note {
  color: var(--home-muted);
}

.page-home .hero-mini-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
  backdrop-filter: blur(14px);
}

.page-home .hero-mini-card--practice {
  left: 34px;
  bottom: 64px;
}

.page-home .hero-mini-card--form {
  right: 34px;
  bottom: 20px;
}

.page-home .mini-card-kicker {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
}

.page-home .hero-mini-card strong {
  color: var(--home-ink);
  font-size: 16px;
  line-height: 1.2;
}

.page-home .hero-mini-card span,
.page-home .mini-card-link {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.35;
}

.page-home .mini-card-link {
  width: max-content;
  color: var(--home-coral);
  font-weight: 800;
}

.page-home .landing-section {
  margin-top: 72px;
}

.page-home .section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 24px;
}

.page-home .section-head--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  max-width: none;
}

.page-home .section-title,
.page-home .explainer-copy h2,
.page-home .final-card h2 {
  margin: 0;
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-home .section-subtitle {
  max-width: 680px;
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.55;
}

.page-home .soft-card,
.page-home .explainer,
.page-home .method-panel,
.page-home .practices-panel,
.page-home .format-card,
.page-home .trainer-profile,
.page-home .lead-form-layout,
.page-home .faq-list,
.page-home .final-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--home-radius-2xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
  backdrop-filter: blur(16px);
}

.page-home .soft-card {
  padding: 22px;
}

.page-home .pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-home .pain-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 118px;
}

.page-home .pain-card p {
  margin: 0;
  color: var(--home-ink-2);
  font-size: 15px;
  line-height: 1.48;
}

.page-home .card-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--home-mint-deep);
  box-shadow: 0 0 0 8px rgba(127, 183, 169, 0.14);
}

.page-home .explainer {
  display: block;
  padding: 24px;
}

.page-home .explainer-toggle {
  display: none;
}

.page-home .explainer-content {
  display: grid;
  grid-template-columns: 92px minmax(260px, 0.72fr) minmax(520px, 1.18fr);
  gap: 22px;
  align-items: center;
}

.page-home .explainer-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 24%, #fff, var(--home-mint));
  box-shadow: var(--home-shadow-chip), inset -12px -12px 22px rgba(90, 157, 144, 0.14);
  color: var(--home-ink);
}

.page-home .explainer-icon svg {
  display: block;
  width: 44px;
  height: 44px;
  stroke-width: 1.8;
}

.page-home .explainer-copy p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.5;
}

.page-home .reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-home .reason-chip {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(29, 40, 51, 0.06);
  border-radius: 22px;
  background: rgba(247, 251, 252, 0.76);
  color: var(--home-ink);
}

.page-home .reason-chip svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-2);
  stroke-width: 1.8;
}

.page-home .reason-chip span {
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.page-home .method-panel,
.page-home .practices-panel {
  padding: 28px;
}

.page-home .method-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.page-home .method-card,
.page-home .practice-card {
  position: relative;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
}

.page-home .method-card--mint,
.page-home .practice-card--mint {
  background: linear-gradient(145deg, rgba(199, 233, 224, 0.96), rgba(241, 252, 249, 0.92));
}

.page-home .method-card--blue,
.page-home .practice-card--blue {
  background: linear-gradient(145deg, rgba(214, 230, 236, 0.96), rgba(247, 252, 255, 0.92));
}

.page-home .method-card--clay {
  background: linear-gradient(145deg, rgba(255, 220, 211, 0.94), rgba(255, 248, 244, 0.94));
}

.page-home .step-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(29, 40, 51, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--home-ink);
  font-weight: 800;
}

.page-home .method-card h3,
.page-home .practice-card h3,
.page-home .audience-card h3,
.page-home .anti-card h3,
.page-home .form-title,
.page-home .quote-card strong {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.page-home .method-card p,
.page-home .practice-card p {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  color: var(--home-ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.page-home .method-cards > .step-arrow,
.page-home .step-arrow {
  display: none;
}

.page-home .card-visual {
  position: absolute;
  right: -24px;
  bottom: -20px;
  width: 170px;
  height: 118px;
  opacity: 0.78;
}

.page-home .card-visual--wave {
  border: 24px solid rgba(127, 183, 169, 0.38);
  border-top: 0;
  border-radius: 8% 80% 52% 42%;
  transform: rotate(-13deg);
}

.page-home .card-visual--stack::before,
.page-home .card-visual--stack::after {
  position: absolute;
  left: 18px;
  right: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d5e7f6, #9fc3dc);
  box-shadow: inset -10px -10px 12px rgba(72, 120, 151, 0.16);
  content: "";
}

.page-home .card-visual--stack::before {
  bottom: 12px;
  height: 34px;
}

.page-home .card-visual--stack::after {
  left: 44px;
  right: 30px;
  bottom: 46px;
  height: 27px;
}

.page-home .card-visual--flag {
  right: 14px;
  bottom: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb3a8, #ff786d);
}

.page-home .card-visual--flag::before {
  position: absolute;
  left: 34px;
  top: -46px;
  width: 3px;
  height: 66px;
  border-radius: 2px;
  background: var(--home-coral);
  content: "";
}

.page-home .card-visual--flag::after {
  position: absolute;
  left: 36px;
  top: -44px;
  width: 42px;
  height: 30px;
  border-radius: 2px 18px 18px 2px;
  background: var(--home-coral);
  content: "";
}

.page-home .result-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1fr) minmax(280px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.page-home .result-copy {
  align-self: center;
}

.page-home .result-card,
.page-home .anti-card {
  padding: 26px;
}

.page-home .check-list,
.page-home .anti-card ul,
.page-home .audience-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .check-list li,
.page-home .anti-card li,
.page-home .audience-card li {
  position: relative;
  padding-left: 28px;
  color: var(--home-ink-2);
  font-size: 15px;
  line-height: 1.5;
}

.page-home .check-list li::before,
.page-home .audience-card--yes li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(79, 175, 123, 0.16);
  color: var(--home-success);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
}

.page-home .anti-card,
.page-home .audience-card--no {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--home-radius-xl);
  background: linear-gradient(145deg, rgba(255, 220, 211, 0.52), rgba(255, 255, 255, 0.78));
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
}

.page-home .anti-card h3 {
  margin-top: 0;
}

.page-home .anti-card li::before,
.page-home .audience-card--no li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 104, 92, 0.12);
  color: var(--home-coral);
  font-size: 12px;
  font-weight: 900;
  content: "!";
}

.page-home .result-section .section-cta {
  margin-top: 20px;
}

.page-home .practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-home .practice-card {
  min-height: 300px;
}

.page-home .practice-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 172px;
  height: 102px;
  border: 22px solid rgba(157, 217, 207, 0.42);
  border-top: 0;
  border-radius: 10% 78% 52% 40%;
  content: "";
  opacity: 0.72;
  transform: rotate(-12deg);
}

.page-home .practice-card--blue::after {
  border-color: rgba(159, 195, 220, 0.42);
}

.page-home .practice-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-2);
}

.page-home .practice-icon::before {
  display: block;
  width: 25px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  content: "";
}

.page-home .practice-icon--person::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 42% 42%;
}

.page-home .practice-label {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
}

.page-home .card-arrow {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-ink);
  font-size: 22px;
}

.page-home .audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-home .audience-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--home-radius-2xl);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
}

.page-home .audience-card--yes {
  background: linear-gradient(145deg, rgba(199, 233, 224, 0.72), rgba(255, 255, 255, 0.78));
}

.page-home .audience-card h3 {
  margin: 0 0 18px;
}

.page-home .format-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(460px, 1fr);
  gap: 26px;
  padding: 28px;
}

.page-home .format-copy {
  align-self: center;
}

.page-home .format-steps {
  display: grid;
  gap: 12px;
}

.page-home .format-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(29, 40, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.page-home .format-step span {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 48px;
  border-radius: 16px;
  background: var(--home-bg-mist);
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 900;
}

.page-home .format-step p {
  margin: 0;
  color: var(--home-ink-2);
  font-size: 14px;
  line-height: 1.45;
}

.page-home .trainer-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(460px, 1fr);
  gap: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 233, 224, 0.62), rgba(199, 233, 224, 0) 34%),
    rgba(255, 255, 255, 0.72);
}

.page-home .trainer-portrait-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #eaf2f6, #fff);
  box-shadow: inset 0 1px 0 #fff, 0 18px 34px rgba(29, 40, 51, 0.12);
}

.page-home .trainer-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 10%;
}

.page-home .portrait-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--home-ink);
  box-shadow: var(--home-shadow-chip);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.page-home .trainer-proof {
  align-self: center;
}

.page-home .trainer-quote {
  margin: 18px 0 0;
  color: var(--home-ink-2);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.page-home .proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.page-home .proof-chip {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(29, 40, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.page-home .proof-chip strong {
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.page-home .proof-chip span {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.35;
}

.page-home .review-metric {
  justify-self: end;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(199, 233, 224, 0.62);
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
}

.page-home .review-metric strong {
  color: var(--home-ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.page-home .review-metric span {
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
}

.page-home .reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-home .quote-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--home-radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
}

.page-home .quote-card p {
  margin: 0;
  color: var(--home-ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.page-home .quote-card strong {
  display: block;
  margin-top: 18px;
  color: var(--home-ink);
}

.page-home .case-dots {
  display: none;
}

.page-home .lead-form-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 520px);
  gap: 28px;
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 10% 15%, rgba(199, 233, 224, 0.64), rgba(199, 233, 224, 0) 35%),
    radial-gradient(circle at 88% 88%, rgba(255, 220, 211, 0.58), rgba(255, 220, 211, 0) 34%),
    rgba(255, 255, 255, 0.72);
}

.page-home .lead-form-copy {
  max-width: 620px;
}

.page-home .lead-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-home .lead-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--home-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-ink);
  box-shadow: var(--home-shadow-chip);
  font-size: 13px;
  font-weight: 780;
}

.page-home .lead-form-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--home-radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
  backdrop-filter: blur(18px);
}

.page-home .form-title {
  margin: 0;
}

.page-home .form-subtitle {
  margin: 10px 0 22px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.5;
}

.page-home .prechat-form {
  display: grid;
  gap: 14px;
}

.page-home .field {
  display: grid;
  gap: 6px;
}

.page-home .field label {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 760;
}

.page-home .input,
.page-home input.input[type="text"],
.page-home input.input[type="tel"],
.page-home input.input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(29, 40, 51, 0.2);
  border-radius: 14px;
  outline: none;
  background: #f9fcfd;
  color: var(--home-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 14px rgba(44, 70, 84, 0.04);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.page-home .input:focus,
.page-home input.input[type="text"]:focus,
.page-home input.input[type="tel"]:focus,
.page-home input.input[type="email"]:focus {
  border-color: var(--home-focus);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(90, 169, 230, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-home .input.is-error {
  border-color: var(--home-coral);
  box-shadow: 0 0 0 4px rgba(255, 104, 92, 0.14);
}

.page-home .input.is-filled:not(.is-error) {
  border-color: rgba(79, 175, 123, 0.52);
}

.page-home .checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--home-ink-2);
  font-size: 13px;
  line-height: 1.35;
}

.page-home .checkbox {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--home-coral);
}

.page-home .error {
  min-height: 18px;
  color: var(--home-coral);
  font-size: 13px;
  line-height: 1.35;
}

.page-home .form-submit {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  font-size: 16px;
}

.page-home .form-submit:disabled {
  cursor: wait;
  opacity: 0.76;
}

.page-home .form-submit.is-success {
  background: var(--home-success);
  box-shadow: 0 14px 28px rgba(79, 175, 123, 0.28);
}

.page-home .privacy-note,
.page-home .next-step-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.45;
}

.page-home .privacy-note svg {
  width: 18px;
  height: 18px;
  color: var(--home-muted);
  stroke-width: 2;
}

.page-home .next-step-note {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.page-home .faq-list {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.page-home .faq-item {
  overflow: hidden;
  border: 1px solid rgba(29, 40, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.page-home .faq-trigger {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 0 16px 0 20px;
  border: 0;
  background: transparent;
  color: var(--home-ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.page-home .faq-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--home-bg-mist);
  color: var(--home-ink);
  font-size: 20px;
  transition: transform 180ms ease;
}

.page-home .faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.page-home .faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.page-home .faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.52;
}

.page-home .final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 50%, rgba(255, 220, 211, 0.65), rgba(255, 220, 211, 0) 28%),
    rgba(255, 255, 255, 0.72);
}

.page-home .final-card p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.48;
}

.page-home .sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  min-height: 54px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.page-home .sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-home .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.page-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-home .is-shaking {
  animation: home-shake 320ms ease;
}

@keyframes home-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

@media (max-width: 1180px) {
  .page-home .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 20px;
  }

  .page-home .hero-copy {
    max-width: 760px;
  }

  .page-home .hero-visual {
    min-height: 500px;
  }

  .page-home .trainer-card {
    right: 38px;
    width: min(500px, 70%);
  }

  .page-home .explainer-content {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .page-home .reason-grid {
    grid-column: 1 / -1;
  }

  .page-home .result-layout,
  .page-home .format-card,
  .page-home .trainer-profile,
  .page-home .lead-form-layout {
    grid-template-columns: 1fr;
  }

  .page-home .trainer-portrait-card {
    max-width: 460px;
  }
}

@media (max-width: 980px) {
  .page-home .home-header {
    grid-template-columns: 1fr auto;
  }

  .page-home .home-nav,
  .page-home .home-header__cta {
    display: none;
  }

  .page-home .home-burger {
    display: block;
  }

  .page-home .pain-grid,
  .page-home .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .method-cards {
    grid-template-columns: 1fr;
  }

  .page-home .step-arrow {
    display: none;
  }

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

@media (max-width: 767px) {
  .page-home .landing-page {
    padding: 12px 0 64px;
  }

  .page-home .home-container {
    width: min(calc(100% - 28px), 1360px);
  }

  .page-home .hero-shell {
    padding: 14px 14px 28px;
    border-radius: 28px;
  }

  .page-home .home-header {
    min-height: 62px;
    padding: 0 12px;
    border-radius: 24px;
  }

  .page-home .home-logo {
    gap: 9px;
    font-size: 15px;
  }

  .page-home .home-logo__mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .page-home .home-logo__mark::after {
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
  }

  .page-home .hero-content {
    gap: 22px;
    padding: 28px 8px 0;
  }

  .page-home .hero-title {
    margin-top: 16px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.08;
  }

  .page-home .hero-subtitle {
    font-size: 15px;
  }

  .page-home .hero-actions {
    margin-top: 22px;
  }

  .page-home .home-cta {
    width: 100%;
    min-height: 56px;
    padding-left: 18px;
    font-size: 15px;
  }

  .page-home .trust-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .page-home .trust-chip {
    min-height: 48px;
    padding-inline: 14px;
    border-radius: 18px;
    font-size: 13px;
  }

  .page-home .hero-visual {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 6px;
  }

  .page-home .visual-stage {
    position: relative;
    inset: auto;
    order: 3;
    min-height: 190px;
    margin: 12px 0;
  }

  .page-home .plinth-main {
    right: 56px;
    bottom: 26px;
    width: 230px;
    height: 82px;
  }

  .page-home .plinth-side {
    right: 14px;
    bottom: 42px;
    width: 112px;
    height: 52px;
  }

  .page-home .object-ribbon {
    right: 152px;
    bottom: 70px;
    width: 138px;
    height: 174px;
    border-width: 32px;
  }

  .page-home .object-ring {
    right: 94px;
    bottom: 94px;
    width: 86px;
    height: 86px;
    border-width: 22px;
  }

  .page-home .object-sphere {
    right: 24px;
    bottom: 86px;
    width: 78px;
    height: 78px;
  }

  .page-home .object-leaf {
    display: none;
  }

  .page-home .trainer-card,
  .page-home .hero-mini-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
  }

  .page-home .trainer-card {
    order: 1;
    grid-template-columns: 82px 1fr;
    min-height: 124px;
    padding: 12px;
  }

  .page-home .trainer-photo {
    width: 82px;
    height: 98px;
    border-radius: 16px;
  }

  .page-home .trainer-name {
    font-size: 18px;
  }

  .page-home .trainer-role,
  .page-home .trainer-note {
    font-size: 12px;
  }

  .page-home .hero-mini-card {
    margin-top: 10px;
  }

  .page-home .hero-mini-card--practice {
    order: 2;
  }

  .page-home .hero-mini-card--form {
    order: 4;
  }

  .page-home .landing-section {
    margin-top: 42px;
  }

  .page-home .section-head,
  .page-home .section-head--split {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .page-home .section-title,
  .page-home .explainer-copy h2,
  .page-home .final-card h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.12;
  }

  .page-home .section-subtitle {
    font-size: 15px;
  }

  .page-home .pain-grid,
  .page-home .reason-grid,
  .page-home .practice-grid,
  .page-home .audience-grid,
  .page-home .reviews-track,
  .page-home .proof-grid {
    grid-template-columns: 1fr;
  }

  .page-home .pain-card {
    min-height: auto;
  }

  .page-home .explainer {
    padding: 0;
    overflow: hidden;
  }

  .page-home .explainer-toggle {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: var(--home-ink);
    text-align: left;
    font-weight: 800;
  }

  .page-home .explainer-chevron {
    font-size: 22px;
    transition: transform 180ms ease;
  }

  .page-home .explainer.is-open .explainer-chevron {
    transform: rotate(180deg);
  }

  .page-home .explainer-content {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .page-home .explainer.is-open .explainer-content {
    max-height: 980px;
    padding-bottom: 18px;
  }

  .page-home .explainer-icon {
    width: 62px;
    height: 62px;
  }

  .page-home .reason-chip {
    min-height: auto;
  }

  .page-home .method-panel,
  .page-home .practices-panel,
  .page-home .format-card,
  .page-home .trainer-profile,
  .page-home .lead-form-layout,
  .page-home .final-card {
    padding: 18px;
    border-radius: 26px;
  }

  .page-home .method-card,
  .page-home .practice-card,
  .page-home .audience-card,
  .page-home .quote-card {
    min-height: auto;
    padding: 20px;
  }

  .page-home .result-layout {
    grid-template-columns: 1fr;
  }

  .page-home .format-card {
    grid-template-columns: 1fr;
  }

  .page-home .format-step {
    grid-template-columns: 46px 1fr;
    padding: 12px;
  }

  .page-home .format-step span {
    min-width: 46px;
    height: 42px;
  }

  .page-home .trainer-profile {
    grid-template-columns: 1fr;
  }

  .page-home .trainer-portrait-card,
  .page-home .trainer-portrait-card img {
    min-height: 340px;
  }

  .page-home .trainer-quote {
    font-size: 17px;
  }

  .page-home .review-metric {
    justify-self: stretch;
  }

  .page-home .reviews-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .page-home .quote-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .page-home .case-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
  }

  .page-home .case-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(29, 40, 51, 0.18);
  }

  .page-home .case-dot.is-active {
    background: var(--home-coral);
  }

  .page-home .lead-form-layout {
    grid-template-columns: 1fr;
  }

  .page-home .lead-form-card {
    padding: 20px;
  }

  .page-home .faq-trigger {
    min-height: 58px;
    font-size: 14px;
  }

  .page-home .final-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .page-home .home-container {
    width: min(calc(100% - 24px), 1360px);
  }

  .page-home .hero-title {
    font-size: 29px;
  }

  .page-home .home-cta,
  .page-home .form-submit,
  .page-home .sticky-cta {
    font-size: 14px;
  }

  .page-home .arrow-circle {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

@media (min-width: 1024px) {
  .page-home .sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .reveal,
  .page-home .home-header__cta,
  .page-home .home-cta,
  .page-home .section-cta,
  .page-home .form-submit,
  .page-home .sticky-cta {
    transition: none;
  }
}

/* Home V5: external-audit fixes for flow, mobile, results and tactile components */
.page-home .landing-page {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.4vw, 32px);
  width: 100%;
  overflow-x: clip;
  padding: 18px 0 64px;
}

.page-home .home-container {
  width: min(calc(100% - 48px), 1360px);
  max-width: 1360px;
}

.page-home .landing-section {
  margin-top: 0;
}

.page-home .reveal,
.page-home .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-home .hero-shell,
.page-home .soft-card,
.page-home .method-card,
.page-home .practice-card,
.page-home .audience-card,
.page-home .format-card,
.page-home .trainer-profile,
.page-home .lead-form-layout,
.page-home .faq-list,
.page-home .final-card,
.page-home .result-shell {
  overflow: clip;
}

.page-home .hero-shell {
  padding: 20px 24px 38px;
}

.page-home .hero-content {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
}

.page-home .hero-copy {
  width: 100%;
  min-width: 0;
}

.page-home .hero-visual,
.page-home .visual-stage {
  min-width: 0;
}

.page-home .trust-chip,
.page-home .trust-chip span {
  min-width: 0;
}

.page-home .trust-chip span {
  overflow-wrap: anywhere;
}

.page-home .visual-stage {
  inset: 40px 0 8px 0;
  border-radius: 38px;
}

.page-home .object-ring {
  border-color: #ff9489;
  opacity: 0.72;
  box-shadow: inset -10px -10px 22px rgba(174, 58, 48, 0.12), 0 14px 26px rgba(255, 104, 92, 0.16);
}

.page-home .trainer-card {
  top: 24px;
  right: 18px;
  width: min(492px, 82%);
  min-height: 218px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 252, 0.72)),
    radial-gradient(circle at 12% 20%, rgba(199, 233, 224, 0.45), rgba(199, 233, 224, 0) 45%);
}

.page-home .trainer-photo {
  border: 3px solid rgba(255, 255, 255, 0.72);
  background: var(--home-bg-mist);
}

.page-home .hero-mini-card--form {
  right: auto;
  left: 36px;
  bottom: 54px;
  width: min(260px, 48%);
}

.page-home .hero-badge,
.page-home .eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
  justify-self: start;
  align-self: start;
  white-space: normal;
}

.page-home .eyebrow {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(127, 183, 169, 0.16);
  background: rgba(199, 233, 224, 0.36);
  color: #346e64;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.page-home .section-head {
  align-items: start;
  max-width: 900px;
}

.page-home .section-head--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.page-home .section-title,
.page-home .explainer-copy h2,
.page-home .final-card h2 {
  font-size: clamp(30px, 2.55vw, 38px);
  line-height: 1.08;
}

.page-home .section-subtitle,
.page-home .explainer-copy p {
  color: var(--home-ink-2);
}

.page-home .pain-grid {
  gap: 18px;
}

.page-home .pain-card {
  min-height: 116px;
  background: rgba(255, 255, 255, 0.76);
}

.page-home .explainer {
  padding: 28px;
}

.page-home .reason-grid {
  gap: 14px;
}

.page-home .reason-chip {
  min-height: 178px;
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, rgba(247, 251, 252, 0.88), rgba(234, 242, 246, 0.72));
  box-shadow: var(--home-shadow-chip), var(--home-shadow-inset);
}

.page-home .reason-chip p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.42;
}

.page-home .method-cards {
  position: relative;
  gap: 18px;
}

.page-home .method-card,
.page-home .practice-card {
  min-width: 0;
  min-height: 250px;
  contain: paint;
}

.page-home .method-card h3,
.page-home .practice-card h3,
.page-home .audience-card h3,
.page-home .anti-card h3,
.page-home .result-card h3,
.page-home .form-title,
.page-home .quote-card strong {
  font-size: 20px;
}

.page-home .method-card p,
.page-home .practice-card p,
.page-home .check-list li,
.page-home .anti-card li,
.page-home .audience-card li {
  font-size: 15px;
}

.page-home .card-visual {
  right: -12px;
  bottom: -14px;
  opacity: 0.58;
}

.page-home .result-shell {
  padding: clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: clamp(28px, 3vw, 42px);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 233, 224, 0.5), rgba(199, 233, 224, 0) 32%),
    radial-gradient(circle at 92% 76%, rgba(255, 220, 211, 0.48), rgba(255, 220, 211, 0) 30%),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--home-shadow-card), var(--home-shadow-inset);
}

.page-home .result-head {
  margin-bottom: 18px;
}

.page-home .results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.page-home .result-card,
.page-home .anti-card {
  min-width: 0;
  padding: clamp(20px, 1.8vw, 24px);
}

.page-home .result-card {
  display: grid;
  gap: 12px;
  align-content: start;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 242, 246, 0.62));
}

.page-home .result-card h3,
.page-home .anti-card h3 {
  margin: 0;
  color: var(--home-ink);
}

.page-home .check-list {
  gap: 10px;
}

.page-home .check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding-left: 0;
  line-height: 1.44;
}

.page-home .check-list li::before {
  position: static;
  margin-top: 2px;
}

.page-home .result-card .section-cta {
  width: max-content;
  margin-top: 4px;
}

.page-home .anti-card {
  align-self: stretch;
}

.page-home .practice-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding-bottom: 74px;
}

.page-home .practice-card::after {
  right: -12px;
  bottom: -18px;
  width: 138px;
  height: 84px;
  border-width: 18px;
}

.page-home .practice-label,
.page-home .practice-card h3,
.page-home .practice-card p {
  margin-top: 0;
}

.page-home .practice-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .practice-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--home-radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: var(--home-ink-2);
  font-size: 12px;
  font-weight: 760;
}

.page-home .practice-action {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: 2px;
  color: var(--home-coral);
  font-size: 14px;
  font-weight: 850;
}

.page-home .card-arrow {
  left: 22px;
  bottom: 20px;
}

.page-home .audience-card {
  min-height: 0;
}

.page-home .format-step {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-inset), 0 8px 22px rgba(29, 40, 51, 0.06);
}

.page-home .trainer-profile {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
}

.page-home .trainer-portrait-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(234, 242, 246, 0.12), rgba(199, 233, 224, 0.18)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 36%);
  content: "";
  mix-blend-mode: screen;
}

.page-home .proof-chip {
  min-height: 104px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--home-shadow-inset), 0 8px 22px rgba(29, 40, 51, 0.06);
}

.page-home .review-metric {
  width: min(100%, 260px);
}

.page-home .review-metric span {
  line-height: 1.3;
}

.page-home .quote-card {
  display: grid;
  align-content: start;
  min-height: 212px;
}

.page-home .quote-card > span {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.3;
}

.page-home .lead-form-layout,
.page-home .faq-list,
.page-home .final-card {
  border-color: rgba(255, 255, 255, 0.78);
}

.page-home .input:focus-visible,
.page-home .checkbox:focus-visible,
.page-home .home-header__cta:focus-visible,
.page-home .home-cta:focus-visible,
.page-home .section-cta:focus-visible,
.page-home .form-submit:focus-visible,
.page-home .sticky-cta:focus-visible,
.page-home .faq-trigger:focus-visible,
.page-home .practice-action:focus-visible,
.page-home .mini-card-link:focus-visible {
  outline: 3px solid rgba(90, 169, 230, 0.8);
  outline-offset: 3px;
}

.page-home .checkbox-row {
  cursor: pointer;
}

.page-home .faq-item {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--home-shadow-inset);
}

.page-home .faq-item.is-open {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(234, 242, 246, 0.7));
}

.page-home .faq-trigger {
  min-width: 0;
}

.page-home .faq-trigger span:first-child {
  min-width: 0;
}

.page-home .explainer-chevron {
  display: inline-grid;
  width: 24px;
  overflow: hidden;
  place-items: center;
}

@media (min-width: 1024px) {
  .page-home .method-cards::before {
    position: absolute;
    top: 42px;
    right: 17%;
    left: 17%;
    height: 1px;
    background: linear-gradient(90deg, rgba(127, 183, 169, 0), rgba(127, 183, 169, 0.42), rgba(127, 183, 169, 0));
    content: "";
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .page-home .landing-page {
    gap: 28px;
  }

  .page-home .home-container {
    width: min(calc(100% - 32px), 1360px);
  }

  .page-home .hero-content {
    grid-template-columns: 1fr;
    padding: 34px 22px 0;
  }

  .page-home .hero-visual {
    min-height: 430px;
  }

  .page-home .trainer-card {
    width: min(500px, 72%);
  }

  .page-home .results-grid,
  .page-home .format-card,
  .page-home .trainer-profile,
  .page-home .lead-form-layout {
    grid-template-columns: 1fr;
  }

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

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

  .page-home .quote-card {
    min-height: 240px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .page-home .landing-page {
    gap: 24px;
    padding-top: 14px;
  }

  .page-home .home-container {
    width: min(calc(100% - 32px), 1360px);
  }

  .page-home .hero-title {
    font-size: clamp(32px, 7vw, 40px);
  }

  .page-home .hero-content {
    grid-template-columns: 1fr;
  }

  .page-home .hero-copy,
  .page-home .hero-visual {
    width: 100%;
    max-width: none;
  }

  .page-home .hero-visual {
    overflow: clip;
  }

  .page-home .trainer-card,
  .page-home .hero-mini-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .page-home .section-head--split,
  .page-home .trainer-profile {
    grid-template-columns: 1fr;
  }

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

  .page-home .trust-chip:last-child {
    grid-column: 1 / -1;
  }

  .page-home .results-grid,
  .page-home .practice-grid,
  .page-home .audience-grid,
  .page-home .proof-grid {
    grid-template-columns: 1fr;
  }

  .page-home .reviews-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }
}

@media (max-width: 479px) {
  .page-home .landing-page {
    gap: 20px;
    padding: 12px 0 68px;
  }

  .page-home .home-container {
    width: min(calc(100% - 32px), 1360px);
  }

  .page-home .hero-shell {
    padding: 12px 12px 22px;
    border-radius: 28px;
  }

  .page-home .home-header {
    min-height: 54px;
    padding: 0 10px;
    border-radius: 22px;
  }

  .page-home .home-logo {
    font-size: 14px;
  }

  .page-home .home-logo__mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .page-home .home-burger {
    width: 38px;
    height: 38px;
  }

  .page-home .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 4px 0;
  }

  .page-home .hero-copy,
  .page-home .hero-visual {
    width: 100%;
    max-width: none;
  }

  .page-home .hero-visual {
    overflow: clip;
  }

  .page-home .trainer-card,
  .page-home .hero-mini-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .page-home .hero-title {
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.06;
  }

  .page-home .hero-subtitle {
    font-size: 15px;
    line-height: 1.48;
  }

  .page-home .home-cta,
  .page-home .form-submit,
  .page-home .sticky-cta {
    width: 100%;
    min-height: 56px;
    font-size: 14px;
  }

  .page-home .trust-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-home .trust-chip {
    gap: 7px;
    min-height: 54px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .page-home .trust-chip svg {
    width: 20px;
    height: 20px;
  }

  .page-home .trust-chip:last-child {
    grid-column: 1 / -1;
  }

  .page-home .section-head--split,
  .page-home .trainer-profile {
    grid-template-columns: 1fr;
  }

  .page-home .hero-visual {
    gap: 10px;
  }

  .page-home .trainer-card {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 116px;
  }

  .page-home .trainer-photo {
    width: 78px;
    height: 92px;
  }

  .page-home .hero-mini-card--form {
    order: 2;
    width: 100%;
    margin-top: 0;
  }

  .page-home .visual-stage {
    order: 3;
    min-height: 160px;
    margin: 2px 0 0;
  }

  .page-home .plinth-main {
    right: 42px;
    bottom: 20px;
    width: 200px;
  }

  .page-home .object-ribbon {
    right: 128px;
    bottom: 56px;
  }

  .page-home .object-ring {
    right: 80px;
    bottom: 80px;
    opacity: 0.58;
  }

  .page-home .object-sphere {
    right: 18px;
    bottom: 70px;
  }

  .page-home .section-title,
  .page-home .explainer-copy h2,
  .page-home .final-card h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .page-home .section-subtitle,
  .page-home .final-card p {
    font-size: 15px;
  }

  .page-home .explainer,
  .page-home .method-panel,
  .page-home .practices-panel,
  .page-home .format-card,
  .page-home .trainer-profile,
  .page-home .lead-form-layout,
  .page-home .final-card,
  .page-home .result-shell {
    padding: 20px;
    border-radius: 26px;
  }

  .page-home .explainer-content {
    grid-template-columns: 1fr;
  }

  .page-home .results-grid,
  .page-home .practice-grid,
  .page-home .audience-grid,
  .page-home .proof-grid,
  .page-home .reviews-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .page-home .result-card .section-cta {
    width: 100%;
  }

  .page-home .method-card,
  .page-home .practice-card,
  .page-home .audience-card,
  .page-home .quote-card,
  .page-home .result-card,
  .page-home .anti-card {
    padding: 20px;
    border-radius: 22px;
  }

  .page-home .practice-card {
    min-height: 0;
  }

  .page-home .quote-card {
    flex: initial;
    min-height: 0;
  }

  .page-home .case-dots {
    display: none;
  }

  .page-home .trainer-portrait-card,
  .page-home .trainer-portrait-card img {
    min-height: 320px;
  }

  .page-home .review-metric {
    width: 100%;
  }

  .page-home .lead-form-card {
    padding: 18px;
  }

  .page-home .faq-list {
    padding: 10px;
    border-radius: 26px;
  }

  .page-home .faq-trigger {
    grid-template-columns: minmax(0, 1fr) 34px;
    min-height: 58px;
    padding: 0 12px 0 14px;
  }

  .page-home .final-card {
    grid-template-columns: 1fr;
  }
}
