/* ==========================================================================
   ПЯТЁРКА /4 — site.css
   Warm paper, daylight, human. Light theme only.
   ========================================================================== */

:root {
  --paper: #FBF7F0;
  --paper2: #F4EDE1;
  --ink: #241F1A;
  --muted: #6E655B;
  --accent: #D9552F;
  --accent-deep: #B23F1E;
  --green: #1E5B45;
  --sun: #F0B33C;
  --line: #E2D7C6;
  --white: #FFFFFF;

  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(36, 31, 26, .05), 0 14px 34px -18px rgba(36, 31, 26, .22);
  --shadow-lift: 0 2px 4px rgba(36, 31, 26, .06), 0 22px 46px -20px rgba(36, 31, 26, .30);
  --wrap: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, 1.02rem, 18px);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(62% 55% at 20% 14%, rgba(240, 179, 60, .22), transparent 70%),
    radial-gradient(55% 50% at 86% 26%, rgba(217, 85, 47, .12), transparent 72%),
    radial-gradient(72% 60% at 58% 96%, rgba(30, 91, 69, .09), transparent 76%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.hero-title, .section-title, .card-title, .tool-title, .tool-h3, .case-who, .faq-q,
.turnkey-card-title, .turnkey-you-text, .turnkey-result {
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img, svg, canvas { max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ------------------------------------------------------------ ambient bg */
#warm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(36, 31, 26, .10) .7px, transparent .9px),
    radial-gradient(rgba(36, 31, 26, .07) .7px, transparent .9px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

.shell {
  position: relative;
  z-index: 1;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* -------------------------------------------------------------- skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: .7rem 1.1rem;
  border-radius: 0 0 12px 12px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

.noscript {
  position: relative;
  z-index: 5;
  max-width: var(--wrap);
  margin: 1rem auto;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 22px -18px rgba(36, 31, 26, .45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .12);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-link {
  display: inline-block;
  padding: .5rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--paper2); color: var(--accent-deep); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: var(--green);
  white-space: nowrap;
  transition: background .15s ease;
}
.phone-link:hover { background: var(--paper2); }
.phone-ico { display: inline-flex; color: var(--green); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: .45rem;
  padding: .5rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
}
.menu-ico {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.menu-ico::before, .menu-ico::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.menu-ico::before { top: 2px; }
.menu-ico::after { bottom: 2px; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72em 1.25em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn-accent {
  background: var(--accent-deep);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(178, 63, 30, .8);
}
.btn-accent:hover { background: #9E3617; transform: translateY(-1px); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }
.btn-lg { padding: .85em 1.6em; font-size: 1.04rem; }
.btn-sm { padding: .5em 1em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .7; cursor: default; transform: none; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.hero-kicker {
  display: inline-block;
  padding: .45em 1.05em;
  border-radius: 999px;
  background: rgba(217, 85, 47, .10);
  color: var(--accent-deep);
  font-size: .95rem;
  font-weight: 600;
}
.hero-title {
  max-width: 100%;
  font-size: clamp(1.6rem, 6.2vw, 4.05rem);
  line-height: 1.08;
}
.hero-subtitle {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}
.hero-accent { color: var(--accent); margin: -.2rem 0 .2rem; }
.hero-accent svg { display: block; width: clamp(180px, 40vw, 260px); height: auto; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
}
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  margin-top: .4rem;
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.price-main {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--accent-deep);
}
.price-note { color: var(--muted); font-weight: 600; }
.price-extra {
  font-size: .92rem;
  color: var(--green);
  font-weight: 600;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.4rem;
  margin-top: .6rem;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}
.trust-check { display: inline-flex; color: var(--green); flex: 0 0 auto; }
.trust-check svg { display: block; }

/* -------------------------------------------------------------- turnkey */
.section--turnkey {
  background:
    radial-gradient(70% 65% at 82% 0%, rgba(240, 179, 60, .16), transparent 70%),
    radial-gradient(60% 60% at 8% 100%, rgba(30, 91, 69, .07), transparent 72%),
    var(--paper);
}
.turnkey-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.4rem);
  align-items: start;
}
.turnkey-card {
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.turnkey-card--we {
  background: var(--white);
  box-shadow: var(--shadow-lift);
}
.turnkey-card--you {
  background: var(--paper2);
  box-shadow: none;
}
.turnkey-card-title {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-bottom: 1.2rem;
}
.turnkey-we {
  list-style: none;
  display: grid;
  gap: .75rem;
}
.turnkey-we li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.turnkey-mark { flex: 0 0 auto; display: inline-flex; color: var(--green); }
.turnkey-mark svg { display: block; }
.turnkey-you {
  list-style: none;
  display: grid;
  gap: 1.15rem;
}
.turnkey-you li {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.turnkey-num {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-deep);
}
.turnkey-you-text { font-size: clamp(1.08rem, 1.8vw, 1.28rem); font-weight: 700; }
.turnkey-result {
  margin: clamp(1.8rem, 4vw, 2.8rem) auto 0;
  max-width: 24ch;
  text-align: center;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
}
.turnkey-note {
  margin: .7rem auto 0;
  text-align: center;
  color: var(--muted);
}

/* ----------------------------------------------------------------- cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  list-style: none;
}
.case-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.case-photo {
  margin: 0 0 1.15rem;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper2);
  border: 1px solid var(--line);
}
.case-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.case-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(217, 85, 47, .11);
  color: var(--accent-deep);
}
.case-icon svg { display: block; }
.case-who { font-size: 1.32rem; }
.case-flow { display: flex; flex-direction: column; gap: .45rem; }
.case-step {
  padding: .85rem 1.05rem;
  border-radius: 15px;
}
.case-label {
  margin-bottom: .25rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.case-text { font-size: .97rem; overflow-wrap: anywhere; }
.case-step--before {
  background: var(--paper2);
  border-left: 3px solid var(--line);
}
.case-step--before .case-label { color: var(--muted); }
.case-step--before .case-text { color: var(--muted); }
.case-step--what {
  background: var(--paper);
  border: 1px dashed var(--line);
}
.case-step--what .case-label { color: var(--accent-deep); }
.case-step--what .case-text { color: var(--ink); }
.case-connector {
  display: flex;
  justify-content: center;
  height: 16px;
  color: var(--accent);
}
.case-connector svg { display: block; }
.case-step--after {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 16px 32px -20px rgba(30, 91, 69, .85);
}
.case-step--after .case-label { color: var(--sun); }
.case-step--after .case-text {
  color: var(--paper);
  font-weight: 600;
  font-size: 1.04rem;
}

/* -------------------------------------------------------------- sections */
.section {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem);
  scroll-margin-top: 88px;
}
.section--paper2 { background: var(--paper2); }
.section--lead {
  position: relative;
  overflow: hidden;
  background: #1b1511;
  color: #F6EFE4;
  color-scheme: dark;
}
.section--lead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(24, 18, 14, .62), rgba(24, 18, 14, .84)),
    linear-gradient(90deg, rgba(24, 18, 14, .55), rgba(24, 18, 14, .28));
}
.section--lead > .wrap { position: relative; z-index: 2; }
.lead-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.lead-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.section--lead .section-title { color: #FBF7F0; }
.section--lead .section-lead { color: rgba(251, 247, 240, .84); }
.section--lead .lead-note { color: rgba(251, 247, 240, .74); }

.section-head {
  max-width: 66ch;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.section-lead {
  margin-top: .7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.grid {
  display: grid;
  gap: 1.05rem;
  list-style: none;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper2);
  box-shadow: var(--shadow);
}
.section--paper2 .card { background: var(--white); }

.card-title {
  font-size: 1.22rem;
  margin-bottom: .5rem;
}
.card-text {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.card-mark { display: inline-flex; margin-bottom: .6rem; }
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(217, 85, 47, .14);
}
.card-check { display: inline-flex; color: var(--green); margin-bottom: .6rem; }
.card--solution { border-top: 3px solid var(--green); }
.card--trust { border-top: 3px solid var(--sun); }
.card--audience { border-top: 3px solid var(--accent); }

/* steps */
.step-list { counter-reset: step; }
.card--step { position: relative; padding-top: 1.6rem; }
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: .4rem;
}

/* ----------------------------------------------------------------- tools */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  list-style: none;
}
.tool-item { display: flex; }
.tool-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper2);
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.tool-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.tool-num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--accent-deep);
  font-family: var(--serif);
  font-weight: 700;
  font-size: .88rem;
}
.tool-main { display: flex; flex-direction: column; min-width: 0; }
.tool-name { font-weight: 700; font-size: .95rem; }
.tool-short { color: var(--muted); font-size: .82rem; overflow-wrap: anywhere; }
.tool-go {
  margin-left: auto;
  color: var(--accent);
  display: inline-flex;
  opacity: .65;
  transition: transform .15s ease, opacity .15s ease;
}
.tool-card:hover .tool-go { transform: translateX(2px); opacity: 1; }
.tools-note {
  margin-top: 1.1rem;
  padding: .75rem 1.1rem;
  border-radius: 14px;
  background: rgba(30, 91, 69, .08);
  color: var(--green);
  font-weight: 600;
  font-size: .92rem;
}

/* --------------------------------------------------------------- pricing */
.pricing {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.price-panel {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--green);
  color: var(--paper);
  box-shadow: var(--shadow-lift);
}
.price-tag { margin: 0; }
.price-tag-main {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
}
.price-tag-main--sm { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
.price-tag-cap { display: block; color: rgba(251, 247, 240, .82); font-weight: 600; }
.price-month { margin-top: 1rem; }
.price-incl {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(251, 247, 240, .28);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sun);
}
.price-panel .price-note { margin-top: .5rem; color: rgba(251, 247, 240, .85); font-size: .96rem; }
.price-points {
  list-style: none;
  display: grid;
  gap: .7rem;
}
.price-points li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 500;
}
.terms-note { margin-top: 1.2rem; color: var(--muted); font-style: italic; }

/* ----------------------------------------------------------------- tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.tier-card--rec {
  border-color: var(--accent);
  box-shadow: var(--shadow-lift);
}
.tier-badge {
  position: absolute;
  top: -0.85rem;
  left: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0;
  padding: .32em .9em;
  border-radius: 999px;
  background: var(--accent-deep);
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  box-shadow: 0 10px 20px -12px rgba(178, 63, 30, .95);
}
.tier-name { font-size: 1.35rem; }
.tier-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem;
  margin-top: .55rem;
}
.tier-price-num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--accent-deep);
}
.tier-period { color: var(--muted); font-weight: 600; }
.tier-tagline { margin-top: .45rem; color: var(--muted); }
.tier-features {
  list-style: none;
  display: grid;
  gap: .55rem;
  margin-top: 1.15rem;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .96rem;
  color: var(--ink);
}
.tier-cta { margin-top: auto; padding-top: 1.5rem; }
.tier-terms { margin-top: 1.4rem; color: var(--muted); font-style: italic; }
.section--paper2 .tool-card { background: var(--white); }

/* --------------------------------------------------------------- pay form */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.pay {
  max-width: 720px;
  margin: clamp(1.8rem, 4vw, 2.8rem) auto 0;
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pay-head { margin-bottom: 1.1rem; }
.pay-title { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
.pay-lead { margin-top: .4rem; color: var(--muted); }
.pay-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin: 0 0 1.2rem;
  padding: 0;
  border: 0;
}
.pay-option { display: block; cursor: pointer; }
.pay-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.pay-option-box {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  height: 100%;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.pay-option-label { font-weight: 700; font-size: .95rem; }
.pay-option-note { color: var(--muted); font-size: .82rem; }
.pay-option input:checked + .pay-option-box {
  border-color: var(--accent);
  background: rgba(217, 85, 47, .09);
  box-shadow: 0 0 0 3px rgba(217, 85, 47, .13);
}
.pay-option input:focus-visible + .pay-option-box { outline: 3px solid var(--accent); outline-offset: 2px; }
.pay-fields { display: grid; gap: .1rem; }
.pay-error {
  margin: .4rem 0 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(178, 63, 30, .35);
  border-radius: 12px;
  background: #FBE9E3;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: .92rem;
}
.pay-note { margin-top: .8rem; color: var(--muted); font-size: .86rem; }
.price-pay-cta { margin-top: 1.3rem; }

/* ------------------------------------------------------------------- faq */
.faq { display: grid; gap: .7rem; max-width: 78ch; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-ico {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-ico::before, .faq-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-deep);
  border-radius: 2px;
}
.faq-ico::before { width: 14px; height: 2.5px; }
.faq-ico::after { width: 2.5px; height: 14px; transition: transform .15s ease; }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { padding: 0 1.25rem 1.2rem; color: var(--muted); }

/* ------------------------------------------------------------------ lead */
.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.lead-copy { padding-top: .4rem; }
.lead-contacts {
  list-style: none;
  display: grid;
  gap: .5rem;
  margin-top: 1.4rem;
}
.lead-contacts li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.06rem;
}
.lead-contacts a { text-decoration: none; }
.lead-contacts a:hover { color: var(--accent-deep); }
.section--lead .lead-contacts a { color: #FBF7F0; }
.section--lead .lead-contacts a:hover { color: var(--sun); }
.lead-note { margin-top: 1rem; color: var(--muted); font-size: .95rem; }

.lead-form {
  padding: clamp(1.3rem, 3.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  color-scheme: light;
  box-shadow: var(--shadow-lift);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 700;
  font-size: .95rem;
}
.opt { color: var(--muted); font-weight: 500; }
.field input,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 85, 47, .18);
}
.err { display: none; margin-top: .3rem; color: var(--accent-deep); font-size: .88rem; }
.field.is-bad input { border-color: var(--accent-deep); }
.field.is-bad .err { display: block; }

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: .3rem 0 1.1rem;
  font-size: .93rem;
  color: var(--muted);
}
.consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: .1rem;
  accent-color: var(--green);
}
.link { color: var(--accent-deep); font-weight: 600; }

.form-note { margin-top: .8rem; color: var(--muted); font-size: .86rem; }
.form-error {
  margin-bottom: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(178, 63, 30, .35);
  border-radius: 12px;
  background: #FBE9E3;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: .92rem;
}
.form-ok {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(30, 91, 69, .3);
  border-radius: 12px;
  background: #E4F0E9;
  color: var(--green);
  font-weight: 600;
}
[hidden] { display: none !important; }

/* ---------------------------------------------------------------- footer */
.site-foot {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper2);
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: grid;
  gap: .8rem;
  max-width: 70ch;
}
.foot-brand-row { display: flex; align-items: center; gap: .6rem; }
.foot-brand { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.foot-tagline { color: var(--muted); }
.foot-contacts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  font-weight: 700;
}
.foot-contacts a { text-decoration: none; }
.foot-contacts a:hover { color: var(--accent-deep); }
.foot-req { color: var(--muted); font-size: .9rem; }
.foot-copy { color: var(--muted); font-size: .9rem; }

/* --------------------------------------------------------------- overlay */
.overlay-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(36, 31, 26, .46);
  opacity: 0;
  transition: opacity .2s ease;
}
.overlay-scrim.is-open { opacity: 1; }

.tool-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
}
.overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 60px -30px rgba(36, 31, 26, .5);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .22s ease, transform .22s ease;
}
.tool-overlay.is-open .overlay-card { opacity: 1; transform: translateX(0); }

.overlay-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: .8rem clamp(1rem, 3vw, 2rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.overlay-close {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
}
.overlay-close:hover { border-color: var(--accent); color: var(--accent-deep); }
.overlay-close-x { color: var(--accent-deep); }

.overlay-body {
  overflow-y: auto;
  padding: clamp(1.3rem, 4vw, 2.6rem);
}
.tool-head { margin-bottom: 1.6rem; }
.tool-head-index {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: none;
}
.tool-title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin-top: .3rem; }
.tool-tagline { margin-top: .6rem; color: var(--muted); font-size: 1.08rem; }
.tool-section { margin-bottom: 1.6rem; }
.tool-h3 {
  font-size: 1.22rem;
  margin-bottom: .6rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--line);
}
.tool-section p { color: var(--ink); }
.tool-steps {
  list-style: none;
  counter-reset: ts;
  display: grid;
  gap: .55rem;
}
.tool-steps li {
  position: relative;
  counter-increment: ts;
  padding-left: 2.3rem;
  color: var(--muted);
}
.tool-steps li::before {
  content: counter(ts);
  position: absolute;
  left: 0;
  top: .05rem;
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--paper2);
  color: var(--accent-deep);
  font-family: var(--serif);
  font-weight: 700;
  font-size: .95rem;
}
.tool-gives { list-style: none; display: grid; gap: .6rem; }
.tool-gives li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--muted);
}
.tool-metric {
  padding: .9rem 1.1rem;
  border-radius: 12px;
  background: var(--paper2);
  color: var(--ink);
  font-style: italic;
}
.tool-honest {
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--sun);
  border-radius: 12px;
  background: rgba(240, 179, 60, .13);
}
.tool-honest .tool-h3 { border-bottom: none; padding-bottom: 0; }
.tool-honest p { color: var(--ink); }
.tool-cta { margin-top: 1.8rem; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1100px) {
  .tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .turnkey-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1160px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
    padding: .6rem clamp(1rem, 4vw, 1.5rem) 1.1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 30px -24px rgba(36, 31, 26, .5);
  }
  .site-header.nav-open .header-nav { display: flex; }
  .nav-link {
    padding: .75rem .3rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 820px) {
  .header-cta { display: none; }
}

@media (max-width: 620px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
  .price-card { width: 100%; }
  .pay-options { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-title { font-size: 1.55rem; }
}

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

@media (max-width: 420px) {
  .brand-text { display: none; }
  .phone-link { font-size: .84rem; padding: .45rem .5rem; }
  .menu-label { display: none; }
  .menu-toggle { padding: .5rem .6rem; }
}

/* --------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
