﻿:root {
  /* Цвета */
  --color-white: #ffffff;
  --color-ink: #071d43;
  --color-muted: #637b96;
  --color-link: #075cc6;
  --color-border: #dce8f8;
  --color-card-stroke: #c7dcf6;

  /* Градиенты */
  --grad-brand: linear-gradient(90deg, #083d91 0%, #0874e5 100%);
  --grad-card: linear-gradient(90deg, #f3f8ff 0%, #e8f2ff 100%);
  --grad-phone-icon: linear-gradient(90deg, #0a4db1 0%, #1176e7 100%);
  --grad-max: linear-gradient(90deg, #5c4ff5 0%, #086ef0 100%);
  --grad-telegram: linear-gradient(90deg, #26a8e0 0%, #0d6ec4 100%);
  --grad-primary: linear-gradient(90deg, #084cb0 0%, #0874e5 100%);

  /* Тени */
  --shadow-header: 0 8px 24px rgba(5, 31, 77, 0.10);
  --shadow-logo: 0 5px 13px rgba(5, 69, 178, 0.24);
  --shadow-btn: 0 5px 12px rgba(5, 64, 166, 0.20);
  --shadow-nav: 0 4px 10px rgba(5, 64, 166, 0.18);

  /* Шрифт */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--color-white);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1318px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-header);
}

.header__inner {
  padding-top: 14px; padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Компенсация фиксированной шапки (двухрядная) */
main {
  padding-top: 158px;
}

/* ---- Строка 1 ---- */
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

/* Бургер */
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #0a4db1 0%, #1177e8 100%);
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.15s ease;
}

.header__burger svg {
  display: block;
  width: 20px;
  height: 20px;
}

.header__burger:hover {
  filter: brightness(1.1);
}

/* Компактные иконки (мобильная шапка) */
.header__icons {
  display: none;
  align-items: center;
  gap: 6px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0a4db1 0%, #1177e8 100%);
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter 0.15s ease;
}

.header__icon:hover {
  filter: brightness(1.1);
}

.header__icon--tg {
  background: #2aabee;
}

.header__icon--max {
  background: #0652ba;
}

/* Мобильное меню (выезжает справа) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 33, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 20px 28px;
  background: #ffffff;
  box-shadow: -12px 0 36px rgba(4, 14, 33, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}

.mobile-menu--open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu--open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu--open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-menu__head .brand {
  width: auto;
  flex: 1;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #eef4fb;
  color: var(--color-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #083d91 0%, #0874e5 100%);
  box-shadow: var(--shadow-nav);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f3f8ff 0%, #e8f2ff 100%);
  border: 1px solid #c7dcf6;
}

.mobile-menu__phone {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: var(--color-ink);
  text-decoration: none;
}

.mobile-menu__note {
  font-size: 11px;
  line-height: 15px;
  color: var(--color-muted);
}

.mobile-menu__email {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #075cc6;
  text-decoration: none;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__actions .btn {
  width: 100%;
}

/* Бренд */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 300px;
  flex-shrink: 0;
}

.brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-brand);
  box-shadow: var(--shadow-logo);
  overflow: hidden;
}

.brand__logo svg {
  display: block;
  width: 30px;
  height: 30px;
}

.brand__name {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 18px;
  letter-spacing: -0.005em;
  color: var(--color-ink);
}

/* Действия */
.header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

/* Карточка контакта */
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 11px 6px 7px;
  width: 216px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-card);
  border: 1px solid var(--color-card-stroke);
  text-decoration: none;
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--grad-phone-icon);
  flex-shrink: 0;
}

.contact-card__text {
  display: flex;
  flex-direction: column;
}

.contact-card__phone {
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-ink);
  white-space: nowrap;
}

.contact-card__note {
  font-weight: 400;
  font-size: 8.5px;
  line-height: 11px;
  color: var(--color-muted);
  white-space: nowrap;
}

.contact-card__email {
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  color: var(--color-link);
  white-space: nowrap;
}

/* Кнопки — общая база */
.btn,
.btn--cta,
.btn--ghost,
.corporate__btn,
.plan__download,
.articles__all,
.final-cta__btn,
.consult__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}

/* Кнопки */
.btn {
  gap: 8px;
  width: 176px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow-btn);
  color: var(--color-white);
  font-weight: 700;
  font-size: 11.5px;
  line-height: 15.5px;
}

.btn--messenger {
  background: var(--grad-max);
}

.btn--telegram {
  background: var(--grad-telegram);
}

.btn--primary {
  background: var(--grad-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn:active {
  transform: translateY(1px);
}

/* ---- Строка 2: навигация ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 4px 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  max-width: 206px;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--grad-brand);
  box-shadow: var(--shadow-nav);
  color: var(--color-white);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 18px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.nav__link:hover {
  filter: brightness(1.1);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(90deg, #f8fbff 0%, #e8f2ff 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero__inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding-top: 38px; padding-bottom: 38px;
}

.hero__content {
  flex: 0 1 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0;
}

.hero__eyebrow {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e1eeff;
  border: 1px solid #bfd8fa;
  color: #075cc6;
  font-weight: 700;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.hero__title {
  margin: 0;
  color: #071d43;
  font-weight: 800;
  font-size: 31px;
  line-height: 38px;
  letter-spacing: -0.02em;
}

.hero__desc {
  margin: 0;
  max-width: 520px;
  color: #4b607a;
  font-size: 16px;
  line-height: 24px;
}

/* Ценовое предложение */
.price-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  padding: 12px 14px 12px 16px;
  background: linear-gradient(90deg, #06275d 0%, #0870e1 100%);
  border: 1px solid rgba(125, 186, 255, 0.75);
  box-shadow: 0 10px 25px rgba(3, 51, 148, 0.28);
}

/* Переключатель объёма (в fact-карточке) */
.hours-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border-radius: 12px;
  background: rgba(240, 247, 255, 0.9);
  border: 1px solid rgba(120, 150, 190, 0.35);
}

.hours-switch__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 30px;
  padding: 0 14px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: #4b607a;
  font-family: var(--font);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hours-switch__tab.is-active {
  background: linear-gradient(90deg, #083d91 0%, #0874e5 100%);
  color: #ffffff;
}

.hours-switch__tab:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Скрытый блок цен (перебивает display:flex из .price-offer__price) */
.is-hidden {
  display: none !important;
}

.price-offer__price {
  display: flex;
  flex-direction: column;
}

.price-offer__label {
  color: #cfe4ff;
  font-size: 10.5px;
  line-height: 14px;
  letter-spacing: 0.05em;
}

.price-offer__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-offer__value {
  color: #ffffff;
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
}

.price-offer__old {
  color: rgba(224, 236, 250, 0.92);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 22px;
  text-decoration: line-through;
}

.price-offer__discount {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 6px 10px 6px 7px;
  border-radius: 15px;
  background: rgba(3, 27, 66, 0.28);
  border: 1px solid rgba(203, 227, 255, 0.38);
}

.price-offer__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ffe27a 0%, #ffb31f 100%);
  box-shadow: 0 5px 13px rgba(255, 143, 10, 0.38);
  color: #09224a;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

.price-offer__badge span:first-child {
  font-size: 16px;
}

.price-offer__badge span:last-child {
  font-size: 9px;
}

.price-offer__condition {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
}

/* Факты */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1 1 180px;
  max-width: 275px;
  padding: 8px 10px 8px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(202, 221, 245, 0.90);
  box-shadow: 0 5px 14px rgba(5, 26, 61, 0.07);
}

.fact--wide {
  flex-grow: 1;
}

.fact--hours {
  flex-basis: 275px;
  gap: 6px;
}

.fact__title {
  color: #0a244d;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

.fact__caption {
  color: #60728a;
  font-size: 10px;
  line-height: 15px;
  white-space: nowrap;
}

/* Действия */
.hero__actions {
  display: flex;
  gap: 12px;
}

.btn--cta {
  flex: 1 1 254px;
  max-width: 254px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ffe071 0%, #ffb21a 100%);
  box-shadow: 0 8px 22px rgba(247, 135, 8, 0.38);
  color: #08234b;
  font-size: 16px;
  line-height: 22px;
}

.btn--ghost {
  flex: 1 1 244px;
  max-width: 244px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(5, 41, 102, 0.10);
  color: #075fcb;
  font-weight: 600;
  font-size: 14px;
}

.hero__trust {
  margin: 0;
  color: #45617f;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}

/* Медиа-колонка */
.hero__media {
  position: relative;
  flex: 1 1 640px;
  min-width: 0;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Мягкий белый wash слева — плавный переход фото в фон секции */
.hero__media-wash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f7faff 0%, rgba(247, 250, 255, 0) 18%);
  pointer-events: none;
}

/* Тёмный fade снизу — читаемость блока доверия */
.hero__media-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(237, 245, 255, 0) 0%, rgba(5, 26, 61, 0) 55%, rgba(5, 26, 61, 0.90) 100%);
  pointer-events: none;
}

/* ===== Дистанционное обучение ===== */
.distance {
  background: linear-gradient(90deg, #f7faff 0%, #ecf4ff 100%);
}

.distance__inner {
  padding-top: 36px;
  padding-bottom: 36px;
}

.distance__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 30px 28px 32px;
  border-radius: 26px;
  background: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d2e3f7;
  box-shadow: 0 12px 30px rgba(5, 26, 61, 0.10);
}

.distance__message {
  flex: 1 1 650px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.distance__eyebrow {
  align-self: flex-start;
  color: #075fcb;
  font-weight: 700;
  font-size: 10.5px;
  line-height: 14px;
  letter-spacing: 0.07em;
}

.distance__heading {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
}

.distance__title {
  margin: 0;
  color: #081d42;
  font-weight: 800;
  font-size: 31px;
  line-height: 40px;
}

.distance__highlight {
  padding: 8px 16px;
  border-radius: 13px;
  background: linear-gradient(90deg, #084db2 0%, #0877ea 100%);
  box-shadow: 0 6px 16px rgba(5, 69, 178, 0.24);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.distance__desc {
  align-self: flex-start;
  margin: 0;
  max-width: 640px;
  color: #536a84;
  font-size: 14px;
  line-height: 21px;
}

/* Карточки преимуществ */
.distance__benefits {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 168px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f6faff 0%, #eaf3ff 100%);
  border: 1px solid #c7dcf5;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4db1 0%, #1177e8 100%);
}

.benefit__title {
  color: #0a2148;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 17px;
}

.benefit__body {
  color: #60738a;
  font-size: 10.5px;
  line-height: 15px;
}

/* ===== Обучение для юридических лиц ===== */
.corporate {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #061936 0%, #0a57b8 100%);
}

.corporate__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.corporate__offer {
  flex: 1 1 740px;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.corporate__eyebrow {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(167, 209, 255, 0.40);
  color: #ddeeff;
  font-weight: 700;
  font-size: 10.5px;
  line-height: 14px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.corporate__title {
  align-self: flex-start;
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
}

.corporate__desc {
  align-self: flex-start;
  margin: 0;
  max-width: 700px;
  color: #d9e9fc;
  font-size: 15px;
  line-height: 23px;
}

/* Скидочные бейджи */
.corporate__discounts {
  align-self: flex-start;
  display: flex;
  gap: 12px;
}

.discount-tag {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 7px 12px 7px 8px;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 15, 46, 0.18);
}

.discount-tag__value {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  white-space: nowrap;
}

.discount-tag__condition {
  font-weight: 700;
  font-size: 11.5px;
  line-height: 16px;
}

.discount-tag--gold {
  background: linear-gradient(90deg, #ffe37a 0%, #ffb51f 100%);
  border: 1px solid rgba(255, 240, 181, 0.90);
  box-shadow: 0 6px 16px rgba(255, 140, 8, 0.34);
}

.discount-tag--gold .discount-tag__value {
  color: #08234b;
}

.discount-tag--gold .discount-tag__condition {
  color: #16345e;
}

.discount-tag--glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(191, 223, 255, 0.45);
}

.discount-tag--glass .discount-tag__value,
.discount-tag--glass .discount-tag__condition {
  color: #ffffff;
}

/* Карточка заявки */
.corporate__card {
  flex: 1 1 430px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(187, 216, 250, 0.65);
  box-shadow: 0 14px 32px rgba(0, 15, 46, 0.24);
}

.corporate__card-title {
  margin: 0;
  color: #081d42;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.corporate__card-desc {
  margin: 0;
  color: #5d7189;
  font-size: 12px;
  line-height: 17px;
}

.corporate__email {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.corporate__email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(90deg, #0a4db1 0%, #1177e8 100%);
  flex-shrink: 0;
}

.corporate__email-text {
  display: flex;
  flex-direction: column;
}

.corporate__email-label {
  color: #6a7f97;
  font-size: 9.5px;
  line-height: 13px;
}

.corporate__email-addr {
  color: #075fcb;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

.corporate__btn {
  height: 44px;
  margin-top: 4px;
  border-radius: 13px;
  background: linear-gradient(90deg, #084db2 0%, #0876e8 100%);
  box-shadow: 0 6px 16px rgba(5, 69, 178, 0.22);
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 18px;
}

.corporate__btn:hover {
  filter: brightness(1.08);
}

/* ===== Кому подходит программа ===== */
.audience {
  background: linear-gradient(90deg, #f8fbff 0%, #eaf3ff 100%);
}

.audience__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 44px; padding-bottom: 48px;
}

.audience__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience__title {
  margin: 0;
  color: #081d42;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}

.audience__subtitle {
  margin: 0;
  max-width: 900px;
  color: #52637a;
  font-size: 16px;
  line-height: 24px;
}

/* Карточки аудитории */
.audience__cards {
  display: flex;
  gap: 16px;
}

.audience-card {
  flex: 1 1 250px;
  max-width: 254px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(90deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid #d5e4f7;
  box-shadow: 0 10px 28px rgba(8, 31, 71, 0.10);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.audience-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(90deg, #0c4dae 0%, #1877ea 100%);
  border: 1px solid rgba(169, 201, 245, 0.50);
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.audience-card__icon svg {
  display: block;
}

.audience-card__title {
  color: #0a2148;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.audience-card__body {
  color: #5a6b82;
  font-size: 13px;
  line-height: 19px;
}

/* Hover: тёмная карточка */
.audience-card:hover {
  background: linear-gradient(90deg, #0a2a63 0%, #0e5bd8 100%);
  border-color: #155bd7;
}

.audience-card:hover .audience-card__icon {
  background: linear-gradient(90deg, #ffffff 0%, #d9e9ff 100%);
  border-color: rgba(255, 255, 255, 0.28);
  color: #0b4eae;
}

.audience-card:hover .audience-card__title {
  color: #ffffff;
}

.audience-card:hover .audience-card__body {
  color: #dceaff;
}

/* ===== Документы для зачисления ===== */
.enrollment {
  background: #f2faff;
}

.enrollment__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 36px; padding-bottom: 36px;
}

.enrollment__intro {
  flex: 1 1 730px;
  max-width: 730px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.enrollment__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 22px;
  background: linear-gradient(90deg, #052e73 0%, #0a70de 100%);
  flex-shrink: 0;
}

.enrollment__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enrollment__title {
  margin: 0;
  color: #05132e;
  font-weight: 800;
  font-size: 31px;
  line-height: 39px;
}

.enrollment__desc {
  margin: 0;
  color: #5e738a;
  font-size: 14.5px;
  line-height: 22px;
}

/* Карточки документов */
.enrollment__docs {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 264px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d1e3fa;
}

.doc-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e0f0ff;
  color: #0854c2;
  font-weight: 800;
  font-size: 11px;
  line-height: 15px;
  flex-shrink: 0;
}

.doc-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.doc-card__title {
  color: #05132e;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}

.doc-card__body {
  color: #5e738a;
  font-size: 10.5px;
  line-height: 15px;
}

/* ===== Как поступить на обучение ===== */
.admission {
  background: #f5f8fc;
}

.admission__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 52px; padding-bottom: 52px;
}

.admission__title {
  margin: 0;
  color: #071a3d;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
}

.admission__subtitle {
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 24px;
}

.admission__steps {
  display: flex;
  gap: 24px;
  padding-top: 10px;
}

.admission-step {
  flex: 1 1 312px;
  max-width: 312px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dce5f0;
  box-shadow: 0 9px 20px -6px rgba(5, 31, 71, 0.11);
}

.admission-step__num {
  color: #075fcc;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
}

.admission-step__title {
  color: #071a3d;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
}

.admission-step__body {
  color: #5f6b7a;
  font-size: 14px;
  line-height: 20px;
}

/* ===== Результаты и профессия ===== */
.outcomes {
  background: linear-gradient(90deg, #f7fbff 0%, #ebf4ff 50%, #fbfdff 100%);
}

.outcomes__inner {
  padding-top: 56px; padding-bottom: 56px;
}

.outcomes__cols {
  display: flex;
  gap: 24px;
}

/* Левая карточка: чему вы научитесь */
.outcomes__learn {
  flex: 1 1 648px;
  max-width: 648px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 249, 255, 0.99) 100%);
  border: 1px solid rgba(143, 184, 240, 0.72);
  box-shadow: 0 14px 30px -9px rgba(6, 28, 71, 0.15);
}

.outcomes__learn-title {
  margin: 0;
  color: #05132e;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.01em;
  padding-left: 6px;
}

.learn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 5px 8px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 245, 255, 0.96) 100%);
  border: 1px solid rgba(145, 186, 242, 0.58);
}

.learn-item__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: linear-gradient(90deg, #05296e 0%, #0a75e5 100%);
  box-shadow: 0 3px 7px -2px rgba(5, 41, 107, 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  flex-shrink: 0;
}

.learn-item__text {
  color: #0d1c36;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

/* Правая карточка: о профессии */
.outcomes__profession {
  flex: 1 1 648px;
  max-width: 648px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(101.31deg, #030f29 0%, #052b6e 55%, #0866d1 100%);
  border: 1px solid rgba(242, 191, 71, 0.62);
  box-shadow: 0 14px 30px -8px rgba(5, 31, 82, 0.25);
}

.outcomes__prof-title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.outcomes__prof-desc {
  margin: 0;
  color: #dbebff;
  font-size: 14px;
  line-height: 20px;
}

.outcomes__stats {
  display: flex;
  gap: 12px;
}

.stat-card {
  flex: 1 1 294px;
  max-width: 294px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(140, 194, 255, 0.08) 100%);
  border: 1px solid rgba(194, 219, 255, 0.42);
  box-shadow: 0 7px 16px -5px rgba(0, 10, 36, 0.28);
}

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 204, 77, 0.58);
}

.stat-card__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.stat-card__body {
  color: #dbebff;
  font-size: 11.5px;
  line-height: 16px;
}

/* ===== Нормативная база ===== */
.normative {
  background: linear-gradient(90deg, #f7fbff 0%, #ebf4ff 52%, #fafdff 100%);
}

.normative__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 52px; padding-bottom: 52px;
}

.normative__heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.normative__title {
  margin: 0;
  color: #05132e;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.012em;
}

.normative__badge {
  padding: 7px 14px;
  border-radius: 15px;
  background: linear-gradient(90deg, #051f4f 0%, #096bdb 100%);
  border: 1px solid rgba(242, 191, 71, 0.72);
  box-shadow: 0 6px 14px -4px rgba(5, 41, 107, 0.20);
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

/* Карточки нормативов */
.normative__cards {
  display: flex;
  gap: 16px;
}

.norm-card {
  flex: 1 1 318px;
  max-width: 318px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ffffff 0%, #f2f9ff 100%);
  border: 1px solid rgba(145, 184, 240, 0.72);
  box-shadow: 0 9px 20px -6px rgba(6, 31, 77, 0.14);
}

.norm-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(90deg, #041a47 0%, #054db2 55%, #0a7aeb 100%);
  border: 1px solid rgba(245, 194, 74, 0.72);
  box-shadow: 0 5px 12px -3px rgba(5, 41, 107, 0.22);
}

.norm-card__title {
  color: #05132e;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.norm-card__body {
  color: #45546e;
  font-size: 11.5px;
  line-height: 16px;
}

/* ===== Учебный план ===== */
.plan {
  background: linear-gradient(90deg, #f6faff 0%, #ebf4ff 52%, #fafdff 100%);
}

.plan__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 56px; padding-bottom: 56px;
}

.plan__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan__title {
  margin: 0;
  color: #05132e;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.013em;
}

.plan__download {
  height: 44px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(90deg, #041a47 0%, #054fb8 58%, #0a7aeb 100%);
  box-shadow: 0 8px 18px -5px rgba(5, 43, 110, 0.22);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}

.plan__download:hover {
  filter: brightness(1.08);
}

/* Таблица учебного плана */
.plan__table {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(143, 181, 237, 0.72);
  box-shadow: 0 14px 30px -9px rgba(6, 28, 71, 0.16);
}

.plan-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  min-height: 48px;
  border-bottom: 1px solid rgba(178, 207, 245, 0.38);
}

.plan-row:last-child {
  border-bottom: none;
}

.plan-row--alt {
  background: #f4f9ff;
}

.plan-row--header {
  background: linear-gradient(90deg, #031230 0%, #053d94 55%, #096edb 100%);
}

.plan-row--gold {
  background: linear-gradient(90deg, #fffbed 0%, #f2f9ff 100%);
}

.plan-row--total {
  background: linear-gradient(90deg, #031230 0%, #054099 58%, #096edb 100%);
  border-color: rgba(242, 191, 71, 0.70);
}

.plan-row__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
}

.plan-row__name {
  flex: 1;
  color: #091730;
  font-size: 13px;
  line-height: 18px;
}

.plan-row__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  flex-shrink: 0;
}

/* Шапка */
.plan-row--header .plan-row__num,
.plan-row--header .plan-row__name,
.plan-row--header .plan-row__hours {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

/* Бейджи номеров */
.badge-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  border-radius: 15px;
  background: linear-gradient(90deg, #05296b 0%, #096ede 100%);
  box-shadow: 0 4px 10px -3px rgba(5, 41, 102, 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.badge-num--gold {
  background: linear-gradient(90deg, #ffd666 0%, #d4911f 100%);
  color: #05142e;
}

/* Бейджи часов */
.badge-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  border-radius: 15px;
  background: #e8f5ff;
  border: 1px solid rgba(64, 145, 240, 0.62);
  color: #0652ba;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

.badge-hours--gold {
  background: rgba(255, 237, 184, 0.95);
  border-color: rgba(224, 156, 36, 0.62);
  color: #b8730f;
}

/* Итоговая строка */
.plan-row--total .plan-row__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}

.badge-total {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 34px;
  border-radius: 17px;
  background: linear-gradient(90deg, #ffd96e 0%, #d18c1a 100%);
  box-shadow: 0 5px 12px -3px rgba(0, 8, 31, 0.38);
  color: #05142e;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

/* ===== Консультация после учебного плана ===== */
.consult {
  background: #f4f7fb;
}

.consult__inner {
  padding-top: 36px; padding-bottom: 36px;
}

.consult__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 10px 30px rgba(8, 28, 64, 0.08);
}

.consult__copy {
  flex: 1 1 490px;
  max-width: 490px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consult__eyebrow {
  color: #0b6deb;
  font-weight: 800;
  font-size: 10.5px;
  line-height: 14px;
  letter-spacing: 0.05em;
}

.consult__title {
  margin: 0;
  color: #071d45;
  font-weight: 700;
  font-size: 29px;
  line-height: 36px;
  letter-spacing: -0.01em;
}

.consult__body {
  margin: 0;
  color: #5c6b82;
  font-size: 14px;
  line-height: 21px;
}

/* Форма */
.consult__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: 470px;
}

.consult__form .field {
  flex: 1 1 200px;
}

.field--consent {
  flex-basis: 100%;
}

.consult__btn {
  flex-basis: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 216px;
  padding: 8px 14px;
  border-radius: 14px;
  background: #f4f7fb;
  border: 1px solid #d7e2ef;
}

.field__label {
  color: #0b6deb;
  font-weight: 800;
  font-size: 8.5px;
  line-height: 12px;
  letter-spacing: 0.07em;
}

.field__input {
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 19px;
  color: #071d45;
  outline: none;
}

.field__input::placeholder {
  color: #071d45;
}

.field:focus-within {
  border-color: #0b6deb;
}

.consult__btn {
  width: 280px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(90deg, #084cb0 0%, #0874e5 100%);
  box-shadow: 0 6px 16px rgba(5, 69, 178, 0.22);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.consult__btn:hover {
  filter: brightness(1.08);
}

/* Согласие на обработку ПД */
.field--consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  width: auto;
  padding: 4px 0;
  background: transparent;
  border: none;
}

.field--consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.field__consent-text {
  font-size: 12px;
  line-height: 18px;
  color: #5c6b82;
}

.field__consent-text a {
  color: #075cc6;
}

/* Скрытый элемент (honeypot / скрытые поля) */
.d-none {
  display: none !important;
}

/* Алерты форм */
.form-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 12px;
}

.form-alert--success {
  background: #e6f7ee;
  border: 1px solid #a9e0c4;
  color: #0d6b3d;
}

.form-alert--error {
  background: #fdeaea;
  border: 1px solid #f5b7b7;
  color: #b02a2a;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 33, 0.55);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 32px 32px 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(4, 14, 33, 0.25);
}

.modal__panel--success {
  text-align: center;
  padding: 40px 32px;
}

.modal__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #1a9d5c;
  background: #e8f7ef;
}

.modal__success-text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #51607a;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #eef4fb;
  color: var(--color-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal__title {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__form .field {
  width: 100%;
}

.modal__submit {
  flex: 0 0 auto;
  width: 100%;
  height: 46px;
  margin-top: 4px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #083d91 0%, #0874e5 100%);
  box-shadow: 0 4px 10px -3px rgba(5, 41, 102, 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

/* ===== Как проходит обучение ===== */
.process {
  background: #f5f8fc;
}

.process__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 56px; padding-bottom: 56px;
}

.process__title {
  margin: 0;
  color: #071a3d;
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
}

.process__cols {
  display: flex;
  gap: 24px;
}

/* Шаги обучения */
.process__steps {
  flex: 1 1 540px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px 16px 18px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dce5f0;
  box-shadow: 0 4px 12px rgba(13, 41, 77, 0.08);
}

.p-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0570d6;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  flex-shrink: 0;
}

.p-step__num--teal {
  background: #14a1b8;
}

.p-step__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-step__title {
  color: #071a3d;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
}

.p-step__desc {
  color: #10182f;
  font-size: 14px;
  line-height: 22px;
}

/* Медиа с порталом */
.process__media {
  flex: 1 1 756px;
  max-width: 756px;
  border-radius: 16px;
  border: 1px solid #dce5f0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.62) 72%, rgba(255, 255, 255, 0) 100%),
    url("../img/43-43.jpg") center / cover no-repeat;
}

.process__portal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 30px 32px;
  min-height: 650px;
}

.process__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #075fcc;
  box-shadow: 0 1px 5px 1px rgba(255, 255, 255, 0.70);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
}

.process__name {
  color: #071a3d;
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
  text-shadow: 0 1px 4px 2px rgba(255, 255, 255, 0.90);
}

.process__heading {
  margin-top: 64px;
  color: #071a3d;
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
  text-shadow: 0 1px 6px 3px rgba(255, 255, 255, 0.95);
}

.process__sub {
  margin-top: 14px;
  color: #075fcc;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
  text-shadow: 0 1px 4px 2px rgba(255, 255, 255, 0.90);
}

.process__desc {
  color: #071a3d;
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  text-shadow: 0 1px 5px 2px rgba(255, 255, 255, 0.95);
}

/* ===== Диплом и ФРДО ===== */
.diploma {
  background: linear-gradient(90deg, #f3faff 0%, #ffffff 100%);
}

.diploma__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 56px; padding-bottom: 56px;
}

.diploma__row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Медиа диплома */
.diploma__media {
  flex: 1 1 480px;
  max-width: 480px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(204, 227, 247, 0.80);
  box-shadow: 0 8px 24px rgba(20, 61, 115, 0.12);
}

.diploma__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Текст диплома */
.diploma__copy {
  flex: 1 1 816px;
  max-width: 816px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 36px;
  border-radius: 12px;
  background: #ffffff;
}

.diploma__title {
  margin: 0;
  color: #071a3d;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}

.diploma__desc {
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 24px;
}

.diploma__benefit {
  margin: 0;
  color: #10182f;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}

.diploma__note {
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f5f8fc;
  color: #075fcc;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

/* Плашка лицензии */
.license-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f5f9ff 0%, #e7f1ff 100%);
  border: 1px solid #bfd6f2;
  box-shadow: 0 8px 22px rgba(5, 26, 61, 0.09);
}

.license-bar__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.license-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(90deg, #084db2 0%, #0877e8 100%);
  box-shadow: 0 5px 12px rgba(5, 69, 178, 0.20);
  flex-shrink: 0;
}

.license-bar__texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.license-bar__title {
  color: #081d42;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.license-bar__desc {
  color: #5c718a;
  font-size: 12px;
  line-height: 17px;
}

.license-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(90deg, #084db2 0%, #0877e8 100%);
  box-shadow: 0 7px 17px rgba(5, 69, 178, 0.24);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease;
  flex-shrink: 0;
}

.license-bar__btn:hover {
  filter: brightness(1.08);
}

/* ===== Подтверждённые преимущества ИИТ ===== */
.facts {
  background: #f5f8fc;
}

.facts__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 60px; padding-bottom: 64px;
}

.facts__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.facts__title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.facts__eyebrow {
  color: #0b6deb;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
}

.facts__title {
  margin: 0;
  color: #071d45;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

.facts__note {
  margin: 0;
  max-width: 446px;
  color: #5c6b82;
  font-size: 15px;
  line-height: 23px;
}

/* Карточки фактов */
.facts__cards {
  display: flex;
  gap: 16px;
}

.fact-card {
  flex: 1 1 312px;
  max-width: 312px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dce5f1;
  box-shadow: 0 8px 24px rgba(8, 28, 64, 0.07);
}

.fact-card--dark {
  background: #071d45;
  border-color: #071d45;
}

.fact-card__value {
  color: #071d45;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}

.fact-card__label {
  color: #0b6deb;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.05em;
}

.fact-card__label--gold {
  color: #f5b942;
}

.fact-card__body {
  color: #5c6b82;
  font-size: 13px;
  line-height: 19px;
}

/* Тёмная карточка — светлый текст */
.fact-card--dark .fact-card__value,
.fact-card--dark .fact-card__body {
  color: #ffffff;
}

.fact-card--dark .fact-card__body {
  color: #b8c6dd;
}

/* ===== Эксперт и отзывы ===== */
.experts {
  background: linear-gradient(90deg, #f7fbff 0%, #ecf5ff 50%, #fbfdff 100%);
}

.experts__inner {
  padding-top: 56px; padding-bottom: 56px;
}

.experts__cols {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Карточка эксперта */
.expert-card {
  flex: 1 1 520px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(98.88deg, #030f29 0%, #052969 55%, #0661c7 100%);
  border: 1px solid rgba(240, 189, 69, 0.62);
  box-shadow: 0 14px 30px -8px rgba(5, 31, 82, 0.25);
}

.expert-card__title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.expert-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.expert-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffcc4d;
  box-shadow: 0 7px 16px -4px rgba(0, 8, 31, 0.40);
  flex-shrink: 0;
}

.expert-card__bio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expert-card__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}

.expert-card__status {
  color: #ffcf4d;
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
}

.expert-card__text {
  color: #dbebff;
  font-size: 10.5px;
  line-height: 15px;
}

/* Доказательства */
.expert-card__proofs {
  display: flex;
  gap: 8px;
}

.proof {
  flex: 1 1 142px;
  max-width: 142px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px 8px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(140, 194, 255, 0.09) 100%);
  border: 1px solid rgba(184, 217, 255, 0.40);
  box-shadow: 0 6px 14px -5px rgba(0, 10, 36, 0.24);
}

.proof__value {
  color: #ffd14d;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

.proof__label {
  color: #dbebff;
  font-size: 10px;
  line-height: 14px;
}

/* Карточка отзывов */
.reviews-card {
  flex: 1 1 776px;
  max-width: 776px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 62%, rgba(235, 245, 255, 0.98) 100%);
  border: 1px solid rgba(140, 181, 235, 0.65);
  box-shadow: 0 14px 30px -9px rgba(6, 28, 71, 0.14);
}

.reviews-card__title {
  margin: 0;
  color: #05132e;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.reviews-card__list {
  display: flex;
  gap: 12px;
}

.review {
  position: relative;
  flex: 1 1 237px;
  max-width: 237px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(158, 194, 242, 0.70);
  box-shadow: 0 9px 20px -6px rgba(6, 31, 77, 0.13);
  overflow: hidden;
}

.review__quote {
  position: absolute;
  top: 8px;
  right: 12px;
  font-weight: 700;
  font-size: 52px;
  line-height: 71px;
  color: rgba(13, 92, 199, 0.11);
  pointer-events: none;
}

.review__rating {
  color: #f2b021;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.review__name {
  color: #05132e;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.review__role {
  color: #0654c2;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}

.review__text {
  color: #45546e;
  font-size: 13px;
  line-height: 18px;
}

/* ===== Наша команда ===== */
.team {
  background: linear-gradient(90deg, #ffffff 0%, #f1f9ff 55%, #fbfdff 100%);
}

.team__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 42px; padding-bottom: 42px;
}

.team__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team__badge {
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 14px;
  background: #05132e;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
}

.team__expertise-label {
  color: #094db0;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.team__title {
  margin: 0;
  color: #091326;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
}

.team__subtitle {
  margin: 0;
  color: #576980;
  font-size: 18px;
  line-height: 26px;
}

/* Карточки специалистов */
.team__cards {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}

.team-card {
  flex: 1 1 251px;
  max-width: 251px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #d6e5f7;
  box-shadow: 0 10px 24px rgba(6, 28, 64, 0.10);
  overflow: hidden;
}

.team-card__photo {
  position: relative;
  height: 236px;
}

.team-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 66px;
  background: linear-gradient(180deg, rgba(3, 10, 26, 0) 0%, rgba(3, 10, 26, 0.42) 100%);
}

.team-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 13px;
  background: rgba(5, 19, 46, 0.92);
  color: #ffffff;
  font-weight: 800;
  font-size: 9px;
  line-height: 13px;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 16px;
}

.team-card__num {
  color: #f5b029;
  font-weight: 800;
  font-size: 10px;
  line-height: 14px;
}

.team-card__name {
  color: #091326;
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
}

.team-card__role {
  color: #094db0;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 17px;
}

.team-card__expertise {
  color: #576980;
  font-size: 11px;
  line-height: 16px;
}

/* ===== Полезные статьи ===== */
.articles {
  background: linear-gradient(90deg, #f6fbff 0%, #edf5ff 55%, #f9fcff 100%);
}

.articles__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 56px; padding-bottom: 56px;
}

.articles__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.articles__title {
  margin: 0;
  color: #051a3d;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.008em;
}

.articles__all {
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #051f4d 0%, #0866db 100%);
  box-shadow: 0 8px 18px -6px rgba(5, 46, 122, 0.22);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}

.articles__all:hover {
  filter: brightness(1.08);
}

/* Карточки статей */
.articles__cards {
  display: flex;
  gap: 16px;
}

.article {
  flex: 1 1 318px;
  max-width: 318px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(107, 173, 255, 0.24);
  box-shadow: 0 14px 30px -8px rgba(5, 31, 77, 0.17);
  overflow: hidden;
}

.article__img {
  display: block;
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.article__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.article__title {
  color: #051a3d;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.article__link {
  color: #0557c2;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  text-decoration: none;
}

.article__arrow {
  color: #d6941f;
}

.article__link:hover {
  text-decoration: underline;
}

/* ===== Контентный блок (старый контент) ===== */
.content-block {
  background: linear-gradient(90deg, #f6faff 0%, #ecf4ff 55%, #f9fcff 100%);
}

.content-block__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 56px; padding-bottom: 56px;
  color: #304563;
}

.content-block h2 {
  margin: 16px 0 0;
  color: #06142e;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.content-block p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
}

.content-block p em {
  color: #0a2148;
  font-style: italic;
}

.content-block ul {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-block ul li {
  font-size: 15px;
  line-height: 24px;
}

.content-block ul li::marker {
  color: #075fcc;
}

/* Навыки */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 318px;
  max-width: 432px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
  border: 1px solid rgba(156, 191, 240, 0.72);
  box-shadow: 0 6px 16px -6px rgba(10, 33, 74, 0.09);
}

.skill-item::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: linear-gradient(90deg, #05296e 0%, #0a75e5 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.skill-text {
  color: #0a2148;
  font-size: 13px;
  line-height: 19px;
}

/* Таблица учебного плана (в стиле секции plan) */
.table-container {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(143, 181, 237, 0.72);
  box-shadow: 0 14px 30px -9px rgba(6, 28, 71, 0.16);
}

.table-title {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  background: linear-gradient(90deg, #031230 0%, #053d94 55%, #096edb 100%);
}

.table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table-container th,
.table-container td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  line-height: 18px;
}

.table-container thead th {
  color: #304563;
  font-weight: 700;
  background: #eef2f7;
  border-bottom: 1px solid rgba(178, 207, 245, 0.38);
}

.table-container tbody tr:nth-child(odd) {
  background: #ffffff;
}

.table-container tbody tr:nth-child(even) {
  background: #f4f9ff;
}

.table-container tbody td {
  color: #304563;
  border-bottom: 1px solid rgba(178, 207, 245, 0.38);
}

.table-container tbody tr:last-child td {
  border-bottom: none;
}

.table-container tbody td:first-child {
  color: #091730;
  font-weight: 600;
}

.table-container tbody td:nth-child(2) {
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #0652ba;
  text-align: center;
  background: #e8f5ff;
  border: 1px solid rgba(64, 145, 240, 0.62);
  border-radius: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* FAQ (старый) */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-section .faq-item {
  border-radius: 16px;
  overflow: hidden;
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 10px 16px 10px 24px;
  border: 1px solid rgba(156, 191, 240, 0.72);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
  box-shadow: 0 6px 16px -6px rgba(10, 33, 74, 0.09);
  color: #061736;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-section .faq-question::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(90deg, #062e75 0%, #096ee0 100%);
  border: 1px solid rgba(232, 184, 74, 0.75);
  box-shadow: 0 4px 9px -2px rgba(5, 43, 110, 0.19);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-section .faq-answer {
  display: none;
  padding: 14px 24px 18px;
  border: 1px solid rgba(161, 194, 240, 0.65);
  border-radius: 16px;
  margin-top: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
  box-shadow: 0 7px 18px -5px rgba(10, 33, 74, 0.11);
  color: #304563;
  font-size: 14px;
  line-height: 20px;
}

.faq-section .faq-item.faq-item--open .faq-question {
  background: linear-gradient(90deg, #051b41 0%, #0649ab 58%, #0a6bdb 100%);
  border-color: rgba(110, 176, 255, 0.55);
  color: #ffffff;
}

.faq-section .faq-item.faq-item--open .faq-question::after {
  content: "−";
  background: linear-gradient(90deg, #ffd66b 0%, #d49121 100%);
  border: none;
  box-shadow: 0 4px 10px -2px rgba(8, 20, 46, 0.26);
  color: #051733;
}

.faq-section .faq-item.faq-item--open .faq-answer {
  display: block;
}

/* ===== Финальная заявка ===== */
.final-cta {
  background: linear-gradient(90deg, #f5faff 0%, #ffffff 100%);
}

.final-cta__inner {
  padding-top: 48px; padding-bottom: 48px;
}

.final-cta__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 48px;
  border-radius: 24px;
  background: linear-gradient(90deg, #05132e 0%, #062961 55%, #054fa8 100%);
  border: 1px solid rgba(92, 171, 255, 0.40);
  box-shadow: 0 18px 36px -8px rgba(5, 31, 71, 0.22);
}

.final-cta__copy {
  flex: 1 1 760px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-cta__title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  max-width: 720px;
}

.final-cta__desc {
  margin: 0;
  color: rgba(224, 240, 255, 0.92);
  font-size: 16px;
  line-height: 24px;
  max-width: 690px;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}

.final-cta__btn {
  height: 52px;
  padding: 0 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
}

.final-cta__btn--primary {
  background: linear-gradient(180deg, #ffdb63 0%, #f59c14 100%);
  box-shadow: 0 8px 18px -4px rgba(255, 171, 31, 0.32);
  color: #051a3d;
}

.final-cta__btn--primary:hover {
  filter: brightness(1.06);
}

.final-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.final-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.final-cta__diploma {
  flex: 1 1 460px;
  max-width: 460px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== С кем мы работаем ===== */
.clients {
  background: linear-gradient(90deg, #f8fbff 0%, #eaf3ff 100%);
}

.clients__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 44px; padding-bottom: 42px;
}

.clients__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.clients__title {
  margin: 0;
  color: #081d42;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
}

.clients__subtitle {
  margin: 0;
  color: #53677f;
  font-size: 16px;
  line-height: 24px;
}

/* Карточки клиентов */
.clients__cards {
  display: flex;
  gap: 20px;
}

.client-card {
  flex: 1 1 248px;
  max-width: 248px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d2e2f6;
  box-shadow: 0 9px 24px rgba(5, 26, 61, 0.09);
}

.client-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(90deg, #0a4cad 0%, #1479ea 100%);
  box-shadow: 0 5px 12px rgba(8, 69, 178, 0.20);
}

.client-card__title {
  color: #0a2148;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.client-card__body {
  color: #60728a;
  font-size: 12px;
  line-height: 18px;
}

/* Полоса преимуществ */
.clients__benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 20px;
  background: linear-gradient(90deg, #071b3f 0%, #0b4faf 100%);
}

.clients__benefit {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(90deg, #040e21 0%, #06244d 100%);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 34px; padding-bottom: 16px;
}

.footer__cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Карточка «Об институте» */
.footer__about {
  flex: 0 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(54, 84, 126, 0.80);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.16);
}

.footer__title {
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
}

.footer__title--gold {
  color: #ffc94a;
  font-weight: 800;
  font-size: 15px;
  line-height: 21px;
}

.footer__text {
  margin: 0;
  color: rgba(199, 213, 232, 0.78);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 21px;
}

/* Колонки навигации */
.footer__col {
  flex: 1 1 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
}

.footer__col .footer__text {
  font-size: 13px;
  line-height: 23px;
}

/* Контакты */
.footer__contacts {
  flex: 1 1 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(20, 97, 204, 0.26) 0%, rgba(255, 255, 255, 0.07) 100%);
  border: 1px solid rgba(78, 130, 199, 0.80);
  box-shadow: 0 10px 28px -10px rgba(5, 64, 163, 0.22);
}

.footer__text--contacts {
  display: flex;
  flex-direction: column;
  line-height: 22px;
}

.footer__phone {
  font-weight: 800;
  font-size: 17px;
  line-height: 22px;
  color: #ffffff;
}

.footer__email {
  font-weight: 700;
  font-size: 13.5px;
  line-height: 22px;
  color: #67b8ff;
}

.footer__addr {
  font-weight: 500;
  font-size: 12.5px;
  line-height: 22px;
  color: #d6e2f2;
}

.footer__dist {
  font-weight: 700;
  font-size: 12.5px;
  line-height: 22px;
  color: #ffc94a;
}

/* Разделитель */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 194, 71, 0.55) 0%, rgba(87, 168, 255, 0.50) 45%, rgba(255, 255, 255, 0.10) 100%);
}

/* Юридическая строка */
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  color: rgba(175, 194, 220, 0.65);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 16px;
}

.footer__policies {
  color: rgba(184, 203, 227, 0.65);
  font-weight: 600;
  font-size: 11.5px;
  line-height: 16px;
}

/* Ссылки в футере */
.footer-link {
  color: rgba(199, 213, 232, 0.78);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer__phone .footer-link {
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  line-height: 22px;
}

.footer__email .footer-link {
  color: #67b8ff;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 22px;
}

/* ===== Cookie-уведомление ===== */
#cookie-notification {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 900;
  display: none;
  max-width: 580px;
  padding: 15px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

#cookie-notification p {
  margin: 0 0 15px;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

#cookie-notification .cookie-link {
  color: #004064;
  text-decoration: none;
}

#cookie-notification .btn {
  width: auto;
  height: 44px;
  padding: 0 28px;
}

/* ===== Фиксированный блок соцсетей (compact rail) ===== */
.social-float {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dce5f0;
  box-shadow: 0 10px 20px -4px rgba(5, 28, 69, 0.20);
}

.social-float__btn {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: filter 0.15s ease, transform 0.12s ease;
}

.social-float__btn:hover,
.social-float__btn:focus {
  filter: brightness(1.08);
  transform: translateY(-2px);
  outline: 0;
}

.social-float__btn:active {
  transform: translateY(0) scale(0.98);
}

.social-float__btn--max {
  background: linear-gradient(90deg, #5e4ff7 0%, #086ef0 100%);
  box-shadow: 0 5px 12px rgba(23, 54, 171, 0.25);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 18px;
  letter-spacing: 0.01em;
}

.social-float__btn--tg {
  background: linear-gradient(90deg, #26a8e0 0%, #0d6ec4 100%);
  box-shadow: 0 5px 12px rgba(10, 97, 173, 0.23);
}

.social-float__btn--wa {
  background: linear-gradient(90deg, #27c24a 0%, #128c3a 100%);
  box-shadow: 0 5px 12px rgba(18, 140, 58, 0.25);
}

.social-float__btn--wa svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-float__btn--tg svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 991px) {
  .social-float {
    top: 80%;
    right: 8px;
    transform: translateY(-50%);
  }
}

/* ============================================================
   АДАПТИВ
   ============================================================ */

/* ---- Планшет (до 1024px) ---- */
@media (max-width: 1024px) {
  /* Шапка: скрываем лишние действия */
  .contact-card,
  .btn--messenger,
  .btn--telegram {
    display: none;
  }
}

/* ---- Телефон (до 768px) ---- */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Однорядная шапка в мобильном — меньше компенсация */
  main {
    padding-top: 86px;
  }

  /* Бургер */
  .header__burger {
    display: flex;
  }

  /* Компактные иконки */
  .header__icons {
    display: flex;
  }

  /* Мобильное меню */
  .mobile-menu {
    display: block;
  }

  .brand {
    width: auto;
    flex: 1;
  }

  .brand__name {
    font-size: 13px;
    line-height: 16px;
  }

  .header__actions {
    gap: 12px;
  }

  .btn--primary {
    width: auto;
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  /* Десктопные навигация и действия скрыты — всё в мобильной панели */
  .nav {
    display: none;
  }

  .header__actions {
    display: none;
  }
}

/* ---- До 1024px: сетки → 2 колонки, крупные пары → стопкой ---- */
@media (max-width: 1024px) {
  /* Hero */
  .hero__inner {
    flex-direction: column;
  }

  .hero__content {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .hero__media {
    flex: 0 1 auto;
    aspect-ratio: 4 / 4;
  }

  /* Дистанционное */
  .distance__panel {
    flex-direction: column;
    align-items: stretch;
  }

  .distance__message {
    flex: 0 1 auto;
    max-width: 650px;
    width: 100%;
  }

  .distance__benefits {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .benefit {
    flex: 1 1 220px;
    width: auto;
  }

  /* Корпоративное */
  .corporate__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .corporate__offer,
  .corporate__card {
    flex: 0 1 auto;
    max-width: 100%;
  }

  /* Скидки остаются в одну строку, без переноса */
  .corporate__discounts {
    flex-wrap: nowrap;
  }

  /* Аудитория */
  .audience__cards {
    flex-wrap: wrap;
  }

  .audience-card {
    flex: 1 1 calc(33.333% - 12px);
    max-width: none;
  }

  /* Зачисление */
  .enrollment__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .enrollment__intro {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .enrollment__docs {
    flex-wrap: wrap;
  }

  /* Поступление */
  .admission__steps {
    flex-wrap: wrap;
  }

  .admission-step {
    flex: 1 1 calc(50% - 12px);
    max-width: none;
  }

  /* Результаты */
  .outcomes__cols {
    flex-direction: column;
  }

  .outcomes__learn,
  .outcomes__profession {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .outcomes__stats {
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1 1 calc(50% - 6px);
    max-width: none;
  }

  /* Нормативная база */
  .normative__cards {
    flex-wrap: wrap;
  }

  .norm-card {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }

  /* Консультация */
  .consult__card {
    flex-direction: column;
    align-items: stretch;
  }

  .consult__copy {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .consult__form {
    flex-wrap: wrap;
  }

  /* Как проходит обучение */
  .process__cols {
    flex-direction: column;
  }

  .process__steps {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .process__media {
    flex: 0 1 auto;
    max-width: 100%;
  }

  /* Диплом */
  .diploma__row {
    flex-direction: column;
  }

  .diploma__media,
  .diploma__copy {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .license-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .license-bar__btn {
    width: 100%;
  }

  /* Факты */
  .facts__cards {
    flex-wrap: wrap;
  }

  .fact-card {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }

  .facts__header {
    flex-direction: column;
    gap: 16px;
  }

  .facts__note {
    max-width: 100%;
  }

  /* Эксперт и отзывы */
  .experts__cols {
    flex-direction: column;
  }

  .expert-card,
  .reviews-card {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .reviews-card__list {
    flex-wrap: wrap;
  }

  .review {
    flex: 1 1 calc(50% - 6px);
    max-width: none;
  }

  /* Команда */
  .team__cards {
    flex-wrap: wrap;
  }

  .team-card {
    flex: 1 1 calc(33.333% - 12px);
    max-width: none;
  }

  /* Статьи */
  .articles__cards {
    flex-wrap: wrap;
  }

  .article {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }

  /* Финальная заявка */
  .final-cta__banner {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__copy {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .final-cta__diploma {
    flex: 0 1 auto;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Клиенты */
  .clients__cards {
    flex-wrap: wrap;
  }

  .client-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: none;
  }

  .clients__benefits {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Футер */
  .footer__cols {
    flex-wrap: wrap;
  }

  .footer__about,
  .footer__col,
  .footer__contacts {
    flex: 1 1 calc(50% - 20px);
    max-width: none;
  }
}

/* ---- До 768px: всё в 1 колонку, таблицы в карточки ---- */
@media (max-width: 768px) {
  /* Типографика секций */
  .hero__title {
    font-size: 31px;
    line-height: 36px;
  }

  .distance__title {
    font-size: 24px;
    line-height: 32px;
  }

  .corporate__title,
  .audience__title,
  .normative__title,
  .articles__title,
  .team__title {
    font-size: 28px;
    line-height: 36px;
  }

  .outcomes__learn-title,
  .outcomes__prof-title,
  .reviews-card__title,
  .expert-card__title {
    font-size: 24px;
    line-height: 32px;
  }

  .enrollment__title,
  .plan__title {
    font-size: 26px;
    line-height: 34px;
  }

  .admission__title {
    font-size: 28px;
    line-height: 36px;
  }

  .consult__title,
  .diploma__title {
    font-size: 24px;
    line-height: 32px;
  }

  .facts__title {
    font-size: 28px;
    line-height: 36px;
  }

  .final-cta__title {
    font-size: 26px;
    line-height: 34px;
  }

  /* Hero: ценовое предложение */
  .hero__media {
    aspect-ratio: 4 / 4;
  }

  .price-offer {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .price-offer__price {
    flex: 1 1 auto;
    min-width: 0;
  }

  .price-offer__value {
    font-size: 26px;
    line-height: 32px;
  }

  .price-offer__old {
    font-size: 13px;
    line-height: 18px;
  }

  .price-offer__discount {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
  }

  .price-offer__condition {
    font-size: 11px;
    line-height: 14px;
  }

  .hero__facts {
    flex-direction: column;
  }

  .fact {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn--cta,
  .hero__actions .btn--ghost {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .hero__media-content {
    padding-left: 40px;
    padding-bottom: 48px;
  }

  /* Дистанционное */
  .distance__heading {
    flex-wrap: wrap;
  }

  .distance__benefits {
    flex-direction: column;
  }

  .benefit {
    flex: 0 1 auto;
    width: 100%;
  }

  /* Корпоративное */
  .discount-tag {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }

  /* Аудитория */
  .audience-card {
    flex: 1 1 100%;
  }

  /* Зачисление */
  .enrollment__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .enrollment__icon {
    width: 72px;
    height: 72px;
  }

  .enrollment__icon svg {
    width: 40px;
    height: 40px;
  }

  .enrollment__docs {
    flex-direction: column;
  }

  .doc-card {
    width: 100%;
  }

  /* Поступление */
  .admission-step {
    flex: 1 1 100%;
  }

  /* Результаты */
  .outcomes__stats {
    flex-direction: column;
  }

  .stat-card {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  /* Нормативная база */
  .norm-card {
    flex: 1 1 100%;
  }

  /* Учебный план */
  .plan__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .plan__download {
    width: 100%;
  }

  .plan-row {
    gap: 8px;
    padding: 0 8px;
  }

  .plan-row__num,
  .plan-row__hours {
    width: 48px;
  }

  .badge-num,
  .badge-hours,
  .badge-total {
    width: 48px;
  }

  /* Консультация */
  .consult__form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .field,
  .consult__btn {
    width: 100%;
  }

  /* Как проходит обучение */
  .process__media {
    min-height: 420px;
  }

  .process__portal {
    padding: 20px;
  }

  /* Диплом */
  .diploma__copy {
    padding: 20px;
  }

  /* Факты */
  .fact-card {
    flex: 1 1 100%;
  }

  /* Эксперт и отзывы */
  .expert-card__profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .expert-card__proofs {
    flex-direction: column;
  }

  .proof {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .review {
    flex: 1 1 100%;
    max-width: none;
  }

  /* Команда */
  .team-card {
    flex: 1 1 calc(50% - 8px);
  }

  .team__eyebrow-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Статьи */
  .articles__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .articles__all {
    width: 100%;
  }

  .article {
    flex: 1 1 100%;
    max-width: none;
  }

  /* Контентный блок */
  .content-block__inner {
    padding-top: 32px;
  }

  .skill-item {
    flex: 1 1 100%;
    max-width: none;
  }

  .table-container {
    overflow-x: auto;
  }

  .table-container table {
    min-width: 520px;
  }

  /* Клиенты */
  .client-card {
    flex: 1 1 calc(50% - 10px);
  }

  .clients__benefits {
    flex-direction: column;
    align-items: flex-start;
  }

  .clients__benefit {
    white-space: normal;
  }

  /* Футер */
  .footer__about,
  .footer__col,
  .footer__contacts {
    flex: 1 1 100%;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---- До 480px: мелкие уточнения ---- */
@media (max-width: 480px) {
  .hero__media {
    aspect-ratio: 4 / 4;
  }

  .brand__logo svg {
    width: 24px;
    height: 24px;
  }

  .brand__name {
    font-size: 12px;
  }

  .btn--primary {
    padding: 0 14px;
    font-size: 12px;
  }

  .team-card {
    flex: 1 1 100%;
  }

  .client-card {
    flex: 1 1 100%;
  }

  .distance__panel {
    padding: 20px;
  }

  .corporate__card {
    padding: 16px;
  }

  .final-cta__banner {
    padding: 24px 20px;
  }
}

/* ============================================================
   ДОРАБОТКИ АДАПТИВА
   ============================================================ */

/* ---- Планшет: контент не прилипает к краям ---- */
@media (max-width: 1024px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  /* distance__message: не растягивается на всю ширину */
  .distance__message {
    align-self: flex-start;
  }
}

/* ---- Телефон: контент не прилипает к краям ---- */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Нормативная база: заголовок колонкой */
  .normative__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Сотрудники: сетка, карточки не едут */
  .team__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .team-card {
    width: 100%;
    max-width: none;
  }

  /* Форма консультации: дочерние не тянутся по высоте */
  .consult__form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .consult__form .field {
    flex: 1 1 100%;
    height: auto;
  }

  .consult__btn {
    height: 52px;
  }

  /* distance__message: не растягивается */
  .distance__message {
    flex: 0 1 auto;
    align-self: flex-start;
  }

  /* process__media: фиксированная высота, контент не растягивается */
  .process__media {
    height: 420px;
    min-height: 0;
  }

  /* final-cta: кнопки в колонку */
  .final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__btn {
    width: 100%;
  }
}

/* ---- Мелкие экраны ---- */
@media (max-width: 480px) {
  .team__cards {
    grid-template-columns: 1fr;
  }
}