:root {
  --bg: #fbfafb;
  --surface: #ffffff;
  --ink: #211a1d;
  --muted: #686064;
  --primary: #9c3d5b;
  --primary-hover: #7e2f48;
  --soft: #f5e7ec;
  --accent: #4f665d;
  --line: #e4dadf;
  --warn: #a13a34;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(59, 35, 44, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.62 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a { font: inherit; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.038em; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.8vw, 4.9rem);
  font-weight: 680;
  line-height: 1.03;
}
h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  font-weight: 630;
  line-height: 1.08;
}
h3 { line-height: 1.3; }
.wrap { width: min(100% - 36px, 1100px); margin-inline: auto; }
.band { padding: 96px 0; background: var(--bg); }
.band.white { background: var(--surface); }
.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 13px 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 760;
  text-align: center;
  text-decoration: none;
}
.btn:hover { border-color: var(--primary-hover); background: var(--primary-hover); }
.btn[aria-disabled="true"] { border-color: #b9afb3; background: #b9afb3; cursor: not-allowed; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid #315f83;
  outline-offset: 4px;
}
.micro, .trust { color: var(--muted); font-size: .85rem; }
.micro { margin: 12px 0 0; }

.site-head { height: 68px; display: flex; align-items: center; background: var(--surface); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--primary); font-size: 1.14rem; font-weight: 820; letter-spacing: .02em; }
.head-note { color: var(--muted); font-size: .78rem; }

.hero { min-height: calc(100svh - 68px); display: flex; align-items: center; padding: 38px 0 70px; background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(370px, .72fr); gap: clamp(42px, 6vw, 76px); align-items: center; }
.hero-copy .btn { margin-top: 10px; }
.hero-copy:before { content: ""; display: block; width: 54px; height: 3px; margin-bottom: 30px; background: var(--primary); }

.phone {
  position: relative;
  width: min(100%, 388px);
  margin-inline: auto;
  padding: 7px;
  border: 1px solid #453b3f;
  border-radius: 45px;
  background: #211a1d;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.phone:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 23px;
  border-radius: 20px;
  background: #211a1d;
  transform: translateX(-50%);
}
.phone:after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 15px;
  z-index: 3;
  width: 105px;
  height: 4px;
  border-radius: 10px;
  background: #3a3034;
  transform: translateX(50%);
}
.screen { min-height: 680px; overflow: hidden; border-radius: 37px; background: #fff; color: var(--ink); }
.mock-top { height: 5px; background: var(--primary); }
.mock-head { display: flex; justify-content: space-between; padding: 40px 24px 15px; color: var(--primary); font-size: .82rem; font-weight: 800; }
.mock-body { padding: 10px 24px 40px; color: var(--ink); }
.mock-label { margin: 0 0 5px; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.mock-body h3 { max-width: 315px; margin: 0 0 7px; color: var(--ink); font-size: 1.68rem; letter-spacing: -.04em; line-height: 1.12; }
.pill { display: inline-block; border-radius: 4px; padding: 4px 7px; background: var(--soft); color: #713047; font-size: .68rem; font-weight: 800; }
.mock-body > p { color: #5f565a; font-size: .9rem; line-height: 1.5; }
.mock-block { padding: 19px 0; border-top: 1px solid var(--line); }
.mock-block h4 { margin: 0 0 8px; color: var(--ink); font-size: 1rem; }
.mock-action { border-left: 4px solid var(--primary); padding: 14px 15px; background: var(--soft); color: var(--ink); font-size: .89rem; line-height: 1.48; }
.mock-quote { border: 1px solid var(--line); border-radius: 6px; padding: 15px; background: #fff; color: var(--ink); font-size: .87rem; line-height: 1.48; }
.mock-copy { display: block; width: 100%; min-height: 42px; margin-top: 10px; border: 1px solid var(--primary); border-radius: 5px; background: transparent; color: var(--primary); font-size: .78rem; font-weight: 800; }

.problem-grid, .origin-grid, .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.problem-grid h2, .origin-grid h2 { font-weight: 590; }
.situation-list { counter-reset: situation; margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.situation-list li { counter-increment: situation; position: relative; padding: 19px 0 19px 48px; border-bottom: 1px solid var(--line); }
.situation-list li:before { content: counter(situation, decimal-leading-zero); position: absolute; left: 0; color: var(--primary); font-size: .72rem; font-weight: 850; }
.closing { margin-top: 25px; font-weight: 680; }
.origin { background: var(--soft); }
.origin-copy { max-width: 700px; }
.origin-copy p { font-size: 1.06rem; }
.origin-mark { border-top: 2px solid var(--primary); padding-top: 22px; color: var(--primary); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 620; letter-spacing: -.04em; line-height: 1.12; }

.deliverables { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 9vw, 120px); }
.deliverables h2 { position: sticky; top: 35px; font-weight: 590; }
.editorial-list { counter-reset: item; margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--primary); }
.editorial-list li { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.editorial-list li:before { counter-increment: item; content: counter(item, decimal-leading-zero); color: var(--primary); font-size: 1.2rem; }
.editorial-list strong { display: block; margin-bottom: 3px; font-size: 1.06rem; }
.editorial-list span { color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 45px 0 62px; border-block: 1px solid var(--line); }
.step { min-height: 245px; padding: 28px 28px 28px 0; }
.step + .step { border-left: 1px solid var(--line); padding-left: 28px; }
.step-num { color: var(--primary); font-size: 1.8rem; font-weight: 500; letter-spacing: -.04em; }
.step h3 { margin-top: 28px; }
.demo { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 16px 45px rgba(59,35,44,.08); }
.demo > div:first-child { padding: 38px; background: var(--soft); }
.demo-label { display: inline-block; margin-bottom: 18px; border: 1px solid var(--primary); border-radius: 4px; padding: 4px 8px; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.demo h3 { margin-bottom: 10px; font-size: 1.7rem; }
.demo-result { padding: 38px; border-left: 4px solid var(--primary); }
.demo-row { padding: 17px 0; border-bottom: 1px solid var(--line); }
.demo-row:first-child { padding-top: 0; }
.demo-row:last-child { padding-bottom: 0; border: 0; }
.demo-row strong { display: block; color: var(--primary); font-size: .78rem; }
.demo-cta { margin-top: 30px; text-align: center; }

.bonus { background: var(--soft); }
.bonus-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.bonus h2 { color: var(--primary); font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; }
.radar { border-top: 2px solid var(--primary); padding-top: 18px; }
.radar ol { margin: 0; padding: 0; list-style: none; }
.radar li { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid #dbc6cf; }
.radar li:before { content: "✓"; color: var(--accent); font-weight: 900; }

.audience { background: var(--surface); }
.fit-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--accent); }
.fit-list li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); }
.fit-list li:before { position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.fit-list.yes li:before { content: "✓"; }
.fit-list.no li:before { content: "×"; color: var(--warn); }
.audience-card h3 { margin-bottom: 14px; }
.audience-note { max-width: 820px; margin: 36px 0 0; color: var(--muted); }

.offer-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(55px, 8vw, 100px); align-items: center; }
.include-list { columns: 2; column-gap: 30px; margin: 28px 0 0; padding: 0; list-style: none; }
.include-list li { position: relative; break-inside: avoid; padding: 7px 0 7px 22px; }
.include-list li:before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.price-side { border-radius: var(--radius); padding: 44px; background: var(--ink); color: #fff; }
.price-context, .price-side .trust { color: #d8cfd3; }
.price { margin: 28px 0 10px; color: var(--primary); font-size: clamp(3.5rem, 8vw, 5.6rem); font-weight: 760; letter-spacing: -.06em; line-height: 1; }
.price-side .price { color: #fff; }
.price-side .btn { width: 100%; }
.availability { margin: 12px 0 0; color: #d8cfd3; font-size: .82rem; text-align: center; }

.faq { max-width: 850px; }
.faq h2 { margin-bottom: 42px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 760; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; color: var(--primary); font-size: 1.5rem; font-weight: 400; }
.faq details[open] summary:after { content: "−"; }
.faq details p { max-width: 720px; padding: 0 34px 22px 0; color: var(--muted); }

.final { background: var(--ink) !important; color: #fff; text-align: center; }
.final h2, .final .lead { margin-inline: auto; }
.final-copy { max-width: 730px; margin: 0 auto 30px; color: #d8cfd3; }
.final .price { margin-top: 35px; color: #fff; }
.final-note { margin-top: 18px; color: #eadfe3; font-weight: 680; }
.footer { padding: 32px 0; border-top: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: .8rem; }
.footer-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.footer-links a { color: var(--primary); }
.legal-placeholder { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-main { min-height: calc(100vh - 132px); padding: 64px 0; }
.legal-main article { max-width: 760px; }
.legal-main .pending { border-left: 4px solid var(--warn); padding: 18px; background: #fff1f0; }
.legal-main ul { padding-left: 20px; }

.mobile-cta { display: none; position: fixed; z-index: 20; right: 10px; bottom: 10px; left: 10px; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 8px; padding: 10px; background: #fff; box-shadow: var(--shadow); }
.mobile-cta .btn { flex: 1; min-height: 48px; }
.mobile-close { width: 42px; height: 42px; border: 0; background: transparent; color: var(--muted); font-size: 1.35rem; }
.mobile-cta.visible { display: flex; }

@media (max-width: 820px) {
  .band { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 32px; }
  .hero-grid, .problem-grid, .origin-grid, .deliverables, .bonus-grid, .audience-grid, .offer-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy:before { margin-bottom: 22px; }
  .phone { width: 365px; transform: none; }
  .deliverables h2 { position: static; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: auto; padding: 22px 0; border-left: 0; }
  .step + .step { border-top: 1px solid var(--line); }
  .step h3 { margin-top: 8px; }
  .demo { grid-template-columns: 1fr; }
  .demo-result { border-top: 4px solid var(--primary); border-left: 0; }
  .include-list { columns: 1; }
  .footer-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 28px, 1100px); }
  .site-head { height: 58px; }
  .head-note { display: none; }
  .hero { padding: 22px 0 46px; }
  h1 { font-size: 2.28rem; line-height: 1.04; }
  .hero .lead { font-size: 1rem; line-height: 1.5; }
  .hero .btn, .final .btn { width: 100%; }
  .hero-grid { gap: 30px; }
  .phone { width: min(100%, 326px); padding: 6px; border-radius: 39px; }
  .phone:before { top: 14px; width: 80px; height: 20px; }
  .phone:after { bottom: 13px; width: 92px; }
  .screen { min-height: 590px; border-radius: 32px; }
  .mock-head { padding: 35px 19px 11px; font-size: .76rem; }
  .mock-body { padding: 7px 19px 32px; }
  .mock-label { font-size: .66rem; }
  .mock-body h3 { font-size: 1.42rem; }
  .mock-body > p { font-size: .8rem; }
  .mock-block { padding: 15px 0; }
  .mock-block h4 { font-size: .9rem; }
  .mock-action, .mock-quote { padding: 11px; font-size: .79rem; }
  .mock-copy { min-height: 38px; font-size: .72rem; }
  .band { padding: 58px 0; }
  .problem-grid, .origin-grid, .deliverables, .bonus-grid, .audience-grid, .offer-grid { gap: 36px; }
  .origin-mark { font-size: 2rem; }
  .editorial-list li { grid-template-columns: 45px 1fr; }
  .demo > div:first-child, .demo-result { padding: 24px; }
  .bonus h2 { font-size: 3.1rem; }
  .price-side { padding: 27px; }
  body.has-mobile-cta { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .phone { transform: none; }
}
