/* =========================================================
   ЦТО ГОРИЗОНТ — «Минимал-моно»
   Почти белый + графит + кобальтовый акцент. Швейцарская чистота.
   Manrope (контраст тонких/жирных начертаний) + IBM Plex Mono (метки)
   ========================================================= */

:root {
  --paper:   #f5f5f3;
  --paper-2: #ededea;
  --paper-3: #fafaf8;
  --ink:     #0f0f12;
  --ink-2:   #62626a;
  --ink-3:   #9a9a9e;
  --line:    #e2e1db;
  --line-2:  #d2d1ca;
  --accent:  #1f43e6;
  --accent-d:#1834c2;

  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --sans: 'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gut: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: var(--accent); color: #fff; }
.mono { font-family: var(--mono); font-feature-settings: "tnum" 1; }

.grid-lines, .cursor { display: none; }
@media (hover: none) { .scroll-progress { display: none; } }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 9998; }

/* ---------- LAYOUT ---------- */
.shell { max-width: 1500px; margin: 0 auto; padding: 0 var(--gut); position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

.sec-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-3); display: flex; align-items: center; gap: 11px; margin-bottom: 30px;
}
.sec-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.sec-tag b { color: var(--accent); font-weight: 500; }

.sec-title { font-weight: 300; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.04; letter-spacing: -0.03em; }
.sec-title b { font-weight: 700; }
.sec-lead { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 19px); max-width: 50ch; font-weight: 400; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent; transition: border-color .35s, background .35s;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner { max-width: 1500px; margin: 0 auto; padding: 0 var(--gut); height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand-mark { color: var(--accent); font-size: 13px; transform: translateY(-1px); }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand-sub { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: .04em; }

.nav-links { display: flex; gap: 34px; font-size: 14px; }
.nav-links a { position: relative; color: var(--ink-2); transition: color .25s; display: inline-flex; align-items: baseline; gap: 6px; font-weight: 500; }
.nav-links a i { font-style: normal; font-family: var(--mono); font-size: 10px; color: var(--ink-3); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover { color: var(--ink); } .nav-links a:hover i { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { color: var(--ink); }

.nav-call { font-family: var(--mono); font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border: 1px solid var(--line-2); white-space: nowrap; flex-shrink: 0; transition: background .25s, color .25s, border-color .25s; }
.nav-call:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-call-dot { width: 6px; height: 6px; border-radius: 50%; background: #29b34a; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 120px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 4vw, 72px); align-items: center; padding: 22px 0 58px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .03em; text-transform: uppercase; margin-bottom: 26px; }
.hero-meta b { color: var(--ink-2); font-weight: 500; }
.hero-meta .stat-live { color: var(--accent); }
.hero-h { font-weight: 300; font-size: clamp(31px, 3.7vw, 49px); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-h em { font-style: normal; font-weight: 700; color: var(--accent); }
.hero-h .thin { color: var(--ink-3); }
.hero-sub { font-size: clamp(15.5px, 1.3vw, 18px); color: var(--ink-2); max-width: 50ch; margin-bottom: 30px; }
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-figure { position: relative; border: 1px solid var(--line); border-radius: 4px; background: var(--paper-3); background-image: radial-gradient(var(--line-2) 1px, transparent 1.4px); background-size: 20px 20px; padding: 26px; }
.hero-figure svg { width: 100%; height: auto; display: block; }
.hero-tagline { position: absolute; left: -1px; bottom: -1px; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; padding: 9px 13px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 11px; padding: 16px 26px; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0; background: var(--ink); color: var(--paper); border: 1px solid var(--ink); border-radius: 2px; transition: background .3s var(--ease), border-color .3s, color .3s; }
.btn .ar { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn:hover .ar { transform: translate(4px, -4px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- MARQUEE ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 26px 0; display: flex; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee-row { display: flex; align-items: center; gap: 56px; padding-left: 56px; flex-shrink: 0; animation: marq 36s linear infinite; }
.marquee:hover .marquee-row { animation-play-state: paused; }
.marquee-row span { font-weight: 600; font-size: 23px; color: var(--ink-3); letter-spacing: -0.01em; white-space: nowrap; transition: color .3s; }
.marquee-row span:hover { color: var(--ink); }
.marquee-row .sep { color: var(--accent); font-size: 9px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* =========================================================
   BLOCKS
   ========================================================= */
.block { padding: clamp(80px, 10vw, 150px) 0; }
.block-head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 72px; }
@media (max-width: 800px){ .block-head { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- SERVICES ---------- */
.svc-list { border-top: 1px solid var(--ink); }
.svc { position: relative; display: grid; grid-template-columns: 54px 1.15fr 1.5fr auto; gap: 26px; align-items: center; padding: 26px 6px; border-bottom: 1px solid var(--line); transition: padding .45s var(--ease), background .45s var(--ease); }
.svc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent); transition: width .4s var(--ease); }
.svc:hover { padding-left: 26px; padding-right: 26px; background: var(--paper-3); }
.svc:hover::before { width: 2px; }
.svc-ico { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--accent); background: var(--paper); transition: background .35s, color .35s, border-color .35s; }
.svc-ico svg { width: 23px; height: 23px; }
.svc:hover .svc-ico { background: var(--accent); color: #fff; border-color: var(--accent); }
.svc-name { display: flex; flex-direction: column; gap: 5px; font-weight: 500; font-size: clamp(18px, 1.7vw, 23px); letter-spacing: -0.02em; }
.svc-no { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .05em; }
.svc:hover .svc-no { color: var(--accent); }
.svc-desc { color: var(--ink-2); font-size: 15px; max-width: 48ch; }
.svc-meta { display: flex; align-items: center; gap: 22px; justify-self: end; }
.svc-price { font-family: var(--mono); font-size: 15px; white-space: nowrap; color: var(--ink); }
.svc-ar { width: 24px; height: 24px; color: var(--accent); opacity: 0; transform: translateX(-8px); transition: .4s var(--ease); }
.svc:hover .svc-ar { opacity: 1; transform: translateX(0); }
.svc-all { margin-top: 44px; display: flex; justify-content: flex-end; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.stat { padding: 44px 26px 40px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-n { font-weight: 300; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -0.04em; }
.stat-n .u { color: var(--accent); font-weight: 300; }
.stat-l { font-family: var(--mono); font-size: 12px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .03em; margin-top: 18px; }

/* ---------- RISK (light, refined) ---------- */
.risk { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.risk-i { padding: 46px 34px 44px 0; border-right: 1px solid var(--line); }
.risk-i:last-child { border-right: none; padding-right: 0; }
.risk-tag { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: .03em; margin-bottom: 30px; }
.risk-n { font-weight: 300; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 18px; }
.risk-n b { font-weight: 700; }
.risk-i p { color: var(--ink-2); font-size: 15px; max-width: 38ch; }

/* ---------- WHY ---------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); }
.why-i { padding: 44px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr; gap: 10px 26px; align-items: start; }
.why-i:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 48px; }
.why-i:nth-child(even) { padding-left: 48px; }
.why-no { font-family: var(--mono); font-size: 13px; color: var(--accent); padding-top: 7px; }
.why-ico { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.why-ico svg { width: 24px; height: 24px; }
.why-i h4 { font-weight: 600; font-size: clamp(19px, 1.8vw, 23px); letter-spacing: -0.02em; grid-column: 2; }
.why-i p { color: var(--ink-2); font-size: 15px; grid-column: 2; max-width: 44ch; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--ink); }
.faq-i { border-bottom: 1px solid var(--line); }
.faq-i summary { list-style: none; cursor: pointer; padding: 28px 48px 28px 0; font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; letter-spacing: -0.01em; position: relative; transition: color .25s; }
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary::after { content: '+'; position: absolute; right: 4px; top: 26px; font-weight: 300; font-size: 28px; line-height: 1; color: var(--accent); transition: transform .3s var(--ease); }
.faq-i[open] summary::after { transform: rotate(45deg); }
.faq-i summary:hover { color: var(--accent); }
.faq-i p { color: var(--ink-2); font-size: 15.5px; max-width: 84ch; padding: 0 48px 30px 0; margin-top: -6px; }

/* ---------- CTA ---------- */
.cta { padding: clamp(90px,12vw,170px) 0; text-align: center; }
.cta-h { font-weight: 300; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -0.035em; }
.cta-h em { font-style: normal; font-weight: 700; color: var(--accent); }
.cta-sub { color: var(--ink-2); font-size: clamp(16px,1.6vw,19px); max-width: 50ch; margin: 30px auto 44px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER (light)
   ========================================================= */
.foot { border-top: 1px solid var(--line); padding: 90px var(--gut) 40px; position: relative; z-index: 1; }
.foot-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 64px; }
.foot-logo { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 18px; }
.foot-logo .brand-mark { color: var(--accent); }
.foot-desc { color: var(--ink-2); font-size: 14.5px; max-width: 40ch; margin-bottom: 22px; }
.foot-status { font-family: var(--mono); font-size: 12px; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .03em; }
.foot-col h4 { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .04em; margin-bottom: 18px; font-weight: 400; text-transform: uppercase; }
.foot-col a, .foot-col span { display: block; color: var(--ink-2); font-size: 14.5px; margin-bottom: 11px; transition: color .25s; }
.foot-col a:hover { color: var(--accent); }
.foot-base { max-width: 1500px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .03em; text-transform: uppercase; }

/* =========================================================
   MOTION
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.svc, .stat, .risk-i, .why-i { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease), padding .45s var(--ease), background .45s var(--ease); }
.in-row { opacity: 1 !important; transform: none !important; }
.hero-h.play .ln > span { transform: translateY(0); transition: transform 1.05s var(--ease); }
.hero-h.play .ln:nth-child(2) > span { transition-delay: .1s; }
.hero-h.play .ln:nth-child(3) > span { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-h .ln > span { transform: none; }
}

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-hero { padding: 150px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-weight: 300; font-size: clamp(32px,4.4vw,56px); line-height: 1.02; letter-spacing: -0.035em; margin: 22px 0 18px; }
.page-hero p { color: var(--ink-2); font-size: clamp(16px,1.6vw,19px); max-width: 56ch; }

.price-cat { padding: clamp(60px,7vw,96px) 0; }
.price-cat-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 38px; }
.price-cat-head .pc-no { font-family: var(--mono); color: var(--accent); font-size: 14px; }
.price-cat-head h2 { font-weight: 300; font-size: clamp(24px,3vw,40px); letter-spacing: -0.03em; }
.price-cat-head p { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .03em; }
.dm-intro { color: var(--ink-2); font-size: 15.5px; max-width: 82ch; margin: 0 0 26px; }
.note a { color: var(--accent); }
.price-list { border-top: 1px solid var(--ink); }
.price-row { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 28px; align-items: center; padding: 26px 6px; border-bottom: 1px solid var(--line); transition: background .3s, padding .35s var(--ease); }
.price-row:hover { background: var(--paper-3); padding-left: 20px; padding-right: 20px; }
.price-row .p-name { font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.price-row .p-desc { color: var(--ink-2); font-size: 14.5px; }
.price-row .p-price { font-family: var(--mono); font-size: 15px; white-space: nowrap; }
.note { margin-top: 32px; border: 1px solid var(--line-2); padding: 22px 24px; display: flex; gap: 14px; font-size: 14.5px; color: var(--ink-2); }
.note .ni { color: var(--accent); flex-shrink: 0; }
.note .ni svg { width: 22px; height: 22px; }
.note strong { color: var(--ink); }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; padding: clamp(60px,7vw,96px) 0; }
.about-text p { color: var(--ink-2); font-size: 16px; margin-bottom: 18px; }
.about-text p strong { color: var(--ink); }
.about-badge { margin-top: 28px; border-left: 2px solid var(--accent); padding: 6px 0 6px 22px; }
.about-badge strong { display: block; font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--accent); margin-bottom: 8px; }
.about-stats { display: flex; flex-direction: column; }
.about-stat { display: flex; align-items: baseline; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.about-stat:last-child { border-bottom: 1px solid var(--line); }
.about-stat .as-num { font-weight: 200; font-size: clamp(36px,4vw,56px); letter-spacing: -0.045em; min-width: 120px; }
.about-stat .as-lbl strong { display: block; font-size: 16px; font-weight: 600; }
.about-stat .as-lbl span { font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-transform: uppercase; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--ink); }
.step { padding: 38px 26px 32px 0; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step-num { font-family: var(--mono); color: var(--accent); font-size: 14px; margin-bottom: 24px; }
.step h4 { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 14.5px; }

.contacts-grid { display: grid; grid-template-columns: .9fr 1.1fr; border-top: 1px solid var(--ink); }
.contact-card { padding: 52px 52px 52px 0; }
.contact-card.dark { background: var(--paper-2); padding: 52px; }
.contact-card h3 { font-weight: 300; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 34px; }
.ci-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ci-icon { color: var(--accent); }
.ci-icon svg { width: 20px; height: 20px; }
.ci-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); }
.ci-val { font-size: 16px; font-weight: 600; margin-top: 3px; }
.ci-val a { color: inherit; } .ci-val a:hover { color: var(--accent); }
.hint-box { margin-top: 28px; border: 1px solid var(--line-2); padding: 22px; }
.hint-box .hb-t { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--ink); display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.hint-box .hb-t svg { width: 16px; height: 16px; color: var(--accent); }
.hint-box p { color: var(--ink-2); font-size: 13.5px; }

.form { display: flex; flex-direction: column; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-3); }
.fg input, .fg textarea { background: transparent; border: none; border-bottom: 1px solid var(--line-2); padding: 12px 0; font-family: var(--sans); font-size: 16px; color: var(--ink); outline: none; transition: border-color .3s; }
.fg input:focus, .fg textarea:focus { border-color: var(--accent); }
.fg textarea { resize: none; min-height: 90px; }
.form-note { font-size: 12px; color: var(--ink-3); }
.flash { padding: 16px 20px; font-family: var(--mono); font-size: 13px; margin-bottom: 24px; display: flex; gap: 10px; align-items: center; border: 1px solid; }
.flash svg { width: 18px; height: 18px; flex-shrink: 0; }
.flash-ok { border-color: #29b34a; color: #1f7d36; }
.flash-err { border-color: var(--accent); color: var(--accent-d); }
.map-box { margin-top: 32px; border: 1px solid var(--line-2); height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--ink-3); }
.map-box svg { width: 34px; height: 34px; color: var(--accent); }
.footer-contacts { list-style: none; }

/* ---------- LEGAL PAGE ---------- */
.legal { max-width: 80ch; padding: clamp(38px,5vw,60px) 0; }
.legal h2 { font-weight: 600; font-size: clamp(19px,2vw,24px); letter-spacing: -0.02em; margin: 42px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-2); font-size: 16px; line-height: 1.72; margin-bottom: 14px; }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.legal a { color: var(--accent); }
.legal-note { margin-top: 40px; padding: 18px 22px; border-left: 2px solid var(--accent); background: var(--paper-3); font-size: 14px; color: var(--ink-3); }

/* ---------- CONSENT CHECKBOX ---------- */
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.consent a { color: var(--accent); }

/* ---------- COOKIE BANNER ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; max-width: 720px; margin: 0 auto; background: var(--ink); color: var(--paper); border-radius: 6px; padding: 18px 20px; display: flex; align-items: center; gap: 18px; box-shadow: 0 18px 50px -18px rgba(0,0,0,.5); }
.cookie[hidden] { display: none; }
.cookie p { font-size: 13.5px; line-height: 1.5; color: #c9cace; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie-btn { flex-shrink: 0; font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; background: var(--accent); color: #fff; border: none; border-radius: 4px; padding: 11px 20px; cursor: pointer; transition: background .2s; }
.cookie-btn:hover { background: var(--accent-d); }
@media (max-width: 560px){ .cookie { flex-direction: column; align-items: stretch; } .cookie-btn { width: 100%; } }

.foot-base a { color: var(--ink-2); transition: color .2s; }
.foot-base a:hover { color: var(--accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) { .svc { grid-template-columns: 54px 1fr auto; } .svc-desc { display: none; } }
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; gap: 22px; background: var(--paper); padding: 32px var(--gut); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-call { display: none; } .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .risk { grid-template-columns: 1fr; } .risk-i { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; }
  .why { grid-template-columns: 1fr; } .why-i { padding: 32px 0 !important; border-right: none !important; }
  .about-grid, .contacts-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-card { padding: 40px 0; } .contact-card.dark { padding: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .svc { grid-template-columns: 46px 1fr auto; gap: 14px; padding: 22px 4px; }
  .svc-meta { gap: 12px; }
  .stats, .steps { grid-template-columns: 1fr; }
  .stat, .step { border-right: none; border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 6px; }
}
