/* ===== БАЗА ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.page {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", Arial, sans-serif;
  background: #eef2f9;
  color: #0b1020;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== TOPBAR ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 253, 0.95);
  border-bottom: 1px solid rgba(179, 192, 224, 0.5);
}

.topbar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 100px;
}

.brand__logo {
  height: 50px;
}

.brand__text {
  font-size: 15px;
  font-weight: 600;
  color: #0b1020;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  color: #6b7690;
  font-weight: 500;
  transition:
    color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

/* лёгкая “таблетка” при ховере */
.nav a:hover {
  color: #0b1020;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* активный пункт меню */
.nav__link--active {
  color: #1d4ed8;
  background: #ffffff;
  box-shadow:
    0 8px 22px rgba(37, 99, 235, 0.18),
    0 0 0 1px rgba(191, 219, 254, 0.9);
  transform: translateY(-1px);
}

/* убираем старую линию под текстом */
.nav a::after {
  content: none;
}

/* ===== КНОПКА — ОБЪЁМНАЯ ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform .22s cubic-bezier(.22,1,.36,1),
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease;
}

/* синяя основная кнопка (Связаться) */
.btn--primary {
  background: linear-gradient(135deg, #2f7bff, #1956ff);
  color: #ffffff;
  box-shadow:
    0 14px 35px rgba(25, 86, 255, 0.65),
    0 0 0 1px rgba(142, 185, 255, 0.4);
}

/* лёгкий блик сверху, чтобы выглядела "толстой" */
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.6),
    transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

/* hover — настоящая 3D-кнопка */
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 45px rgba(25, 86, 255, 0.75),
    0 0 0 1px rgba(173, 205, 255, 0.7);
}

/* клик — немного утапливается */
.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 10px 26px rgba(25, 86, 255, 0.55),
    0 0 0 1px rgba(120, 165, 255, 0.7);
}



/* ===== MAIN / HERO ===== */

.main {
  padding: 24px 0 40px;
}

/* контейнер-герой: один большой блок */
.hero {
  /* вместо max-width делаем адаптивную ширину */
  width: min(1400px, 100% - 80px);
  margin: 32px auto 40px;

  padding: 50px 50px 56px;
  border-radius: 40px;
  background: radial-gradient(circle at 10% 0%, #2e6cff 0%, #071024 55%, #020712 100%);
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(4, 13, 40, 0.65);

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* верхняя часть — текст по центру */

.hero__content {
  max-width: 880px;
  text-align: center;
}

.hero__title {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero__subtitle {
  margin: 0 auto 24px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(230, 238, 255, 0.9);
}

.hero__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__tags span {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(10, 30, 82, 0.85);
  border: 1px solid rgba(129, 170, 255, 0.7);
}

/* нижняя часть — две видео-карточки */

.hero__videos {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.video-card {
  width: 320px;
  background: linear-gradient(145deg, #07152f, #0b2145);
  padding: 16px;
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(2, 10, 34, 0.85);
}

.video-card__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9fb8ff;
  margin-bottom: 12px;
}

.video-card__video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 10 / 12; /* чтобы не прыгала высота */
  background: black;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ===== АДАПТИВ: ПЛАНШЕТЫ ===== */
@media (max-width: 960px) {
  .topbar__inner {
    padding-inline: 14px;
    gap: 12px;
  }

  /* меню убираем, оставляем логотип + кнопку */
  .nav {
    display: none;
  }

  .hero {
    width: 100%;
    margin: 16px 0 28px;
    padding: 32px 18px 40px;
    border-radius: 28px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .video-card {
    width: 100%;
    max-width: 380px;
  }
}

/* ===== АДАПТИВ: ТЕЛЕФОНЫ ===== */
@media (max-width: 640px) {
  .topbar__inner {
    padding-inline: 10px;
  }

  /* на очень узких экранах убираем текст рядом с логотипом,
     чтобы не сталкивался с кнопкой «Связаться» */
  .brand__text {
    display: none;
  }

  .btn--primary {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 26px 14px 34px;
    border-radius: 24px;
  }

  .hero__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero__tags span {
    font-size: 12px;
    padding: 5px 11px;
  }

  .hero__videos {
    margin-top: 26px;
    gap: 16px;
  }

  .video-card {
    padding: 12px 12px 14px;
    border-radius: 22px;
  }

  .video-card__label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .video-card__video-wrapper {
    border-radius: 18px;
  }
}



















/* ===== СЕКЦИЯ О КОМПАНИИ — МИНИМАЛИСТИЧНАЯ ===== */

.company-info {
  padding: 72px 0 80px;
  background: #f3f5fc; /* спокойный светлый фон */
}

.company-info__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.company-info__title {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: #2563ff; /* фирменный синий */
}

.company-info__subtitle {
  margin: 0 auto 34px;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: #5a647e;
}

/* аккуратная сетка карточек */
.company-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}

/* карточки: чистые, без лишних эффектов */
.info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 22px 22px;
  text-align: left;
  border: 1px solid rgba(196, 205, 231, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* лёгкий hover, без «шума» */
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(144, 167, 238, 0.9);
  background-color: #fdfefe;
}

/* ===== АДАПТИВ ДЛЯ СЕКЦИИ О КОМПАНИИ ===== */

@media (max-width: 960px) {
  .company-info {
    padding: 52px 0 60px;
  }

  .company-info__inner {
    padding: 0 18px;
  }

  .company-info__title {
    font-size: 26px;
  }

  .company-info__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .company-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .info-card {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 640px) {
  .company-info__inner {
    padding: 0 14px;
  }

  .company-info__title {
    font-size: 22px;
  }

  .company-info__subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .company-info__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card {
    border-radius: 18px;
    padding: 16px 14px 18px;
  }
}









/* ===== МЕТОДОЛОГИЯ ВНЕДРЕНИЯ — КОНЦЕНТРИЧЕСКИЕ КРУГИ ===== */

.steps-diagram {
  padding: 80px 0 90px;
  background: #f4f6fd;
}

.steps-diagram__container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.steps-diagram__title {
  font-size: 32px;
  font-weight: 700;
  color: #246dff;
  margin-bottom: 10px;
}

.steps-diagram__subtitle {
  max-width: 780px;
  margin: 0 auto 44px;
  font-size: 16px;
  line-height: 1.65;
  color: #5a647e;
}

/* ЛЕЙАУТ: СЛЕВА КРУГИ, СПРАВА ТЕКСТ */

.steps-diagram__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* ЛЕВАЯ ЧАСТЬ — КОНЦЕНТРИЧЕСКИЕ КРУГИ В СТИЛЕ PNG */

.steps-diagram__visual {
  flex-shrink: 0;
  width: 360px;
  max-width: 100%;
}

.steps-diagram__video {
  width: 100%;
  display: block;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}


/* ПРАВАЯ ЧАСТЬ — ШАГИ С ПУНКТИРНЫМИ ЛИНИЯМИ */

.steps-diagram__text {
  text-align: left;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* один шаг */
.step-line {
  position: relative;
  padding-left: 130px; /* место под пунктир */
}

/* точка у круга */
.step-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.18);
}

/* пунктирная линия от круга к тексту (как в примере) */
.step-line::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 110px;
  border-top: 1px dashed rgba(148, 163, 184, 0.9);
}

.step-line h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1020;
}

.step-line p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #606a82;
}

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

@media (max-width: 960px) {
  .steps-diagram {
    padding: 60px 0 70px;
  }

  .steps-diagram__layout {
    flex-direction: column;
    gap: 40px;
  }

  .steps-diagram__visual {
    width: 260px;
    height: 260px;
  }

  .steps-ring--4 { width: 260px; height: 260px; }
  .steps-ring--3 { width: 220px; height: 220px; }
  .steps-ring--2 { width: 180px; height: 180px; }
  .steps-ring--1 { width: 140px; height: 140px; }

  .steps-diagram__text {
    max-width: 100%;
  }

  .step-line {
    padding-left: 110px;
  }

  .step-line::after {
    width: 90px;
  }
}

@media (max-width: 640px) {
  .steps-diagram__container {
    width: min(100% - 28px, 520px);
  }

  .steps-diagram__title {
    font-size: 24px;
  }

  .steps-diagram__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .steps-diagram__visual {
    width: 220px;
    height: 220px;
  }

  .steps-ring--4 { width: 220px; height: 220px; }
  .steps-ring--3 { width: 185px; height: 185px; }
  .steps-ring--2 { width: 150px; height: 150px; }
  .steps-ring--1 { width: 115px; height: 115px; }

  .steps-diagram__text {
    gap: 20px;
  }

  .step-line {
    padding-left: 26px;
  }

  .step-line::after {
    display: none; /* на телефоне убираем пунктир, чтобы не перегружать */
  }
}



@media (max-width: 960px) {
  .steps-diagram__layout {
    flex-direction: column;
    gap: 40px;
  }

  .steps-diagram__visual {
    width: 320px;
  }
}

@media (max-width: 640px) {
  .steps-diagram__visual {
    width: 260px;
  }
}




/* ===== ФИНАЛЬНЫЙ CTA-БЛОК ===== */

.cta-final {
  position: relative;
  margin-top: 0;
  padding: 80px 16px 90px;
  background: linear-gradient(135deg, #0252cf 0%, #5884bb 70%);
  color: #ffffff;
  overflow: hidden;
}

/* фоновые концентрические круги */
.cta-final::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 90px)
    ;
  background-size: 650px 650px;
  opacity: 0.45;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__title {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.cta-final__subtitle {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* белая кнопка на тёмном фоне */
.btn.btn--white {
  background: #ffffff;
  color: #0b1120;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.btn.btn--white:hover {
  background: #e5ecff;
  color: #020617;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.55);
  transform: translateY(-1px);
}

/* адаптив */

@media (max-width: 768px) {
  .cta-final {
    padding: 60px 14px 70px;
  }

  .cta-final__title {
    font-size: 24px;
  }

  .cta-final__subtitle {
    font-size: 14px;
  }
}






/* ===== ФИНАЛЬНЫЙ CTA-БЛОК — КОМПАКТНЫЙ И АККУРАТНЫЙ ===== */

.cta-final {
  position: relative;
  padding: 48px 16px 60px;       /* было 80–90px — уменьшил */
  background: linear-gradient(135deg, #1f6bff 0%, #3f84ff 60%);
  color: #ffffff;
  border-radius: 32px;           /* скругление сверху — делает премиально */
  width: min(1100px, 100% - 40px);
  margin: 40px auto 60px auto;   /* чтобы не растягивался на всю ширину */
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(36, 109, 255, 0.35);
}

/* Концентрические круги — мягкие */
.cta-final::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle,
      rgba(255,255,255,0.12) 0%,
      rgba(255,255,255,0.06) 40%,
      transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__title {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-final__subtitle {
  font-size: 15px;
  margin-bottom: 26px;
  opacity: 0.95;
}

.btn.btn--white {
  background: #ffffff;
  color: #0b1120;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.btn.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

/* Адаптив */
@media (max-width: 640px) {
  .cta-final {
    padding: 38px 14px 46px;
    border-radius: 24px;
  }
  .cta-final__title {
    font-size: 22px;
  }
  .cta-final__subtitle {
    font-size: 14px;
  }
}









.card {
  box-shadow: 0 20px 60px rgba(30, 60, 120, 0.08);
}




.section {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}



.hero {
  box-shadow:
    inset 0 0 120px rgba(255,255,255,0.08),
    0 20px 40px rgba(0,0,0,0.08);
}
background: radial-gradient(circle at 50% -20%, #4f8aff, #0a1a4f 70%);






