/* ========== Общие настройки ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--color-dark);
  color: #777;
}

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

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

/* Утилитарные цвета */
:root {
  --color-red: #C81010;
  --color-blue: #005881;
  --color-orange: #E4A600;
  --color-violet: #6A1B9A;
  --color-aqua: #00B5A6;
  --color-dark: #002633;
  --text-white: #ffffff;
  --text-dark-gray: #002633;
  --text-light-gray: #777;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.4rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.4;
}

p {
  font-size: 0.85rem;
  line-height: 1.6rem;
  color: #777;
  margin-bottom: 1rem;
}

/* Кнопки/ссылки */
button, .button {
  cursor: pointer;
  border: none;
  background: var(--color-dark);
  color: var(--text-white);
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  transition: background 0.2s;
}

button:hover, .button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ========== HEADER ========== */
.header {
background-color: var(--color-dark);
border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center; 
  justify-content: space-between;
  padding: 1.5rem 0 0 0;
}

.logo {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.logo__iframe {
  width: 217px;
  height: 40px;
  border: 0;
  background: transparent;
}

/* Навигация */
.nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav__item {
  margin-left: 1rem;
}

.nav__link {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #7697A2;            
    display: inline-flex;       /* чтобы текст можно было центрировать по вертикали */
    align-items: center;        /* вертикальное выравнивание по центру */
    justify-content: center;    /* горизонтальное центрирование (если нужно) */
    height: 50px;               /* высота «плашки» */
    padding: 0 1rem;            /* горизонтальные отступы, вертикальных уже не нужно */
    transition: color 0.2s, background-color 0.2s;
    letter-spacing: 0.7px; /* 🔥 расстояние между буквами */
    text-decoration: none;      /* убрать подчеркивание, если оно было */
  }
  

  .nav__link:hover {
    background-color: #ff6a00;  /* 2) Фон при наведении */
    color: #FFFFFF;             /* 3) Текст при наведении */
  }

/* ========== MAIN ========== */
.main {
  width: 100%;
  margin-top: 0;
}

/* ---------- SECTION: Видео ---------- */
.section--video {
  background-color: var(--color-dark);
  padding: 1rem 1rem 2rem 1rem;
}

.section__inner--video {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.video__player {
  width: 100%;
  max-width: 1500px;
  height: auto;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}




/* 1) Контейнер двух колонок */
.cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* левая колонка: карточки, правая: картинка */
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: stretch; /* чтобы столбцы были одной высоты */
  }
  
  /* 2) Левая колонка: 4 ряда одинаковой высоты */
  .card-list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* 3) Каждая карточка */
  .card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    height: 100%; /* займёт всю высоту своей «ячейки» */
    box-sizing: border-box;
  }
  
  /* Фоновые цвета карточек */
  .card--red    { background-color: var(--color-red);   }
  .card--blue   { background-color: var(--color-blue);  }
  .card--orange { background-color: var(--color-orange);}
  .card--aqua   { background-color: var(--color-aqua);  }
  .card--violet { background-color: var(--color-violet);}
  
  /* 4) Внутренняя обёртка карточки: иконка слева, текст справа */
  .card__inner {
    display: flex;
    flex-direction: row; /* иконка → текст */
    align-items: center;
    width: 100%;
  }
  
  /* 5) SVG-иконка */
  .card__svg {
    width: 60px;         /* подберите размер под свой SVG */
    height: 60px;
    flex-shrink: 0;      /* не даём иконке ужиматься */
    margin-right: 2rem;  /* расстояние от иконки до текста */
  }
  
  /* 6) Текст внутри карточки */
  .card__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  
  .card__title {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
  }
  
  /* 7) Правая колонка: картинка растягивается на всю высоту родителя */
  .card-image-wrapper {
    width: 100%;
    height: 100%; /* ровно высота .cards-wrapper */
    overflow: hidden;
  }
  
  .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* сохранение пропорций, обрезка лишнего */
    display: block;
  }
  
  /* ========== Адаптив ========== */
  
  @media (max-width: 992px) {
    /* Одна колонка вместо двух */
    .cards-wrapper {
      grid-template-columns: 1fr;
    }
    /* Карточки «по содержимому» */
    .card {
      height: auto;
    }
    /* Две карточки в ряд, потом картинка */
    .card-list {
      display: grid;
      grid-template-rows: none;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    /* На планшете иконка над текстом */
    .card__inner {
      flex-direction: column;
      text-align: center;
    }
    .card__svg {
      margin: 0 auto 1rem auto;
    }
  }
  
  @media (max-width: 600px) {
    /* Одна карточка в ряд */
    .card-list {
      grid-template-columns: 1fr;
    }
    .card__inner {
      flex-direction: column;
    }
    .card__svg {
      margin-bottom: 0.75rem;
    }
  }


  /* ====== Контейнер и раскладка SOOS====== */

  .section--soos {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }


.section--soos .soos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* две колонки: слева — картинка, справа — контент */
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: center; /* выравниваем по вертикали, чтобы контент и картинка были на одном уровне */
}

/* Левая колонка: изображение */
.soos-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.soos__img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* сохраняем пропорции, обрезаем излишки */
  display: block;
}

/* Правая колонка: контент на белом фоне */
.soos-content {
  background-color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%; /* чтобы контент растягивался на всю высоту родителя */
}

/* Заголовок h2 */
.soos__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #333333;
}

/* Основной текст */
.soos__text {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 2rem 0;
  flex-grow: 1; /* текст займёт всё доступное пространство до кнопки */
}

.soos__list {
  list-style: none;
  margin: 1.5rem 0; /* небольшой отступ сверху и снизу списка */
  padding: 0;
}

/* Каждый элемент списка выравниваем для собственных «квадратиков» */
.soos__list li {
  position: relative;
  padding-left: 1.5rem;  /* место под квадрат слева */
  margin-bottom: 0.75rem;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

/* Добавляем красный квадратик перед текстом */
.soos__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;             /* вертикальное выравнивание квадратика по тексту */
  width: 0.6rem;
  height: 0.6rem;
  background-color: #C81010;
}


/* Кнопка */
.btn--soos {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-blue);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-end; /* вместо flex-start */
  transition: background-color 0.2s ease-in-out;
}

.btn--soos:hover {
  background-color: #C81010;
}

/* ====== Адаптив ====== */
@media (max-width: 992px) {
  .section--soos .soos-wrapper {
    grid-template-columns: 1fr; /* одна колонка: сначала картинка, потом контент */
  }
  .soos-content {
    padding: 1.5rem;
  }
  .soos__title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  .soos__text {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .soos-content {
    padding: 1rem;
  }
  .soos__title {
    font-size: 1.4rem;
  }
  .soos__text {
    font-size: 0.95rem;
  }
  .btn--soos {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* 1) Общие свойства для анимируемых элементов */
.soos-image-wrapper,
.soos-content {
  transition: transform 0.9s ease-out 0.3s, opacity 0.9s ease-out;
  opacity: 0;
}

/* 2) Начальные «скрытые» состояния: смещаем влево/вправо */
.hidden-left {
  transform: translateX(-100px); /* спрятать чуть левее экрана */
}

.hidden-right {
  transform: translateX(100px);  /* спрятать чуть правее экрана */
}

/* 3) Видимое состояние: когда анимация завершилась, элементы вернутся в позицию */
.visible {
  transform: translateX(0);
  opacity: 1;
}

  
/* ====== Контейнер и раскладка FEEDBACK (без анимации) ====== */
.section--feedback {

  padding-bottom: 4rem;
}

.section--feedback .feedback-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* две колонки: слева — форма, справа — картинка */
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: center; /* выравнивание по вертикали */
}

/* Левая колонка: форма */
.feedback-content {
  background-color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%; /* форма растягивается по высоте родителя */
}

/* Заголовок h2 */
.feedback__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #333333;
}

/* Поля формы */
.feedback-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* поля займут всё пространство до кнопки */
}

.feedback-form label {
  margin-top: 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: #555555;
  font-weight: bold;
}

.feedback__required {
  color: #C81010;
  margin-left: 0.2rem;
}

.feedback__input,
.feedback__textarea {
  padding: 0.5rem;
  font-size: 1rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  color: #333333;
  box-sizing: border-box;
}

.feedback__input:focus,
.feedback__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

/* Текстовая область */
.feedback__textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
  margin-bottom: 1rem;
}

/* Кнопка */
.btn--feedback {
  align-self: flex-end;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-blue);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn--feedback:hover {
  background-color: #C81010;
}

/* Правая колонка: изображение */
.feedback-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

/* ====== Адаптив ====== */
@media (max-width: 992px) {
  .section--feedback .feedback-wrapper {
    grid-template-columns: 1fr; /* одна колонка: форма, потом картинка */
  }
  .feedback-content {
    padding: 1.5rem;
  }
  .feedback__title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 600px) {
  .feedback-content {
    padding: 1rem;
  }
  .feedback__title {
    font-size: 1.4rem;
  }
  .feedback__input,
  .feedback__textarea {
    font-size: 0.95rem;
  }
  .btn--feedback {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
}



 





  
/* ---------- SECTION 2: Параллакс ---------- */
.section--parallax {
  /* Простейший статический фон (можно заменить на background-attachment: fixed для эффекта) */
  background-image: url("img/img-06.jpg"); /* пример, можно любая картинка */
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  color: var(--text-white);
  text-align: center;
}

.parallax__content {
  max-width: 800px;
  margin: 0 auto;
}

.parallax__title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.parallax__text {
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- SECTION 3: Split (изображение + текст) ---------- */
.section--split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  align-items: center;
}

.split__img-wrapper {
  grid-column: span 6;
}

.split__img {
  width: 100%;
  border-radius: 6px;
}

.split__text {
  grid-column: span 6;
}

.split__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.split__list {
  list-style: disc inside;
  color: #777;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Responsive для Split */
@media (max-width: 992px) {
  .section--split {
    grid-template-columns: 1fr;
  }
  .split__img-wrapper,
  .split__text {
    grid-column: span 12;
  }
}

/* ---------- SECTION 4: Галерея ---------- */
.section--gallery {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 6px;
}

.gallery__img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ---------- SECTION 5: Контакты + соцсети ---------- */
.section--contact {
  background-color: var(--color-dark);
  color: var(--text-white);
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
}

.contact__text {
  grid-column: span 6;
  text-align: right;
}

.contact__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact__social {
  grid-column: span 6;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: var(--text-white);
  transition: background-color 0.2s;
}

.social--facebook:hover {
  background-color: #3b5998;
}
.social--twitter:hover {
  background-color: #1da1f2;
}
.social--youtube:hover {
  background-color: #ff0000;
}
.social--linkedin:hover {
  background-color: #0077b5;
}

.icon-social-facebook,
.icon-social-twitter,
.icon-social-youtube,
.icon-social-linkedin {
  font-size: 30px;
}

/* Responsive для Section Contact */
@media (max-width: 992px) {
  .section--contact {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact__text,
  .contact__social {
    grid-column: span 12;
    justify-content: center !important;
  }
  .contact__text {
    margin-bottom: 1rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-dark);
  color: var(--text-white);
  padding: 2rem 1rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer__col {
  color: var(--text-white);
  padding: 1rem;
}

.footer__col--image {
  grid-column: span 3;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  border-radius: 6px;
}

.footer__col--info,
.footer__col--map,
.footer__col--contact {
  grid-column: span 3;
}

.footer__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer__map {
  width: 100%;
  height: auto;
}

.footer__link {
  color: var(--text-aqua);
  text-decoration: underline;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

.footer__note {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.text-primary {
  color: var(--color-aqua);
}

/* Responsive для Footer */
@media (max-width: 992px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer__col {
    grid-column: span 12;
  }
}


/* ====== Ряд кнопка + картинка ====== */

.soos-wrapper {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  width: 1480px;
}

.soos-left {
  width: 740px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.soos-card {
  width: 740px;
  height: 120px;
}

.soos-card a {
  display: block;
  width: 740px;
  height: 120px;
  border-radius: 12px;
}

/* Правая панель */
.soos-right {
  width: 740px;
}

.soos-animation-area {
  width: 740px;
  height: calc(6 * 120px + 5 * 20px); /* высота всех кнопок */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Картинки внутри */
.soos-animation-area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 740px;
  height: 660px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* По умолчанию включаем нейтральную */
.panel-default {
  opacity: 1;
}

.header__btn {
  background: #ff6a00;   /* цвет К */
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.7px;
  transition: 0.2s;
}

.header__btn:hover {
  background: #e55d00;
}

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

.header__right {
  display: flex;
  align-items: center;
  gap: 30px; /* расстояние между меню и кнопкой */
}

.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255,106,0,0.3);
}

/* HERO */
.hero {
  padding: 48px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,0.10), transparent 30%),
    linear-gradient(180deg, #003847 0%, #012f3c 100%);
}

.hero__container {
  width: min(1320px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #d7edf2;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero__subtitle {
  margin: 0 0 28px;
  max-width: 610px;
  color: #c9dfe5;
  font-size: 21px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.2s ease;
}

.hero__btn--primary {
  background: #ff6a00;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,106,0,0.22);
}

.hero__btn--primary:hover {
  background: #e55d00;
  transform: translateY(-1px);
}

.hero__btn--ghost {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.hero__btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  position: relative;
  padding-left: 18px;
  color: #d6e9ee;
  font-size: 15px;
  line-height: 1.4;
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6a00;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-feed {
  width: 100%;
  max-width: 560px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(5, 27, 34, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.hero-feed__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-feed__label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.hero-feed__status {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,106,0,0.12);
  color: #ffb27c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.hero-post {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.hero-post + .hero-post {
  margin-top: 14px;
}

.hero-post__meta {
  margin-bottom: 9px;
  color: #8eb3bc;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.hero-post__title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-post__text {
  color: #cde0e6;
  font-size: 15px;
  line-height: 1.55;
}

/* АДАПТИВ */
@media (max-width: 1100px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 48px;
  }

  .hero__container {
    width: min(100% - 28px, 1320px);
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
  }

  .hero-feed {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-post {
    padding: 15px;
  }

  .hero-post__title {
    font-size: 17px;
  }
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
}

.hero-feed {
  width: 100%;
  max-width: 560px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(5, 27, 34, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.hero-feed__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-feed__label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-feed__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,106,0,0.12);
  color: #ffb27c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.hero-feed__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.55);
  animation: autopilotPulse 1.8s infinite;
}

@keyframes autopilotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255,106,0,0);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0);
    opacity: 0.95;
  }
}

.hero-feed__viewport {
  position: relative;
  height: 406px; /* видно 3 карточки */
  overflow: hidden;
}

.hero-feed__track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.hero-post {
  min-height: 126px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.hero-post__meta {
  margin-bottom: 9px;
  color: #8eb3bc;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.hero-post__title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-post__text {
  color: #cde0e6;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero__visual {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-feed {
    padding: 16px;
    border-radius: 14px;
  }

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

  .hero-feed__viewport {
    height: 392px;
  }

  .hero-post {
    min-height: 120px;
    padding: 15px;
    border-radius: 10px;
  }

  .hero-post__title {
    font-size: 17px;
  }
}

/* === KICKER: динамический текст слева === */

.hero__kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  height: 22px;
}

.hero__kicker-line {
  width: 2px;
  height: 18px;
  background: #ff6a00;
  flex: 0 0 2px;
}

.hero__kicker-text {
  color: #dbecef;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;

  transform: translateX(-18px);
  opacity: 0;

  animation: kickerTextReveal 7.5s ease-in-out infinite;
}

@keyframes kickerTextReveal {
  0% {
    opacity: 0;
    transform: translateX(-18px);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  67% {
    opacity: 1;
    transform: translateX(0);
  }
  91% {
    opacity: 0;
    transform: translateX(-18px);
  }
  100% {
    opacity: 0;
    transform: translateX(-18px);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(0, 56, 71, ); /* твой цвет с прозрачностью */
  backdrop-filter: blur(8px); /* лёгкое стекло */
}

.header__container {
  transform: translateY(-8px);
}

/* =========================================================
   SECTION 2: HOW IT WORKS
   Светлый второй экран
========================================================= */

.how-it-works {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,0.08), transparent 24%),
    linear-gradient(180deg, #f7fafb 0%, #eef4f6 100%);
}

.how-it-works__container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.how-it-works__content {
  max-width: 700px;
}

.how-it-works__kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.how-it-works__title {
  margin: 0 0 18px;
  color: #08222a;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 700;
}

.how-it-works__subtitle {
  margin: 0 0 34px;
  color: #49636b;
  font-size: 20px;
  line-height: 1.6;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.how-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid rgba(8,34,42,0.08);
}

.how-step:first-child {
  border-top: none;
  padding-top: 0;
}

.how-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #ff6a00;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(255,106,0,0.18);
}

.how-step__title {
  margin: 0 0 8px;
  color: #08222a;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
}

.how-step__text {
  margin: 0;
  color: #58717a;
  font-size: 17px;
  line-height: 1.65;
}

.how-it-works__note {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid #ff6a00;
  color: #18343c;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* Правая часть */

.how-it-works__visual {
  display: flex;
  justify-content: flex-end;
}

.workflow-card {
  width: 100%;
  max-width: 560px;
  padding: 26px;
  border: 1px solid rgba(8,34,42,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 25px 60px rgba(10, 36, 46, 0.10);
  backdrop-filter: blur(10px);
}

.workflow-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.workflow-card__label {
  color: #08222a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.workflow-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,106,0,0.10);
  color: #d76108;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.workflow-card__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  animation: workflowPulse 1.8s infinite;
}

@keyframes workflowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255,106,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0);
  }
}

.workflow-list {
  display: flex;
  flex-direction: column;
}

.workflow-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(8,34,42,0.06);
  border-radius: 14px;
  background: #ffffff;
}

.workflow-item--accent {
  border-color: rgba(255,106,0,0.22);
  box-shadow: 0 14px 28px rgba(255,106,0,0.08);
}

.workflow-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff4ec;
  font-size: 22px;
}

.workflow-item__title {
  margin-bottom: 6px;
  color: #08222a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.workflow-item__text {
  color: #5a737b;
  font-size: 15px;
  line-height: 1.55;
}

.workflow-arrow {
  position: relative;
  width: 2px;
  height: 24px;
  margin: 8px 0 8px 25px;
  background: linear-gradient(180deg, rgba(255,106,0,0.25) 0%, rgba(255,106,0,0.75) 100%);
}

.workflow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ff6a00;
  border-bottom: 2px solid #ff6a00;
  transform: translateX(-50%) rotate(45deg);
}

/* Адаптив */

@media (max-width: 1100px) {
  .how-it-works__container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .how-it-works__visual {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 64px 0;
  }

  .how-it-works__container {
    width: min(100% - 28px, 1400px);
    gap: 34px;
  }

  .how-it-works__subtitle {
    font-size: 18px;
  }

  .how-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .how-step__num {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 10px;
  }

  .how-step__title {
    font-size: 20px;
  }

  .how-step__text {
    font-size: 16px;
  }

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

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

  .workflow-item {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
  }

  .workflow-item__icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 10px;
  }

  .workflow-item__title {
    font-size: 17px;
  }
}

/* === ОБЩАЯ СЕТКА ДЛЯ HERO И HOW-IT-WORKS === */

:root {
  --site-max: 1400px;
  --site-pad: 80px;

  --col-left: 1.02fr;
  --col-right: 0.98fr;
  --col-gap: 56px;
}

.hero__container,
.how-it-works__container,
.header__container {
  width: min(var(--site-max), calc(100% - var(--site-pad)));
  margin: 0 auto;
}

.hero__container,
.how-it-works__container {
  display: grid;
  grid-template-columns: var(--col-left) var(--col-right);
  gap: var(--col-gap);
  align-items: start;
}

/* === ВНУТРЕННЕЕ ВЫРАВНИВАНИЕ КОЛОНОК === */

.hero__content,
.how-it-works__content {
  width: 100%;
  max-width: 640px;
  justify-self: start;
}

.hero__visual,
.how-it-works__visual {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

/* === КОГДА ВО 2 ЭКРАНЕ ВИЗУАЛ СЛЕВА === */

.how-it-works__visual {
  justify-self: start;
}

.how-it-works__content {
  justify-self: end;
}

/* === ЛЕВАЯ КОЛОНКА 2 ЭКРАНА: подпись + карточка === */

.how-it-works__visual {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.how-it-works__visual-inner {
  width: 100%;
  max-width: 560px;
}

.how-it-works__microcopy {
  margin-bottom: 14px;
  color: #6a7e85;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.9;
}

.workflow-card {
  width: 100%;
}

/* === SECTION 2: заголовок над схемой слева === */

.how-it-works__visual-title {
  margin: 0 0 22px;
  color: #08222a;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 700;
}

.how-it-works__microcopy {
  margin-bottom: 12px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === 2 ЭКРАН: одинаковые H2 слева и справа === */

/* === 2 ЭКРАН: одинаковые заголовки === */

.how-it-works__visual-title,
.how-it-works__title {
  margin: 0 0 18px;

  font-size: clamp(30px, 4vw, 47px); /* чуть уменьшили (~10%) */
  line-height: 1.09;

  font-weight: 700;
  letter-spacing: -0.8px;

  color: #0b2d36;
}

/* === 2 ЭКРАН: стрелки между шагами === */

/* === 2 ЭКРАН: оживление стрелок === */

.workflow-arrow {
  opacity: 0.4;
  transform: translateY(0);
  transition: none;
}

/* последовательность */
.workflow-arrow--1 {
  animation: arrowFlow 2.8s ease-in-out infinite;
}

.workflow-arrow--2 {
  animation: arrowFlow 2.8s ease-in-out 0.9s infinite;
}

.workflow-arrow--3 {
  animation: arrowFlow 2.8s ease-in-out 1.8s infinite;
}

/* сама анимация */
@keyframes arrowFlow {

  0% {
    opacity: 0.35;
    transform: translateY(0);
    filter: none;
  }

  25% {
    opacity: 1;
    transform: translateY(21px);
    filter: drop-shadow(0 0 6px rgba(255,106,0,0.35));
  }

  50% {
    opacity: 0.6;
    transform: translateY(0);
    filter: none;
  }

  100% {
    opacity: 0.35;
    transform: translateY(0);
    filter: none;
  }
}

/* === MINI CTA под вторым экраном === */

.mini-cta {
  margin-top: 40px;
}

.mini-cta__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
  padding: 18px 22px;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    rgba(255,106,0,0.08),
    rgba(255,106,0,0.02)
  );

  border: 1px solid rgba(255,106,0,0.18);
}

.mini-cta__text {
  font-size: 16px;
  line-height: 1.4;
  color: #1c3a42;
  font-weight: 500;
}

.mini-cta__btn {
  padding: 10px 18px;
  border-radius: 8px;

  background: #ff6a00;
  color: #fff;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  white-space: nowrap;

  transition: 0.2s;
}

.mini-cta__btn:hover {
  background: #e55d00;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mini-cta__container {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-cta__btn {
    width: 100%;
    text-align: center;
  }
}

/* === 2 ЭКРАН: финальная фраза справа === */

.how-it-works__note {
  margin-top: 10px;
  margin-bottom: 10px; /* расстояние до mini-cta */

  padding-left: 18px;
  border-left: 3px solid #ff6a00;

  color: #16343d;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* === 2 ЭКРАН: компактные шаги === */

.how-step {
  margin-bottom: 4px;
}

.how-step__title {
  margin-bottom: 7px;
}

.how-step__text {
  margin-bottom: 6px;
  line-height: 1.3;
}

.how-step__text:last-child {
  margin-bottom: 0;
}

.how-it-works__note {
  margin-top: 18px;
  margin-bottom: 18px;

  padding-left: 18px;
  border-left: 3px solid #ff6a00;

  font-size: 17px; /* увеличили */
  line-height: 1.4;

  font-weight: 700; /* сделали жирным */
  color: #0f2f37;
}

/* === 2 ЭКРАН: мягкая анимация цифр === */

.how-step__num {
  transition: none;
}

/* последовательность */
.how-step__num--1 {
  animation: stepPulse 3s ease-in-out infinite;
}

.how-step__num--2 {
  animation: stepPulse 3s ease-in-out 1s infinite;
}

.how-step__num--3 {
  animation: stepPulse 3s ease-in-out 2s infinite;
}

/* сама анимация */
@keyframes stepPulse {

  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,106,0,0);
  }

  20% {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(255,106,0,0.25);
  }

  40% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,106,0,0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,106,0,0);
  }
}

/* === SCREEN 3: ЧТО ПОЛУЧАЕТ ВАШ БИЗНЕС === */

.benefits {
  padding: 90px 0 90px;
  background:
  radial-gradient(circle at top right, rgba(255,106,0,0.10), transparent 30%),
  linear-gradient(180deg, #003847 0%, #012f3c 100%);
}

.benefits__container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.benefits__head {
  max-width: 860px;
  margin-bottom: 42px;
}

.benefits__kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;

  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.benefits__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #ff6a00;
  transform: translateY(-50%);
}

.benefits__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.benefits__subtitle {
  margin: 0;
  max-width: 760px;
  color: #c9dfe5;
  font-size: 19px;
  line-height: 1.6;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  position: relative;
  min-height: 240px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(11, 45, 54, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 45, 54, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11, 45, 54, 0.08);
}

.benefit-card__num {
  margin-bottom: 18px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.benefit-card__title {
  margin: 0 0 12px;
  color: #0b2d36;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.benefit-card__text {
  margin: 0;
  color: #556a71;
  font-size: 16px;
  line-height: 1.65;
}

/* АДАПТИВ */

@media (max-width: 1100px) {
  .benefits {
    padding: 72px 0 72px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .benefits__container {
    width: min(100% - 28px, 1400px);
  }

  .benefits__head {
    margin-bottom: 30px;
  }

  .benefits__title {
    font-size: 38px;
  }

  .benefits__subtitle {
    font-size: 17px;
  }

  .benefit-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .benefit-card__title {
    font-size: 24px;
  }

  .benefit-card__text {
    font-size: 15px;
  }
}

/* === 3 ЭКРАН: большие фоновые цифры === */

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card__num {
  position: absolute;
  top: 16px;
  right: 18px;

  font-size: 170px; /* вот здесь x4-x5 */
  font-weight: 800;
  line-height: 1;

  color: #ff6a00;
  opacity: 0.09; /* ключевой момент */

  pointer-events: none;
  user-select: none;
}

/* === 3 ЭКРАН: вертикальное выравнивание карточек === */

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center; /* вот ключевая строка */

  position: relative;
  min-height: 240px;
  padding: 28px 28px 26px;
}

/* === MINI CALENDAR: карточка публикаций === */

.publish-calendar {
  width: 310px;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.publish-calendar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.publish-calendar__title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.publish-calendar__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,106,0,0.12);
  color: #ffb27c;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.publish-calendar__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  animation: calendarPulse 1.8s infinite;
}

@keyframes calendarPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(255,106,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0);
  }
}

.publish-calendar__week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

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

.publish-calendar__day-name {
  color: #b8d3d9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.publish-calendar__slot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

.publish-calendar__slot.is-active {
  background: #ff6a00;
  box-shadow: 0 0 12px rgba(255,106,0,0.35);
  transform: scale(1.12);
}

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

.publish-calendar__event {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  opacity: 0.48;
  transform: translateX(0);
  transition: 0.35s ease;
}

.publish-calendar__event.is-active {
  opacity: 1;
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.publish-calendar__time {
  color: #ffb27c;
  font-size: 12px;
  font-weight: 700;
}

.publish-calendar__text {
  color: #e8f4f7;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .publish-calendar {
    width: 100%;
  }
}

/* === SCREEN 3: верх блока с календарём справа === */

.benefits__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.benefits__head {
  flex: 1 1 auto;
  max-width: 860px;
  margin-bottom: 0;
}

.benefits__calendar {
  flex: 0 0 310px;
  display: flex;
  justify-content: flex-end;
}

.publish-calendar {
  width: 310px;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .benefits__top {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .benefits__calendar {
    flex: none;
    justify-content: flex-start;
  }

  .publish-calendar {
    width: 100%;
    max-width: 360px;
  }
}

/* === SCREEN 3: появление карточек при скролле === */

.reveal-card {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* небольшая задержка по порядку */
.benefits__grid .reveal-card:nth-child(1) {
  transition-delay: 0.1s;
}

.benefits__grid .reveal-card:nth-child(2) {
  transition-delay: 0.2s;
}

.benefits__grid .reveal-card:nth-child(3) {
  transition-delay: 0.3s;
}

.benefits__grid .reveal-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* === SCREEN 4: ДЛЯ КОГО ЭТО ПОДХОДИТ === */

.audience {
  padding: 90px 0;
  background: #f6f8f9;
}

.audience__container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.audience__head {
  max-width: 820px;
  margin-bottom: 38px;
}

.audience__kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
  color: #4b6169;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.audience__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #ff6a00;
  transform: translateY(-50%);
}

.audience__title {
  margin: 0 0 16px;
  color: #0b2d36;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.audience__subtitle {
  margin: 0;
  color: #556a71;
  font-size: 19px;
  line-height: 1.6;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 45, 54, 0.08);
  box-shadow: 0 10px 24px rgba(11, 45, 54, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ff6a00;
  transition: width 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(11, 45, 54, 0.08);
  border-color: rgba(255,106,0,0.22);
}

.audience-card:hover::after {
  width: calc(100% - 48px);
}

.audience-card__name {
  margin-bottom: 12px;
  color: #0b2d36;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.audience-card__text {
  margin: 0;
  color: #5a6e75;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .audience {
    padding: 72px 0;
  }

  .audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .audience__container {
    width: min(100% - 28px, 1400px);
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience__title {
    font-size: 36px;
  }

  .audience__subtitle {
    font-size: 17px;
  }

  .audience-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .audience-card__name {
    font-size: 24px;
  }

  .audience-card__text {
    font-size: 15px;
  }
}

/* === SCREEN 4: КОМУ ПОДХОДИТ АВТОПИЛОТ === */

.audience {
  padding: 90px 0;
  background: #f6f8f9;
}

.audience__container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

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

.audience__head {
  flex: 1 1 auto;
  max-width: 820px;
}

.audience__kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
  color: #4b6169;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.audience__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #ff6a00;
  transform: translateY(-50%);
}

.audience__title {
  margin: 0 0 16px;
  color: #0b2d36;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.audience__subtitle {
  margin: 0;
  max-width: 760px;
  color: #556a71;
  font-size: 19px;
  line-height: 1.6;
}

.audience__visual {
  flex: 0 0 340px;
  display: flex;
  justify-content: flex-end;
}

/* мини-блок справа */
.audience-flow {
  position: relative;
  width: 320px;
  height: 240px;
  border-radius: 18px;
  background: linear-gradient(180deg, #003847 0%, #012f3c 100%);
  box-shadow: 0 18px 40px rgba(11, 45, 54, 0.18);
  overflow: hidden;
}

.audience-flow::before,
.audience-flow::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.08);
}

.audience-flow::before {
  left: 50%;
  top: 46px;
  width: 2px;
  height: 148px;
  transform: translateX(-50%);
}

.audience-flow::after {
  left: 62px;
  top: 50%;
  width: 196px;
  height: 2px;
  transform: translateY(-50%);
}

.audience-flow__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.audience-flow__core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.4);
  animation: audienceCorePulse 2s infinite;
}

.audience-flow__label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

@keyframes audienceCorePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255,106,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0);
  }
}

.audience-flow__item {
  position: absolute;
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dceef3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.35s ease;
}

.audience-flow__item.is-active {
  background: rgba(255,106,0,0.12);
  border-color: rgba(255,106,0,0.28);
  box-shadow: 0 0 18px rgba(255,106,0,0.12);
  transform: scale(1.04);
}

.audience-flow__item--1 {
  left: 18px;
  top: 18px;
}

.audience-flow__item--2 {
  right: 18px;
  top: 18px;
}

.audience-flow__item--3 {
  left: 18px;
  bottom: 18px;
}

.audience-flow__item--4 {
  right: 18px;
  bottom: 18px;
}

.audience-flow__icon {
  font-size: 16px;
}

.audience-flow__name {
  white-space: nowrap;
}

/* карточки */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #003847 0%, #012f3c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 28px rgba(11, 45, 54, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ff6a00;
  transition: width 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11, 45, 54, 0.18);
  border-color: rgba(255,106,0,0.20);
}

.audience-card:hover::after {
  width: calc(100% - 48px);
}

.audience-card__name {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.audience-card__text {
  margin: 0;
  color: #cfe2e7;
  font-size: 14px;
  line-height: 1.65;
}

/* адаптив */
@media (max-width: 1100px) {
  .audience {
    padding: 72px 0;
  }

  .audience__top {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .audience__visual {
    flex: none;
    justify-content: flex-start;
  }

  .audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .audience__container {
    width: min(100% - 28px, 1400px);
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience__title {
    font-size: 36px;
  }

  .audience__subtitle {
    font-size: 17px;
  }

  .audience-flow {
    width: 100%;
    max-width: 340px;
  }

  .audience-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .audience-card__name {
    font-size: 24px;
  }

  .audience-card__text {
    font-size: 15px;
  }
}


/* =========================================
   SCREEN 4 — Кому подходит автопилот
   ЧИСТОВОЙ ВАРИАНТ
========================================= */

/* правая колонка */
.audience__visual {
  flex: 0 0 340px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* карточка-схема */
.audience-flow {
  position: relative;
  width: 320px;
  height: 240px;
  border-radius: 18px;
  background: linear-gradient(180deg, #003847 0%, #012f3c 100%);
  box-shadow: 0 18px 40px rgba(11, 45, 54, 0.18);
  overflow: hidden;
}

/* центральный узел */
.audience-flow__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* перекрестие */
.audience-flow__cross::before,
.audience-flow__cross::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}

.audience-flow__cross::before {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 148px;
  transform: translate(-50%, -50%);
}

.audience-flow__cross::after {
  left: 50%;
  top: 50%;
  width: 196px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* внешний круг */
.audience-flow__center-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}

.audience-flow__center-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

/* оранжевый центр */
.audience-flow__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #ff6a00;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.40);
  z-index: 4;
  animation: audienceCorePulse 2.5s infinite;
}

/* подпись */
.audience-flow__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 20px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  z-index: 5;
  white-space: nowrap;
}

@keyframes audienceCorePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255,106,0,0.20);
  }
  100% {
    box-shadow: 0 0 0 32px rgba(255,106,0,0);
  }
}

/* стрелка */
.audience-flow__needle-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  z-index: 5;
  animation: rotateNeedle 8s linear infinite;
  pointer-events: none;
}

.audience-flow__needle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 58px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    to top,
    rgba(255,106,0,0) 0%,
    rgba(255,106,0,0.28) 35%,
    rgba(255,106,0,0.72) 72%,
    #ff6a00 100%
  );
}

.audience-flow__needle::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  background: #ff6a00;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,106,0,0.28);
}

@keyframes rotateNeedle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}




/* метки ниш */
.audience-flow__item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #dceef3;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.35s ease, text-shadow 0.35s ease, opacity 0.35s ease;
  z-index: 4;
}

.audience-flow__item.is-active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,0.10);
}

.audience-flow__item--1 {
  left: 18px;
  top: 18px;
}

.audience-flow__item--2 {
  right: 18px;
  top: 18px;
}

.audience-flow__item--3 {
  left: 18px;
  bottom: 18px;
}

.audience-flow__item--4 {
  right: 18px;
  bottom: 18px;
}

.audience-flow__dot {
  width: 6px;
  height: 6px;
  background: rgba(255,106,0,1);
  border-radius: 50%;
  flex: 0 0 6px;
  transition: 0.35s ease;
}

.audience-flow__item.is-active .audience-flow__dot {
  width: 1px;
  height: 17px;
  border-radius: 1px;
  background: #ff6a00;
}

.audience-flow__icon {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: 0 0 20px;
}

.audience-flow__name {
  white-space: nowrap;
  font-weight: 500;
}

/* адаптив */
@media (max-width: 1100px) {
  .audience__visual {
    flex: 0 0 auto;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .audience__visual {
    justify-content: center;
  }

  .audience-flow {
    width: 300px;
    height: 228px;
  }

  .audience-flow__center {
    width: 132px;
    height: 132px;
  }

  .audience-flow__cross::before {
    height: 138px;
  }

  .audience-flow__cross::after {
    width: 182px;
  }

  .audience-flow__center-circle {
    width: 108px;
    height: 108px;
  }

  .audience-flow__needle {
    height: 52px;
  }

  .audience-flow__label {
    font-size: 12px;
    transform: translate(-50%, 18px);
  }

  .audience-flow__item {
    font-size: 13px;
    gap: 7px;
  }

  .audience-flow__icon {
    font-size: 16px;
    width: 18px;
    flex: 0 0 18px;
  }

  .audience-flow__item--1,
  .audience-flow__item--2 {
    top: 14px;
  }

  .audience-flow__item--3,
  .audience-flow__item--4 {
    bottom: 14px;
  }

  .audience-flow__item--1,
  .audience-flow__item--3 {
    left: 14px;
  }

  .audience-flow__item--2,
  .audience-flow__item--4 {
    right: 14px;
  }
}

@media (max-width: 479px) {
  .audience-flow {
    width: 280px;
    height: 216px;
  }

  .audience-flow__center {
    width: 124px;
    height: 124px;
  }

  .audience-flow__cross::before {
    height: 130px;
  }

  .audience-flow__cross::after {
    width: 170px;
  }

  .audience-flow__center-circle {
    width: 100px;
    height: 100px;
  }

  .audience-flow__needle {
    height: 48px;
  }

  .audience-flow__item {
    font-size: 12px;
  }

  .audience-flow__name {
    white-space: nowrap;
  }
}

/* === Карточки блока "Кому подходит автопилот" === */

.audience-card {
  position: relative;
  overflow: hidden;
}

/* нижняя линия */
.audience-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #ff6a00;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* активная карточка */
.audience-card.is-glow {
  box-shadow:
    0 0 0 1px rgba(255,106,0,0.22) inset,
    0 10px 24px rgba(255,106,0,0.10);
}

/* включаем линию */
.audience-card.is-glow::after {
  opacity: 1;
  transform: scaleX(1);
}

.audience-card.is-glow {
  box-shadow:
    inset 0 -3px 0 #ff6a00,
    inset 0 0 0 1px rgba(255,106,0,0.22),
    0 12px 28px rgba(255,106,0,0.10) !important;
}

/* === ПРИМЕРЫ === */

.ap-examples-clean {
  padding: 100px 0;
  background: #0f3f46; /* тот же тон, без цирка */
}

.ap-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.ap-examples-top {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}

/* Левая часть */

.ap-label {
  color: #ff6a00 ;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ap-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.ap-subtitle {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Правая часть — лента */

.ap-feed {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ap-post {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ap-post-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.ap-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff6a00 ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.ap-channel {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ap-time {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.ap-post-image {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b4a2b, #b78342);
  margin-bottom: 12px;
}

.ap-post-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.ap-post-text {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Адаптив */

@media (max-width: 900px) {
  .ap-examples-top {
    grid-template-columns: 1fr;
  }
}

.ap-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ap-post-meta {
  display: flex;
  align-items: center;
}

.ap-post-niche {
  margin: 0;
  flex: 0 0 auto;
}

.ap-time {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* === SCREEN 5: ПРИМЕРЫ === */

.ap-examples-clean {
  padding: 110px 0;
  background: #004857;
}

.ap-container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.ap-examples-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
  gap: 46px;
  align-items: start;
}

.ap-examples-left {
  padding-top: 6px;
}

.ap-label {
  margin-bottom: 18px;
  color: #ff8a00;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ap-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ap-subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  font-weight: 400;
}

/* Правая часть */

.ap-examples-right {
  min-width: 0;
}

.ap-feed {
  display: grid;
  gap: 18px;
}

.ap-post {
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.ap-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.ap-post-meta {
  display: flex;
  align-items: center;
}

.ap-time {
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

/* Локальная мини-версия карточек ниши */

.audience-flow-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.10);
}

.audience-flow-mini--active {
  background: rgba(255, 138, 0, 0.14);
  border-color: rgba(255, 138, 0, 0.32);
}

.audience-flow-mini__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8a00;
  flex: 0 0 8px;
}

.audience-flow-mini__icon {
  font-size: 18px;
  line-height: 1;
}

.audience-flow-mini__name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Визуал поста */

.ap-post-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 164px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
}

.ap-post--shop .ap-post-image {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #8a5a22 0%, #b57c3a 55%, #d7a25d 100%);
}

.ap-post--factory .ap-post-image {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #45515e 0%, #647485 50%, #8a97a3 100%);
}

.ap-post--service .ap-post-image {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #7a5830 0%, #a7753f 52%, #ca9453 100%);
}

.ap-post--delivery .ap-post-image {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #4b5368 0%, #69748d 52%, #8e97b1 100%);
}

.ap-post-badge {
  align-self: flex-start;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17,17,17,0.52);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 32px;
}

.ap-post-image-title {
  max-width: 360px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

/* Текст поста */

.ap-post-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ap-post-text {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.65;
}

/* Планшет */

@media (max-width: 1180px) {
  .ap-examples-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ap-examples-right {
    max-width: 760px;
  }

  .ap-title {
    max-width: 920px;
  }
}

/* Мобильные */

@media (max-width: 768px) {
  .ap-examples-clean {
    padding: 80px 0;
  }

  .ap-container {
    width: min(100% - 24px, 1320px);
  }

  .ap-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.02;
  }

  .ap-subtitle {
    font-size: 17px;
    line-height: 1.55;
  }

  .ap-post {
    padding: 16px;
    border-radius: 18px;
  }

  .ap-post-image {
    min-height: 140px;
    padding: 16px;
    border-radius: 14px;
  }

  .ap-post-image-title {
    font-size: 18px;
  }

  .ap-post-title {
    font-size: 21px;
  }

  .ap-post-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .audience-flow-mini {
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
  }

  .audience-flow-mini__name {
    font-size: 14px;
  }

  .ap-time {
    font-size: 12px;
  }
}

/* === COLLAGE === */

.ap-collage {
  position: relative;
  width: 100%;
  max-width: 690px;
  margin-top: 34px;
}

.ap-collage-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ap-collage-row::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: 3;
}

.ap-collage-row:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: #fff;
  opacity: 0;
  z-index: 3;
}

.ap-cell {
  position: relative;
  width: 100%;
  aspect-ratio: 345 / 350;
  overflow: hidden;
  background: transparent;
}

.ap-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.04);
}

/* Активный ряд */
/* Вход ряда */
.ap-collage-row.is-active .ap-cell:first-child img {
  animation: apRowImageIn 0.75s ease forwards;
}

.ap-collage-row.is-active .ap-cell:last-child img {
  animation: apRowImageIn 0.75s ease forwards;
  animation-delay: 0.16s;
}

.ap-collage-row.is-active::after {
  animation: apRowLineIn 0.5s ease forwards;
}

.ap-collage-row.is-active::before {
  animation: apRowLineInHorizontal 0.5s ease forwards;
  animation-delay: 0.06s;
}

/* Выход ряда */
.ap-collage-row.is-out .ap-cell:first-child img,
.ap-collage-row.is-out .ap-cell:last-child img {
  animation: apRowImageOut 0.55s ease forwards;
}

.ap-collage-row.is-out::after,
.ap-collage-row.is-out::before {
  animation: apRowLineOut 0.35s ease forwards;
}

/* Логотипы */
.ap-logo {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.ap-logo--1 {
  width: 58px;
  top: 8%;
  left: 8%;
}

.ap-logo--2 {
  width: 92px;
  top: 31%;
  right: 7%;
}

.ap-logo--3 {
  width: 70px;
  top: 57%;
  left: 10%;
}

.ap-logo--4 {
  width: 82px;
  top: 82%;
  right: 8%;
}

.ap-collage.is-playing .ap-logo--1 {
  animation: apLogoFloat 6s ease-in-out infinite;
}

.ap-collage.is-playing .ap-logo--2 {
  animation: apLogoFloat 6.8s ease-in-out infinite 0.8s;
}

.ap-collage.is-playing .ap-logo--3 {
  animation: apLogoFloat 6.4s ease-in-out infinite 1.4s;
}

.ap-collage.is-playing .ap-logo--4 {
  animation: apLogoFloat 7s ease-in-out infinite 2s;
}

@keyframes apRowImageIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes apRowImageOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.985);
  }
}

@keyframes apRowLineIn {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes apRowLineInHorizontal {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes apRowLineOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


@keyframes apLogoFloat {
  0%, 100% {
    opacity: 0;
    transform: scale(0.86);
  }
  20% {
    opacity: 0.5;
    transform: scale(1);
  }
  40% {
    opacity: 0.75;
    transform: scale(1.15);
  }
  60% {
    opacity: 1;
    transform: scale(1.7);
  }
}

/* Точка входа: popup для 5 бесплатных постов */

.entry-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;
}

.entry-popup.is-open {
  display: flex;
}

.entry-popup__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 50% 45%, rgba(255, 107, 0, 0.24), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(0, 220, 255, 0.12), transparent 36%),
    rgba(1, 18, 25, 0.82);

  backdrop-filter: blur(11px);
}

/* Энергетическое свечение вокруг карточки */
.entry-popup__card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 570px;

  padding: 46px 48px 40px;
  border-radius: 32px;

  overflow: hidden;

  background:
    linear-gradient(145deg, rgba(8, 74, 86, 0.98), rgba(3, 35, 46, 0.98));

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 0 0 1px rgba(255, 122, 24, 0.18),
    0 0 42px rgba(255, 107, 0, 0.28),
    0 32px 110px rgba(0, 0, 0, 0.62);

  color: #ffffff;
}

/* Оранжевый световой ореол */
.entry-popup__card::before {
  content: "";
  position: absolute;
  inset: -2px;

  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 24, 0.42), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 177, 80, 0.18), transparent 24%);

  pointer-events: none;
}

/* Тонкая энергетическая линия сверху */
.entry-popup__card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 122, 24, 0.95),
    rgba(255, 208, 132, 0.85),
    transparent
  );

  box-shadow: 0 0 22px rgba(255, 122, 24, 0.85);
}

.entry-popup__close,
.entry-popup__badge,
.entry-popup h2,
.entry-popup__text,
.entry-popup__form,
.entry-popup__note {
  position: relative;
  z-index: 2;
}

.entry-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.entry-popup__close:hover {
  background: rgba(255, 122, 24, 0.9);
}

.entry-popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 18px;
  padding: 8px 13px;

  border-radius: 999px;

  background: rgba(255, 107, 0, 0.18);
  color: #ffb36b;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;

  box-shadow: 0 0 18px rgba(255, 107, 0, 0.18);
}

.entry-popup__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: #ff6b00;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.95);
}

.entry-popup h2 {
  margin: 0 0 16px;
  max-width: 430px;

  font-size: 43px;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.entry-popup__text {
  margin: 0 0 28px;
  max-width: 440px;

  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.55;
}

.entry-popup__form {
  display: grid;
  gap: 17px;
}

.entry-popup__form label {
  display: grid;
  gap: 8px;

  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.entry-popup__form input {
  width: 100%;
  padding: 16px 17px;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  background:
    linear-gradient(180deg, rgba(0, 31, 42, 0.92), rgba(0, 22, 31, 0.92));

  color: #ffffff;

  font-size: 16px;
  outline: none;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 rgba(255, 122, 24, 0);
}

.entry-popup__form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.entry-popup__form input:focus {
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.14),
    0 0 22px rgba(255, 122, 24, 0.16);
}

.entry-popup__form button {
  margin-top: 8px;
  padding: 17px 20px;

  border: 0;
  border-radius: 17px;

  background:
    linear-gradient(135deg, #ff6b00, #ff8a26);

  color: #ffffff;

  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;

  cursor: pointer;

  box-shadow:
    0 16px 36px rgba(255, 107, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.entry-popup__form button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 20px 44px rgba(255, 107, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.entry-popup__note {
  margin-top: 27px;

  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  text-align: center;
}

body.entry-popup-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .entry-popup__card {
    max-width: 100%;
    padding: 34px 24px 28px;
    border-radius: 26px;
  }

  .entry-popup h2 {
    font-size: 34px;
  }

  .entry-popup__text {
    font-size: 15px;
  }
}

/* Доработка popup: контраст, появление, лёгкая динамика */

.entry-popup__card {
  transform: scale(0.86) translateY(20px);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.26s ease;
}

.entry-popup.is-open .entry-popup__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.entry-popup h2 {
  color: #ff8a26;
  text-shadow:
    0 0 18px rgba(255, 107, 0, 0.28),
    0 2px 0 rgba(0, 0, 0, 0.18);
}

.entry-popup__form input {
  background: rgba(255, 255, 255, 0.88);
  color: #062f39;
  border-color: rgba(255, 255, 255, 0.42);
}

.entry-popup__form input::placeholder {
  color: rgba(6, 47, 57, 0.48);
}

.entry-popup__form input:focus {
  background: #ffffff;
  border-color: #ff8a26;
}

.entry-popup__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}



@keyframes entryNotePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.7);
    opacity: 1;
  }
}

/* Popup: нижняя строка с двумя живыми точками */

.entry-popup__note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 30px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  text-align: center;
}

.entry-popup__note i {
  display: inline-block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #ff8a26;
  box-shadow: 0 0 12px rgba(255, 138, 38, 0.9);

  animation: entryNotePulse 1.45s ease-in-out infinite;
}

.entry-popup__note i:nth-of-type(2) {
  animation-delay: 0.45s;
}

@keyframes entryNotePulse {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

/* Живое энергетическое свечение popup */

.entry-popup__card::before {
  animation: popupGlowMove 16s ease-in-out infinite alternate;
}

@keyframes popupGlowMove {

  0% {
    transform: translate(-12px, -8px) scale(1);
    opacity: 0.85;
  }

  25% {
    transform: translate(10px, -4px) scale(1.04);
    opacity: 1;
  }

  50% {
    transform: translate(16px, 10px) scale(1.08);
    opacity: 0.92;
  }

  75% {
    transform: translate(-6px, 14px) scale(1.03);
    opacity: 1;
  }

  100% {
    transform: translate(-18px, 6px) scale(1.1);
    opacity: 0.88;
  }
}