/* =========================================================
   Ремонт бытовой техники — общие стили
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
svg { display: block; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Design tokens ---------- */
:root {
  --bg:            #F7F6F8;
  --panel:         #FFFFFF;
  --ink:           #1C1A22;
  --ink-soft:      #5C5866;
  --ink-faint:     #948FA0;
  --line:          rgba(28,26,34,.12);
  --line-strong:   rgba(28,26,34,.28);

  --violet:        #5B2E86;
  --violet-deep:   #3E1F5E;
  --violet-tint:   #EDE4F5;
  --violet-tint-2: #E0CFF0;

  --amber:         #F2B705;
  --amber-deep:    #8A6300;
  --amber-tint:    #FDF1CB;

  --skin:          #E8C9A3;

  --font-display: 'Manrope', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --shadow-soft: 0 8px 24px rgba(28,26,34,.08);
  --radius-card: 16px;
  --radius-btn:  10px;

  --section-pad: 80px;
}

@media (max-width: 720px) {
  :root { --section-pad: 52px; }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 92% -8%, rgba(91,46,134,.10), transparent 60%),
    radial-gradient(700px 520px at -8% 18%, rgba(242,183,5,.12), transparent 55%),
    radial-gradient(760px 620px at 104% 62%, rgba(91,46,134,.07), transparent 55%),
    radial-gradient(600px 460px at 6% 96%, rgba(242,183,5,.08), transparent 55%);
  background-repeat: no-repeat;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 20px); font-weight: 700; }

p { color: var(--ink-soft); }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--violet-deep);
  font-weight: 600;
  background: var(--violet-tint);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(120deg, var(--violet) 20%, #9455c9 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-transform: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, #7A45AD, var(--violet));
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(91,46,134,.5);
}
.btn-primary:hover { background: var(--violet-deep); box-shadow: 0 10px 24px -8px rgba(62,31,94,.5); }

.btn-cta {
  background: linear-gradient(135deg, #FFCF3D, var(--amber));
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(242,183,5,.6);
}
.btn-cta:hover { background: var(--amber-deep); color: #fff; box-shadow: 0 10px 24px -8px rgba(138,99,0,.45); }

.btn-call {
  background: linear-gradient(135deg, #34C168, #1F9E52);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(31,158,82,.55);
}
.btn-call:hover { background: #17803F; box-shadow: 0 10px 24px -8px rgba(23,128,63,.5); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }

.btn-block { width: 100%; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--panel);
}
.badge svg { width: 14px; height: 14px; color: var(--violet); }

.badge-amber {
  background: var(--amber);
  border-color: transparent;
  color: var(--ink);
  font-weight: 600;
}
.badge-amber svg { color: var(--ink); }

.badge-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.badge-row::-webkit-scrollbar { display: none; }
.badge-row .badge { flex-shrink: 0; }

@media (max-width: 360px) {
  .badge-row { gap: 8px; }
  .badge { padding: 5px 11px; font-size: 11.5px; }
}

/* ---------- Bento ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--panel);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(28,26,34,.04), 0 14px 30px -14px rgba(28,26,34,.14);
  transition: box-shadow .25s ease, transform .25s ease;
}
.bento-card:hover {
  box-shadow: 0 4px 10px rgba(28,26,34,.06), 0 26px 48px -16px rgba(91,46,134,.28);
  transform: translateY(-4px);
}
.bento-card.tint {
  background: linear-gradient(160deg, var(--violet-tint), #F4ECFA);
  border-color: transparent;
  box-shadow: 0 1px 2px rgba(91,46,134,.05), 0 16px 32px -16px rgba(91,46,134,.22);
}
.bento-card.tint::after {
  content: '';
  position: absolute;
  top: -45%;
  right: -25%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.6), transparent 70%);
  pointer-events: none;
}
.bento-card.dark {
  background: linear-gradient(160deg, #4A2670, var(--violet-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 20px 40px -16px rgba(0,0,0,.35);
}
.bento-card.dark p { color: rgba(255,255,255,.72); }
.bento-card.dark h3 { color: #fff; }

.bento-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, #7A45AD, var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 18px -6px rgba(91,46,134,.45);
  position: relative;
  z-index: 1;
}
.bento-card .card-icon svg { width: 22px; height: 22px; color: #fff; }
.bento-card.dark .card-icon { background: linear-gradient(135deg, var(--amber), #FFCF3D); box-shadow: 0 10px 18px -6px rgba(0,0,0,.35); }
.bento-card.dark .card-icon svg { color: var(--ink); }

.bento-card h3 { margin-bottom: 8px; }
.bento-card p { font-size: 14.5px; }

.bento-card .card-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--violet-deep);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(160deg, #fff, var(--violet-tint-2));
  box-shadow: 0 6px 14px -6px rgba(91,46,134,.35), inset 0 0 0 1px rgba(91,46,134,.12);
}

.bento-card.illustrated {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  background: var(--violet-tint);
  position: relative;
}
.bento-card.illustrated img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bento-card.illustrated .caption {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgba(28,26,34,.65), rgba(28,26,34,0));
  padding: 40px 24px 20px;
  color: #fff;
}
.bento-card.illustrated .caption h3 { color: #fff; }
.bento-card.illustrated .caption p { color: rgba(255,255,255,.8); }

/* span helpers */
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.row-2  { grid-row: span 2; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,248,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .logo-mark svg { width: 18px; height: 18px; }
.logo-img { height: 58px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14.5px;
  white-space: nowrap;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--violet); }

.header-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--violet); }
.tg-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--violet-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease;
}
.tg-icon-link:hover { background: var(--violet-tint-2); }
.tg-icon-link svg { width: 18px; height: 18px; color: var(--violet); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--violet-tint);
}
.burger svg { width: 20px; height: 20px; color: var(--violet); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .header-phone { padding: 12px 4px; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 56px;
  padding-bottom: var(--section-pad);
}
.hero-content { min-width: 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero-sub {
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.trust-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  position: relative;
  z-index: 3;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.trust-chips::-webkit-scrollbar { display: none; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--panel);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px -10px rgba(28,26,34,.28);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-chip svg { width: 18px; height: 18px; color: var(--violet); flex-shrink: 0; }
.trust-chip strong { color: var(--violet-deep); font-family: var(--font-mono); }

@media (min-width: 981px) {
  .trust-chips { margin-right: -70px; }
}

/* ---------- Illustration container ---------- */
.illustration {
  background: linear-gradient(160deg, var(--violet-tint), #E4D5F2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  box-shadow: 0 1px 2px rgba(91,46,134,.06), 0 30px 60px -24px rgba(91,46,134,.35);
}
.illustration::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(242,183,5,.28), transparent 70%);
  pointer-events: none;
}
.illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.illustration.hero-illustration { min-height: 420px; }

.floating-stat {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 230px;
  box-shadow: 0 20px 40px -14px rgba(28,26,34,.28);
}
.floating-stat .icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--amber), #FFCF3D);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-stat .icon svg { width: 18px; height: 18px; color: var(--ink); }
.floating-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
}
.floating-stat span { font-size: 12px; color: var(--ink-soft); }

@media (max-width: 720px) {
  .floating-stat { left: 12px; bottom: 12px; padding: 10px 14px; }
  .floating-stat strong { font-size: 14px; }
}

.hero-illustration-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 720px) {
  .hero-illustration-badges { top: 12px; left: 12px; gap: 8px; }
  .hero-illustration-badges .trust-chip { padding: 9px 12px; font-size: 12px; }
}

/* ---------- Бегущая строка преимуществ ---------- */
.ticker {
  background: var(--violet-deep);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; padding: 0 24px; }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.ticker-item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

/* ---------- Stats strip ---------- */
.stats {
  background-color: var(--violet-deep);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px),
    radial-gradient(500px 300px at 85% 0%, rgba(242,183,5,.18), transparent 60%);
  background-size: 22px 22px, 100% 100%;
  color: #fff;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--amber);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

/* ---------- Symptoms ---------- */
.symptom-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.symptom-card .card-icon { margin-bottom: 0; }
.symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.symptom-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--violet-tint);
  color: var(--violet-deep);
}
.bento-card.tint .symptom-tags span,
.bento-card.dark .symptom-tags span {
  background: rgba(255,255,255,.5);
}
.bento-card.dark .symptom-tags span {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.also-fix {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--amber-tint), #FCE8B8);
  border: 1px solid rgba(138,99,0,.15);
  box-shadow: 0 1px 2px rgba(138,99,0,.04), 0 14px 28px -16px rgba(138,99,0,.3);
}
.also-fix h3 { color: var(--amber-deep); margin-bottom: 12px; font-size: 16px; }
.also-fix ul { display: flex; flex-wrap: wrap; gap: 10px; }
.also-fix li {
  font-size: 13.5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ---------- Comparison ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.compare-col {
  border-radius: var(--radius-card);
  padding: 32px;
}
.compare-col.neg {
  background: var(--panel);
  border: 1px solid var(--line);
}
.compare-col.pos {
  background: linear-gradient(155deg, #4A2670, var(--violet-deep));
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 24px 48px -20px rgba(0,0,0,.35);
  position: relative;
  overflow: visible;
}
.compare-col.neg { box-shadow: 0 1px 2px rgba(28,26,34,.04), 0 14px 30px -18px rgba(28,26,34,.16); }

.compare-col.pos { margin-top: 220px; }
.compare-mascot {
  position: absolute;
  bottom: 100%;
  right: 28px;
  width: 260px;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.4));
  pointer-events: none;
}
@media (max-width: 720px) {
  .compare-col.pos { margin-top: 150px; }
  .compare-mascot { width: 150px; right: 12px; }
}
@media (min-width: 981px) {
  .comparison-grid { align-items: stretch; margin-top: 130px; }
  .compare-col.pos { margin-top: 0; }
}
.compare-col h3 { margin-bottom: 20px; }
.compare-col.pos h3 { color: #fff; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.compare-col.pos .compare-list li { border-bottom-color: rgba(255,255,255,.14); color: rgba(255,255,255,.85); }
.compare-list li:last-child { border-bottom: none; }
.compare-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-col.neg .compare-list svg { color: var(--ink-faint); }
.compare-col.pos .compare-list svg { color: var(--amber); }

/* ---------- Guarantee note ---------- */
.note-amber {
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--amber-tint), #FCE8B8);
  color: var(--ink);
  font-size: 14.5px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 1px 2px rgba(138,99,0,.04), 0 14px 28px -16px rgba(138,99,0,.28);
}
.note-amber svg { width: 22px; height: 22px; color: var(--amber-deep); flex-shrink: 0; margin-top: 2px; }

/* ---------- Price strip ---------- */
.price-strip {
  background: linear-gradient(155deg, var(--violet-tint), #F4ECFA);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(91,46,134,.05), 0 24px 48px -20px rgba(91,46,134,.25);
}
.price-strip::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(242,183,5,.22), transparent 70%);
  pointer-events: none;
}
.price-strip .price-value {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--violet-deep);
  margin: 12px 0 18px;
}
.price-strip .illustration { background: transparent; min-height: 220px; }
.price-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Brands ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.brand-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-soft);
  box-shadow: 0 1px 2px rgba(28,26,34,.04), 0 10px 20px -14px rgba(28,26,34,.14);
  transition: color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.brand-tile:hover {
  color: var(--violet);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(28,26,34,.05), 0 18px 32px -16px rgba(91,46,134,.3);
}

/* ---------- Split-секция: фото + карточки (Почему мы / Гарантии) ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 24px;
  align-items: stretch;
}
.split-photo {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  background: linear-gradient(160deg, var(--violet-tint), #E4D5F2);
  box-shadow: 0 1px 2px rgba(91,46,134,.06), 0 24px 48px -20px rgba(91,46,134,.32);
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 980px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-photo { min-height: 340px; }
}
@media (max-width: 720px) {
  .split-cards { grid-template-columns: 1fr; }
}

/* ---------- Точки на плашке цены ---------- */
.price-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.7);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(91,46,134,.05), 0 10px 20px -14px rgba(91,46,134,.2);
}
.price-point .icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7A45AD, var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-point .icon svg { width: 16px; height: 16px; color: #fff; }

/* ---------- FAQ с иллюстрацией ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}
.faq-grid .illustration { position: sticky; top: 100px; min-height: 360px; }
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .illustration { position: static; min-height: 280px; margin-top: 8px; }
}

/* ---------- Быстрая заявка (после статистики) ---------- */
.quick-request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.quick-form-card {
  background: linear-gradient(155deg, #6d3aa0, var(--violet-deep));
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 30px 60px -24px rgba(91,46,134,.45);
}
.quick-form-card::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(242,183,5,.25), transparent 70%);
  pointer-events: none;
}
.quick-form-card h3 { color: #fff; margin-bottom: 20px; position: relative; }
.quick-form-card .form-field { position: relative; }
.quick-form-card .form-field label { color: rgba(255,255,255,.8); }
.quick-form-card .form-field input {
  background: rgba(255,255,255,.96);
  border: 1px solid transparent;
  color: var(--ink);
}
.quick-form-card .form-field input:focus { outline: 2px solid var(--amber); border-color: transparent; }
.quick-form-card .quick-form-note {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 14px;
  position: relative;
}
.quick-form-card .form-msg { background: rgba(255,255,255,.16); color: #fff; }

.quick-cta { display: flex; flex-direction: column; justify-content: center; }
.quick-cta h2 { margin: 14px 0 16px; }
.quick-cta p { margin-bottom: 24px; }
.quick-cta-list { display: flex; flex-direction: column; gap: 14px; }
.quick-cta-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.quick-cta-list svg { width: 20px; height: 20px; color: var(--violet); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 980px) {
  .quick-request-grid { grid-template-columns: 1fr; }
  .quick-cta { order: 1; }
  .quick-form-card { order: 2; }
}

/* ---------- Жёлтая плашка-кнопка в сетке поломок ---------- */
.cta-tile {
  background: linear-gradient(135deg, #FFCF3D, var(--amber));
  border-color: transparent;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(138,99,0,.06), 0 16px 32px -14px rgba(242,183,5,.6);
  transition: background-color .2s ease, color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.cta-tile .card-icon { background: rgba(28,26,34,.1); box-shadow: none; }
.cta-tile .card-icon svg { color: var(--ink); }
.cta-tile h3 { margin-bottom: 6px; }
.cta-tile p { font-size: 13.5px; color: rgba(28,26,34,.65); margin: 0; }
.cta-tile:hover {
  background: var(--amber-deep);
  color: #fff;
  box-shadow: 0 1px 2px rgba(138,99,0,.1), 0 22px 40px -16px rgba(138,99,0,.55);
}
.cta-tile:hover .card-icon { background: rgba(255,255,255,.22); }
.cta-tile:hover .card-icon svg { color: #fff; }
.cta-tile:hover p { color: rgba(255,255,255,.85); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(28,26,34,.03), 0 10px 20px -14px rgba(28,26,34,.14);
  transition: box-shadow .2s ease;
}
.faq-item.open { box-shadow: 0 1px 2px rgba(91,46,134,.05), 0 16px 32px -16px rgba(91,46,134,.24); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--violet-tint);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; transition: transform .2s ease; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14.5px;
}
.faq-item.open .faq-answer { max-height: 240px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(155deg, #4A2670, var(--violet-deep));
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 30px 60px -24px rgba(0,0,0,.4);
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(242,183,5,.25), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.75); }
.final-cta .badge {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.24);
  color: var(--amber);
}
.final-cta .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.final-cta .illustration { background: rgba(255,255,255,.08); min-height: 220px; }

/* ---------- Contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.contact-list svg { width: 20px; height: 20px; color: var(--violet); flex-shrink: 0; }
.contact-list a:hover { color: var(--violet); }
.contact-media { display: flex; }
.contact-illustration { border-radius: 20px; overflow: hidden; background: var(--violet-tint); width: 100%; min-height: 280px; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { max-width: 320px; margin: 0 auto; }
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(28,26,34,.04), 0 20px 40px -18px rgba(91,46,134,.2);
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.form-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-size: 15px;
}
.form-field input:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
  border-color: var(--violet);
}
.form-field.has-error input { border-color: #C0392B; }
.field-error {
  display: none;
  font-size: 12.5px;
  color: #C0392B;
  margin-top: 6px;
}
.form-field.has-error .field-error { display: block; }

.form-consent {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 14px;
  line-height: 1.5;
}

.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  background: var(--amber-tint);
  color: var(--amber-deep);
  font-size: 14px;
  font-weight: 600;
}
.form-msg.show { display: block; }
.form-msg.form-msg-error { background: #FBE4E1; color: #A3341F; }
.quick-form-card .form-msg.form-msg-error { background: rgba(255,255,255,.9); color: #A3341F; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--amber); }
.footer-cross {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  color: #fff;
}
.footer-cross:hover { border-color: var(--amber); color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ---------- Hub page ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  background: var(--panel);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(28,26,34,.04), 0 18px 36px -18px rgba(28,26,34,.18);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 4px 10px rgba(28,26,34,.06), 0 30px 56px -18px rgba(91,46,134,.32); transform: translateY(-4px); }
.service-card .service-illustration {
  background: var(--violet-tint);
  min-height: 260px;
}
.service-card .service-body { padding: 28px 32px 32px; }
.service-card .price-tag {
  font-family: var(--font-mono);
  color: var(--violet);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.service-card h3 { font-size: 24px; margin-bottom: 10px; }
.service-card p { margin-bottom: 20px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-contacts .header-phone { display: none; }
  .burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .illustration.hero-illustration { min-height: 320px; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .span-3 { grid-column: span 2; }
  .span-4 { grid-column: span 2; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .comparison-grid { grid-template-columns: 1fr; }
  .price-strip { grid-template-columns: 1fr; text-align: center; }
  .price-strip .illustration { display: none; }
  .final-cta { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .final-cta .actions { justify-content: center; }
  .final-cta .illustration { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-illustration { margin: 0 auto; }

  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .header-contacts { gap: 10px; }
  .header-contacts .tg-icon-link { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .span-2, .span-3, .span-4 { grid-column: span 1; }
  .bento-card.illustrated { min-height: 220px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .hero { padding-top: 28px; }
  .illustration.hero-illustration { min-height: 220px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .trust-chip { padding: 10px 13px; font-size: 12.5px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }

  .price-strip, .final-cta { padding: 32px 20px; }
}
