/* ================================================
   ГЕРОЙ-СЕКЦИЯ — переработано
   ================================================ */
.former-swiper {
  background: #0d2c5f;
  color: white;
  padding: 56px 0 48px;
  overflow: hidden;
}

.rectangle-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Левая колонка — текст */
.rectangle-block-content {
  flex: 1 1 0;
  min-width: 0; /* ключ: не выпирает за flex-контейнер */
}

.rectangle-block-content-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.rectangle-block-content-paragraph {
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  margin-bottom: 36px;
  color: #b8c8e8;
  max-width: 480px;
}

.rectangle-block-content-button {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rectangle-block-content-button-audit-free,
.rectangle-block-content-button-our-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.rectangle-block-content-button-audit-free {
  gap: 8px;
  background: #00C2D2;
  color: #fff;
}
.rectangle-block-content-button-audit-free p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.rectangle-block-content-button-audit-free img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.rectangle-block-content-button-audit-free:hover {
  background: #01b5c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 194, 210, 0.35);
}

.rectangle-block-content-button-our-services {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.rectangle-block-content-button-our-services p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.rectangle-block-content-button-our-services:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Правая колонка — картинка */
.rectangle-block-img {
  flex: 0 0 46%;
  max-width: 580px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  display: block;
}

/* Планшет */
@media (max-width: 900px) {
  .former-swiper {
    padding: 40px 0;
  }
  .rectangle-block {
    gap: 28px;
  }
  .rectangle-block-img {
    flex: 0 0 42%;
  }
}

/* Мобильный */
@media (max-width: 640px) {
  .former-swiper {
    padding: 36px 0 40px;
  }
  .rectangle-block {
    flex-direction: column;
    gap: 28px;
  }
  .rectangle-block-content {
    text-align: center;
  }
  .rectangle-block-content-paragraph {
    max-width: 100%;
  }
  .rectangle-block-content-button {
    justify-content: center;
  }
  .rectangle-block-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }
}



/* СТРАНИЦА С УСЛУГАМИ (НАШИ ОСНОВНЫЕ УСЛУГИ) */
/* Секция "Наши основные услуги" */



.main-services {
  padding: 40px 0px 0px 0px;
  background-color: var(--color-white);
}
.section-title{ 
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  color: #0a2463;
}
.section-paragraph{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4a5565;
  width: 580px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Карточка услуги */
.service-card {
  background: white;
  padding: 32px;
  margin: 20px 0 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease ;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #00d1ff;
}

/* Иконка */
.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon img {
  width: 100%;
  height: auto;
  max-width: 48px;
  filter: grayscale(100%) opacity(0.8);
  transition: filter  0.3s ease;
  
}
.arrow-right-blue{
  transition: transform  0.3s ease;
}

.service-card:hover .service-card-icon img {
  filter: grayscale(0%) opacity(1);
}
.service-card:hover .arrow-right-blue{
  transform: translateX(10px);
}
/* Заголовок */
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-dark-blue);
}

/* Описание */
.service-card-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Ссылка */
.service-card-link {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 4px 0;
}

.service-card-link__container{
  display: flex;
}


.service-card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-teal);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.service-card-link:hover::after {
  transform: scaleX(1);
}


/* <!-- СТРАНИЦА С КАРТОЧКАМИ ВЛЕВО ВПРАВО (Наши основные услуги) --> */

/* Секция "Что такое аутсорсинг" */
.what-is-outsourcing {
  padding: 80px 0;
  background-color: var(--color-white);
}

.what-is-outsourcing-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark-blue);
}


/* =========================== */
/*  ПОЛНЫЙ CSS ДЛЯ СЕКЦИИ      */
/*  "ПОЧЕМУ ВЫБИРАЮТ НАС"      */
/* =========================== */

.why-choose-us {
  padding: 20px 0;
  background-color: var(--color-white);
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Основной контейнер: текст слева, картинка справа */
.why-choose-us-block {
  display: grid;
  grid-template-columns: 1fr 500px;   /* левая колонка гибкая, правая 500px */
  grid-template-rows: auto auto auto; /* три строки под заголовок, параграф, преимущества */
  gap: 0 60px;                        /* отступ только между колонками */
  align-items: center;
}

/* ----- Заголовок ----- */
.why-choose-us-block-title {
  grid-column: 1;
  grid-row: 1;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark-blue);
}

/* ----- Параграф ----- */
.why-choose-us-block-paragraph {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ----- Блок с преимуществами (горизонтально) ----- */
.why-choose-us-block-points {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: row;          /* элементы в ряд */
  flex-wrap: wrap;              /* перенос на маленьких экранах */
  gap: 24px;
}

/* Один пункт преимущества (иконка + текст) */
.why-choose-us-block-points-elements {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;              /* минимальная ширина 200px, растягиваются */
}

/* Иконка-кружок */
.why-choose-us-block-points-elements a {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;        /* на всякий случай убираем подчёркивание */
}

/* Галочка внутри кружка */
.why-choose-us-block-points-elements a::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Текст преимущества */
.why-choose-us-block-points-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* ----- Картинка справа ----- */
.why-choose-us-block-img {
  grid-column: 2;
  grid-row: 1 / 4;             /* занимает все три строки */
  flex: unset;                 /* сброс, если было наследование */
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-choose-us-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* СЕКЦИЯ (КАК МЫ РАБОТАЕМ: 4 ПРОСТЫХ ШАГА) */

.work-steps {
  padding: 80px 0 40px 0;
  background-color: var(--color-white);
}

.simple-work-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.simple-work-steps-header {
  text-align: center;
  margin-bottom: 60px;
}

.simple-work-steps-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-dark-blue);
}

.simple-work-steps-paragraph {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.simple-works-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding: 40px 0;
}

.simple-works-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 0;
}

.simple-works-card-pin {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 0 10px;
}

.simple-works-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 12px;
  line-height: 1;
}

.simple-works-card-parametr {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
}

.simple-works-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* СЕКЦИЯ (РАБОТАЕМ ПО ВСЕМУ МИРУ) */
/* СЕКЦИЯ (РАБОТАЕМ ПО ВСЕМУ МИРУ) */

.rectangle-blue-2 {
  background: linear-gradient(135deg, #0a1f5c 0%, #0d3080 40%, #0a6b8a 100%);
  color: white;
  padding: 50px 0;
}

.rectangle-block-2-world {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rectangle-block-2-all-world {
  display: flex;
  align-items: center;
  gap: 60px;
}

.rectangle-block-2-all-world-content {
  flex: 1;
}

/* Плашка "Международное присутствие" */
.international-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.international-badge img {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.rectangle-block-2-all-world-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.rectangle-block-2-all-world-paragraph {
  font-size: 1rem;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 480px;
}

.rectangle-block-2-all-world-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rectangle-block-2-all-world-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.rectangle-block-2-all-world-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.rectangle-block-2-all-world-card-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00C2D2;
  margin-bottom: 4px;
  line-height: 1;
}

.rectangle-block-2-all-world-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.rectangle-block-2-all-world-img {
  flex: 0 0 400px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.rectangle-block-2-all-world-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* СЕКЦИЯ (ИСТОРИЯ КОМПАНИИ И ТАЙМЛАЙН) */

.history-company {
  padding: 40px 0;
  background-color: var(--color-white);
}

.history-company-and-timeline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.history-company-block {
  text-align: center;
  margin-bottom: 60px;
}

.history-company-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark-blue);
}

.history-company-content {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}


.timeline-block {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-teal);
  transform: translateX(-50%);
}

.timeline-card {
  position: relative;
  width: 45%;
  padding: 24px;
  background: var(--color-dark-blue);
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.timeline-card:nth-child(even):hover {
  transform: translateX(-5px);
}

.timeline-card:nth-child(odd) {
  left: 0;
  margin-left: 0;
}

.timeline-card:nth-child(even) {
  left: 55%;
  margin-left: 0;
}

.timeline-card::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-teal);
  border: 4px solid white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-card:nth-child(odd)::before {
  right: -35px;
}

.timeline-card:nth-child(even)::before {
  left: -35px;
}

.timeline-card-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.timeline-card-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.6;
  opacity: 0.95;
}

/* СЕКЦИЯ (ГОТОВЫ ОПТИМИЗИРОВАТЬ ВАШИ IT-РАСХОДЫ?) */

.optimization-cost {
  background: var(--color-dark-blue);
  padding: 40px 0 50px 0;
}

.optimization-cost-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.optimization-cost-content {
  text-align: center;
}

.optimization-cost-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.optimization-cost-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  opacity: 0.9;
}

.optimization-cost-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--color-teal);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.optimization-cost-button:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 209, 255, 0.3);
}

/* ИСПРАВЛЕНИЯ ДЛЯ СЕКЦИИ "ЧТО ТАКОЕ АУТСОРСИНГ" */
/* Делаем карточки с чередованием слева-справа */

.what-is-outsourcing-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 0 20px;
}

.what-is-outsourcing-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-is-outsourcing-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.what-is-outsourcing-block:nth-child(odd) {
  flex-direction: row;
}

.what-is-outsourcing-block:nth-child(even) {
  flex-direction: row-reverse;
}

.what-is-outsourcing-card-img {
  flex: 0 0 400px;
  height: 250px;
  background: #eee;
  position: relative;
  overflow: hidden;
}

.what-is-outsourcing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.what-is-outsourcing-card-block {
  flex: 1;
  padding: 32px;
  display: flex;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.what-is-outsourcing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-dark-blue);
}

.what-is-outsourcing-card-paragraph {
  font-size: 1rem;
  color: #555;
  margin: 0 0 20px;
  line-height: 1.6;
}

.what-is-outsourcing-card-more {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.what-is-outsourcing-card-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-teal);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.what-is-outsourcing-card-more:hover::after {
  transform: scaleX(1);
}

/* АДАПТИВНОСТЬ */

@media (max-width: 768px) {
  .history-company {
    display: none;
  }

  .rectangle-block-2-all-world {
    flex-direction: column;
  }
  .rectangle-block-2-all-world-img {
    flex: 0 0 100%;
    width: 100%;
  }
  .rectangle-block-2-all-world-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .what-is-outsourcing-block,
  .what-is-outsourcing-block:nth-child(odd),
  .what-is-outsourcing-block:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .what-is-outsourcing-card-block {
    order: -1;
    padding: 20px 16px;
  }

  .what-is-outsourcing-card-img {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    background: transparent;
  }

  .what-is-outsourcing-card-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .why-choose-us-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-choose-us-block-title,
  .why-choose-us-block-paragraph,
  .why-choose-us-block-points,
  .why-choose-us-block-img {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  .why-choose-us-block-img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .why-choose-us-block-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .why-choose-us-container {
    padding: 0 16px;
  }

  .rectangle-block-2-all-world {
    flex-direction: column;
  }

  .rectangle-block-2-all-world-img {
    flex: 0 0 100%;
    width: 100%;
  }

  .rectangle-block-2-all-world-stats {
    flex-direction: column;
  }

  .rectangle-block-2-all-world-card {
    flex: 1 1 100%;
  }

  .simple-works-card {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .simple-works-card::before {
    display: none;
  }

  .timeline-card {
    width: 100%;
    left: 0 !important;
    margin-left: 0 !important;
  }

  .timeline-card::before {
    left: -35px !important;
    right: auto !important;
  }

  .timeline-line {
    left: 20px;
  }
}

/* ================================================
   ПОПАП "ЧИТАТЬ ДАЛЕЕ"
   ================================================ */

.article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.article-modal.is-open {
  display: flex;
}

/* Затемнение фона */
.article-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 36, 99, 0.55); /* цвет тёмно-синий бренда */
  backdrop-filter: blur(3px);
  animation: overlayIn 0.25s ease;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Окно попапа */
.article-modal__window {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  box-shadow: 0 24px 64px rgba(10, 36, 99, 0.18);
  animation: modalIn 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: #00C2D2 #f0f4f8;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Кнопка закрыть */
.article-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4a5565;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-modal__close:hover {
  background: #0a2463;
  color: #fff;
  transform: rotate(90deg);
}

/* Тег-метка (категория) */
.article-modal__tag {
  display: inline-block;
  background: rgba(0, 194, 210, 0.12);
  color: #00C2D2;
  border: 1px solid rgba(0, 194, 210, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

/* Заголовок */
.article-modal__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a2463;
  line-height: 1.25;
  margin: 0 0 20px;
}

/* Разделитель */
.article-modal__divider {
  height: 2px;
  background: linear-gradient(90deg, #00C2D2 0%, rgba(0,194,210,0) 100%);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Тело статьи */
.article-modal__body {
  font-size: 1rem;
  color: #3a4557;
  line-height: 1.75;
}

.article-modal__body p {
  margin: 0 0 16px;
}

.article-modal__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a2463;
  margin: 28px 0 12px;
}

.article-modal__body ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-modal__body ul li {
  position: relative;
  padding-left: 22px;
  color: #3a4557;
}

.article-modal__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #00C2D2;
  border-radius: 50%;
}

/* Адаптив для попапа */
@media (max-width: 768px) {
  .article-modal__window {
    padding: 32px 24px 28px;
    max-height: 90vh;
  }

  .article-modal__title {
    font-size: 1.3rem;
    padding-right: 28px;
  }
}