/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f2eb;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }
strong { font-weight: 700; }
code { font-family: 'Courier New', monospace; font-size: 0.92em; }
mark { background: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ============================================
   COLOR TOKENS
   ============================================ */
:root {
  --green-dark: #0d3320;
  --green-deep: #143d28;
  --green-mid: #1a5c35;
  --green-brand: #217346;
  --green-bright: #22c55e;
  --green-lime: #7ed957;
  --green-cta: #a3e635;
  --green-cta-hover: #bef264;
  --cream: #f5f2eb;
  --cream-light: #faf8f3;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red: #ef4444;
  --yellow: #f59e0b;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 26, 18, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav__logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1rem; color: #fff; letter-spacing: .02em;
}
.nav__logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--green-bright);
  border-radius: 6px;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
}
.nav__link {
  color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500;
  transition: color .2s;
}
.nav__link:hover { color: #fff; }
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 20px; background: var(--green-bright); color: var(--green-dark);
  font-weight: 700; font-size: .875rem; border-radius: var(--radius-full);
  transition: background .2s;
}
.nav__cta:hover { background: var(--green-cta); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: .3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a2a1a 40%, var(--green-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 48px;
  align-items: center;
}
.hero__photo-col { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.hero__photo img { width: 100%; height: auto; object-fit: cover; }
.hero__author-badge {
  position: absolute; bottom: -16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,51,32,.9); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}
.hero__author-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--green-bright);
  border-radius: 5px;
}
.hero__content-col { padding-top: 8px; }
.hero__title {
  font-size: 2.6rem; font-weight: 900; line-height: 1.15;
  margin-bottom: 20px;
}
.hero__accent {
  color: var(--green-lime); font-style: italic;
}
.hero__subtitle {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.85);
  margin-bottom: 28px; max-width: 520px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 1rem; font-weight: 700;
  border-radius: var(--radius); transition: all .2s;
  cursor: pointer;
}
.hero__btn--primary {
  background: var(--green-bright); color: var(--green-dark);
}
.hero__btn--primary:hover { background: var(--green-bright); }
.hero__btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: rgba(13,51,32,.15);
  border-radius: 5px;
}
.hero__btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}
.hero__btn--outline:hover { border-color: rgba(255,255,255,.6); }
.hero__stats {
  display: flex; gap: 40px;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-size: 1.4rem; font-weight: 800; color: #7ed942; }
.hero__stat-label { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ============================================
   PAIN
   ============================================ */
.pain {
  padding: 80px 0 0;
  background:#c6dfce;
}
.pain__header { margin-bottom: 48px; }
.pain__tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--green-brand); letter-spacing: .1em;
  margin-bottom: 12px;
}
.pain__title {
  font-size: 2.2rem; font-weight: 900; line-height: 1.2;
  color: var(--gray-900);
}
.pain__title em {
  color: var(--green-brand); font-style: italic;
}
.pain__timeline { display: flex; flex-direction: column; gap: 0; }
.pain__entry {
  display: grid; grid-template-columns: 70px 40px 1fr;
  align-items: start; gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pain__entry:last-child { border-bottom: none; }
.pain__time {
  font-size: 1.3rem; font-weight: 800; color: var(--gray-900);
  padding-top: 4px;
}
.pain__dot {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: var(--green-brand);
  border-radius: 50%; margin-top: 2px;
}
.pain__card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; font-size: .95rem; line-height: 1.6;
  color: var(--gray-700); border: 1px solid var(--gray-200);
  margin-left: 12px;
}
.pain__bottom-bar {
  margin-top: 48px; padding: 24px 32px;
  background: var(--green-dark); color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: 1.1rem; text-align: center;
}
.pain__bottom-bar em { color: var(--green-lime); }

/* ============================================
   SOLUTION
   ============================================ */
.solution {
  padding: 80px 0;
  background:#c6dfce;
}
.solution__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px; color: var(--gray-900);
}
.solution__subtitle {
  text-align: center; color: var(--gray-500); max-width: 600px;
  margin: 0 auto 48px; font-size: .95rem;
}
.solution__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.solution__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
  border: 1px solid var(--gray-200);
}
.solution__card--new {
  border-color: var(--green-bright);
  border-width: 2px;
}
.solution__card-ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--gray-100); color: var(--gray-600);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.solution__card-ribbon--green {
  background: var(--green-bright); color: var(--green-dark);
}
.solution__card-name {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 8px;
  color: var(--gray-900);
}
.solution__card-desc {
  font-size: .9rem; color: var(--gray-600); margin-bottom: 20px;
}
.solution__steps {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.solution__steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--gray-700);
}
.solution__step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; min-width: 24px;
  background: var(--gray-100); color: var(--gray-600);
  font-size: .75rem; font-weight: 700; border-radius: 50%;
}
.solution__formula {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem;
}
.solution__formula--new {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
}
.solution__formula-emoji { font-size: 1.3rem; }
.solution__tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
.solution__tag-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600;
}
.solution__tag-pill--gray {
  background: var(--gray-100); color: var(--gray-500);
}
.solution__advantages {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px;
}
.solution__adv-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--gray-700);
}
.solution__adv-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--green-bright);
  border-radius: 5px; min-width: 24px;
}
.solution__card-footer {
  font-size: .9rem; font-weight: 600; color: var(--gray-800);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 80px 0;
  background:#c6dfce;
}
.features__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px; color: var(--gray-900);
}
.features__title em { color: var(--green-brand); font-style: italic; }
.features__subtitle {
  text-align: center; color: var(--gray-500); max-width: 560px;
  margin: 0 auto 48px; font-size: .95rem;
}
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.features__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  transition: box-shadow .2s, transform .2s;
}
.features__card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.features__card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--gray-50);
  border-radius: var(--radius); margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.features__card-title {
  font-size: 1rem; font-weight: 800; margin-bottom: 8px;
  color: var(--gray-900);
}
.features__card-text {
  font-size: .875rem; color: var(--gray-600); line-height: 1.6;
}

/* ============================================
   AUTHOR
   ============================================ */
.author {
  padding: 80px 0;
  background:#c6dfce;
}
.author__section-title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 48px; color: var(--gray-900);
}
.author__card {
  display: grid; grid-template-columns: 360px 1fr; gap: 48px;
  align-items: start;
}
.author__photo-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
}
.author__photo-wrap img { width: 100%; height: auto; object-fit: cover; }
.author__photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bright); color: var(--green-dark);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700;
}
.author__photo-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: rgba(13,51,32,.15);
  border-radius: 4px;
}
.author__name {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 20px;
  color: var(--gray-900);
}
.author__stats-row {
  display: flex; gap: 16px; margin-bottom: 24px;
}

.author__stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #22C55E;
    border-radius: var(--radius);
    padding: 16px 24px;
    min-width: 120px;
}
.author__stat-num { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); }
.author__stat-label { font-size: .75rem; color:#000; }
.author__desc {
  font-size: .95rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 24px;
}

.author__companies-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.author__company {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-full); padding: 6px 14px;
  font-size: .75rem; font-weight: 700; color: var(--gray-700);
 
}
.author__company-dot { font-size: .6rem; }
.author__company--more { color: var(--gray-400); font-weight: 500; }
.company-dot--megafon {
    background: #00b956;
}
.company-dot
Specificity: (0,1,0)
 {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 900;
    color: #fff;
}


.author__companies-label {
  font-size: .7rem;
  font-weight: 700;
  color:#000;
  letter-spacing: .1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.author__companies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.author__company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  font-size: .8rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: box-shadow .2s;
}
.author__company:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.author__company svg {
  flex-shrink: 0;
}
.author__company--more {
  background: #f5f5f5;
  border-color: #e8e8e8;
  color: #888;
  font-weight: 600;
}

/* ============================================
   EASY
   ============================================ */
.easy {
  padding: 80px 0;
  background: #c6dfce;
}
.easy__author-mini {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.easy__author-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
}
.easy__author-name {
  display: block; font-size: .85rem; font-weight: 700; color: var(--gray-900);
}
.easy__author-role {
  display: block; font-size: .75rem; color: var(--gray-500);
}
.easy__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.easy__tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--green-brand); letter-spacing: .1em;
  margin-bottom: 12px;
}
.easy__title {
  font-size: 2rem; font-weight: 900; line-height: 1.2;
  margin-bottom: 20px; color: var(--gray-900);
}
.easy__text {
  font-size: .95rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 16px;
}
.easy__callout {
  background: var(--green-brand); color: #fff;
  border-radius: var(--radius); padding: 20px 24px;
  font-size: .95rem; line-height: 1.6; margin-bottom: 16px;
  border-left: 4px solid var(--green-lime);
}
.easy__compare-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.easy__compare-card--new {
  border-color: var(--green-bright);
}
.easy__compare-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; font-size: 1rem;
}
.easy__compare-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.easy__compare-dot--red { background: var(--red); }
.easy__compare-dot--green { background: var(--green-bright); }
.easy__compare-formula {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 14px 18px; font-size: .85rem; margin-bottom: 12px;
}
.easy__compare-formula--green {
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.15);
}
.easy__highlight--red {
  background: rgba(239,68,68,.15); color: var(--red);
  padding: 2px 6px; border-radius: 4px;
}
.easy__compare-note {
  font-size: .8rem; font-weight: 600;
}
.easy__compare-note--red { color: var(--red); }
.easy__compare-note--green { color: var(--green-brand); }

/* ============================================
   CAREER
   ============================================ */
.career {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a2a1a 100%);
  color: #fff;
}
.career__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.career__tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  color: var(--green-lime); letter-spacing: .1em;
  margin-bottom: 12px;
}
.career__title {
  font-size: 2rem; font-weight: 900; line-height: 1.2;
  margin-bottom: 20px;
}
.career__text {
  font-size: .95rem; line-height: 1.7;
  color: rgba(255,255,255,.75); margin-bottom: 16px;
}
.career__callout {
  background: rgba(255,255,255,.06);
  border-left: 4px solid var(--green-lime);
  border-radius: var(--radius); padding: 20px 24px;
  font-size: 1.05rem; line-height: 1.6;
}
.career__callout-accent { color: var(--green-lime); }
.career__right-label {
  display: block; font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .1em;
  margin-bottom: 20px;
}
.career__benefits { display: flex; flex-direction: column; gap: 16px; }
.career__benefit {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 18px 20px;
  font-size: .9rem; color: rgba(255,255,255,.9);
}
.career__benefit-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(126,217,87,.1); border-radius: 8px;
}

/* ============================================
   PROGRAM — Interactive tabs
   ============================================ */
.program {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a2a1a 100%);
  color: #fff;
}
.program__tag {
  display: block; text-align: center; font-size: .75rem;
  font-weight: 700; color: var(--green-bright);
  letter-spacing: .1em; margin-bottom: 12px;
}
.program__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px;
}
.program__subtitle {
  text-align: center; color: rgba(255,255,255,.6);
  margin-bottom: 48px; font-size: .95rem;
}

/* Grid: days left, content right */
.program__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* --- LEFT: Day buttons --- */
.program__days {
  display: flex; flex-direction: column; gap: 0;
  padding: 24px;
  border-right: 1px solid #e0e0e0;
  background: #f7f9f7;
}
.program__day {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid #e8ece8;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  text-align: left;
  color: var(--green-dark);
  font-family: inherit;
  position: relative;
  margin-bottom: 8px;
}
.program__day::before {
  display: none;
}
.program__day:hover {
  background: #f0f7f2;
  border-color: var(--green-bright);
}
.program__day.is-active {
      background: #0c2f1d;
    border-color: #0c2f1d;
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 115, 70, .25);
}
.program__day.is-active .program__day-icon {
  background: rgba(255,255,255,.25);
}
.program__day.is-active .program__day-icon svg path {
  fill: #fff;
}
.program__day.is-active .program__day-label {
  color: rgb(34 197 94);
}
.program__day.is-active .program__day-name {
  color: #fff;
}

.program__day-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; min-width: 32px;
  background: #e8f5e9;
  border-radius: 8px;
  transition: background .2s;
}
.program__day-text {
  display: flex; flex-direction: column;
}
.program__day-label {
  font-size: .7rem; font-weight: 700;
  color: var(--green-bright);
  letter-spacing: .05em;
  transition: color .2s;
}
.program__day-name {
  font-size: .9rem; font-weight: 700;
  color: var(--green-dark);
  transition: color .2s;
}

/* Result day special */
.program__day--result {
  margin-top: 4px;
}
.program__day--result.is-active {
  background: var(--green-bright);
}
.program__day-icon--result {
  background: #e8f5e9 !important;
  font-size: 1rem;
}
.program__day-label--result {
  color: var(--green-bright);
}

/* --- RIGHT: Content panels --- */
.program__content {
  padding: 32px;
  min-height: 360px;
  background: #fff;
}
.program__panel {
  display: none;
  animation: programFadeIn .3s ease;
}
.program__panel.is-active {
  display: block;
}
@keyframes programFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.program__panel-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.program__panel-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; min-width: 40px;
  background: var(--green-dark);
  border-radius: 10px;
}
.program__panel-icon svg path:first-child {
  fill: var(--green-dark);
}
.program__panel-icon svg path:last-child {
  fill: #fff;
}
.program__panel-icon--result {
  background: var(--green-dark);
  font-size: 1rem;
}
.program__panel-tag {
  display: block; font-size: .7rem; font-weight: 700;
  color: var(--green-bright); letter-spacing: .05em;
}
.program__panel-title {
  font-size: 1.4rem; font-weight: 800; color: var(--green-dark);
}

.program__panel-section {
  margin-bottom: 20px;
}
.program__panel-label {
  display: block; font-size: .7rem; font-weight: 700;
  color: rgba(0,0,0,.35); letter-spacing: .1em;
  margin-bottom: 8px;
}
.program__panel-section p {
  font-size: .95rem; color: #333;
  line-height: 1.7;
}
.program__panel-list {
  list-style: disc;
  padding-left: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.program__panel-list li {
  font-size: .9rem; color: #444;
  line-height: 1.6;
}
.program__panel-intro {
  font-size: .95rem; color: #555;
  margin-bottom: 20px;
}

/* Badge at bottom of panel */
.program__panel-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #e8f5e9; color: var(--green-dark);
  padding: 12px 20px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700;
  margin-top: 8px;
}
.program__panel-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--green-dark);
  border-radius: 5px;
}
.program__panel-badge-icon svg path:first-child {
  fill: var(--green-dark);
}
.program__panel-badge-icon svg path:last-child {
  fill: #fff;
}

/* Results panel with photo */
.program__panel--result .program__panel-body {
  display: flex;
  gap: 24px;
}
.program__panel--result .program__panel-body-left {
  flex: 1;
}
.program__panel--result .program__panel-body-photo {
  width: 200px;
  min-width: 200px;
  border-radius: 12px;
  overflow: hidden;
  align-self: flex-start;
}
.program__panel--result .program__panel-body-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

/* Results list (in result panel) */
.program__results-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
  list-style: none; padding: 0;
}
.program__results-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9rem; color: #333;
}
.program__results-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; min-width: 26px;
  background: var(--green-bright); color: #fff;
  font-size: .75rem; font-weight: 800; border-radius: 50%;
}

/* Download */
.program__download {
  text-align: center; margin-top: 40px;
}
.program__download-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-cta); color: #fff;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 700;
  transition: background .2s;
}
.program__download-btn:hover { background: var(--green-cta-hover); }
.program__download-btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 5px;
}
.program__download-note {
  display: block; margin-top: 10px;
  font-size: .8rem; color: rgba(255,255,255,.5);
}

@media (max-width: 768px) {
  .program__panel--result .program__panel-body {
    flex-direction: column;
  }
  .program__panel--result .program__panel-body-photo {
    width: 100%;
    min-width: unset;
    max-height: 200px;
  }
}

/* ============================================
   AUDIENCE
   ============================================ */
.audience {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a2a1a 100%);
  color: #fff;
}
.audience__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px;
}
.audience__subtitle {
  text-align: center; color: rgba(255,255,255,.6);
  margin-bottom: 36px; font-size: .95rem;
}
.audience__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.audience__tab {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.audience__tab:hover { background: rgba(255,255,255,.12); }
.audience__tab.is-active {
  background: #fff; color: #000;
  border-color: #fff;
}
.audience__panels { position: relative; }
.audience__panel {
  display: none;
  grid-template-columns: 300px 1fr; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl); overflow: hidden;
}
.audience__panel.is-active { display: grid; }
.audience__panel-photo {
   min-height: 280px;
  overflow: hidden;
  position: relative;
}
.audience__panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 280px;
}

.audience__panel-photo-placeholder {
  display: none;
}

.audience__panel-content { padding: 32px; }
.audience__panel-title {
  font-size: 1.4rem; font-weight: 800; margin-bottom: 12px;
}
.audience__panel-text {
  font-size: .95rem; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 20px;
}
.audience__panel-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-full); padding: 10px 20px;
  font-size: .85rem; font-weight: 600; color: var(--green-bright);
}
.audience__panel-badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--green-bright);
  border-radius: 5px;
}

/* ============================================
   REQUIREMENTS
   ============================================ */
.req {
  padding: 80px 0;
  background: #c6dfce;
}
.req__tag {
  display: block; text-align: center; font-size: .75rem;
  font-weight: 700; color: var(--gray-400);
  letter-spacing: .1em; margin-bottom: 12px;
}
.req__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px; color: var(--gray-900);
}
.req__subtitle {
  text-align: center; color: var(--gray-500);
  margin-bottom: 48px; font-size: .95rem;
}
.req__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.req__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
}
.req__card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; font-size: 1.1rem;
}
.req__card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
}
.req__card-icon--green { background: var(--green-bright); }
.req__card-icon--gray { background: var(--gray-100); }
.req__list { display: flex; flex-direction: column; gap: 14px; }
.req__item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--gray-700);
}
.req__item--gray { color: var(--gray-400); }
.req__check { min-width: 18px; }

/* ============================================
   COMPARE
   ============================================ */
.compare {
  padding: 80px 0;
  background: #c6dfce;
}
.compare__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 12px; color: var(--gray-900);
}
.compare__subtitle {
  text-align: center; color: var(--gray-500);
  margin-bottom: 48px; font-size: .95rem;
}
.compare__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.compare__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  position: relative;
}
.compare__card--highlighted {
  border-color: var(--green-bright); border-width: 2px;
}
.compare__ribbon {
  position: absolute; top: -14px; right: 20px;
  background: var(--green-dark); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 6px 14px; border-radius: var(--radius-full);
}
.compare__card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.compare__card-emoji { font-size: 1.5rem; }
.compare__card-name { font-size: 1.1rem; font-weight: 800; }
.compare__badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .05em; padding: 3px 10px;
  border-radius: var(--radius-full);
}
.compare__badge--gray { background: var(--gray-100); color: var(--gray-500); }
.compare__badge--blue { background: #dbeafe; color: #2563eb; }
.compare__badge--green { background: rgba(34,197,94,.1); color: var(--green-brand); }
.compare__list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px; min-height: 140px;
}
.compare__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: var(--gray-600);
}
.compare__bullet { font-size: 1.2rem; line-height: 1; }
.compare__bullet--gray { color: var(--gray-300); }
.compare__bullet--blue { color: #60a5fa; }
.compare__check { min-width: 16px; }
.compare__verdict {
  display: flex; align-items: center; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.compare__verdict-dot { width: 8px; height: 8px; border-radius: 50%; }
.compare__verdict-dot--red { background: var(--red); }
.compare__verdict-dot--yellow { background: var(--yellow); }
.compare__verdict-dot--green { background: var(--green-bright); }
.compare__verdict-text { font-size: .8rem; font-weight: 700; }
.compare__verdict-text--red { color: var(--red); }
.compare__verdict-text--yellow { color: var(--yellow); }
.compare__verdict-text--green { color: var(--green-brand); }
.compare__footer { text-align: center; margin-top: 40px; }
.compare__dots {
  display: flex; gap: 6px; justify-content: center; margin-bottom: 16px;
}
.compare__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
}
.compare__footer-text { font-size: 1.2rem; color: var(--gray-700); }
.compare__footer-accent { color: var(--red); }

/* =============================================
   PRICING + TIMER (объединённый)
   ============================================= */
.pricing {
  padding: 80px 0;
  background:#c6dfce;
}

.pricing__title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 48px;
}

/* Card grid */
.pricing__card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
}

.pricing__image {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

.pricing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pricing__info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}

/* Price */
.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.pricing__old {
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
}

.pricing__current {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing__rub {
  font-size: 2.2rem;
}

.pricing__badge {
  display: inline-block;
  background: rgba(34,197,94,.15);
  color: var(--green-bright);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

/* Features list */
.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .95rem;
}

.pricing__check {
  color: var(--green-bright);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Timer block inside card --- */
.pricing__timer-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.pricing__timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.15);
  color: var(--green-bright);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pricing__timer-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pricing__timer-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pricing__timer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing__timer-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-bright);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 56px;
  text-align: center;
  line-height: 1;
}

.pricing__timer-unit {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* CTA button */
.pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  padding: 18px 32px;
  margin-bottom: 12px;
  background: var(--green-bright);
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.pricing__cta:hover {
  background: #2ae06b;
  transform: translateY(-2px);
}

.pricing__note {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: #c6dfce;
}
.faq__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 40px; color: var(--gray-900);
}
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: border-color .2s;
}
.faq__item.is-open { border-color: var(--green-bright); }
.faq__question {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; cursor: pointer;
  transition: background .2s;
}
.faq__question:hover { background: var(--gray-50); }
.faq__q-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; min-width: 30px;
  background: var(--green-bright); border-radius: 50%;
}
.faq__q-text {
  flex: 1; font-size: .95rem; font-weight: 700; color: var(--gray-900);
}
.faq__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; min-width: 30px;
  background: var(--gray-100); border-radius: 50%;
  transition: transform .3s, background .2s;
}
.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
  background: var(--green-bright);
}
.faq__item.is-open .faq__toggle svg { stroke: var(--green-dark); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq__item.is-open .faq__answer { max-height: 300px; }
.faq__answer-inner {
  padding: 0 20px 20px 62px;
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
}

/* ============================================
   PATHS
   ============================================ */
.paths {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0a2a1a 100%);
  color: #fff;
}
.paths__title {
  font-size: 2rem; font-weight: 900; text-align: center;
  margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.paths__title span { color: var(--green-lime); }
.paths__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.paths__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl); overflow: hidden;
}
.paths__photo { height: 200px; overflow: hidden; }
.paths__photo img { width: 100%; height: 100%; object-fit: cover; }
.paths__body { padding: 28px; }
.paths__card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.paths__letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .85rem; font-weight: 800;
}
.paths__letter--gray {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.5);
}
.paths__letter--green {
  background: var(--green-bright); color: var(--green-dark);
}
.paths__card-title {
  font-size: .85rem; font-weight: 800; letter-spacing: .05em;
}
.paths__list {
  display: flex; flex-direction: column; gap: 10px;
}
.paths__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.paths__list-bullet { font-size: 1.2rem; line-height: 1; }
.paths__list-bullet--gray { color: rgba(255,255,255,.3); }
.paths__card--right .paths__list li { color: #fff; }
.paths__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.paths__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .9rem;
  color: #ccc;
}
.paths__cta-badge strong {
  color: #22c55e;
}

.paths__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 60px;
  background: #22c55e;
  color: #1a3c1a;
  font-size: 1.25rem;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 25px rgba(140, 229, 99, .35);
  max-width: 500px;
  width: 100%;
}
.paths__cta-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(140, 229, 99, .5);
}
.paths__cta-btn:active {
  transform: translateY(0);
}

.paths__cta-email {
  font-size: .9rem;
  color: #999;
  margin-top: 4px;
}
.paths__cta-email a {
  color: #22c55e;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.paths__cta-email a:hover {
  color: #8ce563;
}

@media (max-width: 768px) {
  .paths__cta {
    margin-top: 36px;
  }
  .paths__cta-btn {
    font-size: 1.1rem;
    padding: 18px 32px;
  }
}

/* ============================================
   BLOCK 14 — Старая цена (заметнее)
   ============================================ */
.pricing__old {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ef4444;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 1;
  position: relative;
  margin-right: 12px;
}
.pricing__old::before {
  content: '↘';
  position: absolute;
  left: -22px;
  top: -2px;
  font-size: 1rem;
  color: #ef4444;
  text-decoration: none;
}

/* ============================================
   BLOCK 14 — Кнопка CTA (Excel-иконка, центр)
   ============================================ */
.pricing__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 24px auto 0;
  padding: 20px 40px;
  background: #22c55e;
  color: #1a3c1a;
  font-size: 1.25rem;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 25px rgba(140, 229, 99, .35);
}
.pricing__cta-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(140, 229, 99, .5);
}
.pricing__cta-btn:active {
  transform: translateY(0);
}
.pricing__cta-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing__cta-btn {
    font-size: 1.1rem;
    padding: 18px 28px;
    max-width: 100%;
  }
  .pricing__old {
    font-size: 1.2rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: var(--green-dark);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .9rem; color: #fff;
}
.footer__logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--green-bright);
  border-radius: 5px;
}
.footer__links {
  display: flex; align-items: center; gap: 16px;
}
.footer__link {
  font-size: .8rem; color: rgba(255,255,255,.5);
  transition: color .2s; cursor: pointer;
}
.footer__link:hover { color: #fff; }
.footer__sep {
  width: 1px; height: 14px; background: rgba(255,255,255,.15);
}
.footer__copy { font-size: .75rem; line-height: 1.6; }

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #22c55e; border: none;
  border-radius: 50%; cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, background .2s;
  z-index: 999;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #22c55e; }

/* ============================================
   LEGAL MODALS
   ============================================ */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: none;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.legal-modal-overlay.is-open {
  display: block !important;
}
.legal-modal {
  background: #fff;
  border-radius: 16px;
  width: 92%;
  max-width: 640px;
  margin: 40px auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  animation: legalModalIn .3s ease;
}
@keyframes legalModalIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #1b3726;
  border-radius: 16px 16px 0 0;
}
.legal-modal__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
}
.legal-modal__icon--privacy {
  background: #21a038;
}
.legal-modal__icon--offer {
  background: #168de2;
}
.legal-modal__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.legal-modal__close {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.legal-modal__close:hover {
  background: rgba(255,255,255,.3);
}
.legal-modal__body {
  padding: 28px;
}
.legal-content {
  color: #333;
  font-size: .93rem;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 8px;
}
.legal-content p {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .legal-modal {
    width: 95%;
    margin: 20px auto;
  }
  .legal-modal__body {
    padding: 20px;
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 300px 1fr; gap: 32px; }
  .hero__title { font-size: 2rem; }
  .solution__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .author__card { grid-template-columns: 280px 1fr; gap: 32px; }
  .easy__grid { grid-template-columns: 1fr; }
  .career__grid { grid-template-columns: 1fr; }
  .program__grid { grid-template-columns: 1fr; }
  .program__days {
    flex-direction: row; flex-wrap: wrap; gap: 8px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px;
  }
  .program__day { padding: 10px 14px; }
  .program__day::before { display: none; }
  .program__day-name { font-size: .8rem; }
  .compare__grid { grid-template-columns: 1fr; }
  .pricing__card { grid-template-columns: 320px 1fr; }
  .paths__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none; flex-direction: column; gap: 16px;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--green-dark); padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__photo-col { order: -1; max-width: 300px; margin: 0 auto; }
  .hero__author-badge { left: 50%; transform: translateX(-50%); }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__title { font-size: 1.8rem; }

  .pain__entry { grid-template-columns: 50px 32px 1fr; }
  .pain__time { font-size: 1rem; }

  .features__grid { grid-template-columns: 1fr; }

  .author__card { grid-template-columns: 1fr; }
  .author__photo-wrap { max-width: 360px; margin: 0 auto; }
  .author__stats-row { flex-wrap: wrap; }

  .audience__panel { grid-template-columns: 1fr; }
  .audience__panel-photo { min-height: 200px; }

  .req__grid { grid-template-columns: 1fr; }

  .pricing__card { grid-template-columns: 1fr; min-height: auto; }
  .pricing__image { max-height: 300px; }
  .pricing__info { padding: 28px 20px; }
  .pricing__current { font-size: 2.4rem; }
  .pricing__timer-number { font-size: 1.5rem; padding: 6px 10px; min-width: 44px; }

  .program__days { flex-direction: column; }
  .program__day { padding: 12px 14px; }

  .paths__title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.5rem; }
  .hero__stats { flex-direction: column; gap: 12px; align-items: center; }
  .pain__entry { grid-template-columns: 1fr; gap: 8px; }
  .pain__dot { display: none; }
  .pain__card { margin-left: 0; }
  .audience__tabs { gap: 6px; }
  .audience__tab { padding: 6px 14px; font-size: .75rem; }
}
/* ============================================
   BLOCK 8 — Кнопка «Скачать программу»
   ============================================ */
.program__download {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.program__download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #22c55e;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}

.program__download-btn:hover {
  background: rgba(34, 197, 94, .12);
  border-color: #8ce563;
  color: #8ce563;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, .2);
}

.program__download-btn:active {
  transform: translateY(0);
}

.program__download-btn svg:last-child {
  animation: downloadBounce 2s ease-in-out infinite;
}

@keyframes downloadBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
  .program__download {
    margin-top: 36px;
  }
  .program__download-btn {
    font-size: 1rem;
    padding: 16px 32px;
    width: 100%;
  }
}
/* ============================================
   BLOCK — CONTACT (Остались вопросы?)
   ============================================ */
.contact {
  padding: 80px 0;
  background: #14532d;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 24px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.contact__photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(34, 197, 94, .4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__info {
  flex: 1;
}

.contact__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.contact__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  margin: 0 0 28px;
  line-height: 1.6;
}

.contact__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
}

/* MAX */
.contact__btn--max {
  background: rgba(22, 141, 226, .15);
  border-color: rgba(22, 141, 226, .5);
  color: #7dcbff;
}
.contact__btn--max:hover {
  background: rgba(22, 141, 226, .3);
  border-color: #168DE2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(22, 141, 226, .35);
}

/* Telegram */
.contact__btn--tg {
  background: rgba(39, 167, 231, .15);
  border-color: rgba(39, 167, 231, .5);
  color: #7dd4ff;
}
.contact__btn--tg:hover {
  background: rgba(39, 167, 231, .3);
  border-color: #27A7E7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(39, 167, 231, .35);
}

.contact__btn:active {
  transform: translateY(0);
}

.contact__btn svg {
  flex-shrink: 0;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact__card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 28px;
  }

  .contact__photo {
    width: 150px;
    height: 150px;
  }

  .contact__title {
    font-size: 1.5rem;
  }

  .contact__buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .contact__photo {
    width: 120px;
    height: 120px;
  }

  .contact__title {
    font-size: 1.3rem;
  }

  .contact__btn {
    font-size: .95rem;
    padding: 12px 20px;
  }
}

