.hero .hero__main {
    display: flex;
    gap: 50px;
    align-items: center;
}
.hero__action--formation {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}


/* SECTION-COMPLITAN ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-COMPLITAN ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.complitan {
  padding: 56px 0;
  background-color: #ffffff;
}

/* Центрируем заголовок */
.complitan__title {
  text-align: center;
  margin-bottom: 64px;
}

/* Сетка карточек */
.complitan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 40px;
}

/* Сама карточка */
.complitan__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background-color: transparent;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

/* Ховер-эффект по ТЗ */
.complitan__card:hover {
  background-color: #fef4cc;
}

/* Иконка */
.complitan__card-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* Заголовок карточки */
.complitan__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

/* Текст карточки */
.complitan__card-text {
  font-size: 16px;
  line-height: 1.5;
  color: #555555; /* Подставь переменную, если есть общая для серого текста */
  margin: 0;
  flex-grow: 1; /* Прижимает ссылку к низу, если карточки разной высоты */
}

/* Ссылка внизу */
.complitan__card-link {
  font-size: 14px;
  font-weight: 600;
  color: #0055ff; /* Синий цвет ссылки, подгони под свой primary */
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* Адаптив (мобилка и планшет) */
@media (max-width: 1024px) {
  .complitan__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .complitan__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* SECTION-PROGRESS-LINE ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-PROGRESS-LINE ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
  /* ── Section ── */
  .progressLine {
    padding: 80px 20px 100px;
    max-width: 900px;
    margin: 0 auto;
  }
 
  /* ── Header ── */
  .progressLine__header {
    text-align: center;
    margin-bottom: 64px;
  }
 
  .progressLine__cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
  }
 
  /* ── Main track ── */
  .progressLine__main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  /* Vertical background line */
  .progressLine__track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 52px;
    bottom: 0;
    width: var(--line-w);
    background: var(--gray-line);
    z-index: 0;
  }
 
  /* Yellow fill overlay */
  .progressLine__fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 52px;
    width: var(--line-w);
    height: 0%;
    background: var(--yellow);
    z-index: 1;
    transition: height 0.5s ease;
  }
 
  /* ── Step block ── */
  .progressLine__step {
    display: grid;
    grid-template-columns: 1fr var(--node-size) 1fr;
    gap: 0 90px;
    align-items: start;
    padding: 48px 0;
    position: relative;
    z-index: 2;
  }
 
  /* Left side */
  .progressLine__left {
    text-align: right;
    padding-right: 8px;
  }
 
  .progressLine__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    background-color: #F6F6F6;
    color: #000;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 10px;
  }
 
  .progressLine__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }
 
  /* Center node */
  .progressLine__node {
    width: var(--node-size);
    height: var(--node-size);
    border-radius: 6px;
    border: 2px solid var(--gray-node);
    background: #fff;
    margin-top: 4px;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
 
  /* Right card */
  .progressLine__card {
    max-width: 350px;
    background: #F6F6F6;
    border-radius: 32px;
    padding: 32px;
    font-size: 0.88rem;
    /* opacity: 0.35; */
    transition: background 0.4s ease;
  }
 
  /* Right card wrapper */
  .progressLine__card-wrapper {
    grid-column: 3;
  }
 
  .progressLine__card p {
    line-height: 1.55;
    margin-bottom: 14px;
  }
 
  .progressLine__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }
 
  .progressLine__checklist li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.4;
  }
 
  /* .progressLine__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
    color: #888;
    transition: background 0.35s, color 0.35s;
  } */
 
  .progressLine__check-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
  }
  .progressLine__check-text span {
    font-size: 0.78rem;
    color: var(--text-mid);
  }
 
  .progressLine__timing {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #e8e8e8;
    padding-top: 12px;
    margin-top: 4px;
  }
 
  .progressLine__timing svg {
    color: #bbb;
  }

 
  /* ── Active state ── */
  .progressLine__step.is-active .progressLine__label {
     opacity: 1; 
     background: #FDE999;
     color: #74593f;
    }
  .progressLine__step.is-active .progressLine__title { opacity: 1; }
  .progressLine__step.is-active .progressLine__card {
    opacity: 1;
    background: #FEF4CC;
  }
  .progressLine__step.is-active .progressLine__node {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 5px rgba(245,200,66,0.2);
  }
  .progressLine__step.is-active .progressLine__timing {
    color: #8a6f00;
  }
  .progressLine__step.is-active .progressLine__timing svg {
    color: var(--yellow);
  }
 
  /* ── Mobile ── */
  @media (max-width: 640px) {
    .progressLine__step {
      grid-template-columns: var(--node-size) 1fr;
      grid-template-rows: auto auto;
      gap: 0 16px;
    }
 
    .progressLine__track,
    .progressLine__fill {
      left: calc(var(--node-size) / 2);
      transform: translateX(-50%);
    }
 
    .progressLine__left {
      grid-column: 2;
      grid-row: 1;
      text-align: left;
      padding-right: 0;
      margin-bottom: 12px;
    }
 
    .progressLine__node {
      grid-column: 1;
      grid-row: 1;
    }
 
    .progressLine__card,
    .progressLine__card-wrapper {
      grid-column: 2;
      grid-row: 2;
    }
  }

/* SECTION-CORP-TAB ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-CORP-TAB ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.corpTab {
  padding: 100px 0;
  background-color: #fff;
}

.corpTab__header {
  text-align: center;
  margin-bottom: 48px;
}

/* Табы */
.corpTab__tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
  border-bottom: 1px solid #e5e5e5;
}

.corpTab__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #888;
  transition: all 0.3s;
}

.corpTab__tab.is-active {
  color: #000;
  border-bottom-color: #000;
}

/* Контент (Action) */
.corpTab__action {
  display: none; /* Скрыты по умолчанию */
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.corpTab__action.is-active {
  display: grid;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Левая часть (Картинка) */
.corpTab__img-wrapper {
  position: relative;

}

.corpTab__image {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.corpTab__img-text {
  position: absolute;
  top: 40px;
  right: 40px;
  max-width: 200px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
}

.corpTab__img-text strong {
  color: #fff;
}

/* Правая часть (Текст) */
.corpTab__content-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.corpTab__content-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.corpTab__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corpTab__list-item {
  position: relative;
  font-size: 16px;
}

.corpTab__list-item svg {
  position: relative;
  top: 6px;
  margin-right: 8px;
}
.corpTab__list-item.succes svg {
  color: green;
}
.corpTab__list-item.danger svg {
  color: red;
}

/* Адаптив */
@media (max-width: 992px) {
  .corpTab__container {
    padding: 0 40px;
  }
  .corpTab__content-title {
    font-size: 1.4em;
  }
  .corpTab__action {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .corpTab__img-text {
    top: 20px;
    right: 20px;
    font-size: 16px;
  }
}

/* SECTION-CTA-PRICING ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-CTA-PRICING ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Стили для ctaPricing на основе дизайна */
.ctaPricing {
  background-color: #FEF4CC; /* Фирменный светло-желтый фон */
  padding: 100px 0;
}

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

/* Контент слева */
.ctaPricing__content {
  flex: 1;
  max-width: 500px;
}

.ctaPricing__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: left; /* Перебиваем центрирование заголовка */
}

.ctaPricing__subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
}

/* Карточка справа */
.ctaPricing__card {
  width: 596px;
  height: 306px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 200ms;
}
.ctaPricing__card:hover {
  transform: scale(1.05);
  transition: 200ms;
}

.ctaPricing__card-icon {
  margin-bottom: 20px;
}

.ctaPricing__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ctaPricing__card-text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 32px;
}

.ctaPricing__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ctaPricing__price-block {
  display: flex;
  flex-direction: column;
}

.ctaPricing__price {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.ctaPricing__fees {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.ctaPricing__arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.ctaPricing__arrow-btn .arrow {
  position: relative;
  left: -2px;
  transform: rotate(-90deg);
}

.ctaPricing__arrow-btn:hover {
  background-color: #e0e0e0;
}

/* Адаптив для мобилок */
@media (max-width: 992px) {
  .ctaPricing__main {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .ctaPricing__content {
    max-width: 100%;
  }

  .ctaPricing__title {
    text-align: center;
    font-size: 36px;
  }

  .ctaPricing__card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding: 30px;
  }
}

/* SECTION-SUCCESS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-SUCCESS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.success {
  padding: 100px 0;
}

.success__cards {
  display: flex;
  justify-content: space-between; /* Как ты и просил */
  gap: 24px;
  margin-top: 48px;
}

.success__card {
  position: relative;
  width: 386px;
  height: 412px;
  padding: 32px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 300ms;
}
.success__card:hover {
  transform: scale(1.02);
  transition: 300ms;
}

/* Цвета фонов из скриншота */
.success__card--pink { background-color: #FFF1F1; }
.success__card--blue { background-color: #F1F4FF; }
.success__card--green { background-color: #EAF9EE; }

.success__card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
}

.success__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.success__card-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
}

.success__card-link {
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  margin-bottom: 46px;
}

.success__card--pink .success__card-link { color: #D14F4F; }
.success__card--blue .success__card-link { color: #4F67D1; }
.success__card--green .success__card-link { color: #3E8E41; }

/* Пустая картинка в углу */
.success__card-img {
  position: relative;
  bottom: 0;
  left: 0;
  width: 196px;
  height: 128px;
  /* object-fit: contain; */
  background-color: rgba(255,255,255,0.3); /* Временно подсветил область */
}

.success__footer {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* Адаптив для средних экранов */
@media (max-width: 1200px) {
  .success__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}

