/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #1a1a1a;
  --accent2: #333;
  --dark: #111111;
  --dark2: #1c1c1c;
  --gray: #666;
  --gray2: #999;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 6px 40px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== STICKY TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar strong { color: #fff; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 36px;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo span { color: var(--gray); font-weight: 400; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-badge {
  background: var(--dark);
  color: white;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.phone-badge:hover { background: #333; }
.phone-icon { display: inline-flex; align-items: center; animation: ring 3s infinite; }
@keyframes ring {
  0%,85%,100% { transform: rotate(0deg); }
  88% { transform: rotate(-12deg); }
  92% { transform: rotate(12deg); }
  96% { transform: rotate(-6deg); }
}
.wa-btn {
  background: #25D366;
  color: white;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.wa-btn:hover { background: #1db954; }

/* ===== HERO SECTION ===== */
.hero {
  background: var(--dark);
  color: white;
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #fff;
}
.hero h1 .accent { color: #e0e0e0; font-weight: 400; }
.hero-desc {
  font-size: 17px;
  color: #aaa;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 40px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #aaa;
}
.hero-checks li::before {
  content: '✓';
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: #fff;
  color: var(--dark);
  padding: 17px 34px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #e8e8e8; }
.btn-wa {
  background: #25D366;
  color: white;
  padding: 17px 28px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-wa:hover { background: #1db954; }
.hero-sub {
  font-size: 13px;
  color: #555;
  margin-top: 18px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 32px;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: var(--dark);
}
.trust-label { font-size: 12px; color: var(--gray); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== SECTION BASE ===== */
section { padding: 72px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--gray);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.section-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ===== HOW IT WORKS ===== */
.steps-section { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step-card {
  background: white;
  padding: 36px 28px;
  transition: background 0.2s;
}
.step-card:hover { background: #fafafa; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
}
.step-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.step-time {
  display: inline-block;
  background: var(--light);
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.why-card {
  padding: 32px 26px;
  background: white;
  transition: background 0.2s;
}
.why-card:hover { background: #fafafa; }
.why-icon { display: block; width: 36px; height: 36px; margin-bottom: 18px; color: var(--dark); }
.why-icon svg { width: 100%; height: 100%; }
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.why-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== WHAT WE BUY ===== */
.what-section { background: var(--dark); color: white; }
.what-section .section-tag { background: rgba(255,255,255,0.06); color: #999; border-color: rgba(255,255,255,0.1); }
.what-section .section-title { color: white; }
.what-section .section-sub { color: #777; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.what-card {
  background: #161616;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.what-card:hover { background: #1e1e1e; }
.what-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin: 0 auto 12px; color: #e0e0e0; }
.what-icon svg { width: 36px; height: 36px; display: block; }
.what-title { font-size: 14px; font-weight: 700; color: #e0e0e0; }
.what-desc { font-size: 12px; color: #666; margin-top: 5px; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--light); }
.stars { color: #111; font-size: 16px; letter-spacing: 1px; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-big {
  font-size: 60px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.rating-meta .stars { font-size: 22px; }
.rating-meta p { color: var(--gray); font-size: 13px; margin-top: 4px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.review-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin: 10px 0 16px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--gray2); }
.review-car { font-size: 12px; color: var(--gray); margin-top: 1px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 32px;
  transition: border-color 0.2s;
}
.google-badge:hover { border-color: #999; }

/* ===== AREAS ===== */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.area-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.area-item:hover { background: var(--dark); color: white; border-color: var(--dark); }
.areas-map {
  border-radius: 10px;
  height: 220px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===== FAQ ===== */
.faq-section { background: var(--light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: white;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-q:hover { background: #fafafa; }
.faq-arrow {
  font-size: 16px;
  transition: transform 0.25s;
  color: var(--gray);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--dark); color: white; }
.contact-section .section-tag { background: rgba(255,255,255,0.06); color: #888; border-color: rgba(255,255,255,0.1); }
.contact-section .section-title { color: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-list li:last-child { border-bottom: none; }
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label { font-size: 12px; color: #666; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.ci-value { font-size: 17px; font-weight: 700; color: white; }
.ci-value a { color: white; }

/* CTA BLOCK */
.cta-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
}
.cta-block h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-block p { font-size: 14px; color: #666; margin-bottom: 32px; line-height: 1.6; }
.cta-block-btns { display: flex; flex-direction: column; gap: 14px; }
.cta-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: white;
  color: var(--dark);
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  transition: background 0.2s;
}
.cta-phone-btn:hover { background: #e8e8e8; }
.cta-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.cta-wa-btn:hover { background: #1db954; }
.cta-note { font-size: 12px; color: #444; margin-top: 20px; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-phone {
  background: var(--dark);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.float-phone:hover { transform: scale(1.08); }
.float-wa {
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); }
.float-label {
  background: white;
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  color: #555;
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1a1a1a;
}
.footer-logo { font-size: 18px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-logo span { color: #888; font-weight: 400; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 {
  color: #888;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #555; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-legal a { color: #888; margin-left: 16px; }
.footer-legal a:hover { color: #bbb; }

/* ===== URGENCY BANNER ===== */
.urgency-bar {
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}
.urgency-bar strong { color: var(--dark); }

/* ===== COMPARE TABLE ===== */
.compare-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.compare-head { display: grid; grid-template-columns: 1fr 1fr; }
.compare-col-head { padding: 14px 20px; font-size: 13px; font-weight: 700; }
.compare-col-head.bad { background: #fef2f2; color: #991b1b; border-bottom: 1px solid #fecaca; }
.compare-col-head.good { background: #f0fdf4; color: #166534; border-bottom: 1px solid #bbf7d0; border-left: 1px solid var(--border); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
.compare-cell { padding: 14px 20px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.compare-cell:last-child { border-left: 1px solid var(--border); }
.compare-cell strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.compare-cell span { display: block; font-size: 12px; color: var(--gray); }
.cbad { color: #dc2626; font-weight: 800; flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.cgood { color: #16a34a; font-weight: 800; flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* ===== SEO SECTION ===== */
.seo-section { background: var(--light); border-top: 1px solid var(--border); }

.seo-text { width: 100%; }
.seo-text h2 { font-size: 16px; font-weight: 800; color: var(--dark); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); line-height: 1.3; }
.seo-text h2:first-child { margin-top: 0; }
.seo-text h3 { font-size: 13px; font-weight: 700; color: var(--dark); margin: 18px 0 5px; }
.seo-text p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.seo-text ol { list-style: none; padding: 0; margin: 12px 0 20px; counter-reset: seo-steps; }
.seo-text ol li { counter-increment: seo-steps; padding: 10px 0 10px 40px; position: relative; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--gray); line-height: 1.6; }
.seo-text ol li:last-child { border-bottom: none; }
.seo-text ol li::before { content: counter(seo-steps); position: absolute; left: 0; top: 10px; width: 24px; height: 24px; background: var(--dark); color: white; border-radius: 50%; font-size: 11px; font-weight: 700; text-align: center; line-height: 24px; }
.seo-text ul { list-style: none; padding: 0; margin: 10px 0 18px; }
.seo-text ul li { padding: 4px 0 4px 16px; position: relative; font-size: 13px; color: var(--gray); line-height: 1.65; }
.seo-text ul li::before { content: "–"; position: absolute; left: 0; color: #aaa; }
.seo-faq-q { font-size: 14px; font-weight: 700; color: var(--dark); margin: 20px 0 4px; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.sticky-phone-btn {
  background: white;
  color: var(--dark);
}
.sticky-wa-btn {
  background: #25D366;
  color: white;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  .floating-cta { display: none; }
  /* Отступ снизу чтобы контент не перекрывался */
  body { padding-bottom: 76px; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: #333; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
}
.pulse { animation: pulse 2.5s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar { font-size: 12px; display: none; }
  header { top: 0; }
  .header-inner { padding: 12px 16px; flex-wrap: nowrap; }
  .logo { font-size: 16px; }
  .phone-badge { font-size: 13px; padding: 8px 12px; white-space: nowrap; }
  .phone-num { display: none; }
  .wa-btn { display: none; }
  .hero { padding: 40px 16px 36px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-cell:last-child { border-left: none; border-top: 1px solid var(--border); }
  .compare-col-head.good { border-left: none; border-top: 1px solid var(--border); }
  .seo-grid { max-width: 100%; }
  section { padding: 48px 16px; }
}
@media (max-width: 480px) {
  .what-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 28px; }
  .btn-primary, .btn-wa, .cta-phone-btn, .cta-wa-btn { width: 100%; justify-content: center; }
}
