/* =========================================================
   Навесы27 — базовые стили
   ========================================================= */

:root {
  --bg-dark: #12151b;
  --bg-dark-2: #1a1e26;
  --bg-light: #f6f5f2;
  --bg-white: #ffffff;
  --accent: #ff6a1a;
  --accent-dark: #e0530a;
  --accent-light: #ffe4d1;
  --text-dark: #181a1f;
  --text-muted: #5c626c;
  --text-inverse: #f4f3f0;
  --text-inverse-muted: #b7bcc7;
  --border: #e6e3dc;
  --border-dark: #2a2f3a;
  --success: #1f9d55;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 20, 20, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 10, 10, 0.18);
  --container-w: 1180px;
  --ff: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow--inverse {
  color: #ffcda3;
  background: rgba(255, 106, 26, 0.14);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 14px;
  line-height: 1.15;
}
.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
}

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--bg-dark); color: var(--text-inverse); }
.section--light { background: var(--bg-light); }
.section--white { background: var(--bg-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 26, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 106, 26, 0.4); }
.btn-dark {
  background: var(--text-dark);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--text-inverse);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--text-dark);
}
.btn-outline-dark:hover { border-color: var(--text-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 21, 27, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px; height: 40px;
  flex: none;
}
.brand small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-inverse-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  color: var(--text-inverse-muted);
  font-size: 15px;
  font-weight: 600;
  transition: color .15s ease;
}
.main-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; flex-direction: column; text-align: right; }
.header-phone a { color: #fff; font-weight: 800; font-size: 17px; }
.header-phone span { font-size: 12px; color: var(--text-inverse-muted); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle svg { width: 22px; height: 22px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 18%, #262c38 0%, var(--bg-dark) 55%);
  color: var(--text-inverse);
  overflow: hidden;
  padding: 64px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 18px 0 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-copy > p {
  font-size: 18px;
  color: var(--text-inverse-muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-inverse-muted);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.hero-stats span {
  font-size: 13px;
  color: var(--text-inverse-muted);
}
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge svg { color: var(--accent); flex: none; width: 30px; height: 30px; }
.hero-badge strong { display: block; font-size: 15px; }
.hero-badge span { font-size: 12px; color: var(--text-muted); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.trust-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-inverse-muted);
  font-size: 14px;
  font-weight: 600;
}
.trust-bar svg { color: var(--accent); width: 20px; height: 20px; flex: none; }

/* ---------- UTP grid ---------- */
.utp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.utp-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.utp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.utp-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.utp-icon svg { width: 28px; height: 28px; }
.utp-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.utp-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- Catalog ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.catalog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.catalog-media {
  background: linear-gradient(160deg, #fdece0, #fff);
  padding: 18px;
}
.catalog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.catalog-body h3 { font-size: 19px; font-weight: 800; }
.catalog-body p { color: var(--text-muted); font-size: 14.5px; flex: 1; }
.catalog-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  color: var(--text-dark);
}
.catalog-price span { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 14.5px;
  margin-top: 4px;
}
.catalog-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.catalog-card:hover .catalog-link svg { transform: translateX(4px); }

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-item {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px 22px;
}
.process-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.process-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.process-item p { font-size: 13.5px; color: var(--text-muted); }
.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: var(--border);
  display: none;
}

/* ---------- Materials / why ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-reverse .split { grid-template-columns: 1.1fr 0.9fr; }
.check-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
}
.check-list li:last-child { border-bottom: none; }
.check-list svg {
  width: 22px; height: 22px; flex: none; color: var(--success); margin-top: 1px;
}
.check-list strong { display: block; margin-bottom: 3px; }
.check-list span.muted { color: var(--text-muted); font-size: 14px; }

/* ---------- Calculator / lead teaser ---------- */
.lead-teaser {
  background: linear-gradient(135deg, #1a1e26 0%, #2a2115 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lead-teaser::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,106,26,0.25), transparent 70%);
  right: -100px; top: -140px;
}
.lead-teaser h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 14px; }
.lead-teaser p { color: var(--text-inverse-muted); font-size: 16px; margin-bottom: 26px; }
.lead-teaser-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.lead-teaser-perks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-inverse-muted); }
.lead-teaser-perks svg { color: var(--accent); width: 18px; height: 18px; margin-top: 2px; flex: none; }
.lead-teaser-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.lead-teaser-card .price-old { color: var(--text-inverse-muted); text-decoration: line-through; font-size: 15px; }
.lead-teaser-card .price-new { font-size: 34px; font-weight: 800; color: var(--accent); margin: 4px 0 18px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-grid a { grid-column: span 1; grid-row: span 1; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: #fff; font-size: 13.5px; font-weight: 700;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-stars svg { width: 16px; height: 16px; }
.review-card p { font-size: 15px; color: var(--text-dark); flex: 1; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex: none;
}
.review-person strong { display: block; font-size: 14.5px; }
.review-person span { font-size: 13px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 24px;
  background: var(--bg-white);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item summary .faq-plus::before, .faq-item summary .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--text-dark);
  transition: transform .2s ease;
}
.faq-item summary .faq-plus::before { width: 12px; height: 2px; }
.faq-item summary .faq-plus::after { width: 2px; height: 12px; }
.faq-item[open] summary .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 0 22px; color: var(--text-muted); font-size: 15px; max-width: 640px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 15.5px; }
.cta-banner .btn-dark { background: #14161b; }
.cta-banner .btn-dark:hover { background: #000; }

/* ---------- Contact / form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card, .form-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card {
  background: var(--bg-dark);
  color: #fff;
}
.contact-info-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.contact-rows { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row svg { color: var(--accent); width: 22px; height: 22px; flex: none; margin-top: 2px; }
.contact-row strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.contact-row span, .contact-row a { color: var(--text-inverse-muted); font-size: 14.5px; }
.contact-row a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 18px; height: 18px; }
.social-row a:hover { background: var(--accent); border-color: var(--accent); }

.form-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-card > p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--text-muted); margin: 16px 0 20px; }
.form-consent input { margin-top: 3px; flex: none; }
.form-consent a { text-decoration: underline; }
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: #eafaf0;
  border: 1px solid #bfe9cf;
  color: #146c37;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }
.form-card form.is-hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0c0e12;
  color: var(--text-inverse-muted);
  padding: 60px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 12.5px;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(18,21,27,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta a { flex: 1; }

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

/* ---------- Breadcrumbs (lead page) ---------- */
.lp-hero {
  background: radial-gradient(circle at 80% 0%, #2a2115 0%, var(--bg-dark) 55%);
  color: #fff;
  padding: 90px 0 70px;
}
.lp-hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.lp-hero h1 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; line-height: 1.16; margin: 16px 0 18px; }
.lp-hero > .container > div:first-child > p { color: var(--text-inverse-muted); font-size: 17px; max-width: 520px; }
.lp-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.lp-perks li { display: flex; gap: 14px; align-items: flex-start; }
.lp-perks .num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent);
  color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-perks strong { display: block; font-size: 15.5px; }
.lp-perks span { font-size: 13.5px; color: var(--text-inverse-muted); }

.lp-form-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.lp-form-card .eyebrow { margin-bottom: 12px; }
.lp-form-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.lp-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.lp-form-foot { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 12.5px; color: var(--text-muted); }
.lp-form-foot svg { width: 16px; height: 16px; color: var(--success); flex: none; }

.lp-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lp-trust div strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.lp-trust div span { font-size: 12.5px; color: var(--text-inverse-muted); }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { border-radius: var(--radius-md); padding: 28px; border: 1.5px solid var(--border); }
.compare-card.bad { background: #fbf7f5; }
.compare-card.good { background: #fbfdf9; border-color: #cdeadb; }
.compare-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.compare-card ul { display: flex; flex-direction: column; gap: 12px; }
.compare-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-dark); }
.compare-card svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.compare-card.bad svg { color: #c94c3f; }
.compare-card.good svg { color: var(--success); }

.steps-inline { display: flex; flex-direction: column; gap: 0; }
.steps-inline .process-item { border-radius: 0; border-left: none; border-right: none; border-top: none; padding: 22px 4px; }
.steps-inline .process-item:first-child { border-top: 1px solid var(--border); }

.timer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1e26;
  color: #fff;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.timer-strip strong { color: var(--accent); }

/* ---------- Thanks page ---------- */
.thanks-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  background: var(--bg-light);
}
.thanks-card {
  max-width: 560px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--shadow-md);
}
.thanks-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #eafaf0;
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.thanks-icon svg { width: 42px; height: 42px; }
.thanks-card h1 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.thanks-card p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 8px; }
.thanks-steps {
  text-align: left;
  margin: 28px 0;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thanks-steps li { display: flex; gap: 12px; font-size: 14.5px; }
.thanks-steps b {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center; flex: none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .utp-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .split, .split-reverse .split { grid-template-columns: 1fr; }
  .split-reverse .split > *:first-child { order: 2; }
  .lead-teaser { grid-template-columns: 1fr; padding: 36px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-hero .container { grid-template-columns: 1fr; }
  .lp-hero .lp-form-card { max-width: 480px; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--bg-dark);
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header.nav-open .main-nav ul { flex-direction: column; gap: 4px; }
  .site-header.nav-open .main-nav a { display: block; padding: 12px 6px; font-size: 16px; }
  .mobile-cta { display: flex; }
  .section { padding: 64px 0; }
  body { padding-bottom: 66px; }
}

@media (max-width: 720px) {
  .utp-grid, .catalog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-badge { position: static; margin-top: 16px; max-width: none; }
  .lead-teaser, .cta-banner, .form-card, .contact-info-card { padding: 26px 20px; }
}
