@font-face {
  font-family: "Manrope UNAVI ExtraLight";
  src: url("../../shared/fonts/manrope/manrope-extralight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #7D61C5;
  --color-primary-dark: #6549AD;
  --color-primary-light: #eee9fa;
  --color-secondary: #8EC544;
  --color-secondary-light: rgba(142, 197, 68, 0.14);
  --color-text: #323232;
  --color-text-muted: #66626d;
  --color-background: #FFFFFF;
  --color-surface: #F7F7F9;
  --section-surface-white: #FFFFFF;
  --section-surface-lilac: rgba(125, 97, 197, 0.055);
  --section-surface-green: rgba(142, 197, 68, 0.055);
  --section-surface-neutral: #FAFAFC;
  --section-decor-primary: rgba(125, 97, 197, 0.18);
  --section-decor-primary-soft: rgba(125, 97, 197, 0.1);
  --section-decor-secondary: rgba(142, 197, 68, 0.16);
  --section-decor-secondary-soft: rgba(142, 197, 68, 0.09);
  --section-decor-muted: rgba(50, 50, 50, 0.045);
  --section-transition-height: 76px;
  --section-transition-hero: 112px;
  --section-transition-large: 104px;
  --section-transition-medium: 76px;
  --section-transition-small: 56px;
  --color-border: #E4E4E8;
  --color-focus: #7D61C5;
  --color-error: #9f2f45;
  --color-error-light: #fdecef;
  --color-success: #323232;
  --color-success-light: rgba(142, 197, 68, 0.14);
  --color-disabled: #a9a6b2;
  --color-disabled-surface: #eeeef2;
  --font-main: "Manrope UNAVI ExtraLight", sans-serif;
  --container: 1160px;
  --radius: 8px;
  --radius-small: 6px;
  --shadow: 0 16px 48px rgba(50, 50, 50, 0.08);
  --shadow-soft: 0 10px 28px rgba(50, 50, 50, 0.06);
  --space-section: 56px;
  --transition-duration: 160ms;
  --transition-easing: ease;
}

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

html {
  scroll-behavior: smooth;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-main);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  overflow-wrap: break-word;
  overflow-x: clip;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
  transition:
    color var(--transition-duration) var(--transition-easing),
    background-color var(--transition-duration) var(--transition-easing),
    border-color var(--transition-duration) var(--transition-easing);
}

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

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 100px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(100% - 32px, 840px);
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--space-section) 0;
  background: var(--section-bg, var(--section-surface-white));
  scroll-margin-top: 84px;
}

.surface {
  --section-bg: var(--section-surface-neutral);
}

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

.section::before,
.section::after {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
}

.header-layout,
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  min-width: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  display: block;
  width: 148px;
  height: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  color: var(--color-text);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition:
    color var(--transition-duration) var(--transition-easing),
    background-color var(--transition-duration) var(--transition-easing),
    border-color var(--transition-duration) var(--transition-easing),
    transform var(--transition-duration) var(--transition-easing);
}

.menu-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu-toggle:active {
  transform: translateY(1px);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle__line {
  position: relative;
}

.menu-toggle__line::before,
.menu-toggle__line::after {
  position: absolute;
  left: 0;
}

.menu-toggle__line::before {
  top: -6px;
}

.menu-toggle__line::after {
  top: 6px;
}

.site-nav,
.site-menu,
.header-actions {
  display: none;
}

.site-menu.is-open {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-menu.is-open .site-nav,
.site-menu.is-open .header-actions {
  display: grid;
  gap: 10px;
}

.site-nav a,
.phone-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.phone-link {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--color-secondary);
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  overflow-wrap: normal;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.social-links a {
  display: inline-flex;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: var(--color-secondary);
  border: 0;
  border-radius: 50%;
}

.social-links a:hover {
  color: #fff;
  background: var(--color-primary);
}

.social-links a:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.social-links a:active {
  color: #fff;
  background: var(--color-primary-dark);
  transform: translateY(1px);
}

.social-icon {
  display: block;
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: var(--social-icon) center / contain no-repeat;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
}

.social-icon--telegram {
  --social-icon: url("../../shared/image/social/telegram.svg");
}

.social-icon--whatsapp {
  --social-icon: url("../../shared/image/social/whatsapp.svg");
}

.social-icon--vk {
  --social-icon: url("../../shared/image/social/vk.svg");
}

.social-icon--max {
  --social-icon: url("../../shared/image/social/max.svg");
  width: 18px;
  height: 18px;
}

.hero {
  --section-bg: var(--section-surface-white);
  --hero-trust-surface: #F8F6FC;
  padding-top: 48px;
  padding-bottom: 58px;
  background:
    radial-gradient(ellipse at 84% 20%, rgba(125, 97, 197, 0.24), transparent 42%),
    radial-gradient(ellipse at 78% 46%, rgba(142, 197, 68, 0.15), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(142, 197, 68, 0.18) 0 2px, transparent 2.6px) 0 0 / 24px 24px,
    radial-gradient(circle at 19% 76%, rgba(125, 97, 197, 0.12) 0 1.7px, transparent 2.2px) 0 0 / 28px 28px,
    linear-gradient(118deg, transparent 59%, rgba(125, 97, 197, 0.07) 59% 60%, transparent 60% 100%),
    linear-gradient(180deg, var(--section-surface-white) 0%, #fff 72%, rgba(125, 97, 197, 0.035) 100%);
}

.hero::before {
  right: max(-120px, -7vw);
  top: 36px;
  width: min(44vw, 500px);
  height: min(42vw, 470px);
  background:
    radial-gradient(circle at 72% 28%, rgba(142, 197, 68, 0.2), transparent 32%),
    radial-gradient(ellipse at 45% 54%, rgba(125, 97, 197, 0.24), transparent 62%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.58) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 64%);
  border: 1px solid rgba(125, 97, 197, 0.18);
  border-radius: 38% 62% 46% 54% / 50% 42% 58% 50%;
  opacity: 0.98;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 104px;
  color: var(--hero-trust-surface);
  background: currentColor;
  mask: url("../../shared/image/ui/hero-trust-wave.svg") bottom / 100% 100% no-repeat;
  -webkit-mask: url("../../shared/image/ui/hero-trust-wave.svg") bottom / 100% 100% no-repeat;
}

.trust {
  --section-bg: var(--hero-trust-surface, #F8F6FC);
  padding-top: 48px;
}

#audience,
#reviews {
  --section-bg: var(--section-surface-white);
}

#results {
  --section-bg: var(--section-surface-green);
  padding-top: 68px;
  padding-bottom: 74px;
}

#program,
#signup-process {
  --section-bg: var(--section-surface-lilac);
}

#program {
  padding-top: 64px;
  padding-bottom: 78px;
}

#format,
#branches,
#faq {
  --section-bg: var(--section-surface-neutral);
}

#format {
  padding-top: 72px;
  padding-bottom: 76px;
}

#expert,
#price {
  --section-bg: var(--section-surface-white);
}

#price {
  padding-top: 70px;
  padding-bottom: 76px;
}

#benefits {
  --section-bg: linear-gradient(180deg, rgba(125, 97, 197, 0.07), rgba(125, 97, 197, 0.035));
  padding-bottom: 52px;
}

#lead-form {
  --section-bg: linear-gradient(180deg, var(--section-surface-green), var(--section-surface-white));
  padding-top: 50px;
}

#faq {
  padding-bottom: 48px;
}

#branches {
  --section-bg: var(--section-surface-green);
  padding-top: 50px;
}

.trust::before {
  right: -90px;
  bottom: -30px;
  width: min(34vw, 390px);
  height: min(30vw, 340px);
  background:
    radial-gradient(ellipse at 62% 48%, rgba(125, 97, 197, 0.19), transparent 60%),
    radial-gradient(circle at 24% 72%, rgba(142, 197, 68, 0.16), transparent 38%);
  border-radius: 50%;
  opacity: 0.74;
}

#audience::before {
  left: -34px;
  top: 36px;
  width: 190px;
  height: 170px;
  background:
    linear-gradient(132deg, transparent 35%, rgba(125, 97, 197, 0.18) 35% 37%, transparent 37%),
    linear-gradient(132deg, transparent 52%, rgba(142, 197, 68, 0.16) 52% 54%, transparent 54%),
    linear-gradient(132deg, transparent 69%, rgba(125, 97, 197, 0.12) 69% 71%, transparent 71%);
  opacity: 0.7;
}

#expert::before {
  left: -120px;
  bottom: 42px;
  width: min(34vw, 380px);
  height: min(34vw, 380px);
  background:
    radial-gradient(ellipse at 58% 42%, rgba(125, 97, 197, 0.16), transparent 62%),
    radial-gradient(circle at 78% 72%, rgba(142, 197, 68, 0.12), transparent 30%);
  border: 1px solid rgba(125, 97, 197, 0.11);
  border-radius: 58% 42% 48% 52% / 44% 56% 44% 56%;
  opacity: 0.72;
}

#branches::before {
  left: -46px;
  bottom: 54px;
  width: 210px;
  height: 150px;
  background:
    linear-gradient(48deg, transparent 30%, rgba(142, 197, 68, 0.16) 30% 32%, transparent 32%),
    linear-gradient(48deg, transparent 50%, rgba(125, 97, 197, 0.14) 50% 52%, transparent 52%),
    linear-gradient(48deg, transparent 70%, rgba(142, 197, 68, 0.12) 70% 72%, transparent 72%);
  opacity: 0.66;
}

#lead-form::before {
  right: -110px;
  top: 26px;
  width: min(32vw, 360px);
  height: min(28vw, 310px);
  background:
    radial-gradient(ellipse at 48% 46%, rgba(142, 197, 68, 0.18), transparent 62%),
    radial-gradient(circle at 18% 78%, rgba(125, 97, 197, 0.11), transparent 34%);
  border-radius: 42% 58% 56% 44% / 54% 44% 56% 46%;
  opacity: 0.74;
}

#results::before {
  right: -110px;
  bottom: -70px;
  width: min(38vw, 430px);
  height: min(30vw, 340px);
  background:
    radial-gradient(ellipse at 38% 38%, rgba(142, 197, 68, 0.17), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), transparent 62%);
  border-radius: 62% 38% 48% 52% / 46% 62% 38% 54%;
  opacity: 0.78;
}

#program::before {
  right: -120px;
  top: 28px;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  background:
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(125, 97, 197, 0.16) 49% 50%, transparent 51%),
    radial-gradient(circle at 50% 50%, transparent 66%, rgba(142, 197, 68, 0.11) 67% 68%, transparent 69%);
  opacity: 0.78;
}

#program::after {
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 92px;
  background: var(--section-surface-neutral);
  clip-path: ellipse(86% 86% at 70% 100%);
}

#price::before {
  right: max(-80px, -5vw);
  top: 18%;
  width: min(38vw, 430px);
  height: min(30vw, 340px);
  background:
    radial-gradient(ellipse at 56% 46%, rgba(125, 97, 197, 0.16), transparent 64%),
    radial-gradient(circle at 28% 70%, rgba(142, 197, 68, 0.12), transparent 36%);
  border-radius: 50%;
  opacity: 0.78;
}

#reviews::before {
  left: -120px;
  top: 42px;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  background:
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(125, 97, 197, 0.14) 43% 44%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 62%, rgba(142, 197, 68, 0.11) 63% 64%, transparent 65%);
  opacity: 0.72;
}

#format::before {
  left: -120px;
  bottom: 18px;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  background:
    radial-gradient(circle, rgba(125, 97, 197, 0.14) 0 1.8px, transparent 2.4px) 0 0 / 22px 22px,
    radial-gradient(circle, rgba(142, 197, 68, 0.12) 0 1.5px, transparent 2px) 11px 11px / 22px 22px;
  border-radius: 50%;
  opacity: 0.68;
}

#benefits::before {
  right: -110px;
  bottom: -40px;
  width: min(30vw, 350px);
  height: min(30vw, 350px);
  background: radial-gradient(ellipse at 50% 50%, rgba(125, 97, 197, 0.12), transparent 62%);
  border: 1px solid rgba(125, 97, 197, 0.12);
  border-radius: 50%;
  opacity: 0.7;
}

#benefits::after {
  left: 0;
  right: 0;
  bottom: -18px;
  width: 100%;
  height: 118px;
  color: var(--section-surface-green);
  background: currentColor;
  clip-path: none;
  mask: url("../../shared/image/ui/benefits-branches-divider.svg") bottom / 100% 100% no-repeat;
  -webkit-mask: url("../../shared/image/ui/benefits-branches-divider.svg") bottom / 100% 100% no-repeat;
}

#audience::after,
#results::after,
#expert::after,
#format::after,
#signup-process::after,
#price::after,
#reviews::after,
#faq::after,
#lead-form::after,
.final-cta::after {
  left: 0;
  top: 0;
  width: 100%;
  opacity: 1;
}

#audience::after,
#results::after,
#expert::after,
#format::after,
#signup-process::after,
#price::after,
#faq::after {
  height: var(--section-transition-height);
}

#audience::after {
  height: var(--section-transition-medium);
  background: var(--section-surface-lilac);
  border-radius: 0 0 46% 54% / 0 0 78% 56%;
}

#results::after {
  top: auto;
  bottom: -1px;
  height: 86px;
  background: var(--section-surface-lilac);
  clip-path: polygon(0 46%, 16% 28%, 38% 50%, 58% 24%, 78% 43%, 100% 22%, 100% 100%, 0 100%);
}

#expert::after {
  top: auto;
  bottom: -1px;
  height: 78px;
  background:
    radial-gradient(ellipse at 78% 100%, rgba(142, 197, 68, 0.08), transparent 54%),
    rgba(125, 97, 197, 0.07);
  clip-path: ellipse(82% 76% at 46% 100%);
}

#format::after {
  top: auto;
  bottom: -1px;
  height: 88px;
  background: var(--section-surface-white);
  clip-path: polygon(0 70%, 20% 42%, 48% 58%, 72% 30%, 100% 50%, 100% 100%, 0 100%);
}

#signup-process::after {
  height: var(--section-transition-medium);
  background: var(--section-surface-neutral);
  clip-path: polygon(0 0, 100% 0, 100% 44%, 0 74%);
}

#price::after {
  top: auto;
  bottom: -1px;
  height: 84px;
  background:
    radial-gradient(ellipse at 78% 100%, rgba(125, 97, 197, 0.09), transparent 58%),
    var(--section-surface-white);
  clip-path: ellipse(92% 78% at 32% 100%);
}

#reviews::after {
  top: auto;
  bottom: -1px;
  height: 92px;
  background:
    radial-gradient(ellipse at 24% 100%, rgba(125, 97, 197, 0.08), transparent 58%),
    var(--section-surface-neutral);
  clip-path: ellipse(88% 76% at 68% 100%);
}

#faq::after {
  top: auto;
  bottom: -1px;
  height: 110px;
  color: var(--section-surface-green);
  background: currentColor;
  clip-path: none;
  mask: url("../../shared/image/ui/faq-lead-form-divider.svg") bottom / 100% 100% no-repeat;
  -webkit-mask: url("../../shared/image/ui/faq-lead-form-divider.svg") bottom / 100% 100% no-repeat;
}

#lead-form::after {
  top: auto;
  bottom: -1px;
  height: 78px;
  background:
    radial-gradient(ellipse at 70% 100%, rgba(125, 97, 197, 0.07), transparent 58%),
    var(--section-surface-white);
  clip-path: ellipse(82% 72% at 50% 100%);
}

.final-cta::after {
  height: var(--section-transition-medium);
  background:
    radial-gradient(ellipse at 36% 0, rgba(142, 197, 68, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(125, 97, 197, 0.045), rgba(255, 255, 255, 0));
  clip-path: ellipse(82% 64% at 58% 0);
}

.hero-layout,
.split-layout,
.form-layout,
.final-cta-layout {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.hero-content,
.section-heading {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.eyebrow::before {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 100px;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(32px, 8vw, 58px);
  font-weight: 600;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 6.4vw, 42px);
  font-weight: 600;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 600;
}

.hero-offer {
  max-width: 620px;
  font-size: 20px;
}

.check-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 22px;
  height: 22px;
  background: url("../../shared/image/ui/check-double-circle.svg") center / contain no-repeat;
  content: "";
}

.check-list li::after {
  content: none;
}

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

.button-row .button {
  flex: 1 1 220px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition:
    color var(--transition-duration) var(--transition-easing),
    background-color var(--transition-duration) var(--transition-easing),
    border-color var(--transition-duration) var(--transition-easing),
    box-shadow var(--transition-duration) var(--transition-easing),
    transform var(--transition-duration) var(--transition-easing);
}

.button::after {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("../../shared/image/ui/button-arrow.svg") center / contain no-repeat;
  -webkit-mask: url("../../shared/image/ui/button-arrow.svg") center / contain no-repeat;
  content: "";
}

.button-primary {
  color: #fff;
  background: var(--color-primary);
}

.button-primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: 0 10px 22px rgba(125, 97, 197, 0.28);
  transform: translateY(-2px);
}

.button-primary:active {
  background: var(--color-focus);
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(125, 97, 197, 0.22);
}

.button-secondary {
  color: var(--color-primary);
  background: var(--color-background);
  border-color: var(--color-primary);
}

.button-secondary:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(125, 97, 197, 0.18);
}

.button-secondary:active {
  color: var(--color-focus);
  background: var(--color-background);
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(125, 97, 197, 0.14);
}

.button:disabled,
.button[aria-disabled="true"],
button:disabled,
a[aria-disabled="true"] {
  color: var(--color-disabled);
  background: var(--color-disabled-surface);
  border-color: var(--color-border);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.button:disabled::after,
.button[aria-disabled="true"]::after {
  opacity: 0.65;
}

.hero-media,
.panel,
.price-card,
.info-card,
.review-card,
details,
.lead-form {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 0;
}

.hero-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.media-placeholder {
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
  color: var(--color-text-muted);
  text-align: center;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  min-width: 0;
}

.info-card,
.review-card,
.panel,
.price-card,
.lead-form {
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.info-card p,
.review-card p {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: steps;
  list-style: none;
  min-width: 0;
}

.steps li {
  position: relative;
  padding: 20px 20px 20px 68px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 0;
  overflow-wrap: anywhere;
}

.steps li::before {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 50%;
  counter-increment: steps;
  content: counter(steps);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.plain-list li {
  padding: 12px 14px;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

#program .steps li {
  border-top: 4px solid var(--color-secondary);
}

#program .steps li::before {
  color: var(--color-text);
  background: var(--color-secondary-light);
  border: 1px solid var(--color-secondary);
}

#format .steps li::before,
#signup-process .steps li::before {
  background: var(--color-primary);
}

#expert .split-layout {
  align-items: center;
}

#expert .hero-media {
  aspect-ratio: 4 / 3;
  min-height: 240px;
  background:
    linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
}

#expert .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-small);
}

#expert .panel h3 {
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

#expert .panel > p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-weight: 500;
  overflow-wrap: anywhere;
}

#expert .check-list {
  margin-bottom: 0;
}

.price-card {
  align-self: start;
  box-shadow: var(--shadow);
}

.price-value {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.review-card {
  margin: 0;
}

.review-card cite {
  display: block;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 52px;
  padding: 16px 48px 16px 18px;
  font-weight: 600;
  cursor: pointer;
  outline-offset: -3px;
  overflow-wrap: anywhere;
}

summary::marker {
  color: var(--color-primary);
}

details[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--color-text-muted);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--color-text);
  font: inherit;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition:
    border-color var(--transition-duration) var(--transition-easing),
    box-shadow var(--transition-duration) var(--transition-easing),
    background-color var(--transition-duration) var(--transition-easing);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

input:hover,
textarea:hover,
select:hover {
  border-color: var(--color-primary);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-focus);
  outline: none;
  box-shadow: 0 0 0 3px rgba(125, 97, 197, 0.2);
}

input:disabled,
textarea:disabled,
select:disabled {
  color: var(--color-disabled);
  background: var(--color-disabled-surface);
  cursor: not-allowed;
}

form:not([novalidate]) input:invalid,
form:not([novalidate]) textarea:invalid,
form:not([novalidate]) select:invalid,
[aria-invalid="true"] {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(159, 47, 69, 0.14);
}

.is-error input,
.is-error textarea,
.is-error select {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(159, 47, 69, 0.14);
}

input:-webkit-autofill {
  -webkit-text-fill-color: var(--color-text);
  box-shadow: 0 0 0 1000px var(--color-background) inset;
}

.form-message {
  color: var(--color-text-muted);
  font-size: 14px;
}

.form-note {
  margin: -2px 0 0;
  color: var(--color-text-muted);
  font-size: 10.5px;
  line-height: 1.4;
}

.form-note a {
  color: var(--color-primary);
  font-weight: 500;
  overflow-wrap: normal;
}

.form-note a:hover {
  color: var(--color-primary-dark);
}

.form-message {
  min-height: 1.6em;
  margin: 0;
}

.form-message.is-visible {
  color: var(--color-success);
  font-weight: 500;
}

.is-error,
.form-message.is-error,
.error-message {
  color: var(--color-error);
}

.is-success,
.form-message.is-success {
  color: var(--color-success);
}

.error-message,
.success-message {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.error-message {
  color: var(--color-error);
}

.success-message {
  color: var(--color-success);
}

.final-cta {
  color: #fff;
  background: var(--color-background);
}

.final-cta-layout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(142, 197, 68, 0.2), transparent 38%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.final-cta-layout::before {
  position: absolute;
  right: -90px;
  top: -80px;
  z-index: 0;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.18), transparent 56%),
    radial-gradient(circle at 28% 72%, rgba(142, 197, 68, 0.18), transparent 36%);
  border-radius: 46% 54% 62% 38%;
  pointer-events: none;
  content: "";
}

.final-cta-layout::after {
  position: absolute;
  left: -70px;
  bottom: -92px;
  z-index: 0;
  width: min(32vw, 340px);
  height: min(28vw, 300px);
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.16) 0 2px, transparent 2.5px) 0 0 / 22px 22px,
    radial-gradient(ellipse at 68% 44%, rgba(255, 255, 255, 0.14), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.final-cta-layout > * {
  position: relative;
  z-index: 1;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  margin-bottom: 0;
}

.final-cta .eyebrow {
  color: #fff;
}

.final-cta .eyebrow::before {
  background: var(--color-secondary);
}

.final-cta .button-primary {
  color: var(--color-primary);
  background: #fff;
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 10px 22px rgba(50, 50, 50, 0.18);
}

.final-cta .button-primary:active {
  color: #fff;
  background: var(--color-primary-dark);
}

.site-footer {
  padding-bottom: 24px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-layout {
  align-items: center;
  flex-direction: column;
}

.site-footer .footer-layout > div:not(.footer-links) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  transition:
    opacity var(--transition-duration) var(--transition-easing),
    transform var(--transition-duration) var(--transition-easing),
    visibility var(--transition-duration) var(--transition-easing);
  visibility: hidden;
}

body.is-sticky-cta-visible {
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

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

.sticky-cta .button {
  width: 100%;
}

@media (min-width: 720px) {
  :root {
    --space-section: 78px;
  }

  .section {
    padding: var(--space-section) 0;
  }

  .hero-layout,
  .split-layout,
  .form-layout,
  .final-cta-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
  }

  .hero {
    padding-bottom: 96px;
  }

  .trust {
    padding-top: 68px;
  }

  #results {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  #program {
    padding-top: 92px;
    padding-bottom: 104px;
  }

  #format {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  #price {
    padding-top: 96px;
    padding-bottom: 100px;
  }

  #faq {
    padding-bottom: 58px;
  }

  #benefits {
    padding-bottom: 64px;
  }

  #branches {
    padding-top: 54px;
  }

  #lead-form {
    padding-top: 58px;
  }

  .final-cta-layout .button {
    justify-self: end;
  }

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

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

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

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

  .sticky-cta {
    display: none;
  }

  body.is-sticky-cta-visible {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --section-transition-height: 44px;
    --section-transition-hero: 56px;
    --section-transition-large: 58px;
    --section-transition-medium: 44px;
    --section-transition-small: 34px;
  }

  .hero {
    padding-bottom: 58px;
    background:
      radial-gradient(ellipse at 92% 20%, rgba(125, 97, 197, 0.17), transparent 40%),
      radial-gradient(ellipse at 94% 48%, rgba(142, 197, 68, 0.09), transparent 28%),
      linear-gradient(180deg, var(--section-surface-white) 0%, #fff 82%, rgba(125, 97, 197, 0.03) 100%);
  }

  .hero::before {
    right: -150px;
    top: 24px;
    width: 280px;
    height: 280px;
    opacity: 0.54;
  }

  .hero::after {
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 52px;
  }

  .trust {
    padding-top: 48px;
  }

  .trust::before,
  #audience::before,
  #expert::before,
  #branches::before,
  #lead-form::before,
  #results::before,
  #program::before,
  #price::before,
  #reviews::before,
  #format::before,
  #benefits::before {
    opacity: 0.32;
  }

  .trust::before {
    right: -130px;
    bottom: -34px;
    width: 230px;
    height: 220px;
  }

  #audience::before,
  #branches::before {
    width: 150px;
    height: 110px;
  }

  #expert::before,
  #lead-form::before {
    width: 220px;
    height: 210px;
  }

  #program::before,
  #results::before,
  #reviews::before,
  #format::before,
  #benefits::before {
    display: none;
  }

  #audience::after,
  #format::after,
  #signup-process::after,
  #price::after,
  #reviews::after,
  #faq::after,
  #lead-form::after,
  .final-cta::after {
    height: var(--section-transition-height);
  }

  #format::after,
  #price::after,
  #faq::after {
    height: var(--section-transition-large);
  }

  #results::after {
    height: 50px;
    clip-path: polygon(0 44%, 18% 30%, 42% 48%, 62% 28%, 82% 42%, 100% 26%, 100% 100%, 0 100%);
  }

  #program::after {
    height: 54px;
    clip-path: ellipse(90% 76% at 66% 100%);
  }

  #expert::after {
    height: 46px;
    clip-path: ellipse(86% 68% at 48% 100%);
  }

  #benefits::after {
    bottom: -8px;
    height: 58px;
  }

  #lead-form::after {
    height: 42px;
  }

  #format::after {
    height: 52px;
    clip-path: polygon(0 68%, 24% 46%, 52% 60%, 78% 36%, 100% 54%, 100% 100%, 0 100%);
  }

  #price::after {
    height: 50px;
    clip-path: ellipse(94% 66% at 34% 100%);
  }

  #reviews::after {
    height: 52px;
    clip-path: ellipse(90% 66% at 66% 100%);
  }

  #faq::after {
    bottom: -1px;
    height: 56px;
  }

  .final-cta-layout::before {
    right: -140px;
    top: -110px;
    width: 260px;
    height: 260px;
    opacity: 0.62;
  }

  .final-cta-layout::after {
    display: none;
  }
}

@media (min-width: 980px) {
  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-layout {
    flex-direction: row;
  }
}

@media (min-width: 1120px) {
  .menu-toggle {
    display: none;
  }

  .site-menu,
  .site-nav,
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .site-menu {
    margin-left: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(12px, 1.2vw, 18px);
  }

  .site-nav {
    flex: 0 1 auto;
    gap: clamp(8px, 0.7vw, 12px);
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
    white-space: nowrap;
  }

  .site-nav a {
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
  }

  .site-nav a:hover {
    color: var(--color-primary);
  }
}

/* Full visual rhythm pass: denser sections, stronger cards, clearer static dividers. */
:root {
  --section-surface-lilac: rgba(125, 97, 197, 0.075);
  --section-surface-green: rgba(142, 197, 68, 0.065);
  --section-surface-neutral: #F9F9FC;
  --section-transition-height: 84px;
  --section-transition-large: 112px;
  --section-transition-medium: 82px;
}

.site-header {
  box-shadow: 0 8px 22px rgba(50, 50, 50, 0.035);
}

.header-layout,
.footer-layout {
  gap: clamp(16px, 2vw, 26px);
  padding: 16px 0;
}

.logo {
  width: 158px;
}

.social-icon {
  width: 18px;
  height: 18px;
}

.social-icon--max {
  width: 19px;
  height: 19px;
}

.section {
  padding: 58px 0;
}

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

.section-heading h2 {
  max-width: 760px;
}

.hero {
  padding-top: 54px;
  padding-bottom: 70px;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(125, 97, 197, 0.32), transparent 44%),
    radial-gradient(ellipse at 78% 50%, rgba(142, 197, 68, 0.2), transparent 32%),
    radial-gradient(circle at 14% 82%, rgba(142, 197, 68, 0.2) 0 2px, transparent 2.6px) 0 0 / 24px 24px,
    radial-gradient(circle at 19% 76%, rgba(125, 97, 197, 0.15) 0 1.7px, transparent 2.2px) 0 0 / 28px 28px,
    linear-gradient(118deg, transparent 57%, rgba(125, 97, 197, 0.09) 57% 58.4%, transparent 58.4% 100%),
    linear-gradient(180deg, var(--section-surface-white) 0%, #fff 72%, rgba(125, 97, 197, 0.045) 100%);
}

.hero-layout {
  gap: clamp(30px, 4vw, 56px);
}

.hero::before {
  right: max(-90px, -5vw);
  top: 20px;
  width: min(48vw, 560px);
  height: min(44vw, 500px);
  opacity: 1;
}

.hero::after {
  height: 112px;
}

.hero .check-list {
  margin-bottom: 30px;
}

.hero .button {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 17px;
}

.hero-media {
  min-height: 320px;
  padding: 28px;
  background:
    radial-gradient(ellipse at 70% 18%, rgba(125, 97, 197, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(125, 97, 197, 0.09), rgba(142, 197, 68, 0.08));
  border-color: rgba(125, 97, 197, 0.16);
  box-shadow: 0 18px 44px rgba(125, 97, 197, 0.12);
}

.media-placeholder {
  min-height: 240px;
  background:
    radial-gradient(circle at 78% 22%, rgba(142, 197, 68, 0.12), transparent 26%),
    var(--color-surface);
}

.trust {
  padding-top: 54px;
  padding-bottom: 56px;
}

.trust .card-grid,
#benefits .card-grid {
  margin-top: 22px;
}

.info-card,
.review-card,
.panel,
.price-card,
.lead-form,
.steps li {
  border-color: rgba(125, 97, 197, 0.14);
  box-shadow: 0 12px 30px rgba(50, 50, 50, 0.055);
}

.info-card {
  position: relative;
  min-height: 154px;
  padding: 24px;
}

.info-card::before {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-secondary), rgba(125, 97, 197, 0.28));
  border-radius: 100px;
  content: "";
}

.info-card h3 {
  padding-right: 32px;
  color: var(--color-primary);
}

#audience {
  padding-top: 58px;
  padding-bottom: 54px;
}

#audience .split-layout {
  align-items: start;
}

#audience .panel {
  padding: 24px;
  border-left: 5px solid var(--color-secondary);
}

#results {
  --section-bg: rgba(142, 197, 68, 0.085);
  padding-top: 68px;
  padding-bottom: 72px;
}

#results .info-card {
  min-height: 178px;
  padding: 26px;
}

#results::after {
  height: 96px;
  background: var(--section-surface-lilac);
  clip-path: polygon(0 52%, 14% 30%, 34% 58%, 55% 22%, 78% 50%, 100% 28%, 100% 100%, 0 100%);
}

#program {
  padding-top: 72px;
  padding-bottom: 82px;
}

#program::before {
  right: -70px;
  top: 44px;
  opacity: 0.9;
}

#program::after {
  height: 104px;
  clip-path: ellipse(94% 88% at 68% 100%);
}

.steps {
  gap: 18px;
  margin-top: 24px;
}

.steps li {
  min-height: 150px;
  padding: 24px 24px 24px 76px;
}

.steps li::before {
  left: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  box-shadow: 0 8px 18px rgba(125, 97, 197, 0.18);
}

#program .steps li {
  min-height: 168px;
  border-top-width: 5px;
}

#format {
  padding-top: 66px;
  padding-bottom: 78px;
}

#format .steps li {
  background:
    linear-gradient(180deg, #fff, rgba(125, 97, 197, 0.035));
  border-style: dashed;
}

#format .steps li::before,
#signup-process .steps li::before {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

#format::after {
  height: 96px;
  background: var(--section-surface-white);
  clip-path: polygon(0 62%, 18% 36%, 44% 60%, 72% 28%, 100% 48%, 100% 100%, 0 100%);
}

#expert {
  padding-top: 72px;
  padding-bottom: 64px;
}

#expert .split-layout {
  gap: clamp(26px, 3vw, 44px);
  padding: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(ellipse at 16% 26%, rgba(125, 97, 197, 0.06), transparent 42%),
    linear-gradient(135deg, rgba(125, 97, 197, 0.035), rgba(142, 197, 68, 0.035));
  border: 1px solid rgba(125, 97, 197, 0.1);
  border-radius: 28px;
}

#expert .hero-media {
  min-height: 220px;
}

#expert .panel {
  padding: 26px;
}

#expert::after {
  height: 92px;
  background:
    radial-gradient(ellipse at 78% 100%, rgba(142, 197, 68, 0.12), transparent 54%),
    rgba(125, 97, 197, 0.085);
  clip-path: ellipse(92% 78% at 38% 100%);
}

#benefits {
  padding-top: 64px;
  padding-bottom: 48px;
}

#benefits::before {
  right: -70px;
  bottom: -20px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(125, 97, 197, 0.16), transparent 62%),
    radial-gradient(circle at 24% 34%, rgba(142, 197, 68, 0.1), transparent 32%);
}

#benefits::after {
  bottom: -8px;
  height: 108px;
}

#branches {
  --section-bg: linear-gradient(180deg, rgba(142, 197, 68, 0.075), var(--section-surface-neutral) 72%);
  padding-top: 56px;
  padding-bottom: 68px;
}

#branches .split-layout {
  align-items: start;
}

#branches .section-heading {
  padding: 18px 0 0;
}

#branches .section-heading .button {
  margin-top: 12px;
  justify-self: start;
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 10px 22px rgba(125, 97, 197, 0.22);
}

#branches .section-heading .button:hover,
#branches .section-heading .button:focus-visible {
  color: #fff;
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 12px 24px rgba(125, 97, 197, 0.28);
}

#branches .section-heading .button:active {
  color: #fff;
  background: var(--color-focus);
  border-color: var(--color-focus);
}

#branches .panel {
  padding: 28px;
  border-color: rgba(142, 197, 68, 0.24);
}

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

.branch-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(142, 197, 68, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(50, 50, 50, 0.045);
}

.branch-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 34px;
  align-self: center;
  color: var(--color-primary);
}

.branch-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 17px;
  height: 17px;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.branch-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.branch-copy,
.branch-name,
.branch-address {
  display: block;
  min-width: 0;
}

.branch-name {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.35;
}

.branch-address {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

#branches::before {
  opacity: 0.5;
}

#branches::after {
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 86px;
  background: var(--section-surface-lilac);
  clip-path: polygon(0 64%, 20% 46%, 50% 58%, 78% 32%, 100% 52%, 100% 100%, 0 100%);
  pointer-events: none;
  content: "";
}

#signup-process {
  padding-top: 64px;
  padding-bottom: 70px;
}

#signup-process .steps li {
  min-height: 158px;
}

#signup-process .steps {
  position: relative;
  z-index: 0;
}

#signup-process .steps::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 97, 197, 0.22), rgba(142, 197, 68, 0.2));
  border-radius: 100px;
  pointer-events: none;
  content: "";
}

#signup-process .steps li {
  z-index: 1;
}

#price {
  padding-top: 70px;
  padding-bottom: 70px;
}

#price .split-layout,
#lead-form .form-layout {
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.price-card {
  width: min(100%, 420px);
  padding: 28px;
  border-color: rgba(125, 97, 197, 0.18);
}

.price-value {
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 52px);
}

#price::after {
  height: 96px;
  background:
    radial-gradient(ellipse at 72% 100%, rgba(125, 97, 197, 0.1), transparent 58%),
    var(--section-surface-white);
  clip-path: ellipse(98% 82% at 28% 100%);
}

#reviews {
  --section-bg: linear-gradient(180deg, rgba(125, 97, 197, 0.035), #fff 58%);
  padding-top: 64px;
  padding-bottom: 68px;
}

#reviews::before {
  width: min(24vw, 250px);
  height: min(24vw, 250px);
  opacity: 0.46;
}

.review-card {
  min-height: 180px;
  padding: 26px;
}

#faq {
  padding-top: 58px;
  padding-bottom: 44px;
}

#faq .container.narrow {
  max-width: 920px;
}

.faq-list {
  gap: 12px;
  margin-top: 20px;
}

summary {
  min-height: 60px;
  padding: 18px 56px 18px 22px;
}

details {
  border-color: rgba(125, 97, 197, 0.13);
}

details[open] {
  border-color: rgba(125, 97, 197, 0.42);
}

#lead-form {
  --section-bg: linear-gradient(180deg, rgba(142, 197, 68, 0.075), rgba(255, 255, 255, 0.92));
  padding-top: 52px;
  padding-bottom: 60px;
}

#lead-form::before {
  right: -70px;
  top: 12px;
  width: min(24vw, 260px);
  height: min(22vw, 240px);
  opacity: 0.5;
}

.lead-form {
  width: min(100%, 520px);
  padding: 26px;
}

#lead-form::after {
  height: 92px;
  background:
    radial-gradient(ellipse at 24% 100%, rgba(125, 97, 197, 0.11), transparent 56%),
    var(--section-surface-white);
  clip-path: ellipse(96% 76% at 58% 100%);
}

.final-cta {
  padding-top: 54px;
  padding-bottom: 58px;
}

.final-cta-layout {
  min-height: 230px;
  padding: clamp(32px, 4vw, 48px);
}

.final-cta h2 {
  font-size: clamp(30px, 4.5vw, 48px);
}

.final-cta p {
  font-size: 18px;
}

.final-cta .button {
  min-height: 56px;
  padding: 16px 26px;
}

.site-footer {
  padding: 20px 0;
}

.site-footer .logo {
  width: 156px;
}

.site-footer .phone-link {
  font-size: 23px;
}

@media (min-width: 720px) {
  :root {
    --space-section: 74px;
  }

  .section {
    padding: var(--space-section) 0;
  }

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

  .trust {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  #audience {
    padding-top: 66px;
    padding-bottom: 58px;
  }

  #results {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  #program {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  #format {
    padding-top: 70px;
    padding-bottom: 84px;
  }

  #expert {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  #benefits {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  #branches {
    padding-top: 58px;
    padding-bottom: 74px;
  }

  #signup-process {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  #price {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  #reviews {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  #faq {
    padding-top: 62px;
    padding-bottom: 46px;
  }

  #lead-form {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .final-cta {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .card-grid {
    gap: 20px;
  }

  .card-grid.four {
    gap: 18px;
  }

  .site-footer {
    padding: 24px 0;
  }
}

@media (min-width: 1120px) {
  .header-layout {
    padding: 18px 0;
  }

  .site-menu {
    gap: clamp(16px, 1.5vw, 24px);
  }

  .header-actions {
    gap: 10px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  }

  .hero-media {
    min-height: 390px;
  }

  .media-placeholder {
    min-height: 300px;
  }

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

  .steps.compact {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-transition-height: 44px;
    --section-transition-large: 58px;
    --section-transition-medium: 48px;
  }

  .section {
    padding: 50px 0;
  }

  .header-layout,
  .footer-layout {
    padding: 14px 0;
  }

  .logo,
  .site-footer .logo {
    width: 144px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .hero::before {
    opacity: 0.62;
  }

  .hero::after {
    height: 54px;
  }

  .hero .button {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .hero-media {
    min-height: 250px;
    padding: 20px;
  }

  .media-placeholder {
    min-height: 190px;
  }

  .trust,
  #audience,
  #results,
  #program,
  #format,
  #expert,
  #benefits,
  #branches,
  #signup-process,
  #price,
  #reviews,
  #faq,
  #lead-form,
  .final-cta {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  #benefits {
    padding-bottom: 38px;
  }

  #branches {
    padding-top: 44px;
  }

  #faq {
    padding-bottom: 34px;
  }

  #lead-form {
    padding-top: 42px;
  }

  .info-card,
  .review-card,
  .panel,
  .price-card,
  .lead-form,
  .steps li {
    padding: 20px;
  }

  .info-card {
    min-height: 138px;
  }

  .steps li {
    min-height: 0;
    padding-left: 68px;
  }

  .steps li::before {
    left: 20px;
    top: 20px;
  }

  #expert .split-layout {
    padding: 16px;
    border-radius: 22px;
  }

  #expert .hero-media {
    min-height: 210px;
  }

  #branches::after,
  #results::after,
  #format::after,
  #price::after,
  #reviews::after,
  #lead-form::after {
    height: 52px;
  }

  #benefits::after {
    bottom: -4px;
    height: 58px;
  }

  #signup-process .steps::before {
    display: none;
  }

  .final-cta-layout {
    min-height: 0;
  }

  .site-footer .phone-link {
    font-size: 22px;
  }
}

/* Final desktop/mobile visual polish pass for confirmed remaining weak spots. */
.hero::before {
  right: max(-62px, -3.5vw);
  top: 4px;
  width: min(51vw, 620px);
  height: min(47vw, 560px);
  background:
    radial-gradient(ellipse at 58% 38%, rgba(125, 97, 197, 0.22), transparent 56%),
    radial-gradient(circle at 24% 74%, rgba(142, 197, 68, 0.13), transparent 34%);
}

.hero-media {
  min-height: 350px;
  padding: 30px;
  background:
    radial-gradient(ellipse at 82% 18%, rgba(255, 255, 255, 0.72), transparent 42%),
    radial-gradient(circle at 22% 82%, rgba(142, 197, 68, 0.13), transparent 32%),
    linear-gradient(138deg, rgba(125, 97, 197, 0.13), rgba(142, 197, 68, 0.105));
  border-color: rgba(125, 97, 197, 0.24);
  border-radius: 34px;
  box-shadow: 0 24px 58px rgba(125, 97, 197, 0.16);
}

.media-placeholder {
  min-height: 260px;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(125, 97, 197, 0.08), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(142, 197, 68, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--color-surface));
  border: 1px solid rgba(125, 97, 197, 0.18);
  border-radius: 26px;
}

.trust .info-card {
  padding: 26px 24px 24px;
}

.trust .info-card::before {
  width: 42px;
  height: 7px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.trust .info-card h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.08;
}

#audience .split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(22px, 2.2vw, 34px);
}

#audience .panel {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background:
    radial-gradient(ellipse at 0% 24%, rgba(142, 197, 68, 0.08), transparent 42%),
    linear-gradient(180deg, #fff, rgba(125, 97, 197, 0.035));
}

#results .info-card {
  border-bottom: 4px solid rgba(142, 197, 68, 0.42);
  background:
    radial-gradient(circle at 88% 16%, rgba(142, 197, 68, 0.1), transparent 28%),
    linear-gradient(180deg, #fff, rgba(142, 197, 68, 0.045));
}

#results .info-card h3 {
  color: var(--color-text);
  font-size: clamp(21px, 2vw, 25px);
}

#program .steps li {
  background:
    linear-gradient(180deg, #fff, rgba(142, 197, 68, 0.045));
}

#program .steps li::before {
  width: 42px;
  height: 42px;
}

#format .steps {
  position: relative;
  isolation: isolate;
}

#format .steps::before {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 48px;
  z-index: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(125, 97, 197, 0.2), rgba(142, 197, 68, 0.18));
  border-radius: 100px;
  pointer-events: none;
  content: "";
}

#format .steps li {
  z-index: 1;
  border: 1px solid rgba(125, 97, 197, 0.18);
  border-left: 5px solid rgba(125, 97, 197, 0.42);
  border-radius: 24px 30px 24px 30px;
}

#benefits .info-card {
  min-height: 176px;
  padding-top: 30px;
  padding-bottom: 30px;
}

#benefits .info-card h3 {
  color: var(--color-text);
  font-size: clamp(20px, 1.8vw, 23px);
  line-height: 1.22;
}

#branches .split-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  gap: clamp(22px, 2.4vw, 36px);
}

#branches .panel {
  width: 100%;
  max-width: 570px;
  justify-self: end;
  padding: 32px;
}

#branches .button {
  min-width: 260px;
}

#signup-process .steps::before {
  top: 46px;
  height: 4px;
  background: linear-gradient(90deg, rgba(125, 97, 197, 0.28), rgba(142, 197, 68, 0.26));
}

#price .split-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(34px, 4.2vw, 72px);
  align-items: center;
}

#price .section-heading .button {
  margin-top: 18px;
}

.price-card {
  position: relative;
  width: min(100%, 620px);
  justify-self: start;
  padding: clamp(34px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, var(--color-primary) 0%, #8B6BE3 100%);
  border-color: transparent;
  border-radius: 22px;
  box-shadow: 0 26px 58px rgba(125, 97, 197, 0.28);
}

.price-card::before {
  position: absolute;
  right: -74px;
  bottom: -88px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.price-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.price-value {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(40px, 3.8vw, 52px);
  line-height: 1.08;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.price-value span {
  display: inline-block;
  white-space: nowrap;
}

.price-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.5;
}

.price-card .button {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  min-height: 56px;
  color: var(--color-primary);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 14px 26px rgba(50, 50, 50, 0.12);
}

.price-card .button:hover,
.price-card .button:focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: 0 16px 30px rgba(50, 50, 50, 0.18);
}

.price-card .button:active {
  color: #fff;
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.review-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 30px 28px 28px;
}

.review-card::before {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 40px;
  height: 28px;
  background:
    radial-gradient(circle at 28% 50%, rgba(125, 97, 197, 0.18) 0 8px, transparent 8.5px),
    radial-gradient(circle at 72% 50%, rgba(142, 197, 68, 0.16) 0 8px, transparent 8.5px);
  pointer-events: none;
  content: "";
}

.review-card cite {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 97, 197, 0.13);
  color: var(--color-primary);
  font-weight: 600;
}

#lead-form .form-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(20px, 2.3vw, 36px);
  align-items: center;
}

.lead-form {
  width: min(100%, 580px);
  padding: 30px;
}

.lead-form .button {
  width: 100%;
  min-height: 54px;
}

.lead-form .form-note {
  margin-bottom: 4px;
}

#format::after {
  height: 108px;
  background: var(--section-surface-white);
  clip-path: polygon(0 72%, 16% 38%, 42% 66%, 72% 30%, 100% 56%, 100% 100%, 0 100%);
}

#expert::after {
  height: 106px;
  background:
    radial-gradient(ellipse at 78% 100%, rgba(142, 197, 68, 0.14), transparent 58%),
    rgba(125, 97, 197, 0.09);
  clip-path: ellipse(96% 88% at 30% 100%);
}

#price::after {
  height: 106px;
  background:
    radial-gradient(ellipse at 70% 100%, rgba(125, 97, 197, 0.12), transparent 58%),
    var(--section-surface-white);
  clip-path: polygon(0 58%, 22% 34%, 50% 60%, 76% 30%, 100% 50%, 100% 100%, 0 100%);
}

#lead-form::after {
  height: 104px;
  background: var(--section-surface-white);
  clip-path: ellipse(96% 86% at 62% 100%);
}

@media (max-width: 767px) {
  .hero-media {
    min-height: 260px;
    padding: 22px;
    border-radius: 28px;
  }

  .media-placeholder {
    min-height: 194px;
    border-radius: 22px;
  }

  #audience .split-layout,
  #branches .split-layout,
  #price .split-layout,
  #lead-form .form-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #audience .panel,
  #branches .panel {
    max-width: none;
    justify-self: stretch;
  }

  #format .steps::before,
  #signup-process .steps::before {
    display: none;
  }

  #format .steps li {
    border-left-width: 4px;
    border-radius: 22px;
  }

  #expert .split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
  }

  #expert .split-layout > * {
    min-width: 0;
    width: 100%;
  }

  #expert .section-heading {
    max-width: none;
    margin-bottom: 16px;
  }

  #expert .panel {
    width: 100%;
    padding: 20px;
  }

  #expert h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  #benefits .info-card {
    min-height: 154px;
    padding: 24px 20px;
  }

  #branches .panel {
    padding: 24px 20px;
  }

  .branch-list {
    gap: 9px;
  }

  .branch-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 12px;
  }

  .branch-icon {
    align-self: center;
  }

  #branches .button {
    width: auto;
    min-width: 0;
  }

  .price-card {
    width: 100%;
    padding: 28px 22px;
  }

  .price-value {
    font-size: clamp(34px, 10.4vw, 46px);
  }

  .price-card .button {
    width: 100%;
  }

  .review-card {
    min-height: 190px;
    padding: 26px 22px;
  }

  summary {
    min-height: 68px;
    padding: 22px 58px 22px 22px;
  }

  summary::marker {
    font-size: 1.28em;
  }

  .lead-form {
    width: 100%;
    padding: 22px;
  }

  .lead-form .form-note {
    margin-bottom: 12px;
  }

  .lead-form .button {
    width: 100%;
    min-height: 54px;
  }

  .final-cta-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .final-cta h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .final-cta-layout .button {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    padding: 28px 0 30px;
    text-align: center;
  }

  .footer-layout {
    gap: 18px;
  }

  .site-footer .footer-layout > div:not(.footer-links) {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .footer-links {
    justify-items: center;
    gap: 10px;
  }

  #format::after,
  #expert::after,
  #price::after,
  #lead-form::after {
    height: 58px;
  }
}

/* Transition layer cleanup: divider fills must match one adjacent section, not blend as a third surface. */
:root {
  --section-surface-lilac: #F5F3FB;
  --section-surface-green: #F8FBF3;
  --section-surface-green-results: #F5FAEF;
  --section-surface-benefits-top: #F6F4FC;
  --section-surface-reviews-top: #FAF9FD;
  --section-surface-branches-top: #F6FBF1;
  --section-surface-lead-top: #F6FBF1;
}

#results {
  --section-bg: var(--section-surface-green-results);
}

#results::after {
  background: var(--section-surface-lilac);
}

#expert::after {
  background: var(--section-surface-benefits-top);
}

#benefits::after {
  color: var(--section-surface-branches-top);
}

#branches::after {
  background: var(--section-surface-lilac);
}

#price::after {
  background: var(--section-surface-reviews-top);
}

#reviews::after {
  background: var(--section-surface-neutral);
}

#faq::after {
  color: var(--section-surface-lead-top);
}

#lead-form::after {
  background: var(--section-surface-white);
}

/* Stage 5 clean reference Header + Hero rebuild. */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(125, 97, 197, 0.12);
  box-shadow: 0 6px 18px rgba(50, 50, 50, 0.04);
}

.header-layout {
  gap: clamp(12px, 2vw, 24px);
  padding: 12px 0;
}

.site-header .logo {
  width: 148px;
}

.site-header .phone-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-header .phone-link:hover,
.site-header .phone-link:focus-visible {
  color: var(--color-primary-dark);
  background: transparent;
}

.site-header .social-links {
  gap: 8px;
}

.site-header .social-links a {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  color: #fff;
  background: var(--color-secondary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(142, 197, 68, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header .social-links a:hover,
.site-header .social-links a:focus-visible {
  color: #fff;
  background: var(--color-primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 12px 24px rgba(125, 97, 197, 0.28),
    0 0 20px rgba(142, 197, 68, 0.22);
}

.site-header .social-links a:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 6px 14px rgba(125, 97, 197, 0.18);
  transition-duration: 0.15s;
}

.site-header .site-nav a {
  color: #4A4358;
  font-weight: 600;
}

.hero {
  --section-bg: #FCFBFF;
  --hero-trust-surface: #F8F6FC;
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(72px, 8vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 17% 20%, rgba(125, 97, 197, 0.22), transparent 38%),
    radial-gradient(ellipse at 49% 42%, rgba(125, 97, 197, 0.14), transparent 28%),
    radial-gradient(ellipse at 57% 52%, rgba(142, 197, 68, 0.11), transparent 30%),
    radial-gradient(ellipse at 82% 82%, rgba(142, 197, 68, 0.24), transparent 39%),
    radial-gradient(ellipse at 90% 24%, rgba(125, 97, 197, 0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #FCFBFF 50%, rgba(142, 197, 68, 0.105) 100%);
}

.hero::before {
  left: max(-210px, -14vw);
  top: -78px;
  width: min(57vw, 720px);
  height: min(48vw, 610px);
  background:
    radial-gradient(ellipse at 45% 45%, rgba(125, 97, 197, 0.27), transparent 57%),
    radial-gradient(ellipse at 74% 72%, rgba(142, 197, 68, 0.13), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 58%);
  border: 0;
  border-radius: 44% 56% 62% 38% / 46% 42% 58% 54%;
  opacity: 0.96;
}

.hero::after {
  height: 82px;
  color: var(--hero-trust-surface);
  background: currentColor;
  mask: url("../../shared/image/ui/hero-trust-wave.svg") bottom / 100% 100% no-repeat;
  -webkit-mask: url("../../shared/image/ui/hero-trust-wave.svg") bottom / 100% 100% no-repeat;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 30px);
  isolation: isolate;
}

.hero-layout::before,
.hero-layout::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.hero-layout::before {
  left: clamp(-44px, -3vw, -18px);
  bottom: clamp(44px, 7vw, 86px);
  width: min(27vw, 300px);
  min-width: 180px;
  height: 205px;
  background:
    radial-gradient(circle, rgba(125, 97, 197, 0.34) 0 1.45px, transparent 2.35px) 0 0 / 24px 24px,
    radial-gradient(circle, rgba(142, 197, 68, 0.28) 0 1.25px, transparent 2.1px) 12px 10px / 30px 30px,
    radial-gradient(ellipse at 52% 54%, rgba(255, 255, 255, 0.42), transparent 64%);
  opacity: 0.78;
  mask-image: radial-gradient(ellipse at 45% 55%, #000 0 58%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 45% 55%, #000 0 58%, transparent 78%);
}

.hero-layout::after {
  right: clamp(230px, 31vw, 430px);
  top: clamp(74px, 10vw, 132px);
  width: 250px;
  height: 178px;
  background:
    radial-gradient(circle at 14% 24%, rgba(142, 197, 68, 0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 18%, rgba(125, 97, 197, 0.5) 0 4px, transparent 5px),
    radial-gradient(circle at 64% 82%, rgba(255, 203, 74, 0.55) 0 3.5px, transparent 4.5px),
    linear-gradient(126deg, transparent 0 47%, rgba(125, 97, 197, 0.32) 48% 50%, transparent 51%) 14px 34px / 130px 34px no-repeat,
    linear-gradient(126deg, transparent 0 47%, rgba(142, 197, 68, 0.28) 48% 50%, transparent 51%) 72px 86px / 150px 34px no-repeat,
    radial-gradient(ellipse at 54% 52%, rgba(125, 97, 197, 0.12), transparent 64%);
  opacity: 0.95;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-width: 0;
}

.hero-content {
  display: flex;
  max-width: 620px;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.08;
}

.hero-offer {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--color-text-muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero .button-row {
  order: 3;
  width: 100%;
  max-width: 520px;
  gap: 12px;
  margin-bottom: 18px;
}

.hero .button-row .button {
  flex: 0 1 auto;
  min-width: min(100%, 210px);
}

.hero .button {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
}

.hero .check-list {
  order: 4;
  margin: 0;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-benefits li {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(125, 97, 197, 0.12);
  border-radius: 8px;
  box-shadow: none;
}

.hero-benefits li::before {
  content: none;
}

.hero .hero-media {
  position: relative;
  display: flex;
  min-height: clamp(350px, 42vw, 520px);
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 24px) clamp(10px, 2vw, 28px) 0;
  overflow: visible;
  background: radial-gradient(ellipse at 56% 58%, rgba(125, 97, 197, 0.09), transparent 64%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.hero .hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 22px;
  width: min(82%, 450px);
  height: min(76%, 390px);
  background: radial-gradient(ellipse at 50% 62%, rgba(142, 197, 68, 0.12), transparent 68%);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero .hero-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(6px, 2vw, 24px);
  top: clamp(24px, 5vw, 64px);
  width: 136px;
  height: 116px;
  background:
    radial-gradient(circle at 20% 34%, rgba(142, 197, 68, 0.64) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 18%, rgba(125, 97, 197, 0.48) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 54%, rgba(142, 197, 68, 0.42) 0 2.5px, transparent 3.5px),
    linear-gradient(120deg, transparent 0 45%, rgba(125, 97, 197, 0.3) 46% 48%, transparent 49%) 20px 62px / 92px 24px no-repeat,
    linear-gradient(90deg, transparent 0 38%, rgba(142, 197, 68, 0.28) 39% 41%, transparent 42%) 42px 28px / 70px 22px no-repeat;
  opacity: 0.88;
  pointer-events: none;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  color: #fff;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 24px rgba(142, 197, 68, 0.28);
}

.hero .button-primary:active,
.hero .button-secondary:active {
  color: #fff;
  background: #79AE34;
  border-color: #79AE34;
}

.hero-benefit-icon {
  display: inline-flex;
  width: 30px;
  min-width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(125, 97, 197, 0.22);
}

.hero-benefit-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit-icon--heart,
.hero-benefit-icon--chart {
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 7px 16px rgba(142, 197, 68, 0.24);
}

.hero-benefit-icon--star {
  color: #7A5F00;
  background: #FFD35A;
  box-shadow: 0 7px 16px rgba(255, 211, 92, 0.28);
}

.hero-person-image {
  position: relative;
  z-index: 1;
  width: min(100%, 505px);
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: drop-shadow(0 24px 32px rgba(50, 50, 50, 0.12));
}

.hero-note {
  position: absolute;
  z-index: 2;
  max-width: 172px;
  padding: 11px 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(125, 97, 197, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(50, 50, 50, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: heroNoteFloat 6s ease-in-out infinite;
}

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

.hero-note--top {
  left: clamp(0px, 3vw, 22px);
  top: clamp(24px, 8vw, 82px);
  animation-delay: 0s;
}

.hero-note--bottom {
  right: clamp(0px, 2vw, 18px);
  bottom: clamp(42px, 7vw, 78px);
  color: #fff;
  background: var(--color-primary);
  border-color: rgba(125, 97, 197, 0.24);
  animation-delay: 1.5s;
}

.hero-note__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
}

.hero-note__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1120px) {
  .site-menu,
  .site-nav,
  .header-actions {
    gap: 12px;
  }

  .site-menu {
    justify-content: space-between;
  }

  .site-nav {
    margin-inline: auto;
  }

  .site-nav a {
    min-height: 34px;
    color: #4A4358;
    font-size: 15.5px;
    font-weight: 600;
  }

  .hero-main {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  }
}

@media (max-width: 1119px) {
  .site-menu.is-open {
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
  }

  .site-menu.is-open .header-actions {
    align-items: start;
  }

  .site-menu.is-open .phone-link {
    width: fit-content;
  }

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

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

@media (min-width: 900px) and (max-width: 1119px) {
  .hero-main {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    gap: clamp(24px, 4vw, 42px);
  }

  .hero-person-image {
    width: min(100%, 410px);
  }

  .hero-note--top {
    top: 48px;
  }
}

@media (max-width: 767px) {
  .header-layout {
    padding: 10px 0;
  }

  .site-header .logo {
    width: 136px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 70px;
    background:
      radial-gradient(ellipse at 4% 12%, rgba(125, 97, 197, 0.22), transparent 44%),
      radial-gradient(ellipse at 72% 74%, rgba(142, 197, 68, 0.16), transparent 36%),
      radial-gradient(ellipse at 48% 44%, rgba(125, 97, 197, 0.09), transparent 38%),
      linear-gradient(180deg, #fff 0%, #FCFBFF 70%, rgba(142, 197, 68, 0.09) 100%);
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    height: 52px;
  }

  .hero-layout::before {
    left: -24px;
    bottom: 26px;
    width: 150px;
    min-width: 0;
    height: 132px;
    opacity: 0.52;
  }

  .hero-layout::after {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero-offer {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero .button-row,
  .hero .button-row .button {
    width: 100%;
  }

  .hero .hero-media {
    display: none;
  }

  .hero-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-benefits li {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    gap: 12px;
    font-size: 15px;
  }

  .hero-benefit-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
}

/* Stage 5 trust block: continues the clean light Header + Hero visual language. */
.trust .section-heading {
  max-width: 760px;
}

.trust .section-heading h2 {
  color: var(--color-primary);
}

.trust .section-heading > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--color-text-muted);
}

.trust .card-grid {
  margin-top: clamp(22px, 3vw, 34px);
}

.trust .info-card {
  background:
    radial-gradient(ellipse at 92% 12%, rgba(125, 97, 197, 0.07), transparent 40%),
    linear-gradient(180deg, #ffffff, rgba(125, 97, 197, 0.03));
  border-color: rgba(125, 97, 197, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(125, 97, 197, 0.1);
}

.trust .info-card::before {
  right: 22px;
  top: 22px;
  width: 44px;
  height: 8px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 100px;
}

.trust .info-card h3 {
  color: var(--color-primary);
}

.trust .info-card p {
  color: var(--color-text-muted);
}

.trust::after {
  left: clamp(-36px, -3vw, -16px);
  bottom: clamp(16px, 4vw, 48px);
  width: 150px;
  height: 110px;
  background:
    radial-gradient(circle, rgba(125, 97, 197, 0.3) 0 1.6px, transparent 2.5px) 0 0 / 28px 28px,
    radial-gradient(circle, rgba(142, 197, 68, 0.26) 0 1.4px, transparent 2.2px) 14px 12px / 28px 28px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 50%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 50%, transparent 82%);
}

@media (max-width: 767px) {
  .trust::after {
    display: none;
  }

  .trust .info-card {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  html {
    scroll-behavior: auto;
  }
}
