/* =========================================
   Pencildraw — Основные стили
   ========================================= */

/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* Переменные */
:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EBE3;
  --bg-dark: #2C2825;
  --text: #2C2825;
  --text-muted: #6E6560;
  --accent: #8B6F47;
  --accent-light: #D4C4A8;
  --accent-hover: #73593A;
  --green: #5A7A58;
  --green-light: #E8F0E7;
  --white: #FDFCFA;
  --border: #E2D9CF;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(44, 40, 37, 0.08);
  --shadow-md: 0 4px 32px rgba(44, 40, 37, 0.12);
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-width: 1120px;
  --section-v: 88px;
}

/* Сброс */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* Утилиты */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.section--green {
  background-color: var(--green-light);
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--accent-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc--light {
  color: rgba(255,255,255,0.72);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--accent);
  box-shadow: var(--shadow);
}

.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 17px;
}

/* =========================================
   ХЕДЕР
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--text);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* =========================================
   ГЕРОЙ
   ========================================= */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero__note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__note::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* =========================================
   БОЛЬ / ПРОБЛЕМА
   ========================================= */
.pain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pain__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pain__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pain__content .section-title {
  margin-bottom: 24px;
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background-color: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-light);
}

.pain__item-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain__item-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.pain__item-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

/* =========================================
   ТРАНСФОРМАЦИЯ
   ========================================= */
.transform__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.transform__header .section-desc {
  max-width: 100%;
  margin: 0 auto;
}

.transform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.transform__card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transform__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.transform__card-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.transform__card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.transform__card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   КАК ЭТО УСТРОЕНО
   ========================================= */
.process__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: flex;
  gap: 20px;
  position: relative;
}

.process__step:not(:last-child) {
  padding-bottom: 32px;
}

.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
}

.process__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.process__info {
  padding-top: 8px;
}

.process__info h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.process__info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.process__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* =========================================
   ПРОГРАММА
   ========================================= */
.curriculum__header {
  max-width: 580px;
  margin-bottom: 48px;
}

.curriculum__modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curriculum__module {
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.curriculum__module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.15s;
}

.curriculum__module-header:hover {
  background-color: var(--bg-alt);
}

.curriculum__module-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.curriculum__module-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  background-color: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.curriculum__module-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.curriculum__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.curriculum__module.open .curriculum__chevron {
  transform: rotate(180deg);
}

.curriculum__module-body {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}

.curriculum__module.open .curriculum__module-body {
  display: block;
}

.curriculum__module-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 16px 0 12px;
  line-height: 1.65;
}

.curriculum__topics {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.curriculum__topic {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.curriculum__topic::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

/* =========================================
   ДЛЯ НАЧИНАЮЩИХ
   ========================================= */
.reassure__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.reassure__content .section-title {
  margin-bottom: 20px;
}

.reassure__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 32px;
}

.reassure__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reassure__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.reassure__check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.reassure__image-col {
  position: relative;
}

.reassure__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.reassure__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.reassure__quote {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}

.reassure__quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.reassure__quote cite {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  color: var(--text-muted);
}

/* =========================================
   ОТЗЫВЫ
   ========================================= */
.reviews__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review__card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review__stars {
  display: flex;
  gap: 3px;
}

.review__star {
  color: #C8A44A;
  font-size: 16px;
}

.review__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.review__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.review__meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   FAQ
   ========================================= */
.faq__header {
  max-width: 540px;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.faq__item {
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s;
  user-select: none;
}

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

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.68;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq__item.open .faq__answer {
  display: block;
}

/* =========================================
   ФОРМА ЗАПИСИ
   ========================================= */
.lead-form {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3D3530 100%);
  padding: var(--section-v) 0;
}

.lead-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lead-form__content .section-title--light {
  margin-bottom: 20px;
}

.lead-form__promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.lead-form__promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}

.lead-form__promise-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.lead-form__box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.lead-form__box-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background-color: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: #C4BCB4;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
}

.form-input.error {
  border-color: #C0392B;
}

.form-error {
  font-size: 12px;
  color: #C0392B;
  margin-top: 5px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-submit-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* =========================================
   ПОЛОСА CTA
   ========================================= */
.cta-strip {
  background-color: var(--accent);
  padding: 52px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-strip__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-strip__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

/* =========================================
   ФУТЕР
   ========================================= */
.footer {
  background-color: var(--bg-dark);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__logo span {
  color: var(--accent-light);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer__company {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.75);
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  max-width: 560px;
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.cookie-btn--accept {
  background-color: var(--accent);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background-color: var(--accent-hover);
}

.cookie-btn--decline {
  background-color: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* =========================================
   СТРАНИЦА УСПЕХА
   ========================================= */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.success-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 40px;
  text-align: left;
}

.success-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.success-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   ЮРИДИЧЕСКИЕ СТРАНИЦЫ
   ========================================= */
.legal-page {
  padding: 60px 0 96px;
}

.legal-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

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

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================
   АДАПТИВ
   ========================================= */
@media (max-width: 900px) {
  :root { --section-v: 64px; }

  .hero__inner,
  .pain__inner,
  .reassure__inner,
  .process__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image-wrap { order: -1; }

  .pain__image { order: -1; }

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

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

  .lead-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .reassure__quote {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .lead-form__box {
    padding: 28px 24px;
  }
}

@media (max-width: 620px) {
  :root { --section-v: 52px; }

  .header__nav { display: none; }
  .header__cta .btn { display: none; }
  .burger { display: flex; }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn--accept {
    flex: 1;
    text-align: center;
  }
}
