/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FDF6EE;
  --warm-white: #FFFAF4;
  --rose: #C2616A;
  --rose-dark: #A84D56;
  --rose-light: #EECECE;
  --gold: #C4963A;
  --gold-light: #F5E8CC;
  --text: #2A1F1A;
  --text-muted: #6B5A52;
  --border: #E0CEC4;
  --shadow: rgba(42, 31, 26, 0.10);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --max-w: 1100px;
  --nav-h: 64px;
}

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

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rose-dark); }
ul { list-style: none; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { font-size: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none; transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--rose); color: #fff;
  box-shadow: 0 4px 18px rgba(194,97,106,.35);
}
.btn-primary:hover { background: var(--rose-dark); box-shadow: 0 6px 24px rgba(194,97,106,.45); color: #fff; }
.btn-outline {
  background: transparent; color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* === SECTION BASE === */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--text); color: #fff; }
.section-rose { background: var(--rose); #C2616A; }

.section-label {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 12px;
}
.section-dark .section-label { color: var(--gold); }
.section-rose .section-label { color: var(--gold-light); }

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }
.section-rose .section-subtitle { color: rgba(255,255,255,.85); }

.section-head { margin-bottom: 52px; }
.section-head-center { text-align: center; }
.section-head-center .section-subtitle { margin: 0 auto; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: rgba(255,250,244,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 20px var(--shadow); }
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; max-width: var(--max-w);
  margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--rose); }
.nav-cta { font-size: .9rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: all .3s;
}
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 20px 24px; flex-direction: column; gap: 16px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* === HERO === */
.hero {
  padding-top: calc(var(--nav-h) + 64px); padding-bottom: 80px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,97,106,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold); border-radius: 100px;
  padding: 6px 16px; font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-label::before { content: '✦'; }
.hero-title { margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); }
.hero-trust-item svg { flex-shrink: 0; }
.hero-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow);
}
.hero-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,250,244,.95); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 4px 16px var(--shadow);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-badge-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--rose); line-height: 1; }
.hero-badge-text { font-size: .78rem; color: var(--text-muted); }

/* === FOR WHOM === */
.whom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.whom-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.whom-card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-4px); }
.whom-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--rose-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.4rem;
}
.whom-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.whom-card p { font-size: .92rem; color: var(--text-muted); }

/* === PROGRAM === */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.program-item {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow .2s;
}
.program-item:hover { box-shadow: 0 6px 24px var(--shadow); }
.program-num {
  min-width: 40px; height: 40px; border-radius: 10px;
  background: var(--rose); color: #fff; font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.program-body h3 { font-size: 1rem; margin-bottom: 6px; }
.program-body p { font-size: .88rem; color: var(--text-muted); }

/* === RESULTS === */
.results-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.results-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px var(--shadow); }
.results-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.results-list { display: flex; flex-direction: column; gap: 20px; }
.result-item { display: flex; gap: 14px; align-items: flex-start; }
.result-check {
  min-width: 28px; height: 28px; border-radius: 50%;
  background: var(--rose); color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.result-check::after { content: '✓'; font-size: .8rem; font-weight: 700; }
.result-text h4 { font-size: 1rem; margin-bottom: 4px; }
.result-text p { font-size: .88rem; color: var(--text-muted); }

/* === FORMAT === */
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.format-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.format-icon { font-size: 2rem; margin-bottom: 14px; }
.format-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.format-card p { font-size: .88rem; color: rgba(255,255,255,.7); }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item + .faq-item { margin-top: 8px; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: var(--cream); }
.faq-arrow {
  min-width: 24px; height: 24px; border-radius: 50%;
  background: var(--rose-light); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: .95rem; color: var(--text-muted); }

/* === LEAD FORM === */
.leadform-wrap {
  background: var(--warm-white); border-radius: 20px;
  padding: 48px; box-shadow: 0 24px 60px rgba(0,0,0,.12);
  max-width: 520px;
}
.leadform-title { font-size: 1.6rem; margin-bottom: 8px; }
.leadform-sub { font-size: .95rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(194,97,106,.15); }
.form-control::placeholder { color: var(--text-muted); opacity: .6; }
.form-agreement {
  font-size: .78rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5;
}
.form-agreement a { color: var(--rose); }
.cta-section-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cta-text { color: #fff; }
.cta-text h2 { color: #fff; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.cta-bullet { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.85); }
.cta-bullet::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* === FOOTER === */
.footer { background: var(--text); color: rgba(255,255,255,.65); padding: 48px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--rose); }
.footer-desc { font-size: .88rem; max-width: 280px; }
.footer-requisites { font-size: .8rem; line-height: 1.8; margin-top: 4px; }
.footer-heading { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-copyright { font-size: .8rem; }
.footer-domain { font-size: .8rem; color: rgba(255,255,255,.35); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--text); color: rgba(255,255,255,.85);
  padding: 20px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(0); transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: .88rem; max-width: 700px; line-height: 1.6; }
.cookie-text a { color: var(--rose-light); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px; background: var(--rose); color: #fff;
  border: none; border-radius: 8px; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.cookie-accept:hover { background: var(--rose-dark); }
.cookie-decline {
  padding: 10px 20px; background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  font-size: .9rem; cursor: pointer; transition: border-color .2s, color .2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 40px 24px;
}
.success-card {
  background: var(--warm-white); border-radius: 24px; padding: 56px 48px;
  max-width: 500px; width: 100%; text-align: center;
  box-shadow: 0 20px 60px var(--shadow);
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%; background: var(--rose);
  color: #fff; font-size: 2rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 28px;
}
.success-card h1 { font-size: 1.8rem; margin-bottom: 14px; }
.success-card p { color: var(--text-muted); margin-bottom: 8px; }
.success-card .btn { margin-top: 32px; }

/* === LEGAL PAGES === */
.legal-page { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; }
.legal-content { max-width: 760px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .legal-date { font-size: .85rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-content p { margin-bottom: 14px; font-size: .95rem; color: var(--text-muted); line-height: 1.75; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: .95rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.7; }
.legal-content a { color: var(--rose); }

/* === DIVIDER === */
.divider { width: 60px; height: 3px; background: var(--rose); border-radius: 2px; margin: 12px 0 0; }
.divider-center { margin: 12px auto 0; }

/* === SHOWCASE IMG === */
.showcase-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px var(--shadow); }
.showcase-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* === STATS ROW === */
.stats-row { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.stat-item { flex: 1; padding: 28px 20px; text-align: center; background: var(--warm-white); border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--rose); line-height: 1; }
.stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { max-width: 540px; margin: 0 auto; }
  .hero-desc { max-width: 100%; }
  .results-layout { grid-template-columns: 1fr; }
  .cta-section-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .whom-grid { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .whom-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .leadform-wrap { padding: 32px 24px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .success-card { padding: 40px 24px; }
}

@media (max-width: 400px) {
  .format-grid { grid-template-columns: 1fr; }
}
