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

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

:root {
  --cream:    #FAF7F2;
  --cream-2:  #F2EBE0;
  --rose:     #7B3F5E;
  --rose-light: #B8748A;
  --terra:    #C4835A;
  --brown:    #2C2117;
  --brown-mid:#5C4033;
  --sand:     #D4C4B8;
  --sand-light:#EDE5DC;
  --white:    #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --max-w: 1100px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 500; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
  line-height: 1.4;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: #6a3350; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,63,94,0.28); }
.btn-outline { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: #b3764e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,131,90,0.3); }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--rose); letter-spacing: -0.01em; }
.nav__logo span { color: var(--terra); }
.nav__cta { font-size: 0.9rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all 0.25s; }
.nav__mobile { display: none; flex-direction: column; gap: 16px; padding: 20px 24px; background: var(--cream); border-top: 1px solid var(--sand); }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 1rem; font-weight: 500; color: var(--brown); }

.hero { padding: 60px 0 0; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 0; }
.hero__text { padding-bottom: 60px; }
.hero__kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 20px; }
.hero__title { margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--rose); }
.hero__desc { font-size: 1.05rem; color: var(--brown-mid); margin-bottom: 36px; max-width: 440px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__note { font-size: 0.8rem; color: var(--brown-mid); margin-top: 14px; display: flex; align-items: center; gap: 6px; }
.hero__note::before { content: "✓"; color: var(--terra); font-weight: 600; }
.hero__img-wrap { position: relative; height: 520px; }
.hero__img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.hero__badge { position: absolute; bottom: 32px; left: -20px; background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-md); padding: 14px 18px; box-shadow: 0 8px 32px rgba(44,33,23,0.12); max-width: 200px; font-size: 0.85rem; color: var(--brown); line-height: 1.4; }
.hero__badge strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--rose); margin-bottom: 2px; }

.trust { background: var(--sand-light); padding: 20px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.trust__list { display: flex; align-items: center; justify-content: center; gap: 40px; list-style: none; flex-wrap: wrap; }
.trust__item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--brown-mid); font-weight: 500; }
.trust__icon { font-size: 1rem; color: var(--terra); }

.pain { padding: var(--section-py) 0; }
.pain__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pain__img { border-radius: var(--r-lg); overflow: hidden; }
.pain__img img { width: 100%; height: 380px; object-fit: cover; }
.pain__text h2 { margin-bottom: 24px; }
.pain__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pain__list li { display: flex; gap: 12px; font-size: 0.97rem; color: var(--brown-mid); line-height: 1.6; }
.pain__list li::before { content: "—"; color: var(--rose); flex-shrink: 0; margin-top: 1px; }
.pain__closing { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--rose); border-left: 3px solid var(--rose); padding-left: 18px; margin-top: 24px; }

.outcomes { padding: var(--section-py) 0; background: var(--brown); color: var(--cream); }
.outcomes h2 { color: var(--cream); text-align: center; margin-bottom: 12px; }
.outcomes__sub { text-align: center; color: var(--sand); font-size: 0.95rem; max-width: 520px; margin: 0 auto 48px; }
.outcomes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 28px 24px; }
.outcome-card__num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--terra); margin-bottom: 6px; line-height: 1; }
.outcome-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; font-weight: 500; }
.outcome-card p { font-size: 0.88rem; color: var(--sand); line-height: 1.65; }

.program { padding: var(--section-py) 0; }
.program__header { text-align: center; margin-bottom: 48px; }
.program__header h2 { margin-bottom: 12px; }
.program__header p { color: var(--brown-mid); max-width: 520px; margin: 0 auto; }
.program__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.module { background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-md); padding: 24px 28px; transition: border-color 0.2s, box-shadow 0.2s; }
.module:hover { border-color: var(--rose); box-shadow: 0 4px 20px rgba(123,63,94,0.08); }
.module__tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.module h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--brown); }
.module ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.module ul li { font-size: 0.85rem; color: var(--brown-mid); display: flex; gap: 8px; }
.module ul li::before { content: "·"; color: var(--rose); font-size: 1.2rem; line-height: 1.2; flex-shrink: 0; }

.format { padding: var(--section-py) 0; background: var(--cream-2); }
.format__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.format__img { border-radius: var(--r-lg); overflow: hidden; }
.format__img img { width: 100%; height: 420px; object-fit: cover; }
.format__text h2 { margin-bottom: 20px; }
.format__text > p { color: var(--brown-mid); margin-bottom: 32px; font-size: 0.97rem; }
.format__items { display: flex; flex-direction: column; gap: 20px; }
.format__item { display: flex; gap: 16px; }
.format__item-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.format__item-body h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--brown); font-family: var(--font-sans); }
.format__item-body p { font-size: 0.85rem; color: var(--brown-mid); line-height: 1.55; }

.forwhom { padding: var(--section-py) 0; }
.forwhom__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.forwhom__col h3 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.forwhom__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.forwhom__list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--brown-mid); line-height: 1.55; }
.for-yes li::before { content: "✓"; color: #47A96A; font-weight: 700; flex-shrink: 0; }
.for-no li::before { content: "✗"; color: #B05050; font-weight: 700; flex-shrink: 0; }
.forwhom__header { text-align: center; margin-bottom: 48px; }
.forwhom__header h2 { margin-bottom: 10px; }

.detail-strip { padding: 0; overflow: hidden; }
.detail-strip img { width: 100%; height: 280px; object-fit: cover; object-position: center 60%; }

.faq { padding: var(--section-py) 0; background: var(--white); }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__header h2 { margin-bottom: 12px; }
.faq__header p { color: var(--brown-mid); }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq__item { border: 1px solid var(--sand); border-radius: var(--r-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--brown); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; }
.faq__q:hover { background: var(--sand-light); }
.faq__q .faq__arrow { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--sand-light); display: flex; align-items: center; justify-content: center; transition: transform 0.25s, background 0.2s; font-size: 0.75rem; color: var(--rose); }
.faq__item.open .faq__arrow { transform: rotate(180deg); background: var(--rose); color: var(--white); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.9rem; color: var(--brown-mid); line-height: 1.7; padding: 0 24px; }
.faq__item.open .faq__a { max-height: 400px; padding: 0 24px 20px; }

.lead { padding: var(--section-py) 0; background: linear-gradient(135deg, var(--rose) 0%, #5a2d46 100%); color: var(--white); }
.lead__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lead__text h2 { color: var(--white); margin-bottom: 16px; }
.lead__text p { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.75; margin-bottom: 28px; }
.lead__perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lead__perks li { display: flex; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.lead__perks li::before { content: "✓"; color: #F2C97E; font-weight: 600; flex-shrink: 0; }
.lead__form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 36px 32px; }
.lead__form-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--brown); margin-bottom: 6px; text-align: center; }
.lead__form-sub { font-size: 0.82rem; color: var(--brown-mid); text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--brown); margin-bottom: 6px; }
.form-group input, .form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--sand); border-radius: var(--r-sm); font-family: var(--font-sans); font-size: 0.9rem; color: var(--brown); background: var(--cream); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--rose); background: var(--white); }
.form-group input::placeholder { color: var(--sand); }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }
.form-consent { font-size: 0.75rem; color: var(--brown-mid); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-consent a { color: var(--rose); text-decoration: underline; }
.form-error { font-size: 0.78rem; color: #c0392b; margin-top: 4px; display: none; }
.form-group.error input { border-color: #c0392b; }
.form-group.error .form-error { display: block; }

.footer { background: var(--brown); color: rgba(255,255,255,0.65); padding: 48px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer__brand h3 span { color: var(--terra); }
.footer__brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer__bottom { display: flex; flex-direction: column; gap: 8px; }
.footer__legal { font-size: 0.78rem; line-height: 1.6; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--brown); color: rgba(255,255,255,0.85); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 -4px 24px rgba(0,0,0,0.15); transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.85rem; line-height: 1.5; flex: 1; }
.cookie-banner__text a { color: var(--terra); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btns button { padding: 9px 20px; border-radius: var(--r-sm); font-size: 0.85rem; font-weight: 500; cursor: pointer; border: 1.5px solid transparent; font-family: var(--font-sans); transition: all 0.2s; }
.cookie-accept { background: var(--terra); color: var(--white); }
.cookie-accept:hover { background: #b37650; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.legal-hero { padding: 60px 0 48px; background: var(--cream-2); border-bottom: 1px solid var(--sand); text-align: center; }
.legal-hero h1 { margin-bottom: 10px; }
.legal-hero p { color: var(--brown-mid); }
.legal-content { padding: 56px 24px 80px; max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; color: var(--brown); }
.legal-content p, .legal-content li { font-size: 0.92rem; color: var(--brown-mid); line-height: 1.75; margin-bottom: 10px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 16px; }
.legal-content strong { color: var(--brown); font-weight: 600; }
.legal-content a { color: var(--rose); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--rose); font-size: 0.9rem; margin-bottom: 32px; transition: gap 0.2s; }
.legal-back:hover { gap: 10px; }

.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.success-card { max-width: 520px; margin: 0 auto; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: #EDF7F0; border: 2px solid #47A96A; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 2rem; }
.success-card h1 { font-size: 2rem; margin-bottom: 16px; color: var(--brown); }
.success-card p { color: var(--brown-mid); margin-bottom: 28px; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --section-py: 60px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img-wrap { height: 340px; }
  .hero__text { padding-bottom: 0; }
  .hero__badge { display: none; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__img { order: -1; }
  .outcomes__grid { grid-template-columns: 1fr 1fr; }
  .program__grid { grid-template-columns: 1fr; }
  .format__inner { grid-template-columns: 1fr; }
  .format__img { order: -1; }
  .forwhom__inner { grid-template-columns: 1fr; }
  .lead__inner { grid-template-columns: 1fr; gap: 40px; }
  .lead__form-wrap { padding: 28px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .outcomes__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cookie-banner__btns { width: 100%; flex-direction: column; }
  .cookie-banner__btns button { width: 100%; }
}
