


/* ——— Mobile Control секциясы (extra.html) ——— */
.mobile-control {
  background-color: #ffffff;
  padding: 96px 0;
}

.mobile-control__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Сол жақ блог */
.mobile-control__text {
  flex: 1 1 360px;
}

.mobile-control__title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1D3A8A;
  margin: 0 0 40px;
  line-height: 1;

}

.mobile-control__subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  margin: 0 0 40px;
}

.mobile-control__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.mobile-control__buttons_container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
    padding: 12px 20px;
}

/* Батырма (App Store / Play) қою фонды */
.btn--store.btn--dark {
  background-color: #0F172A;
  color: #ffffff;
  border-radius: 12px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}

.btn--store.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn--store.btn--dark .btn__icon {
  width: 24px;
  height: 24px;
}

.btn--store.btn--dark .btn__text small {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.btn--store.btn--dark .btn__text span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

/* Телефон суреті */
.mobile-control__preview {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.mobile-control__preview img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

/* ——— Адаптивтік ——— */
@media (max-width: 992px) {
  .mobile-control__wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .mobile-control__text,
  .mobile-control__preview {
    flex: 1 1 auto;
  }
}

@media (max-width: 576px) {
  .mobile-control {
    padding: 60px 0;
  }
  .mobile-control__title {
    font-size: 1.75rem;
  }
  .mobile-control__subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .btn--store.btn--dark {
    width: 100%;
    justify-content: center;
  }
}



/* ——— Intro Video секциясы ——— */
.intro-video {
  background: #FDF9F0;
  padding: 80px 0;
  text-align: center;
}

.intro-video__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1D3A8A;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.intro-video__subtitle {
  font-size: 1rem;
  color: #6B7280;
  max-width: 600px;
  margin: 23px auto 48px;
  line-height: 1.5;
}

.intro-video__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.intro-video__wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

/* ——— Адаптивтік ——— */
@media (max-width: 768px) {
  .intro-video {
    padding: 60px 0;
  }
  .intro-video__title {
    font-size: 1.5rem;
  }
  .intro-video__subtitle {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }
  .intro-video__wrapper {
    width: 95%;
  }
}

/* ——— Секция «Сіздің сенімді серіктесіңіз» ——— */
.trusted-partner {
  background-color: #ffffff;
  padding: 96px 0;
  text-align: center;
}
.trusted-partner__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1D3A8A;
  margin: 0;
}
.trusted-partner__subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin: 8px 0 40px;
  line-height: 1.6;
}

/* Grid для карточек */
.trusted-partner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* Общий стиль карточки */
.feature-card {
  background-color: #FDF9F0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Wide-карточка: растягиваем на все колонки */
.feature-card--wide {
  grid-column: 1 / -1;
  gap: 20px;
}

/* Иконка */
.feature-card__icon {

  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon img {
  width: 56px;
  height: 56px;
}

/* Текст */
.feature-card__title {
  margin: 0;
  font-size: 1.25rem;
    text-align: left;
  font-weight: 600;
  color: #111827;
}
.feature-card__desc {
  margin: 0;
  margin-top: 8px;
  font-size: 0.875rem;
  color: #6B7280;
  text-align: left;
}

/* ——— Адаптивность ——— */
@media (max-width: 1200px) {
  .trusted-partner__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trusted-partner__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide {
    flex-direction: column;
    text-align: center;
  }
  .feature-card--wide .feature-card__icon {
    margin: 0 auto;
  }
}

/* ——— Секция App Gallery (Screens slider) ——— */
.app-gallery {
  background-color: #FDF9F0;
  padding: 90px 0;
  text-align: center;
}
.app-gallery__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1D3A8A;
  margin: 0;
}
.app-gallery__subtitle {
  font-size: 1rem;
  color: #6B7280;
  margin: 19px 0 60px;
  line-height: 1.6;
}

/* Слайдер */
.app-gallery__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
 
}
.app-gallery__slider::-webkit-scrollbar {
  display: none; /* прячем скроллбар */
}

/* Каждый слайд */
.slide {
  flex: 0 0 300px;      /* фиксированная ширина */
  width: 300px;
  height: 610px;        /* фиксированная высота */
  border-radius: 24px;
  overflow: hidden;
}

/* Картинка заполняет контейнер */
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit:cover;
}

/* ——— Адаптивность ——— */
@media (max-width: 1200px) {
  .slide {
    flex: 0 0 calc((100% - 3 * 16px) / 4); /* четыре в ряд */
  }
}
@media (max-width: 992px) {
  .slide {
    flex: 0 0 calc((100% - 2 * 12px) / 3); /* три в ряд */
  }
}
@media (max-width: 768px) {
  .slide {
    flex: 0 0 calc((100% - 1 * 8px) / 2); /* два в ряд */
  }
}
@media (max-width: 576px) {
  .slide {
    flex: 0 0 100%; /* один в ряд */
  }
}
