/* ОмегаЭкспертиза — style.css */

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

:root {
  --bg:      oklch(97% 0.007 80);
  --bg2:     oklch(93% 0.01 80);
  --bg3:     oklch(89% 0.012 80);
  --ink:     oklch(14% 0.015 250);
  --ink2:    oklch(38% 0.015 250);
  --ink3:    oklch(58% 0.01 250);
  --amber:   oklch(68% 0.18 55);
  --amber-l: oklch(68% 0.18 55 / 0.1);
  --amber-b: oklch(68% 0.18 55 / 0.25);
  --green:   oklch(40% 0.1 158);
  --red:     oklch(50% 0.18 22);
  --border:  oklch(85% 0.01 250);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Onest', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  background: oklch(97% 0.007 80 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--ink);
  text-decoration: none;
}
.logo em { font-style: normal; color: var(--amber); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: oklch(22% 0.015 250); transform: translateY(-1px); }
.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover { background: oklch(72% 0.18 55); transform: translateY(-1px); box-shadow: 0 6px 20px oklch(68% 0.18 55 / 0.4); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 8px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-left {
  padding: 80px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.hero-desc {
  font-size: 17px;
  color: var(--ink2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-contacts {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-contact-item label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.hero-contact-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.hero-contact-item a:hover { color: var(--amber); }

.hero-right {
  background: var(--ink);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, oklch(68% 0.18 55 / 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, oklch(40% 0.1 158 / 0.1) 0%, transparent 60%);
}

/* FIX: was oklch(60%) — too dim on dark background */
.hero-right-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(72% 0.01 250);
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid oklch(30% 0.01 250);
  color: oklch(92% 0.008 250);
}
.compliance-item:last-child { border-bottom: none; }

.compliance-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  width: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}
.compliance-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: oklch(96% 0.005 250);
}
/* FIX: was oklch(55%) — нечитаемо на тёмном фоне */
.compliance-item p {
  font-size: 13px;
  color: oklch(72% 0.01 250);
  line-height: 1.6;
}

/* ─── RISK SECTION ─── */
.risk-section {
  padding: 100px 64px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.risk-section-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, oklch(68% 0.18 55 / 0.06) 0%, transparent 60%);
}
.risk-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.risk-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: oklch(96% 0.005 250);
}
/* FIX: was oklch(60%) */
.risk-header p {
  font-size: 16px;
  color: oklch(72% 0.01 250);
  line-height: 1.7;
  max-width: 440px;
}

.risk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(25% 0.01 250);
  border: 1px solid oklch(25% 0.01 250);
  border-radius: 16px;
  overflow: hidden;
}
.risk-card {
  background: oklch(18% 0.012 250);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.risk-card:hover { background: oklch(20% 0.015 250); }

.risk-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.risk-card-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* FIX: усиленный фон + более яркий stroke для читаемости */
.icon-red { background: oklch(50% 0.18 22 / 0.2); }
.icon-red svg { stroke: oklch(74% 0.22 22); }

.icon-amber { background: oklch(68% 0.18 55 / 0.18); }
.icon-amber svg { stroke: oklch(78% 0.2 55); }

/* FIX: was oklch(55% 0.1 158) — слишком тусклый зелёный */
.icon-green { background: oklch(40% 0.1 158 / 0.2); }
.icon-green svg { stroke: oklch(68% 0.14 158); }

.risk-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: oklch(93% 0.008 250);
  margin-bottom: 12px;
  line-height: 1.3;
}
/* FIX: was oklch(55%) */
.risk-card p {
  font-size: 14px;
  color: oklch(72% 0.01 250);
  line-height: 1.7;
}
/* FIX: was oklch(75%) */
.risk-card strong {
  color: oklch(90% 0.008 250);
  font-weight: 600;
}

/* ─── SPEC SECTION ─── */
.spec-section { padding: 100px 64px; }

.spec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec-label::before { content: ''; width: 32px; height: 2px; background: var(--amber); }

.spec-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.spec-main h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.spec-main p {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 540px;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.scope-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.scope-card:hover { border-color: var(--amber); transform: translateY(-2px); }

.scope-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-bottom: 12px;
}
.scope-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.scope-card p { font-size: 13px; color: var(--ink2); line-height: 1.6; }

/* Sidebar */
.spec-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.sidebar-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
}

.sidebar-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-block h4::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--amber);
}

.sidebar-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-items li {
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.sidebar-items li::before {
  content: '→';
  color: var(--amber);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-block.highlight {
  background: var(--ink);
  border-color: transparent;
  color: var(--bg);
}
.sidebar-block.highlight h4 { color: oklch(93% 0.008 250); }
.sidebar-block.highlight h4::before { background: var(--amber); }
/* FIX: was oklch(60%) */
.sidebar-block.highlight p {
  font-size: 14px;
  color: oklch(72% 0.01 250);
  line-height: 1.7;
}

/* ─── INDUSTRIES ─── */
.industries-section {
  padding: 100px 64px;
  background: var(--ink);
  color: var(--bg);
}

.ind-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.ind-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 500px;
  color: oklch(96% 0.005 250);
}
/* FIX: was oklch(55%) */
.ind-header p {
  font-size: 15px;
  color: oklch(72% 0.01 250);
  max-width: 340px;
  text-align: right;
  line-height: 1.6;
}

.ind-table {
  width: 100%;
  border-collapse: collapse;
}
.ind-table tr {
  border-bottom: 1px solid oklch(25% 0.01 250);
  transition: background 0.15s;
  cursor: default;
}
.ind-table tr:hover { background: oklch(18% 0.012 250); }
.ind-table td {
  padding: 20px 24px;
  font-size: 15px;
}
.ind-table td:first-child {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  width: 48px;
  padding-right: 0;
}
.ind-table td:nth-child(2) {
  font-weight: 600;
  color: oklch(90% 0.008 250);
  width: 40%;
}
/* FIX: was oklch(50%) — почти нечитаемо на тёмном фоне */
.ind-table td:nth-child(3) {
  font-size: 13px;
  color: oklch(68% 0.01 250);
}
.ind-table td:last-child {
  text-align: right;
  width: 140px;
}

/* FIX: бейджи были тусклыми — усилен цвет и фон */
.ind-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: oklch(50% 0.18 22 / 0.22);
  color: oklch(80% 0.22 22);
  letter-spacing: 0.04em;
  border: 1px solid oklch(60% 0.2 22 / 0.3);
}
.ind-badge.optional {
  background: oklch(68% 0.18 55 / 0.18);
  color: oklch(84% 0.18 55);
  border-color: oklch(70% 0.18 55 / 0.3);
}

/* ─── FAQ ─── */
.faq-section { padding: 100px 64px; }
.faq-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.faq-left h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.faq-left p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 16px;
  color: var(--ink2);
}
.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 580px;
}
.faq-item.open .faq-a { display: block; }

/* ─── FORM SECTION ─── */
.form-section {
  padding: 100px 64px;
  background: var(--ink);
  color: var(--bg);
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: oklch(96% 0.005 250);
}
/* FIX: was oklch(58%) */
.form-left > p {
  font-size: 16px;
  color: oklch(72% 0.01 250);
  line-height: 1.7;
  margin-bottom: 48px;
}

.form-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-promises li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: oklch(86% 0.008 250);
}
.fp-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: oklch(68% 0.18 55 / 0.15);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-check svg {
  width: 12px; height: 12px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-box {
  background: var(--bg);
  border-radius: 20px;
  padding: 48px;
}
.form-box h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--ink3); }
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px oklch(68% 0.18 55 / 0.12);
}
.fg textarea { resize: vertical; min-height: 90px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Кнопка Submit — состояния */
.btn-submit {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.form-privacy {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 12px;
  line-height: 1.5;
}
.form-privacy a { color: var(--amber); text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.fs-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: oklch(68% 0.18 55 / 0.12);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.fs-circle svg {
  width: 30px; height: 30px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h4 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--ink2); }

/* Сообщение об ошибке отправки */
.form-error {
  display: none;
  background: oklch(50% 0.18 22 / 0.08);
  border: 1px solid oklch(60% 0.18 22 / 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: oklch(45% 0.18 22);
  margin-top: 12px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 44px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.footer-logo em { font-style: normal; color: var(--amber); }
.footer-center {
  font-size: 13px;
  color: var(--ink3);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 13px;
  color: var(--ink3);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

/* ─── PRIVACY PAGE ─── */
.page-wrap {
  padding-top: 68px;
  min-height: 100vh;
}
.privacy-hero {
  background: var(--ink);
  padding: 80px 64px 72px;
  position: relative;
  overflow: hidden;
}
.privacy-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, oklch(68% 0.18 55 / 0.08) 0%, transparent 60%);
}
.privacy-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: oklch(96% 0.005 250);
  margin-bottom: 12px;
  position: relative;
}
.privacy-hero p {
  font-size: 15px;
  color: oklch(68% 0.01 250);
  position: relative;
}
.privacy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 64px 100px;
}
.privacy-body h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 48px 0 16px;
  color: var(--ink);
}
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-body ul {
  margin: 8px 0 16px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-body ul li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  display: flex;
  gap: 10px;
}
.privacy-body ul li::before {
  content: '—';
  color: var(--amber);
  flex-shrink: 0;
}
.privacy-body a { color: var(--amber); text-decoration: none; }
.privacy-body a:hover { text-decoration: underline; }
.privacy-notice {
  background: oklch(68% 0.18 55 / 0.08);
  border: 1px solid oklch(68% 0.18 55 / 0.25);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 24px 48px; }
  .hero-right { padding: 48px 24px 64px; }

  .risk-section,
  .spec-section,
  .industries-section,
  .faq-section,
  .form-section { padding: 72px 24px; }

  .risk-header { grid-template-columns: 1fr; gap: 24px; }
  .risk-cards { grid-template-columns: 1fr; }

  .spec-layout { grid-template-columns: 1fr; gap: 40px; }
  .scope-grid { grid-template-columns: 1fr; }

  .ind-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ind-header p { text-align: left; max-width: 100%; }
  .ind-table td:nth-child(3) { display: none; }
  .ind-table td:last-child { white-space: nowrap; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }

  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-box { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; }

  footer { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 32px 24px; }
  .footer-links { justify-content: center; }

  .privacy-hero { padding: 60px 24px 52px; }
  .privacy-body { padding: 48px 24px 72px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(26px, 7vw, 36px); letter-spacing: -0.8px; }
  .risk-card { padding: 28px 24px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }

  /* Контакты — вертикально, без переноса */
  .hero-contacts { flex-direction: column; gap: 20px; }
  .hero-contact-item a { white-space: nowrap; }
}

/* ─── FIX: STICKY SIDEBAR (пустота справа на десктопе) ─── */
.spec-sidebar {
  position: sticky;
  top: 88px; /* 68px nav + 20px зазор */
}

/* ─── FIX: INDUSTRIES TABLE — предотвращаем горизонтальный overflow ─── */
.ind-table {
  table-layout: fixed; /* Запрет расширения таблицы за пределы контейнера */
  width: 100%;
}
/* Сброс фиксированной ширины для последней колонки чтобы она не резервировала место */

/* ─── FIX MOBILE: убираем горизонтальный скролл от таблицы ─── */
@media (max-width: 960px) {
  /* Таблица — убираем обе "лишние" колонки и бейджи на мобильном */
  .ind-table td:nth-child(3) { display: none; }
  .ind-table td:last-child    { display: none; } /* Скрываем бейджи — главный источник overflow */
  .ind-table td:nth-child(2) { width: auto; }

  /* Кнопка в навигации — короче на мобильном */
  nav .btn { 
    padding: 10px 16px; 
    font-size: 13px; 
    white-space: nowrap;
  }

  /* Логотип чуть компактнее */
  .logo { font-size: 13px; }

  /* Сайдбар на мобильном — не sticky */
  .spec-sidebar { position: static; }

  /* Сброс table-layout на мобиле */
  .ind-table { table-layout: auto; }
}

@media (max-width: 480px) {
  nav { padding: 0 16px; }
  nav .btn {
    padding: 9px 13px;
    font-size: 12px;
  }
  .logo { font-size: 12px; letter-spacing: -0.2px; }
}
