:root {
  --ink: #18312f;
  --ink-soft: #506461;
  --green: #416f69;
  --green-dark: #315c57;
  --green-light: #dceae7;
  --cream: #f7f3eb;
  --paper: #fffdf9;
  --terracotta: #ce4d35;
  --gold: #d4ae70;
  --line: rgba(24, 49, 47, .13);
  --shadow: 0 24px 70px rgba(33, 72, 67, .13);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(206,77,53,.35); outline-offset: 3px; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; padding: 10px 16px; background: #fff; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; padding: 22px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--green); border-radius: 50%; font: 700 21px/1 Georgia, serif; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.brand-text { display: grid; line-height: 1.08; }
.brand-text strong { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.brand-text span { margin-top: 4px; color: var(--ink-soft); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.header-proof { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 13px; }
.header-proof::before { content: ""; width: 8px; height: 8px; background: #65a875; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,168,117,.14); }
.header-call { display: grid; justify-items: end; text-decoration: none; line-height: 1.2; }
.header-call span { color: var(--ink-soft); font-size: 10px; letter-spacing: .03em; text-transform: uppercase; }
.header-call strong { margin-top: 4px; color: var(--ink); font-size: 15px; }
.hero { position: relative; overflow: hidden; min-height: 760px; padding: 132px 0 74px; background: radial-gradient(circle at 78% 28%, rgba(212,174,112,.2), transparent 29%), linear-gradient(135deg, #fbf7ef 0%, #f0f5f2 100%); }
.no-header .hero { padding-top: 24px; }
.quiz-primary-cta { min-width: 220px; }
.hero::before { content: ""; position: absolute; width: 580px; height: 580px; right: -240px; top: -260px; border: 1px solid rgba(65,111,105,.16); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 260px; height: 260px; left: -120px; bottom: -150px; border: 58px solid rgba(206,77,53,.055); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: 50px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; padding: 8px 12px; color: var(--green-dark); background: rgba(255,255,255,.75); border: 1px solid rgba(65,111,105,.14); border-radius: 99px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--terracotta); border-radius: 50%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(46px, 5.1vw, 76px); font-weight: 740; }
h1 em { color: var(--terracotta); font-family: Georgia, serif; font-weight: 400; }
.lead { max-width: 650px; margin-bottom: 28px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.45; }
.bullets { display: grid; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.bullets li { display: flex; align-items: flex-start; gap: 11px; }
.bullets li::before { content: "✓"; flex: 0 0 23px; display: grid; place-items: center; width: 23px; height: 23px; margin-top: 2px; color: #fff; background: var(--green); border-radius: 50%; font-size: 12px; font-weight: 900; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 10px; padding: 15px 24px; border: 0; border-radius: 14px; color: #fff; background: var(--green); box-shadow: 0 13px 26px rgba(49,92,87,.2); font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 17px 34px rgba(49,92,87,.25); }
.button:active { transform: translateY(0); }
.button--accent { background: var(--terracotta); box-shadow: 0 13px 26px rgba(206,77,53,.2); }
.button--accent:hover { background: #b9412d; }
.button--ghost { color: var(--green-dark); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.button--secondary { color: var(--green-dark); background: #edf5f3; border: 1px solid rgba(65,111,105,.22); box-shadow: none; }
.button--wide { width: 100%; }
.button-icon { width: 24px; height: 24px; flex: 0 0 auto; }
.microcopy { max-width: 270px; color: #667976; font-size: 12px; line-height: 1.35; }
.hero-delivery { max-width: 610px; margin-top: 27px; padding: 15px; background: rgba(255,255,255,.76); border: 1px solid rgba(65,111,105,.15); border-radius: 19px; box-shadow: 0 13px 38px rgba(49,92,87,.08); backdrop-filter: blur(10px); }
.hero-delivery-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 2px 11px; color: var(--ink-soft); font-size: 12px; }
.hero-delivery-label strong { color: var(--ink); font-size: 13px; }
.hero-delivery-label span { display: inline-flex; align-items: center; gap: 6px; }
.hero-delivery-label span::before { content: ""; width: 7px; height: 7px; background: #68aa77; border-radius: 50%; box-shadow: 0 0 0 4px rgba(104,170,119,.12); }
.hero-delivery-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.quick-channel { display: flex; min-height: 58px; align-items: center; gap: 11px; padding: 10px 14px; color: #fff; background: #2aabee; border-radius: 13px; text-decoration: none; box-shadow: 0 10px 20px rgba(42,171,238,.17); transition: transform .18s ease, box-shadow .18s ease; }
.quick-channel.max { background: linear-gradient(135deg, #2e9de7, #7042df); box-shadow: 0 10px 20px rgba(112,66,223,.17); }
.quick-channel:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(42,171,238,.24); }
.quick-channel b { display: grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; background: rgba(255,255,255,.16); border-radius: 9px; font-size: 12px; }
.quick-channel strong, .quick-channel small { display: block; }
.quick-channel strong { font-size: 13px; line-height: 1.2; }
.quick-channel small { margin-top: 2px; color: rgba(255,255,255,.72); font-size: 10px; }
.hero-delivery-foot { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 9px; color: var(--ink-soft); font-size: 10px; }
.hero-delivery-foot::before { content: "✓"; color: var(--green); font-weight: 900; }
.visual { position: relative; min-height: 560px; }
.portrait-halo { position: absolute; inset: 62px 0 0 30px; background: linear-gradient(150deg, #497d76, #274d49); border-radius: 50% 50% 28px 28px; box-shadow: var(--shadow); transform: rotate(2deg); }
.portrait { position: absolute; z-index: 2; right: 0; bottom: -74px; width: 94%; max-height: 650px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 22px 26px rgba(26,49,46,.18)); }
.trust-card { position: absolute; z-index: 4; left: 0; bottom: 28px; width: 245px; padding: 18px 20px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.75); border-radius: 18px; box-shadow: 0 16px 44px rgba(33,72,67,.16); backdrop-filter: blur(12px); }
.trust-card strong { display: block; font-size: 24px; line-height: 1.1; }
.trust-card span { color: var(--ink-soft); font-size: 13px; }
.trust-card--top { left: auto; right: -12px; top: 92px; bottom: auto; width: 205px; }
.visual-identity { position: absolute; z-index: 6; left: 18px; bottom: 91px; display: grid; gap: 2px; padding: 10px 14px; color: #fff; background: rgba(24,63,58,.92); border: 1px solid rgba(255,255,255,.2); border-radius: 13px; box-shadow: 0 12px 28px rgba(24,49,47,.2); backdrop-filter: blur(10px); }
.visual-identity strong { font-size: 16px; line-height: 1.15; }.visual-identity span { color: rgba(255,255,255,.78); font-size: 9px; }
.visual-stats { position: absolute; z-index: 5; left: 8px; right: 8px; bottom: 4px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }
.visual-stats > div { min-width: 0; padding: 12px 11px; background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.72); border-radius: 14px; box-shadow: 0 13px 34px rgba(33,72,67,.14); backdrop-filter: blur(10px); }
.visual-stats strong, .visual-stats span { display: block; }.visual-stats strong { font-size: 18px; line-height: 1.1; white-space: nowrap; }.visual-stats span { margin-top: 3px; color: var(--ink-soft); font-size: 9px; line-height: 1.25; }
.trust-dots { display: flex; margin-bottom: 10px; }
.trust-dots i { width: 30px; height: 30px; margin-right: -8px; border: 3px solid #fff; background: linear-gradient(135deg, var(--gold), var(--terracotta)); border-radius: 50%; }
.section { padding: 90px 0; }
.section--cream { background: var(--cream); }
.section--green { color: #fff; background: var(--green-dark); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head h2 { max-width: 750px; margin: 0; font-size: clamp(34px, 4vw, 56px); }
.section-head p { max-width: 380px; margin: 0; color: var(--ink-soft); }
.section--green .section-head p { color: rgba(255,255,255,.72); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; padding: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.card-number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 30px; color: var(--green-dark); background: var(--green-light); border-radius: 12px; font-weight: 900; }
.card h3 { margin-bottom: 12px; font-size: 22px; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: 15px; }
.messenger-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; padding: 48px; color: #fff; background: linear-gradient(135deg, #315c57, #244944); border-radius: 32px; box-shadow: var(--shadow); }
.messenger-panel h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 52px); }
.messenger-panel p { color: rgba(255,255,255,.75); }
.messenger-options { display: grid; gap: 14px; }
.messenger-button { display: flex; align-items: center; gap: 16px; min-height: 84px; padding: 17px 20px; color: var(--ink); background: #fff; border: 0; border-radius: 18px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.messenger-button:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(0,0,0,.15); }
.messenger-button .messenger-logo { display: grid; flex: 0 0 48px; place-items: center; width: 48px; height: 48px; color: #fff; background: #2aabee; border-radius: 14px; font-weight: 900; }
.messenger-button.max .messenger-logo { background: linear-gradient(135deg, #23b8f5, #7d32ed); }
.messenger-button strong { display: block; font-size: 16px; }
.messenger-button span { color: var(--ink-soft); font-size: 12px; }
.messenger-button svg:last-child { width: 20px; margin-left: auto; color: #8a9896; }
.guide-preview { position: relative; min-height: 560px; }
.guide-preview .portrait-halo { inset: 58px 20px 0 62px; }
.guide-preview .portrait { right: -2%; bottom: -74px; width: 88%; }
.guide-cover { position: absolute; z-index: 5; left: -5px; bottom: 18px; width: 245px; min-height: 315px; padding: 25px 22px; color: #fff; background: linear-gradient(155deg, #416f69 0%, #203f3b 100%); border: 7px solid #fff; border-radius: 8px 22px 22px 8px; box-shadow: 0 20px 44px rgba(24,49,47,.25); transform: rotate(-4deg); }
.guide-cover::before { content: none; }
.guide-cover strong { display: block; font-size: 23px; line-height: 1.12; letter-spacing: -.03em; }
.guide-cover span { display: block; margin-top: 14px; color: rgba(255,255,255,.68); font-size: 12px; }
.guide-cover i { position: absolute; right: 19px; bottom: 18px; width: 44px; height: 3px; background: var(--terracotta); border-radius: 99px; }
.guide-expert { position: absolute; z-index: 7; right: 0; bottom: 7px; left: 252px; padding: 11px 13px; background: rgba(255,255,255,.95); border: 1px solid rgba(65,111,105,.15); border-radius: 16px; box-shadow: 0 15px 36px rgba(33,72,67,.17); backdrop-filter: blur(12px); }
.guide-expert-name { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.guide-expert-name strong { font-size: 15px; line-height: 1.1; }.guide-expert-name span { color: var(--ink-soft); font-size: 8px; text-align: right; }
.guide-expert-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; padding-top: 8px; }
.guide-expert-stats div { min-width: 0; }.guide-expert-stats strong,.guide-expert-stats span { display: block; }.guide-expert-stats strong { font-size: 15px; line-height: 1.05; white-space: nowrap; }.guide-expert-stats span { margin-top: 3px; color: var(--ink-soft); font-size: 7px; line-height: 1.2; }
.magnet-primary-cta { min-width: 330px; }
.magnet-hero { min-height: 690px; padding-bottom: 28px; }
.magnet-section { min-height: auto; padding: 48px 0; overflow: hidden; background: linear-gradient(145deg, #f7f3eb, #edf4f1); }
.magnet-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 52px; }
.magnet-product { min-width: 0; }
.magnet-showcase { position: relative; min-height: 550px; }
.magnet-showcase::before { content: ""; position: absolute; inset: 38px 24px 20px 0; background: linear-gradient(150deg, #416f69, #244a45); border-radius: 46% 46% 30px 30px; box-shadow: var(--shadow); }
.magnet-showcase::after { content: ""; position: absolute; left: 38px; right: 0; bottom: 2px; height: 52px; background: rgba(24,49,47,.13); border-radius: 50%; filter: blur(22px); }
.magnet-book { position: absolute; z-index: 5; left: 36px; bottom: 30px; display: flex; width: 285px; height: 400px; flex-direction: column; padding: 32px 27px; color: #fff; background: linear-gradient(150deg, #396d66, #173b37); border: 8px solid #fff; border-radius: 9px 24px 24px 9px; box-shadow: 0 30px 60px rgba(18,45,41,.34); transform: rotate(-5deg); }
.magnet-book::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: rgba(255,255,255,.16); }
.magnet-book small { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.magnet-book strong { display: block; margin-top: 48px; font-size: 27px; line-height: 1.08; letter-spacing: -.035em; }
.magnet-book p { margin-top: 18px; color: rgba(255,255,255,.67); font-size: 13px; }
.magnet-book em { position: absolute; right: 26px; bottom: 24px; display: grid; place-items: center; width: 52px; height: 30px; color: var(--ink); background: var(--gold); border-radius: 8px; font-size: 11px; font-style: normal; font-weight: 900; }
.preview-sheet { position: absolute; z-index: 3; right: 14px; top: 62px; width: 250px; height: 320px; padding: 26px 22px; background: #fff; border-radius: 12px; box-shadow: 0 22px 55px rgba(24,49,47,.2); transform: rotate(8deg); }
.preview-sheet--middle { z-index: 4; right: 2px; top: 148px; transform: rotate(4deg); }
.preview-sheet span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--green-dark); background: var(--green-light); border-radius: 11px; font-weight: 900; }
.preview-sheet b { display: block; margin: 30px 0 20px; font-size: 19px; line-height: 1.2; }
.preview-sheet i { display: block; height: 7px; margin-top: 10px; background: #e8eeec; border-radius: 99px; }
.preview-sheet i:nth-of-type(2) { width: 82%; }.preview-sheet i:nth-of-type(3) { width: 61%; }
.magnet-content h2 { margin-bottom: 23px; font-size: clamp(35px, 4vw, 54px); }
.real-pages { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: -34px; }
.real-pages figure { min-width: 0; margin: 0; padding: 6px 6px 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 12px 28px rgba(21,48,45,.12); }
.real-pages img { display: block; width: 100%; aspect-ratio: 941 / 1672; object-fit: cover; object-position: top; border-radius: 7px; }
.real-pages figcaption { margin-top: 6px; color: var(--ink); font-size: 9px; font-weight: 800; line-height: 1.2; text-align: center; }
.product-proof { margin: 11px 0 0; color: var(--ink-soft); font-size: 12px; font-weight: 700; line-height: 1.35; text-align: center; }
.magnet-points { display: grid; gap: 11px; margin: 0 0 25px; padding: 0; list-style: none; }
.magnet-points li { display: grid; grid-template-columns: 22px 1fr; column-gap: 11px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.magnet-points li::before { content: "✓"; grid-row: 1 / 3; display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--green); border-radius: 50%; font-size: 11px; font-weight: 900; }
.magnet-points b { font-size: 14px; }.magnet-points span { color: var(--ink-soft); font-size: 12px; }
.magnet-form { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 21px; box-shadow: 0 18px 45px rgba(33,72,67,.1); }
.form-title { display: grid; gap: 2px; margin-bottom: 15px; }.form-title strong { font-size: 18px; }.form-title span { color: var(--ink-soft); font-size: 11px; }
.form-grid--two { grid-template-columns: 1fr 1fr; margin-top: 0; }
.messenger-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 12px 0; }
.messenger-choice label { cursor: pointer; }.messenger-choice input { position: absolute; opacity: 0; pointer-events: none; }
.messenger-choice label > span { position: relative; display: flex; min-height: 68px; align-items: center; gap: 11px; padding: 10px 40px 10px 11px; color: var(--ink); background: #f6f8f7; border: 1px solid var(--line); border-radius: 14px; transition: border .18s ease, background .18s ease, transform .18s ease; }
.messenger-choice img { flex: 0 0 42px; width: 42px; height: 42px; object-fit: contain; border-radius: 12px; }
.messenger-choice label > span > span { display: grid; gap: 2px; }.messenger-choice strong { font-size: 13px; }.messenger-choice small { color: var(--ink-soft); font-size: 9px; }
.messenger-choice i { position: absolute; right: 13px; top: 50%; display: grid; place-items: center; width: 20px; height: 20px; color: transparent; border: 2px solid #bac8c5; border-radius: 50%; font-size: 11px; font-style: normal; transform: translateY(-50%); }
.messenger-choice input:checked + span { color: var(--green-dark); background: #edf5f3; border-color: var(--green); box-shadow: 0 0 0 3px rgba(65,111,105,.08); }.messenger-choice input:checked + span i { color: #fff; background: var(--green); border-color: var(--green); }.messenger-choice label:hover > span { transform: translateY(-1px); }
.magnet-form .check { margin: 9px 0; }
.restruct-layout {
  grid-template-areas:
    "product summary"
    "consult guide";
  align-items: stretch;
  column-gap: 38px;
  row-gap: 24px;
}
.restruct-layout .magnet-product { grid-area: product; align-self: start; }
.restruct-summary { grid-area: summary; align-self: start; }
.restruct-layout .consultation-form { grid-area: consult; }
.restruct-layout .guide-form { grid-area: guide; }
.restruct-layout > .magnet-form { display: flex; height: 100%; flex-direction: column; }
.restruct-layout > .magnet-form .button { margin-top: auto; }
.restruct-layout .magnet-showcase { min-height: 385px; }
.restruct-layout .magnet-showcase::before { inset: 26px 20px 12px 0; }
.restruct-layout .magnet-book { left: 38px; bottom: 13px; width: 235px; height: 330px; padding: 27px 22px; border-width: 7px; }
.restruct-layout .magnet-book strong { margin-top: 36px; font-size: 22px; }
.restruct-layout .magnet-book p { margin-top: 14px; font-size: 11px; }
.restruct-layout .magnet-book em { right: 20px; bottom: 18px; width: 46px; height: 27px; }
.restruct-layout .preview-sheet { right: 4px; top: 44px; width: 205px; height: 260px; padding: 20px 18px; }
.restruct-layout .preview-sheet--middle { right: -3px; top: 102px; }
.restruct-layout .preview-sheet b { margin: 22px 0 16px; font-size: 16px; }
.restruct-summary h2 { margin-bottom: 17px; font-size: clamp(31px, 3.1vw, 43px); line-height: 1.04; }
.restruct-summary .magnet-points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; margin-bottom: 13px; }
.restruct-summary .magnet-points li { min-width: 0; padding: 10px; background: rgba(255,255,255,.48); border: 1px solid rgba(65,111,105,.13); border-radius: 13px; }
.restruct-summary .magnet-points b { font-size: 13px; }
.restruct-summary .magnet-points span { font-size: 11px; line-height: 1.35; }
.restruct-summary .real-pages { gap: 8px; margin-top: 0; }
.restruct-summary .real-pages img { aspect-ratio: 941 / 1120; }
.restruct-summary .product-proof { margin-top: 8px; }
.product-proof--book { margin-top: 7px; }
.consultation-guide-note { margin: 0 0 15px; padding: 13px 14px; color: var(--ink-soft); background: #edf5f3; border: 1px solid rgba(65,111,105,.18); border-radius: 13px; font-size: 12px; line-height: 1.45; }
.consultation-guide-note b { color: var(--ink); }
.channel-note { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: rgba(255,255,255,.62); font-size: 11px; }
.channel-note::before { content: "✓"; display: grid; place-items: center; flex: 0 0 20px; width: 20px; height: 20px; color: #fff; background: rgba(255,255,255,.12); border-radius: 50%; }
.flow-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.flow-line div { position: relative; padding: 10px 8px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; font-size: 10px; text-align: center; }
.flow-line b { display: block; margin-bottom: 2px; color: #fff; font-size: 12px; }
.mobile-cta { position: fixed; z-index: 45; inset: auto 10px 10px; display: none; gap: 8px; padding: 8px; opacity: 0; pointer-events: none; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 16px 42px rgba(24,49,47,.25); backdrop-filter: blur(12px); transform: translateY(18px); transition: opacity .25s ease, transform .25s ease; }
.mobile-cta.visible { opacity: 1; pointer-events: auto; transform: none; }
.mobile-cta a { flex: 1; min-height: 50px; padding: 10px 8px; border-radius: 11px; font-size: 12px; }
.expert { display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 42px; }
.expert-photo { position: relative; min-height: 330px; overflow: hidden; background: var(--green-light); border-radius: 28px; }
.expert-photo img { position: absolute; inset: 10px 0 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
.expert h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 52px); }
.expert p { max-width: 760px; color: var(--ink-soft); }
.expert-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.stat { padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.stat strong { display: block; font-size: 20px; }
.stat span { color: var(--ink-soft); font-size: 12px; }
.site-footer { padding: 44px 0; color: #d9e6e3; background: #18312f; font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 16px; }
.footer-links a { color: #fff; text-underline-offset: 3px; }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 0; }
.footer-contacts a { color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }
.warning { padding: 16px 18px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.compact-footer { padding: 26px 0; }
.compact-footer .footer-links { align-items: center; margin: 0 0 14px; color: rgba(255,255,255,.72); }
.compact-footer .warning { padding: 15px 17px; color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.55; }
.footer-bottom { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: end; }
.developer-credit { display: inline-flex; align-items: baseline; justify-self: end; gap: 4px; padding: 4px 0; color: rgba(255,255,255,.46); white-space: nowrap; text-decoration: none; transition: color .18s ease; }
.developer-credit span { font-size: 9px; letter-spacing: .015em; }.developer-credit strong { color: inherit; font-size: 10px; line-height: 1; letter-spacing: .05em; }
.developer-credit:hover { color: rgba(255,255,255,.76); }
.cookie { position: fixed; z-index: 60; right: 18px; bottom: 18px; display: none; align-items: center; gap: 16px; width: min(520px, calc(100% - 36px)); padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 16px 50px rgba(0,0,0,.18); font-size: 12px; }
.cookie.show { display: flex; }
.cookie button { flex: 0 0 auto; padding: 9px 13px; color: #fff; background: var(--green); border: 0; border-radius: 10px; cursor: pointer; }
.modal { position: fixed; z-index: 80; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(13,31,29,.72); backdrop-filter: blur(7px); }
.modal.open { display: grid; }
.modal-card { position: relative; width: min(620px, 100%); max-height: calc(100vh - 40px); padding: 38px; overflow: auto; background: var(--paper); border-radius: 26px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.modal-close { position: absolute; right: 16px; top: 16px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--ink); background: var(--cream); border: 0; border-radius: 50%; cursor: pointer; }
.modal h2 { margin-bottom: 10px; padding-right: 30px; font-size: 32px; }
.modal p { color: var(--ink-soft); }
.form-grid { display: grid; gap: 13px; margin-top: 24px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 12px; font-weight: 800; }
.field input { width: 100%; min-height: 56px; padding: 14px 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; outline: none; }
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(65,111,105,.1); }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: var(--ink-soft); font-size: 11px; }
.check input { margin-top: 3px; accent-color: var(--green); }
.check a { text-underline-offset: 2px; }
.form-status { min-height: 20px; color: var(--terracotta); font-size: 12px; }
.lead-success { display: grid; gap: 18px; text-align: center; }
.lead-success .result-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto; color: #fff; background: var(--green); border-radius: 50%; font-size: 25px; font-weight: 900; }
.lead-success h3 { margin: 0; font-size: clamp(27px, 3vw, 36px); }
.lead-success > p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.success-actions { display: grid; gap: 12px; width: 100%; max-width: 620px; margin: 8px auto 0; }
.success-actions > p { margin: 6px 0 0; color: var(--ink); font-size: 14px; font-weight: 800; }
.consult-first { padding: 17px 18px; color: #fff; background: linear-gradient(145deg, #315c57, #204640); border-radius: 15px; text-align: left; }
.consult-first h4 { margin: 0; font-size: clamp(18px, 2.2vw, 23px); line-height: 1.2; }
.consult-first p { margin: 6px 0 0; color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.45; }
.consult-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.consult-options--two { grid-template-columns: repeat(2, 1fr); }
.consult-option { display: flex; min-height: 68px; align-items: center; justify-content: center; gap: 10px; padding: 11px 13px; color: var(--ink); background: #f5f8f7; border: 1px solid var(--line); border-radius: 13px; font: inherit; font-size: 13px; text-decoration: none; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.consult-option:hover { background: #edf5f3; border-color: var(--green); transform: translateY(-1px); }
.consult-option.is-selected { background: #edf5f3; border-color: var(--green); box-shadow: 0 0 0 3px rgba(65,111,105,.08); }
.consult-option img { width: 30px; height: 30px; object-fit: contain; border-radius: 8px; }
.consult-option > span { display: grid; gap: 2px; text-align: left; }
.consult-option small { color: var(--ink-soft); font-size: 10px; font-weight: 500; line-height: 1.3; }
.consult-option--phone span { display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: var(--green); border-radius: 9px; font-size: 16px; }
.consult-status { min-height: 18px; color: var(--green-dark); font-size: 12px; font-weight: 700; }
.lead-success--compact { min-height: 320px; align-content: center; }
.material-ready { display: grid; gap: 4px; padding: 15px 17px; color: var(--ink); background: #f5efe2; border: 1px solid #ead9b6; border-radius: 14px; text-align: left; }
.material-ready b { font-size: 15px; }
.material-ready span { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 901px) and (max-width: 1100px) {
  .guide-expert { left: 226px; }
  .guide-expert-name { display: grid; gap: 2px; }.guide-expert-name span { text-align: left; }
  .guide-expert-stats { grid-template-columns: 1fr; gap: 3px; }.guide-expert-stats div { display: flex; align-items: baseline; justify-content: space-between; gap: 5px; }.guide-expert-stats span { margin: 0; text-align: right; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-copy { padding-bottom: 30px; }
  .visual { min-height: 500px; width: min(560px, 100%); margin-inline: auto; }
  .portrait { bottom: 0; }
  .cards { grid-template-columns: 1fr; }
  .section-head { display: grid; }
  .messenger-panel { grid-template-columns: 1fr; padding: 34px; }
  .expert { grid-template-columns: 230px 1fr; }
  .magnet-grid { grid-template-columns: 1fr; gap: 30px; }
  .restruct-layout {
    grid-template-areas:
      "summary"
      "product"
      "guide"
      "consult";
    row-gap: 22px;
  }
  .restruct-layout .magnet-product,
  .restruct-layout .magnet-form,
  .restruct-layout .restruct-summary { width: min(620px, 100%); margin-inline: auto; }
  .restruct-layout .restruct-summary .magnet-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .magnet-product { width: min(560px, 100%); margin-inline: auto; }
  .magnet-showcase { min-height: 520px; width: min(560px, 100%); margin-inline: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding: 14px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text strong { font-size: 12px; }
  .brand-text span, .header-proof { display: none; }
  .header-call span { display: none; }
  .header-call strong { min-width: 88px; padding: 9px 11px; color: var(--green-dark); background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 11px; font-size: 0; text-align: center; }
  .header-call strong::after { content: "Позвонить"; font-size: 11px; }
  .hero { padding-top: 95px; }
  .no-header .hero { padding-top: 16px; }
  h1 { font-size: 36px; line-height: 1.04; }
  .lead { font-size: 18px; }
  .cta-row, .cta-row .button { width: 100%; }
  .microcopy { max-width: none; text-align: center; }
  .visual { min-height: 420px; }
  .visual-identity { left: 9px; bottom: 83px; padding: 8px 11px; }.visual-identity strong { font-size: 14px; }.visual-identity span { font-size: 8px; }
  .visual-stats { left: 4px; right: 4px; bottom: 8px; gap: 5px; }.visual-stats > div { padding: 9px 7px; border-radius: 11px; }.visual-stats strong { font-size: 15px; }.visual-stats span { font-size: 8px; }
  .portrait-halo { inset: 50px 0 0; }
  .portrait { width: 108%; max-width: none; max-height: 100%; right: -5%; }
  .guide-preview { min-height: 435px; }
  .guide-preview .portrait-halo { inset: 50px 0 0 24px; }
  .guide-preview .portrait { width: 100%; max-height: 100%; right: -7%; bottom: 0; }
  .guide-cover { left: -6px; bottom: 13px; width: 180px; min-height: 235px; padding: 18px 15px; border-width: 5px; }
  .guide-cover::before { margin-bottom: 24px; }
  .guide-cover strong { font-size: 17px; }
  .guide-expert { right: 0; bottom: 12px; left: 174px; padding: 8px 9px; border-radius: 12px; }
  .guide-expert-name { display: grid; gap: 2px; padding-bottom: 6px; }.guide-expert-name strong { font-size: 12px; }.guide-expert-name span { font-size: 7px; text-align: left; }
  .guide-expert-stats { grid-template-columns: 1fr; gap: 3px; padding-top: 6px; }.guide-expert-stats div { display: flex; align-items: baseline; justify-content: space-between; gap: 5px; }.guide-expert-stats strong { font-size: 11px; }.guide-expert-stats span { margin: 0; font-size: 7px; text-align: right; }
  .magnet-primary-cta { min-width: 0; width: 100%; }
  .magnet-hero { min-height: auto; padding-bottom: 0; }
  .magnet-section { padding: 38px 0; }
  .magnet-showcase { display: none; }
  .restruct-layout .magnet-showcase { display: block; min-height: 355px; width: min(430px, 100%); }
  .restruct-layout .magnet-book { left: 28px; width: 220px; height: 310px; }
  .restruct-layout .preview-sheet { width: 190px; height: 240px; }
  .real-pages { margin-top: 0; }
  .product-proof { margin-bottom: 20px; }
  .magnet-content { order: 1; }
  .magnet-showcase::before { inset: 22px 0 10px; }
  .magnet-book { left: 12px; bottom: 20px; width: 235px; height: 340px; padding: 25px 21px; border-width: 6px; }
  .magnet-book strong { margin-top: 35px; font-size: 21px; }.magnet-book p { font-size: 11px; }.magnet-book em { right: 19px; bottom: 18px; }
  .preview-sheet { right: -10px; top: 54px; width: 205px; height: 275px; padding: 20px; }.preview-sheet--middle { right: -18px; top: 107px; }
  .preview-sheet b { margin: 20px 0 15px; font-size: 16px; }
  .magnet-content h2 { font-size: 35px; }
  .form-grid--two { grid-template-columns: 1fr; }
  .magnet-form { padding: 18px 14px; }
  .trust-card { left: -4px; bottom: 18px; width: 190px; padding: 14px; }
  .trust-card strong { font-size: 19px; }
  .trust-card--top { right: -3px; top: 62px; bottom: auto; left: auto; width: 145px; min-height: 0; }
  .trust-card--top strong { font-size: 17px; }
  .trust-card--top span { font-size: 11px; }
  .restruct-summary h2 { font-size: 31px; }
  .restruct-layout .restruct-summary .magnet-points { grid-template-columns: 1fr; gap: 7px; }
  .restruct-summary .magnet-points li { padding: 9px; }
  .restruct-layout .magnet-showcase { min-height: 320px; }
  .restruct-layout .magnet-book { left: 18px; bottom: 10px; width: 195px; height: 275px; padding: 21px 18px; border-width: 5px; }
  .restruct-layout .magnet-book strong { margin-top: 27px; font-size: 18px; }
  .restruct-layout .preview-sheet { right: 4px; top: 38px; width: 165px; height: 210px; padding: 16px; }
  .restruct-layout .preview-sheet--middle { right: -3px; top: 82px; }
  .restruct-layout .preview-sheet b { margin: 16px 0 12px; font-size: 13px; }
  .consultation-guide-note { font-size: 11px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 36px; }
  .card { padding: 23px; }
  .messenger-panel { padding: 26px 20px; border-radius: 24px; }
  .messenger-panel h2 { font-size: 35px; }
  .hero-delivery { margin-top: 22px; padding: 11px; }
  .hero-delivery-label { align-items: flex-start; }
  .hero-delivery-label > span { display: none; }
  .hero-delivery-actions { grid-template-columns: 1fr; }
  .quick-channel { min-height: 56px; }
  .expert { grid-template-columns: 1fr; gap: 24px; }
  .expert-photo { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .modal-card { padding: 30px 20px 22px; border-radius: 20px; }
  .modal h2 { font-size: 27px; }
  .cookie { align-items: flex-start; }
  .real-pages { gap: 6px; }
  .real-pages figure { padding: 4px 4px 7px; border-radius: 10px; }
  .real-pages figcaption { font-size: 8px; }
  .product-proof { font-size: 11px; }
  .consult-options { grid-template-columns: 1fr; }
  .consult-option { min-height: 74px; padding: 12px 13px; font-size: 14px; }
  .consult-option small { font-size: 11px; }
  .consult-option img { width: 34px; height: 34px; }
  .compact-footer .warning { font-size: 12px; line-height: 1.55; }
  .footer-bottom { grid-template-columns: 1fr; gap: 7px; }.developer-credit { justify-self: end; padding: 2px 0; }.developer-credit span { font-size: 8px; }.developer-credit strong { font-size: 9px; }
  .has-mobile-cta .cookie { bottom: 91px; }
  .mobile-cta { display: flex; }
  .has-mobile-cta .site-footer { padding-bottom: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
