/* ===========================
   NOREVIKO — Main Stylesheet
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAF6F0;
  --bg-warm: #F3EDE3;
  --bg-dark: #2D1F15;
  --primary: #B87B5A;
  --primary-hover: #A06848;
  --primary-light: #EDD9C4;
  --text: #2D1F15;
  --text-secondary: #6B4F3A;
  --border: #DDD0C0;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
  --shadow: 0 4px 24px rgba(45, 31, 21, 0.08);
  --shadow-hover: 0 8px 32px rgba(45, 31, 21, 0.14);
}

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

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; }

/* --- Section Labels & Titles --- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 2px 16px rgba(45,31,21,0.08); }

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

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--text); }
.logo--light { color: rgba(255,255,255,0.9); }
.logo--light:hover { color: var(--white); }

.logo__n {
  color: var(--primary);
}

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

.header__nav a:not(.btn) {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.header__nav a:not(.btn):hover { color: var(--primary); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a:not(.btn) {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav .btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(45, 31, 21, 0.82) 0%,
    rgba(45, 31, 21, 0.6) 55%,
    rgba(45, 31, 21, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(237,217,196,0.4);
  border-radius: 40px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__trust-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.hero__trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===========================
   BENEFITS
   =========================== */
.benefits {
  padding: 96px 0;
  background: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.benefit-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   FOR WHOM
   =========================== */
.for-whom {
  padding: 96px 0;
  background: var(--bg);
}

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

.for-whom__image-col img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow);
}

.for-whom__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0 36px;
}

.for-whom__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.for-whom__check {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-whom__list strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.for-whom__list p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===========================
   PROGRAM
   =========================== */
.program {
  padding: 96px 0;
  background: var(--white);
}

.program__modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.program__module {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.program__module:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.program__module-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-light);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  min-width: 36px;
}

.program__module h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.program__module p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   PROCESS STEPS
   =========================== */
.process {
  padding: 96px 0;
  background: var(--bg-warm);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.process__step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(45,31,21,0.06);
}

.process__step-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}

.process__step h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.process__step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.process__arrow {
  font-size: 24px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 40px;
  font-weight: 300;
}

/* ===========================
   RESULTS
   =========================== */
.results {
  padding: 96px 0;
  background: var(--white);
}

.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.results__image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow);
}

.results__lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

.result-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.result-item:last-child { border-bottom: none; }

.result-item__dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.result-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

/* ===========================
   MATERIALS
   =========================== */
.materials {
  padding: 96px 0;
  background: var(--bg);
}

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

.materials__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.materials__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.materials__tags span {
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary-hover);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
}

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

.materials__image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  box-shadow: var(--shadow);
}

/* ===========================
   INSTRUCTOR
   =========================== */
.instructor {
  padding: 96px 0;
  background: var(--white);
}

.instructor__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.instructor__photo img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow);
}

.instructor__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.instructor__tagline {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}

.instructor__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.instructor__craft {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.instructor__craft img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 96px 0;
  background: var(--bg-warm);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 96px 0;
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
  transition: background var(--transition);
}

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

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

/* ===========================
   LEAD FORM
   =========================== */
.lead-form {
  padding: 96px 0;
  background: var(--bg);
}

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

.lead-form__info h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.lead-form__info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lead-form__promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form__promises li {
  font-size: 15px;
  color: var(--text);
  padding: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 123, 90, 0.12);
}

.form-group input::placeholder { color: #aaa; }

.form-group--checkbox .checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
}

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

.form-card__note {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: -4px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
}

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

.footer__links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

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

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer__bottom a {
  color: rgba(255,255,255,0.6);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.85); }

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 200;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.3s;
  display: none;
  max-width: 680px;
  margin: 0 auto;
}

.cookie-banner.visible { display: block; }

.cookie-banner__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
}

.cookie-banner a {
  color: var(--primary-light);
}

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

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  min-height: 100vh;
  padding-top: 64px;
}

.legal-hero {
  background: var(--bg-warm);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 15px;
  color: var(--text-secondary);
}

.legal-content {
  padding: 64px 0 96px;
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

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

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

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

.legal-content a { color: var(--primary); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.legal-back:hover { color: var(--primary); }

/* ===========================
   SUCCESS PAGE
   =========================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
}

.success-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg { color: var(--white); }

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.success-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.success-card .btn { margin-top: 20px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .burger { display: flex; }

  .for-whom__inner,
  .results__inner,
  .materials__inner,
  .instructor__inner,
  .lead-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__brand { grid-column: 1 / -1; }

  .process__arrow { display: none; }
  .process__steps { gap: 16px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .hero__content { padding-top: 32px; padding-bottom: 48px; }
  .hero__actions { flex-direction: column; }

  .benefits, .for-whom, .program, .process,
  .results, .materials, .instructor, .testimonials,
  .faq, .lead-form { padding: 64px 0; }

  .cta-band { padding: 56px 0; }

  .form-card { padding: 28px 20px; }

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

  .success-card { padding: 40px 24px; }

  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .cookie-banner__inner { flex-direction: column; }

  .process__steps {
    flex-direction: column;
  }
}
