:root{
  --bg: #F4F3EF;
  --bg-alt: #ECEAE3;
  --white: #FFFFFF;
  --cream: #F4F3EF;
  --ink: #23262B;
  --ink-soft: #5B6169;
  --ink-faint: #83888F;
  --navy: #1E2733;
  --navy-dark: #12181F;
  --clay: #C1642E;
  --clay-dark: #9C4E22;
  --clay-tint: rgba(193,100,46,0.1);
  --forest: #3E5A45;
  --line: rgba(30,39,51,0.12);
  --line-soft: rgba(30,39,51,0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;
  --max-width: 1160px;
  --shadow-sm: 0 2px 10px -6px rgba(18,24,31,0.18);
  --shadow-md: 0 16px 40px -22px rgba(18,24,31,0.32);
  --shadow-lg: 0 30px 60px -26px rgba(18,24,31,0.38);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open{ overflow: hidden; }

h1,h2,h3{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p{ color: var(--ink-soft); max-width: 62ch; }

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

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

ul{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus{ top: 12px; }

.section-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin: 0 0 16px;
}
.eyebrow::before{
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--clay);
  flex-shrink: 0;
}
.eyebrow-center{ display: block; text-align: center; max-width: none; margin-left: auto; margin-right: auto; }
.eyebrow-center::before{ display: none; }

/* ---------- REVEAL ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view{ opacity: 1; transform: none; }
.stagger .reveal:nth-child(2){ transition-delay: .1s; }
.stagger .reveal:nth-child(3){ transition-delay: .2s; }
.stagger .reveal:nth-child(4){ transition-delay: .3s; }
.stagger .reveal:nth-child(5){ transition-delay: .4s; }
.stagger .reveal:nth-child(6){ transition-delay: .5s; }

/* ---------- HEADER ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,243,239,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled{
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(0,0,0,0.5);
  background: rgba(244,243,239,0.97);
}
.header-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  padding: 5px;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}
.logo:hover .logo-mark{ transform: translateY(-1px); opacity: 0.85; border-color: var(--clay-dark); }
.logo-mark img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.nav{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}
.nav a:not(.nav-cta){
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-soft);
  transition: color .2s ease;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:not(.nav-cta)::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--clay);
  transition: right .25s var(--ease);
}
.nav a:not(.nav-cta):hover{ color: var(--ink); }
.nav a:not(.nav-cta):hover::after{ right: 0; }
.nav a[aria-current="page"]{ color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after{ right: 0; }

.nav-cta{
  background: var(--clay);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, transform .18s ease, box-shadow .2s ease;
}
.nav-cta:hover{ background: var(--clay-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span{
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: inherit;
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-primary{ background: var(--clay); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--clay-dark); box-shadow: var(--shadow-md); }
.btn-ghost{ border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--bg); }
.btn-outline{ border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-outline:hover{ border-color: var(--clay); color: var(--clay-dark); }
.btn-light{ background: #fff; color: var(--navy-dark); }
.btn-light:hover{ background: var(--bg); box-shadow: var(--shadow-md); }
.btn-outline-light{ border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover{ border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 11px 20px; font-size: 0.9rem; }

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

/* ---------- HERO ---------- */
.hero{ position: relative; padding: 76px 0 64px; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero-glow{
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(480px 320px at 18% 30%, rgba(193,100,46,0.14), transparent 70%),
    radial-gradient(520px 360px at 82% 10%, rgba(30,39,51,0.08), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1{
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.16;
  max-width: 17ch;
}
.hero-sub{
  font-size: 1.08rem;
  margin-top: 22px;
  max-width: 48ch;
}
.hero-note{ font-size: 0.92rem; margin-top: 16px; max-width: 48ch; color: var(--ink-faint); }
.hero-actions{
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-photo{
  max-width: 420px;
  margin: 0 auto;
  justify-self: center;
}
.hero-photo picture{
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero-photo img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

/* ---------- GENERIC SECTION ---------- */
.section{ padding: 88px 0; position: relative; }
.section-sm{ padding: 56px 0; }
.section-alt{ background: var(--bg-alt); }
.section-white{ background: var(--white); }
.section-heading{
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 16px;
}
.section-heading-center{ text-align: center; }
.section-lead{ font-size: 1.05rem; margin: 0 auto 44px; }
.section-lead-center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-head{ margin-bottom: 44px; max-width: 720px; }
.section-head-center{ margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- PROBLEM LIST ---------- */
.problem-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.problem-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.problem-list li{
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.problem-list li:last-child{ border-bottom: 1px solid var(--line); }
.problem-mark{
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 9px;
}
.problem-bridge{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  align-self: center;
}
.problem-bridge-steps{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  margin: 0 0 16px;
}
.problem-bridge p{ margin: 0; font-size: 0.98rem; }

/* ---------- RESULT CARDS ---------- */
.result-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.result-label{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-dark);
  background: var(--clay-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.result-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.result-card p{ font-size: 0.96rem; margin: 0; }

/* ---------- STATS ---------- */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.stats-grid-compact{ grid-template-columns: repeat(2, 1fr); gap: 20px 28px; }
.stat-item{
  border-top: 2px solid var(--clay);
  padding-top: 14px;
}
.stat-value{
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  color: var(--navy);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.stat-label{ font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- ABOUT TEASER / PAGE LAYOUTS ---------- */
.split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split-reverse{ grid-template-columns: 0.95fr 1.05fr; }
.split-reverse .split-media{ order: 2; }
.split-media img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}
.split-media picture{ display:block; }

.pull-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--navy);
  border-left: 3px solid var(--clay);
  padding: 4px 0 4px 26px;
  margin: 0 0 24px;
}

.card-panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 30px;
  border: 1px solid var(--line);
}

/* ---------- COACH / MENTOR ---------- */
.duo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.duo-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 3px solid var(--clay);
  box-shadow: var(--shadow-sm);
}
.duo-card:nth-child(2){ border-top-color: var(--navy); }
.duo-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.duo-card p{ font-size: 0.97rem; margin: 0; }

/* ---------- TAG LIST ---------- */
.tag-list{
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list li{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--white);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
@media (hover: hover) and (pointer: fine){
  .tag-list li:hover{ border-color: var(--clay); color: var(--clay-dark); }
}

/* ---------- PROGRAM WEEKS ---------- */
.weeks-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.week-item{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.week-num{
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--clay);
  line-height: 1;
}
.week-title{ font-size: 1.2rem; margin-bottom: 4px; }
.week-question{
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.96rem;
  margin-bottom: 12px;
}
.week-text{ font-size: 0.97rem; margin-bottom: 14px; }
.week-outcome{
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--clay-tint);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 0;
}
.week-outcome strong{ color: var(--clay-dark); flex-shrink: 0; }

/* ---------- CHECK LIST ---------- */
.check-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li{
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  align-items: flex-start;
}
.check-mark{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ---------- PRICING ---------- */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pricing-grid-3{ grid-template-columns: repeat(3, 1fr); }
.price-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured{ border-color: var(--clay); position: relative; }
.price-card-featured::before{
  content: "Программа";
  position: absolute;
  top: -13px; left: 30px;
  background: var(--clay);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-title{ font-size: 1.15rem; margin-bottom: 6px; }
.price-meta{ font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-amount{
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
  margin: 4px 0 16px;
}
.price-text{ font-size: 0.95rem; margin-bottom: 10px; }
.price-result{ font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 22px; }
.price-card .btn{ margin-top: auto; }

.price-inline{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 22px 0 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price-inline-amount{
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 500;
}
.price-inline-divider{
  width: 1px;
  height: 22px;
  background: var(--line);
  flex-shrink: 0;
}
.price-inline-meta{ font-size: 0.92rem; color: var(--ink-faint); }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-mark{ font-family: var(--font-display); font-size: 2.4rem; color: var(--clay); line-height: 1; margin-bottom: 8px; }
.testimonial-text{ font-size: 0.97rem; flex-grow: 1; margin-bottom: 18px; }
.testimonial-name{ font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.testimonial-topic{ font-size: 0.86rem; color: var(--ink-faint); }
.testimonial-topic::before{ content: " · "; }

.testimonial-carousel{
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.testimonial-slide{ display: none; }
.testimonial-slide.is-active{
  display: flex;
  animation: testimonialFade .5s var(--ease);
}
@keyframes testimonialFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}
.testimonial-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.testimonial-dot{
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.testimonial-dot:hover{ background: var(--ink-faint); }
.testimonial-dot.is-active{ background: var(--clay); transform: scale(1.2); }
@media (prefers-reduced-motion: reduce){
  .testimonial-slide.is-active{ animation: none; }
}

/* ---------- CERTIFICATE GALLERY ---------- */
.cert-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.cert-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-thumb{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.cert-thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cert-body{ padding: 18px 20px 22px; }
.cert-body h3{ font-size: 1rem; margin-bottom: 4px; }
.cert-issuer{ font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 6px; }
.cert-year{ font-size: 0.8rem; color: var(--ink-faint); }

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(18,24,31,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox-inner{ max-width: min(90vw, 900px); max-height: 86vh; position: relative; }
.lightbox img{ max-width: 100%; max-height: 86vh; display: block; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-caption{ color: rgba(255,255,255,0.8); text-align: center; margin-top: 14px; font-size: 0.92rem; }
.lightbox-close{
  position: absolute;
  top: -18px; right: -18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.lightbox-close svg{ width: 18px; height: 18px; }

/* ---------- CTA SECTION ---------- */
.cta-section{
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: #fff;
  overflow: hidden;
}
.cta-glow{
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 320px at 85% 20%, rgba(193,100,46,0.24), transparent 65%);
  pointer-events: none;
}
.cta-inner{ text-align: center; max-width: 720px; margin: 0 auto; }
.cta-section h2{ color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.cta-section p{ color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 55ch; margin-left: auto; margin-right: auto; }
.cta-actions{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-meta{ margin-top: 18px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* small inline CTA banner (mid-page) */
.mini-cta{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mini-cta h3{ font-size: 1.25rem; margin-bottom: 10px; }
.mini-cta p{ margin: 0 auto 22px; font-size: 0.98rem; }
.mini-cta .cta-meta{ color: var(--ink-faint); }

/* ---------- FOOTER ---------- */
.footer{ background: var(--navy-dark); color: rgba(255,255,255,0.72); padding: 60px 0 28px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img{ width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--clay); padding: 4px; }
.footer-brand span{ font-family: var(--font-display); color: #fff; font-size: 1.05rem; }
.footer-tagline{ font-size: 0.92rem; max-width: 32ch; color: rgba(255,255,255,0.62); }
.footer-heading{ color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ font-size: 0.94rem; color: rgba(255,255,255,0.72); transition: color .2s ease; }
.footer-links a:hover{ color: #fff; }
.footer-bottom{
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-socials{ display: flex; gap: 10px; }
.footer-social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social svg{ width: 16px; height: 16px; }
.footer-social:hover{ color: #fff; border-color: #fff; transform: translateY(-2px); }

/* ---------- BACK TO TOP ---------- */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  z-index: 90;
}
.back-to-top.visible{ opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover{ background: var(--navy-dark); }
.back-to-top svg{ width: 20px; height: 20px; }

/* ---------- LEAD FORM (shared: modal + inline) ---------- */
.lead-form-legend{ margin-bottom: 14px; }
.lead-form-field{ margin-bottom: 16px; }
.lead-form-field label{
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.lead-form-field input{
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.lead-form-field input:focus{ outline: none; border-color: var(--clay); background: var(--white); }
.lead-form-honeypot{ position: absolute; left: -9999px; }
.lead-form-status{ margin: 14px 0 0; font-size: 0.9rem; }
.lead-form-status.is-success{ color: var(--forest); }
.lead-form-status.is-error{ color: var(--clay-dark); }
.lead-form[hidden]{ display: none; }

.lead-form-channels{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.lead-form-channels-label{
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.lead-form-channels-links{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.lead-form-channels-links a{
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--clay);
}
.lead-form-channels-links a:hover{ color: var(--clay-dark); text-decoration: underline; }
.lead-form-channels-dot{ color: var(--ink-faint); }

/* ---------- LEAD MODAL ---------- */
.lead-modal{
  position: fixed;
  inset: 0;
  background: rgba(18,24,31,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lead-modal.open{ opacity: 1; pointer-events: auto; }
.lead-modal-panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  transform: translateY(12px);
  transition: transform .25s ease;
}
.lead-modal.open .lead-modal-panel{ transform: translateY(0); }
.lead-modal-panel h3{ font-size: 1.35rem; margin-bottom: 12px; padding-right: 46px; }
.lead-modal-panel > p{ font-size: 0.96rem; margin-bottom: 22px; }
.lead-modal-close{
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.lead-modal-close:hover{ background: var(--ink); color: #fff; }
.lead-modal-close svg{ width: 16px; height: 16px; }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-hero{ padding: 56px 0 48px; border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow{ margin-bottom: 14px; }
.page-hero h1{ font-size: clamp(2rem, 4vw, 2.9rem); max-width: 20ch; }
.page-hero p{ font-size: 1.05rem; margin-top: 18px; max-width: 60ch; }
.page-hero-center{ text-align: center; border-bottom: none; }
.page-hero-center h1{ margin-left: auto; margin-right: auto; }
.page-hero h1.hero-quote{
  font-style: italic;
  font-weight: 500;
  max-width: 34ch;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.35;
}

/* ---------- 404 ---------- */
.error-page{ min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 28px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px){
  .result-cards{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .cert-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .nav{
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 78px;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 90;
    overflow-y: auto;
  }
  .nav.open{ opacity: 1; transform: none; pointer-events: auto; }
  .nav a:not(.nav-cta){
    padding: 18px 28px;
    width: 100%;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav a:not(.nav-cta)::after{ display: none; }
  .nav-cta{
    margin: 20px 28px;
    padding: 15px 22px;
    border-radius: 999px;
    text-align: center;
    font-size: 1rem;
  }
  .nav-toggle{ display: flex; }
}

@media (max-width: 880px){
  .hero-inner{ grid-template-columns: 1fr; gap: 36px; }
  .hero-photo{ order: -1; max-width: 300px; }
  .split, .split-reverse{ grid-template-columns: 1fr; gap: 32px; }
  .split-reverse .split-media{ order: -1; }
  .problem-grid{ grid-template-columns: 1fr; gap: 32px; }
  .result-cards{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .duo-grid{ grid-template-columns: 1fr; }
  .week-item{ grid-template-columns: 1fr; gap: 8px; padding: 26px 24px; }
  .pricing-grid, .pricing-grid-3{ grid-template-columns: 1fr; }
  .cert-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .section{ padding: 64px 0; }
  .section-sm{ padding: 44px 0; }
}

@media (max-width: 560px){
  body{ font-size: 16px; }
  .section-inner{ padding: 0 20px; }
  .header-inner{ padding: 14px 18px; }
  .hero{ padding: 44px 0 36px; }
  .hero-actions{ flex-direction: column; }
  .hero-actions .btn{ width: 100%; }
  .btn-row{ flex-direction: column; }
  .btn-row .btn{ width: 100%; }
  .cert-grid{ grid-template-columns: 1fr; }
  .week-num{ font-size: 1.8rem; }
  .price-amount{ font-size: 2rem; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .back-to-top{ right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .cta-inner{ text-align: left; }
  .cta-actions{ justify-content: flex-start; }
  .lead-modal-panel{ padding: 30px 22px; }
}

/* ---------- MOTION PREFERENCE ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .btn, .price-card, .cert-card, .footer-social, .back-to-top, .nav, .lead-modal, .lead-modal-panel{ transition: none; }
}
