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

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

:root {
  --bg: #FAF8F5;
  --bg-warm: #F5EFE8;
  --bg-dark: #2A1C12;
  --primary: #B5704A;
  --primary-dark: #8C4F2C;
  --primary-light: #D4956A;
  --text: #2A1C12;
  --text-muted: #7A6555;
  --border: #E3D5C8;
  --white: #FFFFFF;
  --success: #5C8A5A;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(42, 28, 18, 0.08);
  --shadow-sm: 0 2px 8px rgba(42, 28, 18, 0.06);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181, 112, 74, 0.3);
  text-decoration: none;
}

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

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

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

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
}

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

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

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

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

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

.header-nav a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

/* ── HERO ── */
.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-flex;
  align-items: center;
  gap: 8px;
  background: #F0E4D8;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
  color: var(--text);
}

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

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

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

.hero-note::before {
  content: '✓';
  color: var(--primary);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-img-wrap {
  position: relative;
}

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

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.hero-img-badge-icon {
  width: 36px;
  height: 36px;
  background: #F0E4D8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── FOR WHOM ── */
.forwho {
  padding: 80px 0;
  background: var(--bg-warm);
}

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

.forwho-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 24px;
  border-left: 3px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.forwho-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.forwho-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROGRAM ── */
.program {
  padding: 80px 0;
}

.program-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

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

.program-module {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

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

.program-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  min-width: 36px;
}

.program-module-content h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text);
}

.program-module-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.program-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ── HOW IT WORKS ── */
.howworks {
  padding: 80px 0;
  background: var(--bg-warm);
}

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

.step {
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #E8DDD5;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* ── RESULTS ── */
.results {
  padding: 80px 0;
}

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

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.results-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.results-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #F0E4D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  margin-top: 1px;
}

.results-list li strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  font-size: 15px;
}

.results-list li p {
  font-size: 14px;
  color: var(--text-muted);
}

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

/* ── MATERIALS ── */
.materials {
  padding: 80px 0;
  background: var(--bg-dark);
  color: var(--white);
}

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

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

.materials .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.materials-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.9;
}

.materials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.materials-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  align-items: flex-start;
}

.materials-list li::before {
  content: '—';
  color: var(--primary-light);
  flex-shrink: 0;
}

.materials-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq {
  padding: 80px 0;
}

.faq-list {
  margin-top: 48px;
  max-width: 720px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}

details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── LEAD FORM ── */
.leadform {
  padding: 80px 0;
  background: var(--bg-warm);
}

.leadform-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.leadform-wrap .section-label {
  justify-content: center;
}

.leadform-wrap .section-title {
  margin-bottom: 12px;
}

.leadform-wrap .section-subtitle {
  margin: 0 auto 40px;
}

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: left;
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

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

.form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(181, 112, 74, 0.12);
}

.form-field input::placeholder {
  color: #BAA99A;
}

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

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}

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

.form-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links ul a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  font-size: 12px;
  line-height: 1.7;
}

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

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.cookie-text {
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
}

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

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

.cookie-btn {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border: none;
  transition: background var(--transition);
}

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

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

.cookie-btn-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.14);
}

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

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

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

.legal-body {
  padding: 56px 0 80px;
  max-width: 760px;
}

.legal-body h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

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

.legal-body ul {
  margin: 8px 0 14px 24px;
}

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

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #F0E4D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.success-page h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.success-page p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero-img-wrap {
    order: -1;
  }

  .hero-img-wrap img {
    height: 320px;
  }

  .hero-img-badge {
    left: 12px;
    bottom: 12px;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .program-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-header .program-img {
    display: none;
  }

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

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

  .results-img {
    height: 280px;
  }

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

  .materials-img {
    height: 260px;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

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

  .howworks-steps {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 28px 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}
