/* ==========================================================================
   Авторента — «Тариф-карты» (friendly pricing cards)
   Approachable, soft, rounded. Mint base + friendly teal/green primary.
   ========================================================================== */

:root {
  --bg: #f2fbf5;
  --bg-soft: #e9f7ee;
  --ink: #143024;
  --muted: #5a7566;
  --card: #ffffff;
  --primary: #17a673;
  --primary-dark: #0e7f57;
  --primary-soft: #d6f3e5;
  --secondary: #ff9d4d;
  --secondary-dark: #f2820f;
  --secondary-soft: #ffe8d1;
  --line: #dcefe4;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 6px 18px rgba(20, 90, 60, 0.08);
  --shadow: 0 16px 40px rgba(20, 90, 60, 0.12);
  --shadow-lift: 0 26px 60px rgba(20, 90, 60, 0.18);
  --font: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.is-hidden { display: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer;
  font-family: var(--font); font-weight: 800; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(23,166,115,.32); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(23,166,115,.4); }
.btn-secondary { background: var(--secondary); color: #40230a; box-shadow: 0 10px 24px rgba(255,157,77,.35); }
.btn-secondary:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--primary-dark); box-shadow: inset 0 0 0 2px var(--primary-soft); }
.btn-ghost:hover { background: var(--primary-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 28px; font-size: 1.08rem; }

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .09em;
  font-size: .78rem; font-weight: 800; color: var(--primary-dark);
  background: var(--primary-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 251, 245, 0.85);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 900; font-size: 1.25rem; }
.logo-mark {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: var(--primary); border-radius: 12px; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 700; padding: 9px 14px; border-radius: 999px; transition: background .15s; }
.nav a:hover { background: var(--primary-soft); }
.nav .nav-cta { background: var(--primary); color: #fff; }
.nav .nav-cta:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 15% -10%, #d9f6e8 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 0%, var(--secondary-soft) 0%, transparent 55%),
    linear-gradient(180deg, #ecfdf3, var(--bg));
  padding: 64px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; margin-bottom: 18px; }
.hero-lead { font-size: 1.14rem; color: var(--muted); max-width: 46ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }
.hero-badges span { color: var(--primary); font-weight: 900; }

/* Signature Price Card */
.price-card {
  position: relative; background: var(--card); border-radius: var(--radius-lg);
  padding: 34px 30px 30px; box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.price-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px; background: linear-gradient(140deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none;
}
.ribbon {
  position: absolute; top: -14px; right: 24px;
  background: var(--secondary); color: #40230a; font-weight: 800; font-size: .82rem;
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.price-card-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 4px; }
.price-card-sub { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.price-tag {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  background: var(--primary-soft); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 20px;
}
.price-from { font-size: 1rem; color: var(--primary-dark); font-weight: 800; }
.price-value { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 900; color: var(--primary-dark); line-height: 1; }
.price-unit { font-size: 1rem; color: var(--primary-dark); font-weight: 700; }
.price-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.price-list li { position: relative; padding-left: 30px; font-weight: 700; }
.price-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: var(--primary); color: #fff; border-radius: 50%; font-size: .72rem; font-weight: 900;
}
.price-note { margin-top: 12px; font-size: .85rem; color: var(--muted); text-align: center; font-weight: 600; }

/* ---------- Stats strip ---------- */
.stats { padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.stat strong { font-size: 1.15rem; font-weight: 900; }
.stat span { color: var(--muted); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }
.section-cta { margin-top: 36px; }

/* Benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-grid-4 { grid-template-columns: repeat(4, 1fr); }
.benefit-card {
  background: #fff; border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  background: var(--primary-soft); border-radius: 16px; font-size: 1.5rem; margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-weight: 600; }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fleet-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.fleet-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fleet-card:hover .fleet-photo img { transform: scale(1.05); }
.fleet-class {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.94); color: var(--primary-dark);
  font-weight: 800; font-size: .82rem; padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.fleet-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.fleet-body h3 { font-size: 1.3rem; font-weight: 900; }
.fleet-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 1.7rem; font-weight: 900; color: var(--primary-dark);
}
.fleet-from { font-size: .95rem; font-weight: 800; color: var(--muted); }
.fleet-unit { font-size: .95rem; font-weight: 700; color: var(--muted); }

/* ---------- Process ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: none; }
.step {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 14px; font-size: 1.3rem; font-weight: 900; margin-bottom: 14px;
}
.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-weight: 600; }

/* ---------- Lead form ---------- */
.lead-section {
  background:
    radial-gradient(700px 400px at 100% 0%, var(--secondary-soft) 0%, transparent 55%),
    var(--bg-soft);
}
.lead-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.lead-intro { position: sticky; top: 96px; }
.lead-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.lead-points li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lead-points span { color: var(--primary); font-weight: 900; }

.lead-form {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 800; font-size: .92rem; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-weight: 600; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); background: #fff;
}
#formMessage { margin-top: 14px; font-weight: 800; text-align: center; }
#formMessage.is-error { color: #c0392b; }
#formMessage.is-success { color: var(--primary-dark); }
#mailLink { display: inline-block; margin-top: 10px; text-align: center; width: 100%; font-weight: 800; }
.form-consent { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; font-weight: 600; }

/* ---------- Requisites ---------- */
.requisites-section { padding-top: 8px; padding-bottom: 64px; }
.requisites {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.requisites summary {
  cursor: pointer; padding: 22px 26px; font-weight: 900; font-size: 1.1rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.requisites summary::-webkit-details-marker { display: none; }
.requisites summary::after { content: "＋"; color: var(--primary); font-weight: 900; font-size: 1.3rem; }
.requisites[open] summary::after { content: "－"; }
.req-grid {
  margin: 0; padding: 4px 26px 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px;
}
.req-grid > div { display: flex; flex-direction: column; gap: 3px; }
.req-grid dt { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 800; }
.req-grid dd { margin: 0; font-weight: 700; word-break: break-word; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #cfe6da; padding: 48px 0 28px; }
.foot-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 26px; }
.foot-brand { display: flex; gap: 14px; align-items: flex-start; }
.foot-brand strong { color: #fff; font-size: 1.1rem; font-weight: 900; display: block; }
.foot-brand p { color: #a9cbbb; font-weight: 600; margin-top: 4px; max-width: 40ch; }
.foot-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.foot-links a { color: #dff2e8; text-decoration: none; font-weight: 700; }
.foot-links a:hover { text-decoration: underline; }
.foot-copy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; color: #8fb4a2; font-weight: 600; font-size: .9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(242,251,245,.98); backdrop-filter: blur(10px);
    padding: 14px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .price-card { max-width: 520px; }
  .stats-grid { grid-template-columns: 1fr; }
  .benefit-grid, .benefit-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .lead-wrap { grid-template-columns: 1fr; gap: 30px; }
  .lead-intro { position: static; }
  .foot-links { align-items: flex-start; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero { padding: 44px 0 52px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .benefit-grid, .benefit-grid-4 { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 20px; }
  .price-card { padding: 30px 22px 26px; }
}

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


/* === Этап 1: фундамент (авто-добавлено) === */
img { height: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 999;
  padding: 10px 18px; background: #111; color: #fff; border-radius: 6px;
  font-size: .9rem; text-decoration: none;
}
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }


/* === Этап 2: функциональность === */

/* --- Лайтбокс: округлая карточка с крупным ценником --- */
.fleet-photo[role="button"] { cursor: zoom-in; }
.fleet-photo[role="button"]:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }
body.lb-open { overflow: hidden; }
.lb {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lb[hidden] { display: none; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 48, 36, 0.55);
  backdrop-filter: blur(4px);
}
.lb-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 620px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.lb-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.lb-body { padding: 22px 26px 26px; }
.lb-class {
  display: inline-block;
  background: var(--primary-soft); color: var(--primary-dark);
  font-weight: 800; font-size: .82rem;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 10px;
}
.lb-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.lb-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  background: var(--primary-soft); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 18px;
  font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 900; color: var(--primary-dark);
}
.lb-price small { font-size: .95rem; font-weight: 700; }
.lb-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink); font-size: 1.05rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.lb-close:hover { background: var(--primary-soft); }

/* --- Калькулятор: большая дружелюбная тариф-карта --- */
.calc-section {
  background:
    radial-gradient(800px 420px at 0% 100%, #d9f6e8 0%, transparent 60%),
    linear-gradient(180deg, var(--bg), #ecfdf3);
}
.calc-card {
  position: relative;
  max-width: 620px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px 32px;
  box-shadow: var(--shadow-lift);
}
.calc-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px; background: linear-gradient(140deg, var(--primary), var(--secondary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none;
}
.calc-fields { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.calc-stepper { display: flex; gap: 8px; }
.calc-stepper input { width: 78px; text-align: center; }
.calc-stepper input::-webkit-outer-spin-button,
.calc-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-step {
  width: 48px; flex: 0 0 48px;
  background: var(--primary-soft);
  border: 0; border-radius: var(--radius-sm);
  color: var(--primary-dark); font-size: 1.4rem; font-weight: 900;
  cursor: pointer; transition: background .15s, transform .15s;
}
.calc-step:hover { background: #bfe9d6; transform: translateY(-1px); }
.calc-total {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px;
  background: var(--primary-soft); border-radius: var(--radius);
  padding: 18px 22px; margin-top: 8px;
}
.calc-total-label { font-size: 1rem; color: var(--primary-dark); font-weight: 800; }
.calc-total-value {
  font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900;
  color: var(--primary-dark); line-height: 1;
}
.calc-note { margin: 14px 0 18px; font-size: .88rem; color: var(--muted); text-align: center; }

/* --- FAQ --- */
.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 52px 18px 24px;
  font-weight: 800; font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋"; position: absolute; right: 22px; top: 16px;
  color: var(--primary); font-weight: 900; font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "－"; }
.faq-item p { padding: 0 24px 20px; color: var(--muted); font-weight: 600; }

/* --- Sticky mobile CTA --- */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: block;
    position: fixed; left: 16px; right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60;
    text-align: center; text-decoration: none;
    background: var(--primary); color: #fff;
    font-weight: 800; font-size: 1.05rem;
    padding: 16px 22px; border-radius: 999px;
    box-shadow: 0 14px 34px rgba(14, 127, 87, 0.42);
    transition: transform .25s ease, opacity .25s ease;
  }
  .sticky-cta:hover { background: var(--primary-dark); }
  .sticky-cta.is-off { transform: translateY(180%); opacity: 0; pointer-events: none; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* --- Печать реквизитов --- */
.req-print { margin: 0; padding: 0 26px 26px; }
@media print {
  body.print-requisites { background: #fff; padding-bottom: 0; }
  body.print-requisites .site-head,
  body.print-requisites .site-foot,
  body.print-requisites .sticky-cta,
  body.print-requisites .lb,
  body.print-requisites main > :not(.requisites-section) { display: none !important; }
  body.print-requisites .requisites-section { padding: 20px 0; }
  body.print-requisites .requisites { border: 0; box-shadow: none; }
  body.print-requisites .requisites summary::after { content: ""; }
  body.print-requisites .req-grid dd { color: #000; }
  body.print-requisites .req-grid dt { color: #444; }
  body.print-requisites .req-print { display: none; }
}

/* --- Responsive (Этап 2) --- */
@media (max-width: 600px) {
  .calc-fields { grid-template-columns: 1fr; }
  .calc-card { padding: 30px 22px 26px; }
  .lb { padding: 12px; }
  .lb-body { padding: 18px 20px 22px; }
}


/* === Этап 3: тонировка фото и микро-детали === */
#fleet img, .crdlb__img, .car-modal__img, .lightbox__img {
  filter: saturate(1.08) brightness(1.02);
}
::selection { background: #17a673; color: #fff; }
html { scrollbar-color: #17a673 #e3f4ea; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #e3f4ea; }
::-webkit-scrollbar-thumb { background: #17a673; border-radius: 6px; border: 2px solid #e3f4ea; }

/* === Этап 3: wow === */

.price-tag { display:inline-block; transform-origin: 50% 0; }
*:hover > .price-tag, .price-tag:hover { animation: gwWiggle .6s ease-in-out; }
@keyframes gwWiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-4deg); } 60% { transform: rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .price-tag { animation:none !important; } }


/* === Этап 4: отзывы === */
.crdrev { padding: clamp(48px,6vw,76px) clamp(18px,4vw,48px); }
.crdrev__wrap { max-width: 1200px; margin: 0 auto; }
.crdrev__title { margin: 0 0 30px; }
.crdrev__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.crdrev__item { margin: 0; padding: 24px 24px 20px; border-left: 3px solid #17a673; position: relative; }
.crdrev__item::before { content: "\201C"; position: absolute; top: 6px; right: 16px; font-size: 3rem; line-height: 1; color: #17a673; opacity: .35; font-family: Georgia, serif; }
.crdrev__item blockquote { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.55; }
.crdrev__item figcaption { font-size: .82rem; opacity: .75; }
.crdrev__note { margin-top: 16px; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .crdrev__grid { grid-template-columns: 1fr; } }
.crdrev__item { background: rgba(0,0,0,.025); }

/* === Этап 4: тап-таргеты === */
@media (max-width: 900px) {
  nav a, footer a { padding-top: 8px; padding-bottom: 8px; }
}

/* === Этап 4: анти-переполнение v2 === */
@media (max-width: 900px) {
  html, body { overflow-x: clip; }
}

/* === Этап 4: форма на мобиле (анти-min-content) === */
@media (max-width: 900px) {
  #lead * { min-width: 0; }
  #lead input, #lead select, #lead textarea { width: 100%; }
  #lead .crdconsent input[type="checkbox"] { width: 16px; flex: 0 0 auto; }
}

/* === Этап 4: рекламный шоукейс === */
.crdads { margin: 34px 0 0; }
.crdads img { width: 100%; height: auto; display: block; border-radius: 6px;
  border: 1px solid #17a673; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.crdads figcaption { margin-top: 10px; font-size: .82rem; opacity: .75;
  padding-left: 12px; border-left: 3px solid #17a673; }

/* === Этап 5: согласие ПДн === */
.crdconsent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem;
  line-height: 1.5; opacity: .9; grid-column: 1 / -1; margin: 4px 0 2px; }
.crdconsent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 auto;
  accent-color: #17a673; }
.crdconsent a { text-decoration: underline; }

/* === Этап 6: аудит (доверие, форма, форматы) === */
.crdtrust { display:flex; flex-wrap:wrap; gap:8px 22px; justify-content:center; align-items:center;
  padding:14px 20px; font-size:.82rem; letter-spacing:.02em; opacity:.92;
  border-top:1px solid #17a67355; border-bottom:1px solid #17a67355; }
.crdtrust span { white-space:nowrap; }
.crdtrust span::before { content:"✓ "; color:#17a673; font-weight:700; }
.crdformats { list-style:none; margin:26px 0 0; padding:0; display:grid;
  grid-template-columns:repeat(6,1fr); gap:10px; }
.crdformats li { display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:14px 6px; font-size:.78rem; text-align:center; border:1px solid #17a67344;
  border-radius:8px; color:inherit; }
.crdformats svg { color:#17a673; }
.crdmore { grid-column:1/-1; margin:2px 0; }
.crdmore summary { cursor:pointer; font-size:.85rem; opacity:.8; padding:8px 0; }
.crdmore summary:hover { opacity:1; }
.crdmore__grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; padding-top:12px; }
.crdnote { grid-column:1/-1; font-size:.8rem; opacity:.65; margin:8px 0 0; line-height:1.5; }
@media (max-width:900px){ .crdformats { grid-template-columns:repeat(3,1fr); } }
@media (max-width:600px){ .crdmore__grid { grid-template-columns:1fr; } .crdformats { grid-template-columns:repeat(2,1fr); } }

.crdfacts { list-style:none; display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:16px 0 4px; }
.crdfacts li { border:1.5px solid #17a673; border-radius:99px; padding:7px 14px; font-size:.8rem; font-weight:600; }

/* === P1: юрссылки в футере === */
footer a[href^="privacy"], footer a[href^="terms"], footer a[href^="mailto"] {
  opacity: .62; font-size: .86em; }
footer a[href^="privacy"]:hover, footer a[href^="terms"]:hover, footer a[href^="mailto"]:hover { opacity: 1; }

/* === Волна 1: интеграция === */

.crdtrust { border: none; background: #e3f4ea; border-radius: 16px; margin: 14px 20px; box-shadow: 0 10px 26px rgba(23,166,115,.12); }
.crdtrust span::before { content: "✓ "; color: #17a673; }
.crdformats li { border-color: #cdeadb; border-radius: 14px; background: #fff; box-shadow: 0 6px 16px rgba(23,166,115,.08); }

/* === Волна 3: композиционный ритм === */
/* акт «Парк + Калькулятор»: секции сшиваются */
#fleet:has(+ #calc) { padding-bottom: clamp(14px, 2.2vw, 28px); }
#fleet + #calc { padding-top: clamp(14px, 2.2vw, 28px); }
/* акт «Отзывы + FAQ» */
#reviews:has(+ #faq) { padding-bottom: clamp(16px, 2.4vw, 30px); }
#reviews + #faq { padding-top: clamp(16px, 2.4vw, 30px); }
/* вдох перед актом отзывов */
* + #reviews { margin-top: clamp(8px, 1.6vw, 22px); }
/* сценарии/сравнение прижаты к trust-полосе */
.crdtrust + .crdscen, .crdtrust + .crdcompare { padding-top: clamp(18px, 2.6vw, 30px); }

/* === Волна 5: футер-подвал === */
.crdfoot { margin-top: clamp(30px,4vw,54px); padding: clamp(28px,4vw,46px) clamp(20px,4vw,48px) 26px; border-top: 1px solid #17a67355; }
.crdfoot__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.crdfoot__brand strong { font-size: 1.15rem; }
.crdfoot__brand p { margin: 8px 0 0; font-size: .85rem; opacity: .7; max-width: 32ch; }
.crdfoot__col { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.crdfoot__col span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.crdfoot__col a { opacity: .85; } .crdfoot__col a:hover { opacity: 1; color: #17a673; }
.crdfoot__legal { max-width: 1200px; margin: 26px auto 0; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .crdfoot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .crdfoot__grid { grid-template-columns: 1fr; } }

/* === Итерация 1: подстраницы === */

/* активный пункт навигации */
.nav a[aria-current="page"] { background: var(--primary-soft); color: var(--primary-dark); }

/* карточки услуг на главной */
.crdservices { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.crdsvc {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 30px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.crdsvc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.crdsvc__icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  background: var(--primary-soft); border-radius: 16px; font-size: 1.5rem;
}
.crdsvc h3 { font-size: 1.35rem; font-weight: 900; }
.crdsvc p { color: var(--muted); font-weight: 600; }
.crdsvc__more { margin-top: auto; padding-top: 6px; font-weight: 800; color: var(--primary-dark); }
.crdsvc:hover .crdsvc__more { text-decoration: underline; }
.crdsvc--ads .crdsvc__icon { background: var(--secondary-soft); }
.crdsvc--ads .crdsvc__more { color: var(--secondary-dark); }
@media (max-width: 900px) { .crdservices { grid-template-columns: 1fr; } }

/* компактный hero подстраниц */
.hero--sub { padding: 52px 0 58px; }
.hero--sub h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.hero-copy--wide { max-width: 720px; }
@media (max-width: 600px) { .hero--sub { padding: 40px 0 46px; } }

/* CTA-блок подстраниц */
.crdcta { max-width: 720px; text-align: center; }
.crdcta .section-lead { margin: 0 auto 26px; }
.crdcta .eyebrow { margin-bottom: 14px; }
.crdcta h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }

/* юрссылки в подвале подстраниц (пути через ../) */
footer a[href^="../privacy"], footer a[href^="../terms"] { opacity: .62; font-size: .86em; }
footer a[href^="../privacy"]:hover, footer a[href^="../terms"]:hover { opacity: 1; }


/* === Итерация 2: модули === */
/* лента доверия: мягкие карточки-пилюли */
.crdtrust { background: transparent; border: none; box-shadow: none; gap: 10px 12px; padding: 18px 16px; }
.crdtrust span {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; box-shadow: var(--shadow-sm); font-weight: 700; font-size: .9rem;
}

/* тариф-таблетки срока в калькуляторе (круглые, Nunito) */
.calc-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 12px; }
.calc-pill {
  width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid var(--line); background: var(--card);
  font-family: var(--font); font-weight: 900; font-size: 1rem; color: var(--ink);
  cursor: pointer; transition: transform .15s, border-color .15s, background .15s, color .15s;
}
.calc-pill:hover { transform: translateY(-2px); border-color: var(--primary); }
.calc-pill.is-active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.calc-pill:focus-visible { outline: 3px solid var(--primary-soft); outline-offset: 2px; }

/* подвал: две колонки на мягкой плашке со скруглением */
.crdfoot--duo { border-top: none; padding-top: 0; }
.crdfoot--duo .crdfoot__grid {
  grid-template-columns: 1.15fr 1fr; gap: 30px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.crdfoot--duo .crdfoot__brand a { display: inline-block; margin-top: 12px; font-weight: 800; color: var(--primary-dark); }
.crdfoot__nav { display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.crdfoot__nav a { opacity: .9; font-weight: 700; }
.crdfoot__nav a:hover { opacity: 1; color: var(--primary-dark); }
.crdfoot__nav span, .crdfoot__docs span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.crdfoot__docs { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); }
@media (max-width: 700px) { .crdfoot--duo .crdfoot__grid { grid-template-columns: 1fr; } }

/* === Итерация 3: легенда === */
/* Бухгалтерии будет просто — дружелюбные карточки документов (#buh-prosto) */
.buh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.buh-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.buh-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.buh-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--primary-soft); font-size: 1.35rem; margin-bottom: 14px;
}
.buh-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.buh-card p { font-size: .92rem; color: var(--muted); }
@media (max-width: 900px) { .buh-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .buh-grid { grid-template-columns: 1fr; } }
