section {
    margin-bottom: 150px;
}
.ai-accounting .hero__main {
    justify-content: start;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.ai-accounting .hero__main .section__header {
    max-width: 562px;
}

.hero {
  background-color: #fff;
  padding: 130px 0 0 0;
}
#player {
    border-radius: 50px;
    width: 572px;
    height: 330px;
}
h1.section__title {
  width: 102%;
}

/* SECTION-KAB ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-KAB ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.kab {
  padding: 60px 0;
}

.kab__main {
  display: flex;
  justify-content: center;
  gap: 24px; /* Расстояние между блоками */
}

.kab-card {
  width: 386px;
  height: 227px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e5e5; /* Тонкая рамка как на скрине */
  border-radius: 32px;      /* Скругление углов */
  box-sizing: border-box;   /* Чтобы padding не раздувал ширину */
}

.kab-card__icon {
  width: 24px;
  height: 24px;
  color: #e9be00;
}

.kab-card__title {
  margin: 16px 0;           /* Top и Bottom по 16px */
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.kab-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #545454;
  margin: 0;
}

/* SECTION-ASKAI ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-ASKAI ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.askai__main img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* SECTION-STACK-CARDs ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-STACK-CARDs ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.stack-cards__main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  /* align-items: flex-start важен, чтобы sticky не ломался внутри flex-контейнера */
  align-items: flex-start; 
  padding: 60px 0; /* Отступы для секции, чтобы было куда скроллить */
}

/* Сама карточка */
.slicecard {
  width: 100%;
  /* height: 498px; */
  padding: 32px 32px 32px 72px;
  box-sizing: border-box;
  
  display: flex;
  justify-content: center; /* Или center, если хочешь отцентрировать по краям */
  gap: 56px;
  
  background-color: #FEF4CC; /* Фоновый цвет из макета */
  border-radius: 40px;
  border: 1px solid #eee; /* Опционально, чтобы карточки не сливались */
  
  /* Магия наложения */
  position: sticky;
  top: 200px; /* Отступ от верха экрана при залипании. Настрой под свой header */
}

/* Левая часть (тексты) */
.slicecard__left {
  width: 544px;
  flex-shrink: 0;
  
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: flex-start;
}

/* Убираем лишние отступы внутри левой части, если флекс их растаскивает */
.slicecard__left .section__header {
    position: relative;
    left: 0;
    justify-content: flex-start; /* Прижать к левому краю */
    text-align: start;
    margin: 0;
}
.slicecard__left .section__title {
    font-size: 36px;
}

.slicecard__left .section__description {
  margin: 0;
  font-size: 16px;
  color: #000;
}

/* Список */
.slicecard__left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Запрошенный отступ */
}

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

.slicecard__left li p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.slicecard__left li svg {
  flex-shrink: 0;
  background-color: transparent; /* Если захочешь вставить реальный svg */
  width: 18px;
}

/* Правая часть (картинка) */
.slicecard__right {
  width: 544px;
  height: 450px;
  flex-shrink: 0;
  overflow: hidden;
}

.slicecard__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slicecard-1 {
}
.slicecard-2 {
    background-color: #EEF3FE;
}
.slicecard-2 .section__subtitle{
    color: #276ef1;
}
.slicecard-3 {
    background-color: #FFEEF2;
}
.slicecard-3 .section__subtitle{
    color: #996773;
}
.slicecard-4 {
    background-color: #E9FBFD;
}
.slicecard-4 .section__subtitle{
    color: #588c93;
}

/* SECTION-CREDIT ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SECTION-CREDIT ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.credit-section {
  background-color: #FBDE66; /* Цвет фона из макета */
  padding: 80px 0;
  text-align: center;
}

.credit__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.credit__header .section__title {
  margin: 0;
}

.credit__header .section__description {
  margin: 0 0 16px 0;
  color: #333;
}

/* Сетка карточек */
.credit__cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.credit-card {
  width: 386px;
  height: 335px;
  background-color: #fff;
  border: 4px solid #1a1a1a;
  border-radius: 32px;
  padding: 32px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* Верхняя плашка с тегом */
.credit-card__tag {
  background-color: #f5f5f5;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-bottom: 24px;
  align-self: flex-start;
}

.tag-red {
  color: #D9534F;
  font-weight: 700;
}

.tag-green {
  color: #2D8A4E;
  font-weight: 700;
}

.credit-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px 0;
}

.credit-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin: 0 0 auto 0; /* Отталкивает цифры в самый низ карточки */
}

/* Блок с цифрами */
.credit-card__amount {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A3821A; /* Золотистый цвет цифр */
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-top: 24px;
}

.credit-card__amount svg {
  color: #A3821A;
  flex-shrink: 0;
}

.credit-card__label {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-top: 8px;
}

/* Текст снизу */
.credit__footer {
  max-width: 700px;
  margin: 0 auto;
}

.credit__footer .section__description {
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a4a;
}