

:root {
  --cream: #f9f4ef;
  --linen: #ede8e0;
  --rose: #c97d7d;
  --rose-dark: #a85e5e;
  --rose-light: #f2dada;
  --terracotta: #b56b4a;
  --warm-brown: #5c3d2e;
  --text-dark: #2d1e16;
  --text-mid: #5a3e35;
  --text-soft: #8a6b60;
  --white: #ffffff;
  --border: #e0d5cb;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;

  --max-w: 1100px;
  --section-gap: 5rem;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.75;
}

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

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); }

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

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span { color: var(--rose); }
.logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); text-decoration: none; }

.nav-cta { display: flex; align-items: center; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { color: var(--text-mid); font-size: 1rem; }

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, var(--cream) 60%, var(--rose-light) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { max-width: 540px; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 1rem;
}
.hero-visual { position: relative; }
.hero-visual img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: 0 16px 48px rgba(90, 40, 20, 0.12);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.hero-badge strong { display: block; color: var(--text-dark); font-size: 1.05rem; }

.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--linen); }
.section-dark { background: var(--warm-brown); color: var(--cream); }
.section-dark h2 { color: var(--cream); }

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.75rem;
}
.section-head.center p { margin: 0.75rem auto 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-soft); font-size: 0.95rem; }

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.format-img img {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.format-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.format-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-text h3 { margin-bottom: 0.25rem; }
.step-text p { color: var(--text-soft); font-size: 0.95rem; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.module-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.section-dark .module-card { background: rgba(255,255,255,0.07); }
.module-num {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.5rem;
}
.module-card h3 { color: var(--cream); margin-bottom: 0.5rem; }
.module-card p { color: rgba(249,244,239,0.75); font-size: 0.9rem; }

.results-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.results-img img {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.results-list { display: flex; flex-direction: column; gap: 1.5rem; }
.result-item { display: flex; gap: 1rem; align-items: flex-start; }
.result-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.result-item p { color: var(--text-mid); }
.result-item strong { color: var(--text-dark); }

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.materials-img img {
  border-radius: 12px;
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.materials-text p { color: var(--text-mid); margin-bottom: 1.25rem; }
.materials-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.materials-text ul li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.materials-text ul li::before {
  content: "○";
  color: var(--rose);
  position: absolute;
  left: 0;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--rose); }
.faq-icon {
  color: var(--rose);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }

.lead-section { background: var(--rose-light); }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lead-text h2 { margin-bottom: 1rem; }
.lead-text p { color: var(--text-mid); font-size: 1.05rem; }
.lead-text ul {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lead-text ul li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.lead-text ul li::before {
  content: "✓";
  color: var(--rose-dark);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.lead-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(90,40,20,0.08);
}
.lead-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.lead-form .form-note {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-consent {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.form-consent a { color: var(--rose); }
.form-submit { width: 100%; margin-top: 1.25rem; padding: 1rem; font-size: 1rem; }

.site-footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo span { color: var(--rose-light); }
.footer-brand p {
  margin-top: 0.75rem;
  color: rgba(249,244,239,0.65);
  font-size: 0.9rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: rgba(249,244,239,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(249,244,239,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(249,244,239,0.45); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--cream); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-brown);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  border-top: 3px solid var(--rose);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.9rem; color: rgba(249,244,239,0.85); }
.cookie-text a { color: var(--rose-light); }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-accept {
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--rose-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(249,244,239,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cookie-decline:hover { color: var(--cream); }

.legal-page { padding: 5rem 0; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .updated {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.legal-content p { color: var(--text-mid); margin-bottom: 1rem; }
.legal-content ul { color: var(--text-mid); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.35rem; }

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.success-inner { max-width: 520px; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}
.success-inner h1 { margin-bottom: 1rem; }
.success-inner p { color: var(--text-mid); margin-bottom: 2rem; font-size: 1.05rem; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { height: 280px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-img { display: none; }
  .results-wrap { grid-template-columns: 1fr; }
  .results-img { display: none; }
  .materials-inner { grid-template-columns: 1fr; }
  .materials-img { display: none; }
  .program-grid { grid-template-columns: 1fr; }
  .lead-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-gap: 3.5rem; }
  .hero { padding: 3rem 0 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badge { display: none; }
  .lead-form { padding: 1.75rem; }
}
