/* ════════════════════════════════════════════════════════════
   Cleaning Lab — стили посадочных страниц услуг
   Дизайн-система перенесена с главной (index.html) для единого вида.
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #F7F5F0;
  --dark: #0A0A0A;
  --white: #FFFFFF;
  --cream: #EDEBE3;
  --gray: #6B7280;
  --border: #E2E0D8;
  --wa: #25D366;
  --wa-dark: #1aab53;
  --dark-sec: #111111;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --ease: all 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ─── UTILS ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.sec-dark { background: var(--dark-sec); color: var(--white); }
.sec-cream { background: var(--cream); }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px;
}
.sec-dark .label { color: rgba(255,255,255,.45); }

h2.title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 14px;
}
.subtitle {
  font-size: 17px; color: var(--gray);
  max-width: 600px; margin-bottom: 48px;
}
.sec-dark .subtitle { color: rgba(255,255,255,.55); }
.lead { font-size: 17px; line-height: 1.8; color: #333; max-width: 760px; }
.lead + .lead { margin-top: 18px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.38); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.46); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--dark); border: 1.5px solid var(--border); }
.btn-light:hover { border-color: var(--wa); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ─── HEADER ─── */
#hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 999; transition: var(--ease); }
#hdr.scrolled {
  background: rgba(247,245,240,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 16px rgba(0,0,0,.07);
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-wrap { display: flex; align-items: center; gap: 11px; }
.logo-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-name { font-size: 17px; font-weight: 900; letter-spacing: -.01em; color: #fff; transition: var(--ease); }
#hdr.scrolled .logo-name { color: var(--dark); }
.hdr-right { display: flex; align-items: center; gap: 14px; }

.lang-box { display: flex; background: rgba(255,255,255,.15); border-radius: 100px; padding: 3px; transition: var(--ease); }
#hdr.scrolled .lang-box { background: var(--cream); }
.lb { padding: 5px 13px; border-radius: 100px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.65); transition: var(--ease); cursor: pointer; }
#hdr.scrolled .lb { color: var(--gray); }
.lb.on { background: #fff; color: var(--dark); box-shadow: 0 1px 6px rgba(0,0,0,.1); }
#hdr.scrolled .lb.on { background: var(--dark); color: #fff; }
.hdr-wa { display: none; }
@media(min-width:640px){ .hdr-wa { display: inline-flex; } }

/* ─── BREADCRUMBS ─── */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; }
.crumb { color: rgba(255,255,255,.55); transition: var(--ease); }
.crumb:hover { color: #fff; }
.crumb-cur { color: rgba(255,255,255,.9); font-weight: 600; }
.crumb-sep { color: rgba(255,255,255,.3); }

/* ─── HERO (услуга) ─── */
#lhero {
  background: #0A0A0A; color: #fff;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.lhero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 80% 30%, rgba(37,211,102,.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(255,255,255,.025) 0%, transparent 60%);
}
.lhero-in { position: relative; }
.lhero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(37,211,102,.13); border: 1px solid rgba(37,211,102,.3);
  color: var(--wa); padding: 7px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin: 22px 0;
}
.lhero-h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -.03em; margin-bottom: 22px; max-width: 880px;
}
.lhero-h1 .green {
  background: linear-gradient(125deg, #25D366 0%, #4ade80 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lhero-sub { font-size: 18px; color: rgba(255,255,255,.62); line-height: 1.7; max-width: 620px; margin-bottom: 30px; }
.lhero-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 22px; margin-bottom: 30px;
}
.lhero-price-from { font-size: 13px; color: rgba(255,255,255,.5); }
.lhero-price-val { font-size: 28px; font-weight: 900; letter-spacing: -.02em; }
.lhero-price-unit { font-size: 14px; color: rgba(255,255,255,.55); }
.lhero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.lhero-stats { display: flex; flex-wrap: nowrap; align-items: center; gap: 0; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.09); }
.stat-n { font-size: 28px; font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; white-space: nowrap; }
.stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,.1); margin: 2px 22px 0; flex-shrink: 0; }
.stat-star { color: #f5a623; }
.stat-2gis-lnk { text-decoration: none; transition: opacity .2s; }
.stat-2gis-lnk:hover { opacity: .7; }
.badge-2gis {
  display: inline-block; background: #29B77C; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .05em;
  padding: 1px 5px; border-radius: 4px; vertical-align: middle; margin-right: 4px;
}

/* ─── INTRO TEXT ─── */
.intro { padding: 80px 0; }
.intro .lead:first-child { margin-top: 0; }

/* ─── "ЧТО ВХОДИТ" ─── */
.incl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.incl-card { background: #fff; border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow); border: 2px solid transparent; }
.incl-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.incl-ico {
  width: 46px; height: 46px; flex-shrink: 0; background: var(--cream); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.incl-card-title { font-size: 17px; font-weight: 800; }
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.incl-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #333; line-height: 1.5; }
.incl-check { color: var(--wa-dark); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* блок "бесплатно — в счёт уборки" (главное УТП) */
.free-box {
  margin-top: 36px; background: linear-gradient(120deg, #0A0A0A 0%, #15803d 130%);
  border-radius: 24px; padding: 40px 44px; color: #fff;
  display: flex; gap: 34px; align-items: center; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.free-box::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(37,211,102,.25) 0%, transparent 70%); pointer-events: none;
}
.free-emo { font-size: 60px; flex-shrink: 0; position: relative; }
.free-body { flex: 1; min-width: 260px; position: relative; }
.free-badge {
  display: inline-block; background: var(--wa); color: #06351b;
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.free-h { font-size: clamp(20px, 2.6vw, 28px); font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.free-h .hl { color: #4ade80; }
.free-p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.65; }
.free-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.free-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600;
}

/* ─── ТАБЛИЦА ЦЕН ─── */
.price-wrap { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; max-width: 720px; }
.price-row { display: flex; align-items: center; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: #faf9f5; }
.price-ico { font-size: 22px; flex-shrink: 0; }
.price-info { flex: 1; min-width: 0; }
.price-name { font-size: 15.5px; font-weight: 700; }
.price-size { font-size: 13px; color: var(--gray); margin-top: 2px; }
.price-val { font-size: 19px; font-weight: 900; white-space: nowrap; }
.price-note { font-size: 14px; color: var(--gray); margin-top: 18px; max-width: 720px; }
.price-note strong { color: var(--wa-dark); }

/* ─── ПРОЦЕСС ─── */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 34px; }
.proc-step { position: relative; }
.proc-num { font-size: 64px; font-weight: 900; color: rgba(255,255,255,.05); line-height: 1; position: absolute; top: -14px; left: -6px; user-select: none; }
.proc-ico {
  width: 50px; height: 50px; border-radius: var(--r-sm); background: rgba(37,211,102,.13);
  display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 16px; position: relative;
}
.proc-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.proc-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ─── ПРЕИМУЩЕСТВА ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-ico {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,211,102,.1); border: 1.5px solid rgba(37,211,102,.25);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.why-title { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,.5); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: var(--ease); }
.faq-item[open] { border-color: var(--wa); box-shadow: var(--shadow); }
.faq-q {
  list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--wa-dark); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; font-size: 15px; line-height: 1.7; color: #444; }

/* ─── СВЯЗАННЫЕ УСЛУГИ ─── */
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.rel-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: var(--r); padding: 20px 22px;
  box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--ease);
}
.rel-card:hover { border-color: var(--wa); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rel-ico {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--cream); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 22px; transition: var(--ease);
}
.rel-card:hover .rel-ico { background: rgba(37,211,102,.12); }
.rel-body { flex: 1; min-width: 0; }
.rel-name { font-size: 15px; font-weight: 800; }
.rel-from { font-size: 12.5px; color: var(--gray); margin-top: 2px; }
.rel-arr { color: var(--gray); font-size: 18px; transition: var(--ease); }
.rel-card:hover .rel-arr { color: var(--wa-dark); transform: translateX(3px); }

/* ─── ПРОМО ─── */
.promo { background: linear-gradient(120deg,#25D366 0%,#15803d 100%); padding: 16px 0; }
.promo-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.promo-txt { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 15px; }
.promo-ico { font-size: 22px; }
.promo-btn { background: #fff; color: #15803d; padding: 9px 22px; border-radius: 100px; font-weight: 800; font-size: 14px; flex-shrink: 0; transition: var(--ease); }
.promo-btn:hover { transform: scale(1.05); }

/* ─── COVERAGE ─── */
.cov-box {
  background: #fff; border-radius: 24px; padding: 46px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.cov-emo { font-size: 68px; flex-shrink: 0; }
.cov-h { font-size: clamp(22px,3.2vw,34px); font-weight: 900; line-height: 1.15; margin-bottom: 10px; }
.cov-p { font-size: 16px; color: var(--gray); margin-bottom: 26px; }

/* ─── FOOTER CTA ─── */
.fcta { background: #080808; color: #fff; padding: 88px 0; text-align: center; }
.fcta .subtitle { margin: 0 auto 0; text-align: center; }
.fcta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ─── FOOTER ─── */
footer { background: #040404; padding: 36px 0; }
.foot-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-logo img { width: 36px; height: 36px; border-radius: 50%; }
.foot-logo-txt { font-size: 15px; font-weight: 900; color: #fff; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.foot-link { font-size: 13px; color: rgba(255,255,255,.4); transition: var(--ease); display: inline-flex; align-items: center; gap: 5px; }
.foot-link:hover { color: #fff; }
.foot-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.foot-cr { font-size: 12px; color: rgba(255,255,255,.25); }

/* ─── FLOAT WA ─── */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5); transition: var(--ease);
  animation: wapulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wapulse {
  0%,100%{ box-shadow: 0 4px 22px rgba(37,211,102,.5); }
  50%{ box-shadow: 0 4px 38px rgba(37,211,102,.8); }
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ─── КОРП. КЛИЕНТЫ ─── */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 20px; }
.client-card {
  background: #fff; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--ease);
}
.client-card:hover { border-color: var(--wa); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.client-photo {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(135deg, #0A0A0A 0%, #14532d 75%, #15803d 100%);
  display: flex; align-items: center; justify-content: center;
}
.client-photo img { width: 100%; height: 100%; object-fit: cover; }
.client-ph-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 54px; filter: drop-shadow(0 6px 16px rgba(0,0,0,.4));
}
.client-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.94); color: var(--dark);
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  padding: 4px 11px; border-radius: 100px;
}
.client-body { padding: 18px 20px 20px; }
.client-name { font-size: 17px; font-weight: 800; line-height: 1.2; }
.client-type { font-size: 12px; color: var(--wa-dark); font-weight: 700; margin-top: 3px; }
.client-desc { font-size: 13.5px; color: var(--gray); margin-top: 9px; line-height: 1.55; }
.client-addr {
  font-size: 12.5px; color: var(--gray); margin-top: 11px;
  display: flex; gap: 6px; align-items: flex-start;
  border-top: 1px solid var(--border); padding-top: 11px;
}
.client-addr .pin { flex-shrink: 0; }

/* B2B сегменты «для кого» */
.seg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 14px; }
.seg-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 22px 20px; text-align: center; transition: var(--ease);
}
.seg-card:hover { border-color: var(--wa); transform: translateY(-3px); box-shadow: var(--shadow); }
.seg-ico { font-size: 32px; margin-bottom: 10px; }
.seg-name { font-size: 15px; font-weight: 800; }

/* лента-доверие (счётчик клиентов) */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px;
}
.trust-pill {
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  color: var(--wa-dark); border-radius: 100px; padding: 9px 18px;
  font-size: 14px; font-weight: 700;
}

/* ─── СМИ / ПРЕССА ─── */
.press-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 840px; }
.press-card {
  display: flex; background: #fff; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--ease);
}
.press-card:hover { border-color: var(--wa); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.press-thumb { width: 260px; flex-shrink: 0; object-fit: cover; align-self: stretch; background: var(--cream); }
.press-body { padding: 24px 28px; }
.press-pub { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.press-pub img { height: 22px; width: auto; }
.press-pub .src { font-size: 12px; color: var(--gray); font-weight: 600; }
.press-card-title { font-size: 20px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.press-card-sum { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.press-read { font-weight: 700; color: var(--wa-dark); font-size: 14px; }
.press-card:hover .press-read { text-decoration: underline; }
@media(max-width:600px){ .press-card { flex-direction: column; } .press-thumb { width: 100%; height: 200px; } }

/* ─── КОНТАКТЫ ─── */
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
.contact-card { background: #fff; border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--ease); display: flex; gap: 14px; align-items: flex-start; }
.contact-card:hover { border-color: var(--wa); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-ico { width: 46px; height: 46px; flex-shrink: 0; background: var(--cream); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-k { font-size: 12px; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-v { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; word-break: break-word; }
.contact-v a:hover { color: var(--wa-dark); }
.contact-socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.map-wrap { margin-top: 36px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ─── ИКОНКИ (Lucide-спрайт) ─── */
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.srv-icon, .incl-ico, .seg-ico, .rel-ico, .contact-ico, .price-ico { color: var(--wa-dark); }
.proc-ico, .why-ico { color: var(--wa); }
.cov-emo { color: var(--wa-dark); }
.free-emo { color: #fff; }
.client-ph-fallback, .c6-fallback { color: rgba(255,255,255,.92); }

/* ─── БЛОГ ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--ease); }
.blog-card:hover { border-color: var(--wa); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-top { position: relative; height: 172px; background: linear-gradient(135deg,#0A0A0A 0%,#15803d 130%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 44px; overflow: hidden; }
.blog-card-top img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r); margin: 0 0 28px; box-shadow: var(--shadow); background: var(--cream); }
.blog-card-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-cat { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--wa-dark); }
.blog-card-title { font-size: 18px; font-weight: 800; line-height: 1.3; color: var(--dark); }
.blog-card-exc { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 12.5px; color: var(--gray); }

/* статья */
.article { max-width: 768px; }
.article-lead { font-size: 19px; line-height: 1.75; color: #222; margin-bottom: 26px; font-weight: 500; }
.article p { font-size: 16.5px; line-height: 1.8; color: #333; margin-bottom: 18px; }
.article h2 { font-size: clamp(22px,3vw,28px); font-weight: 900; letter-spacing: -.02em; margin: 38px 0 14px; }
.article h3 { font-size: 19px; font-weight: 800; margin: 26px 0 10px; }
.article ul, .article ol { margin: 0 0 20px; padding-left: 24px; }
.article li { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 9px; }
.article li strong { color: var(--dark); }
.article-cta { background: var(--cream); border-radius: var(--r); padding: 28px 30px; margin-top: 38px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.article-cta-t { font-size: 18px; font-weight: 800; }
.article-meta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; font-size: 13px; color: rgba(255,255,255,.55); margin-top: 14px; }
.article-meta-row .ic { color: var(--wa); }

/* ─── RESPONSIVE ─── */
@media(max-width:768px){
  .section { padding: 60px 0; }
  .intro { padding: 56px 0; }
  #lhero { padding: 104px 0 60px; }
  .free-box { padding: 30px; }
  .cov-box { padding: 30px; flex-direction: column; text-align: center; }
  .fcta { padding: 60px 0; }
}
@media(max-width:480px){
  .stat-sep { margin: 2px 11px 0; height: 26px; }
  .stat-n { font-size: 20px; }
  .stat-l { font-size: 11px; }
  .price-row { padding: 16px 18px; gap: 12px; }
}
