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

/* ── Палитра ─────────────────────────────────────────────────────── */
:root {
  --bg:        #0F0F0F;
  --bg-card:   #181818;
  --elevated:  #222222;
  --border:    #2E2E2E;
  --border-hi: #444444;
  --text:      #FFFFFF;
  --body:      #999999;
  --muted:     #555555;
  --urgent:    #E05C3A;
  --urgent-dim: rgba(224,92,58,.10);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
h1, h2, h3, p, .hero-kicker, .section-label { overflow-wrap: break-word; }

body {
  overflow-x: hidden; max-width: 100%;
  background-image:
    linear-gradient(to bottom, transparent 20%, #191919 40%, #191919 62%, transparent 75%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='49' height='84'%3E%3Cpolygon points='24.5,0 49,14 49,42 24.5,56 0,42 0,14' fill='none' stroke='white' stroke-width='0.5' opacity='0.07'/%3E%3Cpolygon points='0,56 24.5,70 24.5,98 0,112 -24.5,98 -24.5,70' fill='none' stroke='white' stroke-width='0.5' opacity='0.07'/%3E%3Cpolygon points='49,56 73.5,70 73.5,98 49,112 24.5,98 24.5,70' fill='none' stroke='white' stroke-width='0.5' opacity='0.07'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, #0F0F0F 0%, #131313 40%, #191919 100%);
  background-size: 100% 100%, 49px 84px, 100% 100%;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--body); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.--active { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
/* Скошенные углы вместо pill/rounded-rect — общий геометрический язык кнопок */
.btn-nav { background: #DEDEDE; color: #0F0F0F; border: 1px solid #DEDEDE; padding: 8px 20px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: clip-path .25s ease, opacity .2s ease; }
.btn-nav:hover { opacity: .85; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }
.btn-nav-urgent { background: transparent; color: var(--urgent); border: 1px solid rgba(224,92,58,.35); padding: 8px 20px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: clip-path .25s ease, border-color .2s ease, background .2s ease; }
.btn-nav-urgent:hover { border-color: var(--urgent); background: var(--urgent-dim); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }

/* ── BURGER + ПОЛНОЭКРАННОЕ МОБИЛЬНОЕ МЕНЮ ──────────────────────── */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; }
.nav-burger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 1px; }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--bg); overflow-y: auto;
}
.mobile-nav-overlay.--open { display: block; }
.mobile-nav { padding: 24px 24px 40px; min-height: 100%; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mobile-nav__close { background: none; border: none; color: var(--body); font-size: 22px; cursor: pointer; padding: 8px; line-height: 1; }
.mobile-nav__close:hover { color: var(--text); }
.mobile-nav__link {
  display: block; padding: 18px 4px; font-size: 18px; font-weight: 600; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-nav__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-nav__btn { text-align: center; width: 100%; }

/* Переключатель языка — заготовка, перевод контента подключим отдельно */
.lang-toggle { display: none; /* скрыто до подключения реального перевода контента — заготовка остаётся в HTML/JS */
  align-items: center; background: var(--elevated); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.lang-btn { padding: 6px 10px; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--muted); background: none; border: none; cursor: pointer; transition: color .2s ease, background .2s ease; }
.lang-btn.--active, .lang-btn:hover { background: #DEDEDE; color: #0F0F0F; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid var(--border-hi); padding: 6px 14px; border-radius: 4px; font-size: 11px; font-weight: 600; color: var(--body); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: clamp(30px, 5vw, 54px); font-weight: 700; line-height: 1.18; letter-spacing: -1px; margin-bottom: 24px; }
.hero h1 em { color: var(--text); font-style: normal; }
.hero-desc { color: var(--body); font-size: 17px; line-height: 1.7; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: #DEDEDE; color: #0F0F0F; padding: 14px 28px; text-decoration: none; font-weight: 700; font-size: 15px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: clip-path .25s ease, opacity .2s ease; }
.btn-primary:hover { opacity: .82; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-hi); padding: 14px 28px; text-decoration: none; font-weight: 500; font-size: 15px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: clip-path .25s ease, border-color .2s ease; }
.btn-ghost:hover { border-color: var(--text); clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }
.btn-urgent { background: transparent; color: var(--urgent); border: 1px solid rgba(224,92,58,.35); padding: 14px 28px; text-decoration: none; font-weight: 600; font-size: 15px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: clip-path .25s ease, border-color .2s ease, background .2s ease; }
.btn-urgent:hover { border-color: var(--urgent); background: var(--urgent-dim); clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }

/* Hero stats card */
.hero-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hero-stat { padding: 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.hero-stat:nth-child(2n) { border-right: none; }
.hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
.hero-stat__num { font-size: 36px; font-weight: 800; color: var(--text); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.hero-stat__label { font-size: 12px; color: var(--body); line-height: 1.4; }
.hero-note { font-size: 13px; color: var(--body); margin-top: 16px; }

/* ── PARTNERS ─────────────────────────────────────────────────────── */
.partners { border-bottom: 1px solid var(--border); padding: 36px 0; }
.partners-label { font-size: 11px; font-weight: 600; color: var(--body); letter-spacing: .12em; text-transform: uppercase; text-align: center; margin-bottom: 24px; }
.partners-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.partner-logo { background: #fff; border-radius: 8px; padding: 14px 26px; height: 56px; display: flex; align-items: center; justify-content: center; filter: grayscale(1) opacity(.55); transition: filter .25s ease, transform .2s ease; }
.partner-logo:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }
.partner-logo img { max-height: 26px; max-width: 130px; object-fit: contain; display: block; }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; font-weight: 600; color: var(--body); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }

/* Минималистичный акцент — чуть светлее серого, без цвета */
.hero-desc em, .utp-intro em, .utp-card__desc em,
.process-step__desc em, .cta-ransom em, .cta-main em,
.case-body em, .faq-item__body em {
  font-style: normal;
  color: #D4D4D4;
  font-weight: 500;
}
abbr {
  text-decoration: none;
  letter-spacing: .06em;
  font-weight: 600;
  color: #C8C8C8;
}
h2 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 36px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; }

/* ── UTP ─────────────────────────────────────────────────────────── */
.utp-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: start; }
.risk-hook-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 44px 48px; margin-bottom: 0; }
.utp-intro { color: var(--body); font-size: 16px; line-height: 1.75; padding-top: 8px; }
.utp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.utp-card { background: var(--bg-card); padding: 36px; transition: background .2s; }
.utp-card:hover { background: var(--elevated); }
/* Кастомные hex-иконки — единый визуальный язык вместо emoji и нумерации "01 ——" */
.icon-hex { width: 28px; height: 28px; display: block; color: var(--text); }
.icon-hex .hex-frame { opacity: .35; }
.utp-card__icon, .service-card__icon { margin-bottom: 18px; }
.utp-card__title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.utp-card__desc { font-size: 14px; color: var(--body); line-height: 1.7; }

/* ── SERVICES ─────────────────────────────────────────────────────── */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.services-head a { color: var(--body); font-size: 14px; text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.services-head a:hover { color: var(--text); border-color: var(--text); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 28px; cursor: pointer; transition: border-color .2s, background .2s; }
.service-card:hover { border-color: var(--border-hi); background: var(--elevated); }
.service-card__title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.service-card__desc { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ── PROCESS ─────────────────────────────────────────────────────── */
.process { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.process-step { display: flex; flex-direction: column; padding: 40px 32px; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.process-step__n { font-size: 48px; font-weight: 800; color: var(--muted); line-height: 1; margin-bottom: 16px; }
.process-step__title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.process-step__desc { font-size: 13px; color: var(--body); line-height: 1.6; }
.process-step__badge {
  display: inline-block; align-self: flex-start; margin-top: auto; font-size: 11px; font-weight: 600; color: var(--urgent);
  border: 1px solid rgba(224,92,58,.3); background: rgba(224,92,58,.08); padding: 3px 10px; border-radius: 4px;
}
.process-step__desc { margin-bottom: 14px; }

/* ── RANSOM LANDING (страница /ransom) ──────────────────────────── */
.ransom-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }

.honest-list { display: flex; flex-direction: column; max-width: 740px; }
.honest-item { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.honest-item:first-child { padding-top: 0; }
.honest-item:last-child { border-bottom: none; }
.honest-item__num { font-size: 30px; font-weight: 800; color: var(--muted); line-height: 1; flex-shrink: 0; width: 40px; }
.honest-item__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.honest-item__desc { font-size: 14px; color: var(--body); line-height: 1.7; }

.trust-block { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: flex-start; }
.trust-photo { text-align: center; }
.trust-photo img { width: 100%; max-width: 200px; border-radius: 10px; border: 1px solid var(--border-hi); margin-bottom: 18px; }
.trust-photo__name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.trust-photo__role { font-size: 13px; color: var(--body); line-height: 1.6; }
.trust-reasons { display: flex; flex-direction: column; }
.trust-reason { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.trust-reason:first-child { padding-top: 0; }
.trust-reason:last-child { border-bottom: none; }
.trust-reason__num { font-size: 36px; font-weight: 800; color: var(--muted); line-height: 1; flex-shrink: 0; width: 44px; }
.trust-reason__title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trust-reason__desc { font-size: 14px; color: var(--body); line-height: 1.7; }
.trust-reason__list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; list-style: none; }
.trust-reason__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); }
.trust-reason__list li::before { content: '→'; color: var(--text); font-weight: 700; flex-shrink: 0; }

.ransom-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ransom-case { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 26px; display: flex; flex-direction: column; }
.ransom-case__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.ransom-case__industry { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.ransom-case__pill { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.ransom-case__pill.--red { background: rgba(224,92,58,.12); color: var(--urgent); border: 1px solid rgba(224,92,58,.3); }
.ransom-case__pill.--neutral { background: var(--elevated); color: var(--body); border: 1px solid var(--border-hi); }
.ransom-case__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.ransom-case__desc { font-size: 13px; color: var(--body); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.ransom-case__metrics { display: flex; gap: 22px; padding-top: 16px; border-top: 1px solid var(--border); }
.ransom-case__metric-val { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1; }
.ransom-case__metric-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* ── CASES (карточки на главной и в листинге) ───────────────────── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cases-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.case-card:hover { border-color: var(--border-hi); background: var(--elevated); transform: translateY(-3px); }
.case-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 8px; flex-wrap: wrap; }
.case-card__tag { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--border); padding: 3px 8px; border-radius: 4px; }
.case-card__title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.case-card__desc { font-size: 13px; color: var(--body); line-height: 1.6; flex: 1; }
.case-card__link { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; }
.case-card__link::after { content: '→'; transition: transform .2s ease; }
.case-card:hover .case-card__link::after { transform: translateX(3px); }

/* ── CASE ARTICLE PAGE ────────────────────────────────────────────── */
.case-back { display: inline-flex; align-items: center; gap: 8px; color: var(--body); text-decoration: none; font-size: 14px; transition: color .2s; }
.case-back:hover { color: var(--text); }
.case-hero { padding: 48px 0 56px; border-bottom: 1px solid var(--border); }
.case-hero h1 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -1px; line-height: 1.25; margin: 20px 0 0; max-width: 760px; }
.case-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.case-tag { font-size: 11px; font-weight: 600; color: var(--body); letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--border-hi); padding: 6px 14px; border-radius: 4px; }

.case-body, .policy-body { max-width: 720px; }
.case-body h2, .policy-body h2 { font-size: 24px; margin: 48px 0 16px; }
.case-body h2:first-child, .policy-body h2:first-child { margin-top: 0; }
.case-body p, .policy-body p { color: var(--body); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.about-intro p { font-size: 18px; line-height: 1.7; color: #D4D4D4; }
.policy-body a { color: var(--text); text-decoration: underline; }
.policy-body strong { color: var(--text); font-weight: 600; }

.case-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; list-style: none; }
.case-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--body); font-size: 15px; line-height: 1.75; }
.case-list li::before { content: '→'; color: var(--text); font-weight: 700; flex-shrink: 0; }

.case-result { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px 36px; margin: 32px 0; }
.case-result h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.case-result p:last-child { margin-bottom: 0; }

.case-page-cta { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.case-page-cta p { font-size: 15px; color: var(--body); margin: 0; max-width: 420px; }

/* ── ABOUT / MISSION / TEAM ──────────────────────────────────────── */
.mission { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mission-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.mission-quote { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.4; margin-top: 16px; color: var(--body); }
.mission-quote em { font-style: normal; color: var(--text); }
.mission-stats { display: flex; flex-direction: column; gap: 26px; }
.mission-stat .num { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 30px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
.mission-stat .lbl { font-size: 13px; color: var(--body); margin-top: 4px; }

.founder-sig { margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.founder-sig strong { display: block; color: var(--text); font-size: 15px; font-weight: 700; }
.founder-sig span { font-size: 13px; color: var(--body); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s ease, transform .2s ease; }
.team-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.team-card-body { padding: 22px; }
.team-card__name { font-size: 16px; font-weight: 700; color: var(--text); }
.team-card__role { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin: 4px 0 12px; }
.team-card__desc { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ── REQUISITES ──────────────────────────────────────────────────── */
.requisites-table { max-width: 760px; border-top: 1px solid var(--border); }
.requisites-row { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.requisites-row__name { font-size: 13px; font-weight: 600; color: var(--body); }
.requisites-row__value { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── 404 ─────────────────────────────────────────────────────────── */
.error404 { min-height: 64vh; display: flex; align-items: center; padding: 80px 0; }
.error404 .container { display: flex; flex-direction: column; align-items: center; gap: 36px; text-align: center; }
.error404__code {
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: 110px; font-weight: 800;
  letter-spacing: -4px; color: var(--text); line-height: 1;
}
.error404__code span { color: var(--urgent); }
.error404__terminal {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  max-width: 560px; width: 100%; text-align: left; overflow: hidden;
}
.error404__terminal-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.error404__terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-hi); display: inline-block; }
.error404__terminal-path { margin-left: 8px; font-size: 12px; color: var(--muted); font-family: 'SF Mono', Consolas, Menlo, monospace; }
.error404__terminal-body { padding: 22px 24px; font-family: 'SF Mono', Consolas, Menlo, monospace; font-size: 13px; line-height: 1.85; color: var(--body); word-break: break-word; }
.error404__terminal-body p { margin: 0; }
.error404__prompt { color: var(--text); font-weight: 700; margin-right: 8px; }
.error404__cursor { display: inline-block; width: 7px; height: 13px; background: var(--text); margin-left: 4px; vertical-align: -2px; animation: error404-blink 1s step-end infinite; }
@keyframes error404-blink { 50% { opacity: 0; } }
@media (max-width: 640px) {
  .error404__code { font-size: 72px; }
  .error404__terminal-body { font-size: 12px; padding: 18px; }
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0; width: 14px; height: 14px;
  border-right: 1.5px solid var(--body); border-bottom: 1.5px solid var(--body);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 4px 24px; color: var(--body); font-size: 14px; line-height: 1.75; max-width: 640px; }

/* ── PRESS PAGE ──────────────────────────────────────────────────── */
.press-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.press-filter__btn {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--body);
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 20px;
  cursor: pointer; transition: border-color .2s ease, color .2s ease, background .2s ease;
  font-family: 'Inter', sans-serif;
}
.press-filter__btn:hover { border-color: var(--border-hi); color: var(--text); }
.press-filter__btn.--active { background: #DEDEDE; color: #0F0F0F; border-color: #DEDEDE; }

.press-list { border-top: 1px solid var(--border); }
.press-item { border-bottom: 1px solid var(--border); }
.press-item.--hidden { display: none; }
.press-item summary {
  display: flex; align-items: center; gap: 14px; padding: 16px 4px; cursor: pointer; list-style: none;
}
.press-item summary::-webkit-details-marker { display: none; }
.press-item__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.press-item__icon svg { width: 14px; height: 14px; }
.press-item__title { flex: 1; font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.4; }
.press-item__action {
  flex-shrink: 0; background: transparent; color: var(--text); border: 1px solid var(--border-hi);
  padding: 8px 18px; text-decoration: none; font-weight: 600; font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: clip-path .2s ease, border-color .2s ease, background .2s ease;
}
.press-item__action:hover {
  border-color: var(--text); background: var(--elevated);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.press-item__action::after { content: '→'; transition: transform .2s ease; }
.press-item__action:hover::after { transform: translateX(3px); }
.press-item__chevron {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); margin-left: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.press-item__chevron::before {
  content: ''; width: 7px; height: 7px;
  border-right: 1.5px solid var(--body); border-bottom: 1.5px solid var(--body);
  transform: rotate(45deg); transition: transform .25s ease;
}
.press-item summary:hover .press-item__chevron { border-color: var(--border-hi); }
.press-item[open] .press-item__chevron::before { transform: rotate(-135deg); }
.press-item__body { padding: 0 4px 20px 58px; color: var(--body); font-size: 14px; line-height: 1.7; max-width: 640px; }

/* ── CTA RANSOM ───────────────────────────────────────────────────── */
.cta-ransom { background: linear-gradient(135deg, #1a0f0a 0%, #2a1a12 100%); border: 1px solid #3a2518; border-radius: 16px; padding: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-bottom: 24px; }
.cta-ransom__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(224,92,58,.15); border: 1px solid rgba(224,92,58,.3); padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--urgent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.cta-ransom h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-ransom p { color: var(--body); font-size: 15px; }
.btn-ransom { background: var(--urgent); color: #fff; padding: 16px 32px; text-decoration: none; font-weight: 700; font-size: 15px; white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: clip-path .25s ease, opacity .2s ease; }
.btn-ransom:hover { opacity: .85; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)); }

/* ── CTA MAIN ────────────────────────────────────────────────────── */
.cta-main { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 60px; text-align: center; }
.cta-main h3 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-main p { color: var(--body); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; }

/* ── FORM (заявка на консультацию) ──────────────────────────────── */
.c2Block__form { max-width: 480px; margin: 0 auto; text-align: left; }
.rowEl { margin-bottom: 18px; }
.rowEl__head { font-size: 13px; font-weight: 600; color: var(--body); margin-bottom: 7px; }
.c2Block__form input[type="text"],
.c2Block__form input[type="tel"],
.c2Block__form select,
.c2Block__form textarea {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 14px; font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text); transition: border-color .2s ease; outline: none;
}
.c2Block__form input[type="text"]:focus,
.c2Block__form input[type="tel"]:focus,
.c2Block__form select:focus,
.c2Block__form textarea:focus { border-color: var(--border-hi); }
.c2Block__form input[type="text"]::placeholder,
.c2Block__form input[type="tel"]::placeholder,
.c2Block__form textarea::placeholder { color: var(--muted); }
.c2Block__form textarea { min-height: 100px; resize: vertical; }
.c2Block__form select { appearance: none; cursor: pointer; }
.c2Block__form select option { background: var(--bg-card); color: var(--text); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rowEl--checkbox { display: flex; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--body); line-height: 1.5; }
.checkbox-label input[type="checkbox"] {
  appearance: none; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border: 1px solid var(--border-hi); border-radius: 4px; background: var(--bg-card);
  cursor: pointer; position: relative; transition: border-color .2s ease, background .2s ease;
}
.checkbox-label input[type="checkbox"]:checked { background: #DEDEDE; border-color: #DEDEDE; }
.checkbox-label input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 9px;
  border: solid #0F0F0F; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.checkbox-label a { color: var(--text); text-decoration: underline; }

.c2Block__form input[type="submit"] {
  width: 100%; background: #DEDEDE; color: #0F0F0F; border: none;
  padding: 14px 24px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: clip-path .25s ease, opacity .2s ease;
}
.c2Block__form input[type="submit"]:hover {
  opacity: .85;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

/* ── EMERGENCY MODAL («Взломали?») ───────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.65);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.--open { display: flex; }
.modal {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  width: 100%; max-width: 460px; padding: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--body);
  font-size: 20px; line-height: 1; cursor: pointer; padding: 4px;
  transition: color .2s ease;
}
.modal__close:hover { color: var(--text); }
.modal__title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Unbounded', 'Inter', sans-serif; font-size: 19px; font-weight: 700;
  color: var(--text); margin-bottom: 14px; padding-right: 24px;
}
.modal__service-tag {
  display: inline-block; margin-bottom: 22px; font-size: 12px; font-weight: 600; color: var(--urgent);
  border: 1px solid rgba(224,92,58,.3); background: rgba(224,92,58,.08); padding: 4px 10px; border-radius: 4px;
}
.modal__icon { color: var(--urgent); font-size: 20px; flex-shrink: 0; }
.modal .c2Block__form { max-width: none; margin: 0; }
.modal .rowEl input[type="text"] { background: var(--bg); }
.modal .c2Block__form input[type="submit"] {
  background: #DEDEDE; color: #0F0F0F;
}
.modal .c2Block__form input[type="submit"]:hover { background: #fff; opacity: 1; }
#hackedModalOverlay .c2Block__form input[type="submit"] {
  background: var(--urgent); color: #fff;
}
#hackedModalOverlay .c2Block__form input[type="submit"]:hover { background: #c44e30; opacity: 1; }
.modal .checkbox-label { font-size: 12px; margin-top: 4px; }

/* ── SWEETALERT — переопределение под тёмную монохромную тему ───── */
/* z-index выше любых модалок (.modal-overlay = 3000) — попап результата
   должен быть виден поверх, даже если модалку забыли закрыть */
.sweet-overlay { background-color: rgba(0,0,0,0.6); z-index: 4000; }
.sweet-alert {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 4001;
}
.sweet-alert h2 { color: var(--text); font-family: 'Unbounded', 'Inter', sans-serif; font-size: 22px; }
.sweet-alert p { color: var(--body); font-family: 'Inter', sans-serif; }
.sweet-alert button {
  background-color: #DEDEDE; color: #0F0F0F; border-radius: 0; font-family: 'Inter', sans-serif;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.sweet-alert button:hover,
.sweet-alert button:active { background-color: #C8C8C8; }
.sweet-alert button:focus { box-shadow: none; }
.sweet-alert button.cancel { background-color: transparent; color: var(--body); border: 1px solid var(--border-hi); }
.sweet-alert button.cancel:hover,
.sweet-alert button.cancel:active { background-color: var(--elevated); }

/* Иконка успеха/ошибки — нейтральные тона вместо зелёного/красного.
   ::before/::after — маскирующие "половинки", у библиотеки залиты белым
   в расчёте на белую модалку; на тёмной модалке дают сплошной белый круг. */
.sweet-alert .icon.success { border-color: var(--border-hi); }
.sweet-alert .icon.success::before,
.sweet-alert .icon.success::after { background: var(--bg-card); }
.sweet-alert .icon.success .line { background-color: #DEDEDE; }
.sweet-alert .icon.success .placeholder { border-color: rgba(255,255,255,0.08); }
.sweet-alert .icon.success .fix { background-color: var(--bg-card); }
.sweet-alert .icon.error { border-color: var(--urgent); }
.sweet-alert .icon.error .line { background-color: var(--urgent); }
.sweet-alert .icon.warning { border-color: var(--urgent); }
.sweet-alert .icon.warning .body,
.sweet-alert .icon.warning .dot { background-color: var(--urgent); }

/* ── PAGE HERO (служебные страницы, листинги) ───────────────────── */
.page-hero { padding: 64px 0 56px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Unbounded', 'Inter', sans-serif; font-size: 44px; font-weight: 700; letter-spacing: -1px; margin: 16px 0 16px; }
.page-hero p { color: var(--body); font-size: 16px; max-width: 620px; }

/* ── SERVICES (полный список услуг) ─────────────────────────────── */
.services-all-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.service-card-row {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 30px; transition: border-color .2s ease, background .2s ease, transform .2s ease;
  scroll-margin-top: 90px;
}
.service-card-row:hover { border-color: var(--border-hi); background: var(--elevated); transform: translateY(-2px); }
.service-card-row__title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.service-card-row__desc { font-size: 14px; color: var(--body); line-height: 1.65; }
.service-card-row__desc strong { color: var(--text); font-weight: 700; }
.services-pricing-title { margin-top: 40px; font-size: 24px; font-weight: 700; color: var(--text); }
.services-pricing-note { margin-top: 12px; max-width: 760px; font-size: 14px; color: var(--body); line-height: 1.65; }
.services-pricing-note strong { color: var(--text); font-weight: 700; }
.service-card-row__ask {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 600; font-style: italic; color: #D4D4D4;
  margin-top: 16px; line-height: 1.45;
}
.service-card-row__ask::before {
  content: '?'; flex-shrink: 0; margin-top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--urgent); color: var(--urgent);
  font-size: 12px; font-weight: 700; font-style: normal;
  display: flex; align-items: center; justify-content: center;
}
.service-card-row__divider { height: 1px; background: var(--border); margin: 18px 0 14px; }
.service-card-row__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card-row__price { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.service-card-row__price span { color: var(--text); }
.service-card-row__cta {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text); border: 1px solid var(--border-hi);
  padding: 8px 18px; font-size: 13px; font-weight: 600; line-height: 1; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: clip-path .25s ease, border-color .2s ease, background .2s ease;
}
.service-card-row__cta:hover { border-color: var(--text); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }

/* ── PRICING ─────────────────────────────────────────────────────── */
.prices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.price-card {
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 30px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.price-card:hover { border-color: var(--border-hi); box-shadow: 0 0 0 4px rgba(255,255,255,0.04); }
.price-card.--featured { border-color: #DEDEDE; background: var(--elevated); }
.price-badge {
  display: inline-block; background: #DEDEDE; color: #0F0F0F;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 18px;
}
.price-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; list-style: none; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); line-height: 1.5; }
.price-list li::before { content: '✓'; color: var(--text); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-note { font-size: 12px; color: var(--muted); line-height: 1.55; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--body); line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--body); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { display: flex; align-items: center; gap: 10px; color: var(--body); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-contact-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--muted); transition: color .2s; }
.footer-col a:hover .footer-contact-icon { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--body); }

/* ── COOKIE BANNER ───────────────────────────────────────────────── */
.cookieBlock {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 2500;
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; box-shadow: 0 16px 50px rgba(0,0,0,0.45);
}
.cookieBlock__cols { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookieBlock__left { flex: 1; min-width: 220px; font-size: 13px; color: var(--body); line-height: 1.6; }
.cookieBlock__left a { color: var(--text); text-decoration: underline; }
.cookieBlock__right { flex-shrink: 0; }
.cookieBlock__right .btn-primary { padding: 10px 22px; font-size: 13px; }
@media (max-width: 640px) {
  .cookieBlock { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookieBlock__cols { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookieBlock__right .btn-primary { display: block; width: 100%; text-align: center; }
}

/* ── АНИМАЦИИ ─────────────────────────────────────────────────────── */

/* Hero — загрузочные анимации */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-kicker  { animation: fadeUp .7s ease both; animation-delay: .1s; }
.hero h1      { animation: fadeUp .7s ease both; animation-delay: .22s; }
.hero-desc    { animation: fadeUp .7s ease both; animation-delay: .36s; }
.hero-actions { animation: fadeUp .7s ease both; animation-delay: .48s; }
.hero-note    { animation: fadeUp .7s ease both; animation-delay: .56s; }
.hero-card    { animation: fadeIn .9s ease both; animation-delay: .5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Hover лифт на карточках */
.service-card { transition: border-color .2s, background .2s, transform .2s; }
.service-card:hover { border-color: var(--border-hi); background: var(--elevated); transform: translateY(-3px); }
.utp-card { transition: background .2s, transform .2s; }
.utp-card:hover { background: var(--elevated); transform: translateY(-2px); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .utp-top { grid-template-columns: 1fr; gap: 24px; }
  .utp-top > * { min-width: 0; }
  .risk-hook-card { padding: 28px 24px; }
  .utp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(1, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .cases-grid, .cases-grid-2 { grid-template-columns: 1fr; }
  .cta-ransom { grid-template-columns: 1fr; padding: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-all-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ransom-services-grid { grid-template-columns: 1fr; }
  .trust-block { grid-template-columns: 1fr; gap: 32px; }
  .trust-photo { max-width: 200px; margin: 0 auto; }
  .ransom-cases-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo img { height: 36px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-inner, .hero-left { min-width: 0; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .section { padding: 56px 0; }
  .cta-main, .cta-ransom { padding: 28px; }
  .cta-main h3 { font-size: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .services-all-grid { grid-template-columns: 1fr; }
  .case-hero h1 { font-size: 28px; }
  .case-page-cta { flex-direction: column; align-items: flex-start; }
  .mission-quote { font-size: 21px; }
  .team-grid { grid-template-columns: 1fr; }
  .press-item summary { flex-wrap: wrap; gap: 10px 14px; }
  .press-item__title { flex: 1 1 100%; order: 1; }
  .press-item__icon { order: 0; }
  .press-item__action { order: 2; }
  .press-item__chevron { order: 3; margin-left: auto; }
  .press-item__body { padding-left: 4px; }
  .requisites-row { grid-template-columns: 1fr; gap: 4px; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
