/* ═══════════════════════════════════════════════════════
   ШАБЛОН: cnc-spindle.online
   Дизайн: чёрно-белый, минималистичный
   ════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --c-bg:         #ffffff;
  --c-surface:    #f7f7f7;
  --c-surface2:   #f0f0f0;
  --c-border:     #e0e0e0;
  --c-border-dk:  #c0c0c0;
  --c-text:       #111111;
  --c-muted:      #666666;
  --c-muted2:     #999999;
  --c-primary:    #111111;
  --c-accent:     #111111;
  --c-inv:        #ffffff;
  --c-inv-muted:  rgba(255,255,255,.55);

  --fd: 'Manrope', sans-serif;
  --fb: 'Inter', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.12);
  --sh-lg: 0 8px 32px rgba(0,0,0,.14);

  --wrap: 1200px;
  --hdr-h: 68px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); font-size: 15px; line-height: 1.6; color: var(--c-text); background: var(--c-bg); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
svg { fill: currentColor; }

/* ── WRAP ────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ── LOGO ────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 36px; height: 36px; background: var(--c-text); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { width: 20px; height: 20px; fill: var(--c-inv); }
.logo-name { font-family: var(--fd); font-weight: 800; font-size: 17px; color: var(--c-text); line-height: 1.1; }
.logo-sub  { font-size: 10px; color: var(--c-muted); font-weight: 500; letter-spacing: .03em; text-transform: uppercase; margin-top: 1px; }

/* ── HEADER ──────────────────────────────────────────── */
.hdr { position: sticky; top: 0; z-index: 200; background: var(--c-bg); border-bottom: 1px solid var(--c-border); height: var(--hdr-h); display: flex; align-items: center; transition: box-shadow .2s; }
.hdr.stuck { box-shadow: var(--sh-md); }
.hdr-in { display: flex; align-items: center; gap: 32px; width: 100%; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { padding: 7px 13px; font-size: 14px; font-weight: 500; color: var(--c-muted); border-radius: var(--r-sm); transition: color .15s, background .15s; }
.nav a:hover { color: var(--c-text); background: var(--c-surface); }
.nav a.active { color: var(--c-text); }
.hdr-right { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.hdr-phone { font-family: var(--fd); font-weight: 700; font-size: 15px; color: var(--c-text); white-space: nowrap; }

/* ── BURGER ──────────────────────────────────────────── */
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────── */
.mnav { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100dvh; background: var(--c-text); z-index: 210; display: flex; flex-direction: column; padding: 24px; gap: 0; overflow-y: auto; transition: right .3s ease; }
.mnav.open { right: 0; }
.mnav-close { align-self: flex-end; color: var(--c-inv); font-size: 22px; line-height: 1; margin-bottom: 20px; opacity: .7; }
.mnav-close:hover { opacity: 1; }
.mnav a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--c-inv); border-bottom: 1px solid rgba(255,255,255,.1); }
.mnav a:hover { color: rgba(255,255,255,.7); }

/* ── BTNS ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 22px; font-family: var(--fd); font-weight: 700; font-size: 14px; border-radius: var(--r-sm); transition: background .15s, color .15s, box-shadow .15s, opacity .15s; line-height: 1; white-space: nowrap; }
.btn--primary { background: var(--c-text); color: var(--c-inv); }
.btn--primary:hover { background: #333; }
.btn--outline { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-text); }
.btn--outline:hover { background: var(--c-text); color: var(--c-inv); }
.btn--ghost  { background: var(--c-surface); color: var(--c-text); border: 1px solid var(--c-border); }
.btn--ghost:hover { background: var(--c-surface2); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── TAG / BADGE ─────────────────────────────────────── */
.tag { display: inline-block; padding: 4px 12px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 30px; font-size: 11px; font-weight: 700; color: var(--c-muted); letter-spacing: .05em; text-transform: uppercase; }

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt { background: var(--c-surface); }
.section--dark { background: var(--c-text); color: var(--c-inv); }

/* ── SECTION HEAD ────────────────────────────────────── */
.sec-head { margin-bottom: 48px; }
.sec-title { font-family: var(--fd); font-weight: 800; font-size: clamp(26px, 3.5vw, 40px); color: var(--c-text); line-height: 1.15; margin-top: 10px; }
.sec-sub { font-size: 16px; color: var(--c-muted); margin-top: 10px; line-height: 1.6; }

/* ── HERO ────────────────────────────────────────────── */
.hero { background: var(--c-text); color: var(--c-inv); padding: 80px 0 72px; }
.hero-in { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-eye { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-inv-muted); margin-bottom: 16px; }
.hero-h1 { font-family: var(--fd); font-weight: 900; font-size: clamp(32px, 4.5vw, 58px); line-height: 1.05; color: var(--c-inv); margin-bottom: 20px; }
.hero-h1 em { font-style: normal; border-bottom: 2px solid rgba(255,255,255,.35); }
.hero-desc { font-size: 16px; color: var(--c-inv-muted); line-height: 1.65; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--inv { background: var(--c-inv); color: var(--c-text); }
.btn--inv:hover { background: #e8e8e8; }
.btn--inv-outline { background: transparent; color: var(--c-inv); border: 1.5px solid rgba(255,255,255,.4); }
.btn--inv-outline:hover { background: rgba(255,255,255,.1); }

/* Hero right panel */
.hero-panel { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 28px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat { }
.stat .n { font-family: var(--fd); font-weight: 900; font-size: 30px; color: var(--c-inv); display: block; }
.stat .l { font-size: 12px; color: var(--c-inv-muted); margin-top: 3px; line-height: 1.4; }
.hero-badge { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-badge svg { width: 22px; height: 22px; fill: rgba(255,255,255,.5); flex-shrink: 0; margin-top: 2px; }
.hero-badge p { font-size: 13px; color: var(--c-inv-muted); line-height: 1.5; }
.hero-badge strong { color: var(--c-inv); }

/* ── TRUST BAR ───────────────────────────────────────── */
.tbar { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 0; }
.tbar-in { display: flex; flex-wrap: wrap; gap: 0; }
.ti { display: flex; align-items: center; gap: 10px; padding: 16px 24px; font-size: 13px; font-weight: 600; color: var(--c-text); border-right: 1px solid var(--c-border); }
.ti:last-child { border-right: none; }
.ti svg { width: 18px; height: 18px; fill: var(--c-muted); flex-shrink: 0; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; }
.srv-card { background: var(--c-bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .15s; }
.srv-card:hover { background: var(--c-surface); }
.srv-card-ico { width: 44px; height: 44px; background: var(--c-text); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.srv-card-ico svg { width: 22px; height: 22px; fill: var(--c-inv); }
.srv-card-name { font-family: var(--fd); font-weight: 800; font-size: 17px; color: var(--c-text); }
.srv-card-desc { font-size: 13px; color: var(--c-muted); line-height: 1.6; flex: 1; }
.srv-card-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c-text); margin-top: auto; }
.srv-card-link svg { width: 16px; height: 16px; }

/* ── CATALOG / SERVICES LIST ─────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.cat-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.cat-card-top { padding: 28px 24px 20px; background: var(--c-text); position: relative; overflow: hidden; }
.cat-card-top::after { content: ''; position: absolute; right: -24px; bottom: -24px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cat-card-ico { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; position: relative; z-index: 1; }
.cat-card-ico svg { width: 24px; height: 24px; fill: var(--c-inv); }
.cat-card-name { font-family: var(--fd); font-weight: 800; font-size: 18px; color: var(--c-inv); line-height: 1.2; position: relative; z-index: 1; }
.cat-card-tag { display: inline-block; margin-top: 8px; padding: 3px 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 30px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.cat-card-body { padding: 20px 22px; flex: 1; }
.cat-card-desc { font-size: 13px; color: var(--c-muted); line-height: 1.65; }
.cat-card-foot { padding: 14px 22px; border-top: 1px solid var(--c-border); }
.cat-card-foot a { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c-text); }
.cat-card-foot a svg { width: 15px; height: 15px; }

/* ── PROCESS STEPS ───────────────────────────────────── */
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 22px; left: calc(10% + 22px); right: calc(10% + 22px); height: 1px; background: var(--c-border); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-dot { width: 44px; height: 44px; background: var(--c-text); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-dot svg { width: 20px; height: 20px; fill: var(--c-inv); }
.step-num { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted2); margin-top: 12px; }
.step-title { font-family: var(--fd); font-weight: 800; font-size: 14px; color: var(--c-text); margin-top: 4px; }
.step-desc { font-size: 12px; color: var(--c-muted); line-height: 1.5; margin-top: 6px; }

/* ── REVIEWS ─────────────────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.rev-stars { display: flex; gap: 3px; }
.rev-stars svg { width: 15px; height: 15px; fill: var(--c-text); }
.rev-text { font-size: 14px; color: var(--c-text); line-height: 1.65; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--c-text); color: var(--c-inv); font-family: var(--fd); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 13px; }
.rev-org  { font-size: 11px; color: var(--c-muted); margin-top: 1px; }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-s { background: var(--c-surface); }
.cta-in { display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: start; }
.cta-h2 { font-family: var(--fd); font-weight: 900; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; color: var(--c-text); margin-top: 10px; }
.cta-h2 em { font-style: normal; border-bottom: 2px solid var(--c-border-dk); }
.cta-desc { font-size: 15px; color: var(--c-muted); margin-top: 12px; line-height: 1.65; }
.cta-ps { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.cta-p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--c-text); }
.cta-p svg { width: 16px; height: 16px; fill: var(--c-text); flex-shrink: 0; margin-top: 2px; }

/* ── FORM ────────────────────────────────────────────── */
.cform { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 32px; }
.cform-title { font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--c-text); }
.cform-sub { font-size: 13px; color: var(--c-muted); margin-top: 4px; margin-bottom: 20px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 12px; font-weight: 700; color: var(--c-text); letter-spacing: .02em; text-transform: uppercase; }
.fg input, .fg textarea, .fg select { padding: 10px 13px; border: 1px solid var(--c-border); border-radius: var(--r-sm); font-size: 14px; color: var(--c-text); background: var(--c-bg); transition: border-color .15s; outline: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--c-text); }
.fg textarea { resize: vertical; min-height: 90px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fsub { width: 100%; justify-content: center; margin-top: 4px; }
.fnote { font-size: 11px; color: var(--c-muted2); margin-top: 10px; line-height: 1.5; }
.fnote a { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-size: 15px; font-weight: 700; color: var(--c-text); text-align: left; cursor: pointer; background: var(--c-bg); transition: background .15s; }
.faq-q:hover { background: var(--c-surface); }
.faq-q.open { background: var(--c-text); color: var(--c-inv); }
.faq-ic { width: 24px; height: 24px; flex-shrink: 0; }
.faq-q.open .faq-ic svg path { d: path("M19 13h-14v-2h14v2z"); }
.faq-a { display: none; padding: 0 22px; background: var(--c-surface); }
.faq-a.open { display: block; padding: 16px 22px; }
.faq-a p { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* ── SEO TEXT ────────────────────────────────────────── */
.seo-s { padding: 48px 0; background: var(--c-surface); border-top: 1px solid var(--c-border); }
.seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 28px; }
.seo-cols h3 { font-family: var(--fd); font-weight: 700; font-size: 16px; color: var(--c-text); margin-bottom: 8px; }
.seo-cols p { font-size: 13px; color: var(--c-muted); line-height: 1.7; }
.seo-highlight { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 24px 28px; }
.seo-highlight h3 { font-family: var(--fd); font-weight: 700; font-size: 16px; color: var(--c-text); margin-bottom: 8px; }
.seo-highlight p { font-size: 13px; color: var(--c-muted); line-height: 1.7; margin-bottom: 8px; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--c-muted); }
.breadcrumb a { color: var(--c-text); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb span { margin: 0 6px; }

/* ── FOOTER ──────────────────────────────────────────── */
.ftr { background: var(--c-text); color: var(--c-inv); padding: 60px 0 0; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.ftr-brand .logo-name { color: var(--c-inv); }
.ftr-brand .logo-sub  { color: var(--c-inv-muted); }
.ftr-brand .logo-mark { background: rgba(255,255,255,.12); }
.ftr-brand p { font-size: 13px; color: var(--c-inv-muted); line-height: 1.65; margin-top: 14px; max-width: 280px; }
.ftr-phone { display: block; font-family: var(--fd); font-weight: 800; font-size: 20px; color: var(--c-inv); margin-top: 14px; }
.ftr-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.ftr-ci { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--c-inv-muted); line-height: 1.5; }
.ftr-ci svg { width: 15px; height: 15px; fill: var(--c-inv-muted); flex-shrink: 0; margin-top: 1px; }
.ftr-col-t { font-family: var(--fd); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--c-inv); margin-bottom: 14px; }
.ftr-links { display: flex; flex-direction: column; gap: 8px; }
.ftr-links a { font-size: 13px; color: var(--c-inv-muted); transition: color .15s; }
.ftr-links a:hover { color: var(--c-inv); }
.ftr-bot { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--c-inv-muted); }
.ftr-leg { display: flex; gap: 20px; flex-wrap: wrap; }
.ftr-leg a { color: var(--c-inv-muted); text-decoration: underline; text-underline-offset: 2px; }
.ftr-leg a:hover { color: var(--c-inv); }

/* ── MODAL ───────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .25s; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--c-bg); border-radius: var(--r-lg); width: 100%; max-width: 480px; padding: 36px; position: relative; transform: translateY(20px); transition: transform .25s; box-shadow: var(--sh-lg); }
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--c-surface); display: flex; align-items: center; justify-content: center; color: var(--c-muted); transition: background .15s; }
.modal-close:hover { background: var(--c-surface2); }
.modal-close svg { width: 18px; height: 18px; }
.modal-title { font-family: var(--fd); font-weight: 800; font-size: 22px; color: var(--c-text); margin-bottom: 4px; }
.modal-sub { font-size: 14px; color: var(--c-muted); margin-bottom: 22px; }
.modal-success { display: none; text-align: center; padding: 24px 0 8px; }
.modal-success.show { display: block; }
.modal-success-icon { width: 60px; height: 60px; background: var(--c-text); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal-success-icon svg { width: 28px; height: 28px; fill: var(--c-inv); }
.modal-success h3 { font-family: var(--fd); font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* ── FLOAT BUTTONS ───────────────────────────────────── */
.fl-btn { position: fixed; bottom: 24px; left: 24px; z-index: 100; width: 48px; height: 48px; border-radius: 50%; background: var(--c-text); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-md); transition: transform .15s; }
.fl-btn:hover { transform: scale(1.08); }
.fl-btn svg { fill: var(--c-inv); }
.scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 100; width: 44px; height: 44px; border-radius: 50%; background: var(--c-text); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.scroll-top.vis { opacity: 1; pointer-events: auto; }
.scroll-top svg { width: 20px; height: 20px; fill: var(--c-inv); }

/* ── ANIMATIONS ──────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fu.vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fu { opacity: 1; transform: none; transition: none; } }

/* ── INNER PAGE ──────────────────────────────────────── */
.page-hero { background: var(--c-text); color: var(--c-inv); padding: 52px 0; }
.page-hero-h1 { font-family: var(--fd); font-weight: 900; font-size: clamp(28px, 3.5vw, 46px); color: var(--c-inv); margin-bottom: 10px; }
.page-hero-sub { font-size: 16px; color: var(--c-inv-muted); max-width: 560px; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.content-body h2 { font-family: var(--fd); font-weight: 800; font-size: 22px; color: var(--c-text); margin: 28px 0 10px; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 15px; color: var(--c-muted); line-height: 1.7; margin-bottom: 14px; }
.content-body ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.content-body ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--c-muted); line-height: 1.6; }
.content-body ul li::before { content: '—'; color: var(--c-border-dk); flex-shrink: 0; }
.sidebar-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card-title { font-family: var(--fd); font-weight: 800; font-size: 16px; color: var(--c-text); margin-bottom: 14px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .cta-in { grid-template-columns: 1fr; }
  .cform { max-width: 560px; }
}
@media (max-width: 900px) {
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .proc-steps::before { display: none; }
  .rev-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { display: none; }
}
@media (max-width: 720px) {
  :root { --hdr-h: 60px; }
  .section { padding: 52px 0; }
  .wrap { padding: 0 16px; }
  .nav, .hdr-phone, .hdr-right .btn { display: none; }
  .burger { display: flex; }
  .srv-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .frow { grid-template-columns: 1fr; }
  .tbar-in { flex-direction: column; }
  .ti { border-right: none; border-bottom: 1px solid var(--c-border); }
  .ti:last-child { border-bottom: none; }
  .proc-steps { grid-template-columns: 1fr; }
  .seo-cols { grid-template-columns: 1fr; }
}
