:root {
  --bg: #070a12;
  --bg2: #090f1c;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.085);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #28d7ff;
  --accent2: #7c5cff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 24px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Адаптив: якоря не прячутся под sticky header */
section[id] {
  scroll-margin-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1100px 650px at 15% -10%, rgba(40, 215, 255, 0.18), transparent 55%),
    radial-gradient(900px 700px at 100% 0%, rgba(124, 92, 255, 0.18), transparent 55%),
    radial-gradient(1200px 900px at 50% 110%, rgba(40, 215, 255, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans",
    sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 18, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(40, 215, 255, 0.12);
}

.brand-text {
  font-size: 14px;
}

.nav {
  justify-self: center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-cta {
  background: rgba(40, 215, 255, 0.10);
  border: 1px solid rgba(40, 215, 255, 0.22);
  color: var(--text);
}

.nav-cta:hover {
  background: rgba(40, 215, 255, 0.14);
  border-color: rgba(40, 215, 255, 0.28);
}

.header-cta {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  will-change: transform;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(40, 215, 255, 0.95), rgba(124, 92, 255, 0.95));
  color: #061018;
  box-shadow: 0 10px 32px rgba(40, 215, 255, 0.20);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(40, 215, 255, 1), rgba(124, 92, 255, 1));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  padding: clamp(52px, 6vw, 78px) 0 clamp(28px, 4vw, 44px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.kicker-badge {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(40, 215, 255, 0.35);
  background: rgba(40, 215, 255, 0.08);
}

.kicker-text {
  color: var(--muted);
  font-size: 13px;
}

.h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

/* Hero subtitle — SEO key, but visually compact */
.hero-subtitle {
  margin: -8px 0 14px 0;
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-subtitle::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(40, 215, 255, 0.10);
  margin-right: 10px;
  transform: translateY(1px);
}

.h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.015em;
}

.h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.lead {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 62ch;
}

.muted {
  color: var(--muted);
  margin: 10px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.point {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.point-ic {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(40, 215, 255, 0.12);
  border: 1px solid rgba(40, 215, 255, 0.35);
  color: var(--text);
  font-weight: 900;
}

.point-txt {
  color: var(--text);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-art {
  border-radius: calc(var(--radius2) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 18px;
  min-height: clamp(320px, 32vw, 420px);
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -45% -45%;
  background:
    radial-gradient(circle at 25% 15%, rgba(40, 215, 255, 0.22), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(124, 92, 255, 0.18), transparent 40%),
    radial-gradient(circle at 50% 110%, rgba(40, 215, 255, 0.10), transparent 50%);
  pointer-events: none;
}

.hero-phone {
  position: relative;
  width: min(520px, 92%);
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.58));
  transform: translateZ(0);
}

@media (min-width: 1200px) {
  .hero-phone {
    width: min(560px, 96%);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.chip-muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.mini-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 215, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.mini-card__title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 6px;
}

.mini-card__text {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(44px, 5vw, 64px) 0;
}

.section-alt {
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(40, 215, 255, 0.06), transparent 60%),
    radial-gradient(800px 500px at 90% 0%, rgba(124, 92, 255, 0.06), transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.compare-col {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.compare-col:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.compare-col--accent {
  border-color: rgba(40, 215, 255, 0.24);
  background: linear-gradient(180deg, rgba(40, 215, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.compare-title {
  font-weight: 900;
  font-size: 16px;
}

.pill {
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.pill-ok {
  border-color: rgba(40, 215, 255, 0.28);
  background: rgba(40, 215, 255, 0.10);
}

.pill-warn {
  border-color: rgba(255, 182, 40, 0.30);
  background: rgba(255, 182, 40, 0.10);
}

.demand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}

.demand__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.callout {
  border-radius: calc(var(--radius2) + 6px);
  border: 1px solid rgba(40, 215, 255, 0.22);
  background: linear-gradient(180deg, rgba(40, 215, 255, 0.10), rgba(255, 255, 255, 0.04));
  padding: 16px;
  box-shadow: var(--shadow);
}

.callout__h {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.callout__p {
  margin-top: 8px;
  color: var(--muted);
}

.callout__a {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.service {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.service__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(40, 215, 255, 0.10);
  border: 1px solid rgba(40, 215, 255, 0.24);
  margin-bottom: 12px;
}

.service-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
}

.service-wide__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.feature__ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.20);
}

.feature__h {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 2px;
}

.feature__p {
  color: var(--muted);
  font-size: 12.5px;
}

.service-wide__content {
  padding: 6px 6px;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.step {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 14px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.step__n {
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(40, 215, 255, 0.92);
  margin-bottom: 6px;
  font-size: 12px;
}

.step__t {
  color: var(--text);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.stat__v {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.stat__k {
  color: var(--muted);
  font-size: 13px;
}

.facts {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fact {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 12px;
  color: var(--muted);
  font-size: 13px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fact:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.growth {
  margin-top: 14px;
  border-radius: calc(var(--radius2) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  box-shadow: var(--shadow);
}

.growth-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.growth-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.growth-year {
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
}

.growth-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.growth-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 215, 255, 0.90), rgba(124, 92, 255, 0.90));
  box-shadow: 0 10px 30px rgba(40, 215, 255, 0.14);
}

.growth-val {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.80);
}

.note {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.note:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.note__ic {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.22);
}

.note__txt {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 12px;
  font-weight: 900;
  color: rgba(40, 215, 255, 0.92);
}

.faq-item[data-open="true"] .faq-q::after {
  content: "–";
}

.faq-a {
  display: none;
  padding: 0 16px 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item[data-open="true"] .faq-a {
  display: block;
}

.cta {
  border-radius: calc(var(--radius2) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: center;
}

.cta__media {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta__hint {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(40, 215, 255, 0.92);
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.contact-ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(40, 215, 255, 0.10);
  border: 1px solid rgba(40, 215, 255, 0.20);
}

.contact-h {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-p {
  color: var(--muted);
  font-size: 12.5px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.16);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.footer-muted {
  color: var(--muted2);
  font-size: 12px;
  margin-top: 6px;
}

.footer-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle__line {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 6px;
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: 1fr auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: absolute;
    right: 20px;
    top: 72px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(7, 10, 18, 0.92);
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] .nav-panel {
    display: flex;
  }

  .nav-link {
    padding: 12px 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: clamp(360px, 72vw, 520px);
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

