/* ============================================
   Orkaris — Корпоративный сайт ИТ-компании
   Брендовая система
   ============================================ */

:root {
  /* Брендовые цвета */
  --color-brand-blue: #007CC2;
  --color-brand-blue-dark: #005A91;
  --color-brand-blue-light: #E5F2FA;
  --color-brand-orange: #E67817;
  --color-brand-orange-dark: #B85F0F;
  --color-brand-orange-light: #FDF1E5;

  /* Нейтральные */
  --color-ink: #0F1B2D;
  --color-ink-soft: #3A4A5F;
  --color-ink-muted: #6B7A8F;
  --color-line: #E1E8F0;
  --color-line-soft: #EEF2F7;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F5F8FB;
  --color-surface-dark: #0F1B2D;
  --color-surface-dark-2: #152538;

  /* Семантические */
  --color-success: #1FA672;
  --color-warning: #F0A030;

  /* Типографика */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Размеры */
  --text-xs: 0.75rem;       /* 12 */
  --text-sm: 0.875rem;      /* 14 */
  --text-base: 1rem;        /* 16 */
  --text-lg: 1.125rem;      /* 18 */
  --text-xl: 1.25rem;       /* 20 */
  --text-2xl: 1.5rem;       /* 24 */
  --text-3xl: 1.875rem;     /* 30 */
  --text-4xl: 2.25rem;      /* 36 */
  --text-5xl: 3rem;         /* 48 */
  --text-6xl: 3.75rem;      /* 60 */
  --text-hero: 4.5rem;      /* 72 */

  /* Радиусы и тени */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.04), 0 1px 3px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 27, 45, 0.04), 0 10px 20px rgba(15, 27, 45, 0.06);
  --shadow-lg: 0 12px 24px rgba(15, 27, 45, 0.08), 0 24px 48px rgba(15, 27, 45, 0.10);
  --shadow-blue: 0 12px 28px rgba(0, 124, 194, 0.20);

  /* Контейнер */
  --container: 1280px;
  --container-narrow: 960px;

  /* Анимация */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease-out);
}

/* ============================================
   Базовый сброс
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-brand-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-brand-blue-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   Типографика
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.375rem, 2vw, 1.875rem); font-weight: 700; }
h4 { font-size: var(--text-xl); font-weight: 700; }
h5 { font-size: var(--text-lg); font-weight: 600; }

p { color: var(--color-ink-soft); }
.lead { font-size: clamp(1.125rem, 1.5vw, 1.375rem); line-height: 1.55; color: var(--color-ink-soft); }

/* ============================================
   Контейнер и сетка
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--dark { background: var(--color-surface-dark); color: #E1E8F0; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #FFFFFF; }
.section--dark p { color: #B5C0CF; }
.section--alt { background: var(--color-surface-alt); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ============================================
   Шапка
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-brand-blue);
  letter-spacing: -0.02em;
}
.header__logo svg { width: 36px; height: 36px; }
.header__logo img { display: block; height: 40px; width: auto; max-width: 200px; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__item {
  position: relative;
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink);
  padding: 8px 0;
  transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--color-brand-blue); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-ink);
  transition: all var(--transition);
}
.nav__dropdown a:hover {
  background: var(--color-brand-blue-light);
  color: var(--color-brand-blue);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
}
.burger span::before, .burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }

@media (max-width: 1024px) {
  /* Сбрасываем backdrop-filter, иначе он становится containing block для position:fixed и ломает мобильное меню */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #FFFFFF; }
  .nav { display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch; padding: 24px; background: #FFFFFF; overflow-y: auto; gap: 0; z-index: 200; list-style: none; }
  .nav.is-open { display: flex !important; background: #FFFFFF; }
  .nav__item, .nav__link, .nav__dropdown a { list-style: none; }
  .nav__item { width: 100%; background: #FFFFFF; }
  .nav__link { display: block; padding: 14px 0; border-bottom: 1px solid var(--color-line-soft); }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 8px 0 8px 16px; min-width: auto; }
  .burger { display: flex; }
  /* Перекрываем display:inline-flex из .btn — иначе кнопка остаётся видимой */
  .header__cta { display: none !important; }
  /* Запрещаем прокрутку body, пока меню открыто */
  body.menu-open { overflow: hidden; }
}
@media (max-width: 720px) {
  .header__inner { height: 64px; }
  .nav { top: 64px; }
  .header__logo img { height: 32px; }
}

/* ============================================
   Кнопки
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--color-brand-blue);
  color: #FFFFFF;
}
.btn--primary:hover {
  background: var(--color-brand-blue-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.btn--accent {
  background: var(--color-brand-orange);
  color: #FFFFFF;
}
.btn--accent:hover {
  background: var(--color-brand-orange-dark);
  color: #FFFFFF;
}
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}
.btn--ghost:hover {
  border-color: var(--color-brand-blue);
  color: var(--color-brand-blue);
}
.btn--ghost-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}
.btn--lg { padding: 18px 32px; font-size: var(--text-base); }
.btn__arrow { transition: transform var(--transition); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================
   Hero (главная)
   ============================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FB 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--color-brand-blue-light);
  color: var(--color-brand-blue);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--text-xl);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-blue-dark) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 12s ease-in-out infinite;
}
.hero__visual-accent {
  position: absolute;
  width: 60%;
  height: 60%;
  background: var(--color-brand-orange);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  right: -10%;
  bottom: -10%;
  opacity: 0.85;
  animation: morph 10s ease-in-out infinite reverse;
}
.hero__code {
  position: absolute;
  background: var(--color-surface-dark);
  color: #E1E8F0;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero__code--1 { top: 10%; left: 0; }
.hero__code--2 { bottom: 12%; right: 0; }
.hero__code-line { display: block; line-height: 1.6; }
.hero__code-key { color: #6CC9FF; }
.hero__code-str { color: #FFAA6B; }
.hero__code-com { color: #6B7A8F; }

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@media (max-width: 1024px) {
  .hero { padding: 64px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 400px; margin: 0 auto; }
  .hero__code { font-size: 0.75rem; padding: 14px 18px; }
}
@media (max-width: 720px) {
  .hero { padding: 32px 0 56px; }
  .hero__grid { gap: 32px; }
  /* На мобильном убираем плавающие кодовые блоки — они мешают читать */
  .hero__visual { max-width: 280px; aspect-ratio: 1 / 1; }
  .hero__code { display: none; }
  .hero__cta { gap: 12px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__title { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .hero__lead { font-size: var(--text-base); }
}

/* ============================================
   Метрики (KPI)
   ============================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.metric { padding: 16px 24px; border-right: 1px solid var(--color-line); }
.metric:last-child { border-right: none; }
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--color-brand-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric__label { font-size: var(--text-sm); color: var(--color-ink-muted); }

@media (max-width: 720px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { border-right: none; border-bottom: 1px solid var(--color-line); }
  .metric:nth-child(2n) { border-right: none; }
}

/* ============================================
   Section heading
   ============================================ */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--color-brand-orange-light);
  color: var(--color-brand-orange-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head__title { margin-bottom: 16px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section--dark .section-head__eyebrow { background: rgba(230, 120, 23, 0.18); color: var(--color-brand-orange); }

/* ============================================
   Карточки
   ============================================ */
.card {
  background: #FFFFFF;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
a.card:hover {
  border-color: var(--color-brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-brand-blue-light);
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__icon--orange {
  background: var(--color-brand-orange-light);
  color: var(--color-brand-orange-dark);
}
.card__title { font-size: var(--text-xl); font-weight: 700; }
.card__text { font-size: var(--text-base); color: var(--color-ink-soft); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-brand-blue);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: auto;
}

/* На тёмном фоне */
.section--dark .card {
  background: var(--color-surface-dark-2);
  border-color: rgba(255,255,255,0.08);
}
.section--dark .card__title { color: #FFFFFF; }
.section--dark .card__text { color: #B5C0CF; }
.section--dark .card__icon { background: rgba(0, 124, 194, 0.18); color: #6CC9FF; }
.section--dark .card__icon--orange { background: rgba(230, 120, 23, 0.18); color: #FFAA6B; }

/* ============================================
   Процесс (шаги)
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; padding-top: 24px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-brand-orange);
  opacity: 0.18;
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step__title { font-size: var(--text-xl); font-weight: 700; margin-bottom: 8px; }
.step__text { font-size: var(--text-base); color: var(--color-ink-soft); }

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   Tech-стек чипы
   ============================================ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-line);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink-soft);
}
.chip--blue { background: var(--color-brand-blue-light); color: var(--color-brand-blue); border-color: transparent; }
.chip--orange { background: var(--color-brand-orange-light); color: var(--color-brand-orange-dark); border-color: transparent; }

/* ============================================
   Список преимуществ
   ============================================ */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-brand-blue-light);
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature__title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 6px; }
.feature__text { color: var(--color-ink-soft); font-size: var(--text-base); }

/* ============================================
   CTA-блок
   ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-blue-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  background: var(--color-brand-orange);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(60px);
}
.cta-block h2 { color: #FFFFFF; margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: var(--text-lg); }
.cta-block__actions { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 1024px) {
  .cta-block { grid-template-columns: 1fr; padding: 40px 32px; }
}

/* ============================================
   Подвал
   ============================================ */
.footer {
  background: var(--color-surface-dark);
  color: #B5C0CF;
  padding: 80px 0 32px;
  font-size: var(--text-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-text { color: #94A3B8; margin: 20px 0; max-width: 320px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
}
.footer__logo svg { width: 36px; height: 36px; }
.footer h5 { color: #FFFFFF; margin-bottom: 16px; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: #B5C0CF; }
.footer ul a:hover { color: #FFFFFF; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #6B7A8F;
  font-size: var(--text-xs);
  line-height: 1.6;
}
.footer__legal-info { max-width: 720px; }
.footer__legal-info p { color: #6B7A8F; margin-bottom: 4px; }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   Hero для внутренних страниц
   ============================================ */
.page-hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FB 100%);
  border-bottom: 1px solid var(--color-line);
}
.page-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-bottom: 24px;
}
.page-hero__breadcrumbs a { color: var(--color-ink-muted); }
.page-hero__breadcrumbs a:hover { color: var(--color-brand-blue); }
.page-hero__breadcrumbs span { color: var(--color-line); }
.page-hero h1 { margin-bottom: 20px; max-width: 900px; }
.page-hero__lead { font-size: var(--text-xl); max-width: 800px; color: var(--color-ink-soft); }

/* ============================================
   Двухколоночный контент
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__visual {
  background: linear-gradient(135deg, var(--color-brand-blue-light) 0%, #FFFFFF 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  padding: 48px;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse > :first-child { order: 0; }
  .split__visual { padding: 24px; }
  /* Перенос длинных русских слов на узких экранах */
  h1, h2, h3 { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
}

/* ============================================
   Прайс-карточки
   ============================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: #FFFFFF;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card--featured {
  border: 2px solid var(--color-brand-blue);
  position: relative;
  background: linear-gradient(180deg, var(--color-brand-blue-light) 0%, #FFFFFF 30%);
}
.price-card--featured::before {
  content: 'Популярно';
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--color-brand-orange);
  color: #FFFFFF;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card__name { font-size: var(--text-xl); font-weight: 700; }
.price-card__price { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; color: var(--color-brand-blue); letter-spacing: -0.03em; }
.price-card__price-prefix { font-size: var(--text-base); color: var(--color-ink-muted); font-weight: 500; }
.price-card__list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.price-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-ink-soft);
}
.price-card__check {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Аккордеон (FAQ)
   ============================================ */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
}
.accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-ink);
  background: transparent;
}
.accordion__icon { transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out);
}
.accordion__body-inner { padding: 0 24px 20px; color: var(--color-ink-soft); }
.accordion__item.is-open .accordion__body { max-height: 600px; }

/* ============================================
   Форма
   ============================================ */
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--color-ink); }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: var(--text-base);
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 124, 194, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-size: var(--text-xs); color: var(--color-ink-muted); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--color-ink-soft); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-brand-blue); }

/* ============================================
   Информационный блок (info-box)
   ============================================ */
.info-box {
  padding: 24px 28px;
  border-left: 4px solid var(--color-brand-blue);
  background: var(--color-brand-blue-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}
.info-box--orange { border-left-color: var(--color-brand-orange); background: var(--color-brand-orange-light); }
.info-box h4 { margin-bottom: 8px; }
.info-box p { color: var(--color-ink-soft); margin: 0; }

/* ============================================
   Таблица реквизитов
   ============================================ */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.table th, .table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-line);
  font-size: var(--text-base);
}
.table th {
  background: var(--color-surface-alt);
  font-weight: 600;
  color: var(--color-ink);
  width: 40%;
}
.table td { color: var(--color-ink-soft); }
.table tr:last-child th, .table tr:last-child td { border-bottom: none; }

/* ============================================
   Контентная типографика (для юр. страниц)
   ============================================ */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin: 48px 0 16px; font-size: var(--text-3xl); }
.prose h3 { margin: 32px 0 12px; font-size: var(--text-xl); }
.prose p, .prose ul, .prose ol { margin-bottom: 16px; color: var(--color-ink-soft); }
.prose ul, .prose ol { padding-left: 24px; }
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose ol li { list-style: decimal; margin-bottom: 8px; }
.prose strong { color: var(--color-ink); font-weight: 700; }

/* ============================================
   Анимации появления
   Контент виден сразу. При scroll в viewport — лёгкая fade-in анимация
   ============================================ */
.reveal {
  animation: revealIn 600ms var(--ease-out) both;
}
@keyframes revealIn {
  from { opacity: 0.3; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
}

/* ============================================
   Утилиты
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

/* ============================================
   Cookie-баннер
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #1A2332;
  color: #FFFFFF;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  font-size: 0.875rem;
  line-height: 1.5;
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text a {
  color: #FF7A1A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: #FF9A4A; }
.cookie-banner__text strong { color: #FFFFFF; font-weight: 700; }
.cookie-banner__btn {
  flex-shrink: 0;
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-md, 8px);
  background: transparent;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.cookie-banner__btn:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; }
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-banner__btn { width: 100%; }
}
