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

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

:root {
  --bg:         #FAFAF7;
  --bg-warm:    #F4EDE4;
  --bg-card:    #FFFFFF;
  --primary:    #B87157;
  --primary-d:  #9A5D44;
  --accent:     #D4A88A;
  --text:       #2C2118;
  --text-mid:   #5E4A3C;
  --text-light: #9A8070;
  --border:     #E8DAD0;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(44,33,24,0.09);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max:        1120px;
  --gap:        clamp(48px, 8vw, 96px);
}

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

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

.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(184,113,87,0.35);
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,113,87,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(44,33,24,0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--primary); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

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

.hero {
  padding: var(--gap) 0;
  background: linear-gradient(160deg, var(--bg) 55%, var(--bg-warm) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 20px; }
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note svg { flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-light); line-height: 1.3; }

section { padding: var(--gap) 0; }

.benefits { background: var(--bg-warm); }
.benefits-header { text-align: center; margin-bottom: 52px; }
.benefits-header h2 { margin-bottom: 16px; }
.benefits-header p { color: var(--text-mid); max-width: 480px; margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-mid); }

.program-header { margin-bottom: 52px; }
.program-header h2 { margin-bottom: 12px; }
.program-header p { color: var(--text-mid); max-width: 480px; }

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lessons-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lesson-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.2s;
}
.lesson-item:hover { border-color: var(--accent); }

.lesson-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  line-height: 1.2;
}
.lesson-body h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.lesson-body p { font-size: 0.85rem; color: var(--text-mid); }

.program-visual img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.process { background: var(--bg-warm); }
.process-header { text-align: center; margin-bottom: 52px; }
.process-header h2 { margin-bottom: 12px; }
.process-header p { color: var(--text-mid); max-width: 460px; margin: 0 auto; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(184,113,87,0.15);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-mid); }

.results-header { text-align: center; margin-bottom: 48px; }
.results-header h2 { margin-bottom: 12px; }
.results-header p { color: var(--text-mid); max-width: 460px; margin: 0 auto; }

.results-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}
.results-main img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.results-cards { display: flex; flex-direction: column; gap: 20px; }
.result-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.result-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 16px;
}
.result-card-author {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audience { background: var(--bg-warm); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.audience-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.audience-content h2 { margin-bottom: 12px; }
.audience-content > p { color: var(--text-mid); margin-bottom: 32px; }

.who-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.who-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.who-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.who-item p { font-size: 0.9rem; color: var(--text-mid); }
.who-item strong { display: block; color: var(--text); margin-bottom: 2px; }

.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { margin-bottom: 12px; }
.faq-header p { color: var(--text-mid); max-width: 440px; margin: 0 auto; }

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

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-family: var(--font-sans);
}
.faq-q:hover { color: var(--primary); }
.faq-arrow {
  width: 24px; height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  color: var(--primary);
  font-size: 0.9rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--primary); color: #fff; border-color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.leadform { background: linear-gradient(135deg, var(--bg-warm) 0%, #EDE0D4 100%); }
.leadform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.leadform-content h2 { margin-bottom: 16px; }
.leadform-content p { color: var(--text-mid); margin-bottom: 28px; }
.leadform-assurances { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.leadform-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.leadform-assurances li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 6px; font-size: 1.3rem; }
.form-card .form-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.form-group input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-light); }

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

.form-consent {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
}
.form-consent a { color: var(--primary); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.form-consent a:hover { border-color: var(--primary); }

.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 16px; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.9); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 700px;
  background: var(--text);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transition: opacity 0.35s, transform 0.35s;
  flex-wrap: wrap;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-text { flex: 1; font-size: 0.85rem; min-width: 200px; }
.cookie-text a { color: var(--accent); border-bottom: 1px solid transparent; }
.cookie-text a:hover { border-color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--primary-d); }
.cookie-decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.legal-header {
  background: var(--bg-warm);
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}
.legal-header .section-label { margin-bottom: 10px; }
.legal-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.legal-header time { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--text-light); }

.legal-body {
  padding: clamp(40px, 6vw, 72px) 0;
  max-width: 780px;
}
.legal-body h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 6px; line-height: 1.7; }
.legal-body a { color: var(--primary); border-bottom: 1px solid transparent; }
.legal-body a:hover { border-color: var(--primary); }

.success-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap) 0;
}
.success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  max-width: 540px;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--bg-warm), #E8D5C0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.success-card h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
.success-card p { color: var(--text-mid); margin-bottom: 32px; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); }
.mobile-nav { display: none; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-content { max-width: 100%; }
  .hero-stat { bottom: -16px; left: 16px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .program-visual { display: none; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-img { display: none; }
  .leadform-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 200;
    padding: 80px 32px 40px;
    align-items: flex-start;
  }
  .mobile-nav.active .mobile-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
  }
  .mobile-nav.active a {
    font-size: 1.3rem;
    font-family: var(--font-serif);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    color: var(--text);
  }
  .mobile-nav.active .btn {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 28px 20px; }
  .cookie-banner { bottom: 12px; left: 16px; right: 16px; width: auto; transform: none; }
  .cookie-banner.hidden { transform: translateY(20px); }
}
