@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #FBF7F0;
  --bg-warm: #F3E8D8;
  --bg-light: #F8F3EC;
  --terracotta: #B85C38;
  --terracotta-dark: #9A4A2A;
  --terracotta-light: #D4875F;
  --brown: #2A1A10;
  --brown-mid: #5C3A26;
  --sand: #E8C9A0;
  --sand-light: #F0DEC4;
  --muted: #8A6A50;
  --white: #FFFFFF;
  --border: #DEC9B0;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1120px;
  --radius: 12px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 20px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── HEADER ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

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

.nav a {
  font-size: 0.875rem;
  color: var(--brown-mid);
  transition: color var(--transition);
}

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

.header-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem !important;
  font-weight: 500;
  transition: background var(--transition) !important;
}

.header-cta:hover {
  background: var(--terracotta-dark) !important;
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

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

.mobile-nav a {
  font-size: 1rem;
  color: var(--brown-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ── HERO ── */

.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--bg) 50%, var(--bg-warm) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--brown-mid);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-mid);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.btn-secondary:hover {
  color: var(--terracotta);
}

.btn-secondary svg {
  transition: transform var(--transition);
}

.btn-secondary:hover svg {
  transform: translateX(3px);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(42, 26, 16, 0.15);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(42, 26, 16, 0.1);
}

.hero-badge-text {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.hero-badge-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

/* ── ABOUT ── */

.about {
  padding: 96px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-images img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.about-images img:first-child {
  aspect-ratio: 3/4;
  grid-row: 1 / 3;
}

.about-images img:last-child {
  aspect-ratio: 3/4;
  margin-top: 40px;
}

.about-text .section-subheading {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.about-feature-text {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

.about-feature-text strong {
  color: var(--brown);
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

/* ── FOR WHOM ── */

.for-whom {
  padding: 96px 0;
  background: var(--bg);
}

.for-whom-header {
  text-align: center;
  margin-bottom: 56px;
}

.for-whom-header .section-subheading {
  margin: 0 auto 0;
}

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

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

.for-whom-card:hover {
  box-shadow: 0 12px 40px rgba(42, 26, 16, 0.08);
  transform: translateY(-3px);
}

.for-whom-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.for-whom-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}

.for-whom-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROGRAM ── */

.program {
  padding: 96px 0;
  background: var(--bg-warm);
}

.program-header {
  margin-bottom: 56px;
}

.program-modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-module {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.program-module:hover {
  box-shadow: 0 6px 24px rgba(42, 26, 16, 0.07);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
}

.module-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sand);
  min-width: 48px;
  line-height: 1;
}

.module-title {
  flex: 1;
}

.module-title h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.module-title span {
  font-size: 0.82rem;
  color: var(--muted);
}

.module-toggle {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}

.program-module.open .module-toggle {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: white;
}

.module-body {
  display: none;
  padding: 0 28px 24px 96px;
}

.program-module.open .module-body {
  display: block;
}

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

.module-lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--brown-mid);
}

.module-lesson::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--terracotta-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */

.how {
  padding: 96px 0;
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-subheading {
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 20px;
  background: var(--white);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESULTS ── */

.results {
  padding: 96px 0;
  background: var(--bg);
}

.results-header {
  text-align: center;
  margin-bottom: 56px;
}

.results-header .section-subheading {
  margin: 0 auto;
}

.results-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(42,26,16,0.65), transparent);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ── OBJECTIONS ── */

.objections {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  color: var(--white);
}

.objections-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.objections-left .section-label {
  color: var(--sand);
}

.objections-left .section-heading {
  color: var(--white);
}

.objections-left p {
  color: var(--sand-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.objections-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.objection-item {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  background: rgba(255,255,255,0.05);
}

.objection-q {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 8px;
}

.objection-a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ── FORMAT ── */

.format {
  padding: 96px 0;
  background: var(--bg-light);
}

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.format-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.format-option {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow var(--transition);
}

.format-option:hover {
  box-shadow: 0 8px 32px rgba(42, 26, 16, 0.08);
}

.format-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.format-option h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
}

.format-badge {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 500;
}

.format-option p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.format-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format-include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--brown-mid);
}

.format-include::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.9rem;
}

.format-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.format-info-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.format-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.format-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.format-info-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── LEAD FORM ── */

.lead-form-section {
  padding: 96px 0;
  background: var(--bg-warm);
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-form-text .section-subheading {
  margin-bottom: 32px;
}

.lead-form-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--brown-mid);
}

.perk-icon {
  width: 28px;
  height: 28px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(42, 26, 16, 0.08);
}

.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown-mid);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.12);
}

.form-input::placeholder {
  color: var(--sand);
}

.form-agreement {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.form-agreement a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.form-submit:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

/* ── FAQ ── */

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

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: white;
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── FOOTER ── */

.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--terracotta-light);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--sand-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ── COOKIE BANNER ── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--brown);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

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

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

.btn-cookie-accept {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.btn-cookie-accept:hover {
  background: var(--terracotta-dark);
}

.btn-cookie-close {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.btn-cookie-close:hover {
  background: rgba(255,255,255,0.18);
}

/* ── LEGAL PAGES ── */

.legal-page {
  padding-top: 64px;
}

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

.legal-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--terracotta);
  margin-bottom: 24px;
  transition: gap var(--transition);
}

.legal-hero .back-link:hover {
  gap: 12px;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 0.875rem;
  color: var(--muted);
}

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

.legal-body {
  max-width: 740px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
  margin: 40px 0 12px;
}

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

.legal-body p {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

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

.legal-body ul li {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.65;
  margin-bottom: 6px;
}

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

/* ── SUCCESS PAGE ── */

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

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 60px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 64px rgba(42, 26, 16, 0.08);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  border: 2px solid var(--border);
}

.success-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 14px;
}

.success-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card .btn-primary {
  margin: 0 auto;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    left: 10px;
    bottom: -12px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    max-width: 420px;
    margin: 0 auto;
  }
  .for-whom-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .how-steps::before {
    display: none;
  }
  .results-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .results-gallery .gallery-item:first-child {
    grid-row: 1;
    grid-column: 1 / 3;
  }
  .objections-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .format-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 1.75rem;
  }
  .program-header {
    text-align: center;
  }
  .module-body {
    padding-left: 28px;
  }
  .how-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .results-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .results-gallery .gallery-item {
    height: 220px;
  }
  .results-gallery .gallery-item:first-child {
    grid-column: 1;
    height: 260px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .form-card {
    padding: 28px 22px;
  }
  .success-card {
    padding: 40px 24px;
  }
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .hero-badge {
    display: none;
  }
}
