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

:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --plum: #6B3D5A;
  --plum-light: #8A5070;
  --plum-dark: #4E2D42;
  --rose: #C4748B;
  --rose-light: #EECED7;
  --gold: #B8935A;
  --gold-light: #EDE1CC;
  --dark: #2D1B1B;
  --mid: #6B5555;
  --white: #FFFFFF;
  --border: rgba(107, 61, 90, 0.12);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --shadow-soft: 0 4px 20px rgba(107, 61, 90, 0.08);
  --shadow-card: 0 2px 12px rgba(45, 27, 27, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

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

.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

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

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

.section-lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-lead--white {
  color: rgba(255, 255, 255, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--plum);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107, 61, 90, 0.3);
}

.btn--primary:hover {
  background-color: var(--plum-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 61, 90, 0.38);
}

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

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

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

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

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background-color: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(45, 27, 27, 0.08);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum-dark);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rose);
  transition: color 0.2s;
}

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

.nav .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--plum);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

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

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

.hero {
  padding-top: 68px;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--cream-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--rose-light);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--rose);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--plum-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 400;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border);
}

.hero-image-block {
  position: relative;
}

.hero-image-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(107, 61, 90, 0.2);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  max-width: 200px;
}

.hero-badge-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 4px;
}

.hero-badge-text {
  font-size: 0.72rem;
  color: var(--mid);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   WHO IT'S FOR
═══════════════════════════════════════ */

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

.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.who-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.who-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.benefits-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 40px rgba(107, 61, 90, 0.15);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--rose-light);
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   PROGRAM
═══════════════════════════════════════ */

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.program-module {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.program-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--plum), var(--rose));
}

.program-module-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.program-module h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 12px;
}

.program-module ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-module ul li {
  font-size: 0.88rem;
  color: var(--mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.program-module ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   RESULTS
═══════════════════════════════════════ */

.results-header {
  max-width: 560px;
  margin-bottom: 48px;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.result-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.result-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.result-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover .result-card-image img {
  transform: scale(1.03);
}

.result-card-body {
  padding: 18px 20px;
}

.result-card-body p {
  font-size: 0.88rem;
  color: var(--mid);
}

.results-note {
  grid-column: 1 / -1;
  background: var(--rose-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 4px;
}

.results-note p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--plum-dark);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   AUTHOR
═══════════════════════════════════════ */

.author-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.author-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-photo-placeholder {
  text-align: center;
  color: var(--mid);
}

.author-photo-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  margin: 0 auto 12px;
}

.author-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 6px;
}

.author-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.author-bio {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.97rem;
}

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

.author-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.author-point-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rose);
  margin-top: 6px;
}

.author-point p {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */

.faq-header {
  max-width: 560px;
  margin-bottom: 48px;
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: var(--cream);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--plum-dark);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--rose-light);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.2s;
  user-select: none;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--mid);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════ */

.lead-form-section {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 60%, var(--rose) 100%);
  color: var(--white);
}

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

.lead-form-content .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-form-content .section-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

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

.form-promise-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-promise-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(45, 27, 27, 0.2);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 8px;
}

.contact-form .form-subtitle {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107, 61, 90, 0.1);
  background: var(--white);
}

.form-group input::placeholder {
  color: rgba(107, 85, 85, 0.45);
}

.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--plum);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(107, 61, 90, 0.3);
  margin-top: 4px;
}

.form-submit:hover {
  background-color: var(--plum-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 61, 90, 0.38);
}

.form-legal {
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

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

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

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

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

.footer-legal strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(45, 27, 27, 0.14);
  border: 1px solid var(--border);
  z-index: 200;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.55;
}

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

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-accept {
  padding: 8px 18px;
  background-color: var(--plum);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: var(--plum-dark);
}

.cookie-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  font-size: 1.3rem;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cookie-close:hover {
  color: var(--dark);
}

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */

.legal-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--cream);
}

.legal-hero {
  background: var(--cream-dark);
  padding: 60px 24px 40px;
  border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--plum-dark);
  margin-bottom: 10px;
}

.legal-hero-meta {
  font-size: 0.85rem;
  color: var(--mid);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum-dark);
  margin: 36px 0 12px;
}

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

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

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

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

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

/* ═══════════════════════════════════════
   SUCCESS PAGE
═══════════════════════════════════════ */

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

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

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

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--plum);
}

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

.success-card p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-block {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

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

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

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

  .results-layout {
    grid-template-columns: 1fr;
  }

  .author-layout {
    grid-template-columns: 1fr;
  }

  .author-photo {
    max-width: 240px;
    aspect-ratio: 1/1;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner-actions {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-inner {
    padding: 40px 24px;
  }

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

  .hero-trust {
    gap: 12px;
  }

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

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