/* ================== AVAND CSS (clean) ================== */

/* --- Переменные бренда --- */
:root {
  --avand-green: #179c7b;
  --avand-green-soft: #e6f5ef;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-soft: #f3f4f6;
}

/* --- Базовые сбросы --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================== HEADER ================== */
/* ================== HEADER ================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 2px solid rgba(15, 167, 122, 0.18);

  /* усиленный градиент */
  background: linear-gradient(
    to bottom,
    #DFF4EC 0%,
    #F2FBF7 35%,
    #FFFFFF 100%
  );
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #111827;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--avand-green);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.is-active::after {
  width: 100%;
}

.header__cta {
  margin-left: 24px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* ================== HERO ================== */

.hero {
  padding: 80px 0 64px;
  background: radial-gradient(circle at top left, #f4faf7 0, #ffffff 55%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--avand-green);
  margin-bottom: 10px;
}

.hero__content h1 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.3;
  color: var(--text-main);
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.btn--primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--avand-green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 25px rgba(15, 167, 122, 0.2);
}

.btn--primary:hover {
  background: #0c8c65;
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(15, 167, 122, 0.25);
}



.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,156,123,0.15), transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}
.hero__image {
  position: relative;        /* чтобы ::after привязался к этому блоку */
  border-radius: 22px;
  overflow: hidden;          /* обрежет градиент по краям картинки */
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
}



/* ================== ОБЩИЕ СЕКЦИИ ================== */

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 32px;
  color: #0a0a0a;
}
.section-title-unified {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 32px;
  color: #0a0a0a;
}
.hero__image {
  position: relative;              /* якорь для ::after */
  border-radius: 22px;
  overflow: hidden;                /* обрежет градиент по краям */
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Зелёный tonal overlay только внутри hero__image */
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 156, 123, 0.28),
    rgba(23, 156, 123, 0.08) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* ================== ABOUT ================== */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

.about__text p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about__highlights {
  display: grid;
  gap: 16px;
}

.about-card {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 167, 122, 0.18);
  background: #ffffff;
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.about-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Мягкий фон секции */
.section--soft {
  background: var(--bg-soft);
}

.section-header {
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--avand-green);
  margin: 0 0 8px;
}
.about__slogan p {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--avand-green);   /* фирменный зелёный */
}


/* ================== PROCESS / SUPPORT ================== */

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  padding-left: 48px;
}

.process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(15, 167, 122, 0.3);
  color: var(--avand-green);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-card {
  border-radius: 18px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 167, 122, 0.24);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.support-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.support-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================== FOOTER ================== */



.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 24px;
  font-size: 14px;
  color: #4b5563;
}

.footer__brand {
  max-width: 260px;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer__tagline {
  margin: 0;
  line-height: 1.4;
}

.footer__col {
  min-width: 160px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111827;
}

.footer__col a {
  display: block;
  margin-bottom: 6px;
  color: #4b5563;
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--avand-green);
}



.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #6b7280;
}

.footer__copy {
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ================== STATS ================== */

.stats {
  background: #ffffff;
}

.stats__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stats__item {
  flex: 1;
  min-width: 180px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 167, 122, 0.18);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.stats__item:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #f9fafb;
  transform: translateY(-1px);
}

.stats__number {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--avand-green);
  margin-bottom: 6px;
}

.stats__number::after {
  content: "+";
  font-weight: 600;
  margin-left: 3px;
}

.stats__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
}

/* ================== SERVICES ================== */

.services {
  background: #ffffff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 22px 22px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 167, 122, 0.16);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 167, 122, 0.4);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--avand-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--avand-green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================== FAQ ================== */

.faq__list {
  border-radius: 18px;
  border: 1px solid rgba(15, 167, 122, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #e5e7eb;
}

.faq-item__question {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-item__question span:first-child {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--avand-green);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item__answer p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-item--open .faq-item__answer {
  max-height: 400px;
  padding-bottom: 12px;
}

.faq-item--open .faq-item__question {
  background: #f9fafb;
}

/* ================== ABOUT (second column layout) ================== */

.about {
  padding: 80px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

.about__content {
  max-width: 720px;
}

.about__content p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.about__slogan {
  margin: 16px 0 20px;
}

.about__slogan p {
  font-weight: 600;
  margin-bottom: 4px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  padding: 20px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg,
    rgba(5, 148, 110, 0.14) 0%,
    rgba(5, 148, 110, 0.04) 100%);
  border: 1px solid rgba(5, 148, 110, 0.35);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--avand-green);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
}


/* ================== MONITOR EFFECT ================== */
/* Reklam üçün rəqəmsal monitorun effektivliyi */

.monitor-effect {
  padding: 72px 0;
}

.monitor-effect h2 {
  /* размер как у других секций берётся из .section-title,
     поэтому тут только отступ */
  margin-bottom: 24px;
}

.effect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.effect-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.effect-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.effect-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ================== GALLERY ================== */

.gallery {
  padding: 60px 0;
}

.gallery__main {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.gallery__main::-webkit-scrollbar {
  height: 6px;
}

.gallery__main::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.gallery__main-item {
  flex: 0 0 380px; /* ширина карточки на десктопе */
  scroll-snap-align: start;
}

.gallery__main-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* ================== ADAPTIVE ================== */

@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== MOBILE NAV (BURGER) ===== */

@media (max-width: 992px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    /* тот же градиент, что на десктопе */
    background: linear-gradient(
      to bottom,
      #DFF4EC 0%,
      #F2FBF7 35%,
      #FFFFFF 100%
    );
  }

  .header--menu-open {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: auto;                           /* больше не тянем на всю ширину */
    width: min(280px, calc(100% - 32px)); /* аккуратная карточка справа */
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    text-align: center;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 0.03em;
    padding-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }

  .burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
  }

  .burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


  /* галерея — карточка почти на весь экран, скролл свайпом */
  .gallery__main {
    margin: 0 -16px;
    padding: 0 16px 16px;
  }

  .gallery__main-item {
    flex: 0 0 80%;
  }

  .gallery__main::-webkit-scrollbar {
    display: none;
  }

  .advantages__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .advantages__image {
    max-width: 280px;
    width: 100%;
  }
}
/* ====== ЕДИНЫЕ ЗАГОЛОВКИ ДЛЯ ВСЕХ СЕКЦИЙ ====== */

.section-title,
section h2 {
    font-size: 26px !important;
    font-weight: 600 !important;
    margin-bottom: 32px !important;
    color: #0a0a0a !important;
    line-height: 1.3;
}


.gallery__main {
    padding-left: 16px;
}
/* --- GALEREYA FIX — аккуратные отступы --- */

.gallery {
    padding-left: 24px; /* смещает заголовок */
}


.gallery__main {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-left: 4px; /* убирает “прилипание” фото */
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.gallery__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
}

.gallery__item img {
    width: 260px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Чтобы на ПК тоже листалось горизонтально, как на мобильном */
@media (min-width: 1024px) {
    .gallery {
        padding-left: 40px;
    }
    .gallery__main {
        padding-left: 8px;
    }
}
/* --- Выравнивание секции Galereya с Haqqımızda --- */

/* Основной контейнер как у других секций */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* тот же внутренний отступ что и у Haqqımızda */
}

/* Заголовок в стиле Haqqımızda */
.gallery h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Галерея-карусель */
.gallery__main {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

/* Фотографии */
.gallery__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
}

.gallery__item img {
    width: 260px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* На больших экранах */
@media (min-width: 1024px) {
    .gallery {
        padding: 0 40px; /* как у Haqqımızda на десктопе */
    }
}
/* --- PARTNERS --- */
/* ---------- PARTNYORLAR ---------- */
.partners {
  padding: 64px 0 80px;
}

.partners .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;

  /* выравниваем как Haqqımızda */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
}

/* Центрируем логотипы */
.partners__list {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;

  padding: 0 16px;
}

/* Унифицированный размер логотипов */
.partners__item img {
  height: 70px;         /* одинаковая высота */
  width: auto;
  object-fit: contain;
  display: block;

  filter: brightness(1);
  transition: transform 0.25s ease;
}

.partners__item img:hover {
  transform: scale(1.05);
}

/* --- mobile: по одному в ряд --- */
@media (max-width: 768px) {
  .partners__list {
    flex-direction: column;
    gap: 28px;
  }

  .partners__item img {
    height: 56px;
  }
}


/* --- Mobile --- */
@media (max-width: 768px) {
    .partners__list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        overflow-x: visible;
    }

    .partners__item img {
        height: 60px;
    }
}
/* === Galereya & Partnyorlar — аккуратная версия === */

/* Одинаковый контейнер, как у остальных секций */
.gallery.section .container,
.partners .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовки галереи и партнёров используют общий .section-title сверху,
   поэтому тут только отступы по секции */
.gallery.section,
.partners {
  padding: 72px 0;
}

/* ---------- GALEREYA ---------- */

.gallery__main {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.gallery__main::-webkit-scrollbar {
  height: 6px;
}

.gallery__main::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.gallery__main-item {
  flex: 0 0 380px;          /* ширина карточки на десктопе */
  scroll-snap-align: start;
}

.gallery__main-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* ---------- PARTNYORLAR ---------- */

.partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners__item img {
  max-height: 70px;         /* одинаковая высота для всех логотипов */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .gallery__main-item {
    flex: 0 0 80%;          /* картинка почти на весь экран, скролл свайпом */
  }

  .partners__list {
    flex-direction: column;
    gap: 24px;
  }

  .partners__item img {
    max-height: 56px;
  }
}
/* === FINAL FIX: headings + gallery + partners === */

/* единый стиль заголовков секций */
.section-title,
.section-title-unified {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 32px;
  color: #0a0a0a;
  line-height: 1.3;
}

/* убираем спец-отступы у Galereya и Partnyorlar */
.gallery.section,
.partners {
  padding: 72px 0;      /* только вертикальные отступы, без смещений влево */
}

.gallery.section .container,
.partners .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* заголовки галереи и партнёров без дополнительных margin/padding */
.gallery .section-title,
.partners .section-title {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  max-width: none;
}

/* ---------- GALEREYA ---------- */

.gallery__main {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.gallery__main::-webkit-scrollbar {
  height: 6px;
}

.gallery__main::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.gallery__main-item {
  flex: 0 0 380px;      /* ширина карточки на десктопе */
  scroll-snap-align: start;
}

.gallery__main-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* ---------- PARTNYORLAR ---------- */

.partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners__item img {
  max-height: 70px;     /* все логотипы выравниваем по высоте */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .gallery__main-item {
    flex: 0 0 80%;      /* картинка почти на весь экран, скролл свайпом */
  }

  .partners__list {
    flex-direction: column;
    gap: 24px;
  }

  .partners__item img {
    max-height: 56px;
  }
}
/* Выравнивание размеров логотипов партнёров */
.partners__item img {
    max-height: 60px;     /* одинаковая высота */
    max-width: 160px;     /* ограничиваем ширину */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/* ===== Партнёры: мобильная версия ===== */
@media (max-width: 768px) {
  .partners__list {
    flex-direction: column;      /* логотипы в колонку */
    align-items: center;
    gap: 24px;                   /* одинаковый вертикальный интервал */
    margin-top: 24px;            /* чтобы не было огромной дырки под заголовком */
  }

  .partners__item {
    width: 70%;                  /* аккуратно по ширине экрана */
    max-width: 260px;
    height: 80px;                /* ОДИНАКОВАЯ высота блока для всех логотипов */
    display: flex;
    align-items: center;         /* центр по вертикали */
    justify-content: center;     /* центр по горизонтали */
  }

  .partners__item img {
    max-height: 50px;            /* логотипы по высоте выровнялись */
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
/* ===== Əlaqə (contact form) — Medizingroup style ===== */

.contact-form {
  padding: 90px 0;
  background: #fafafa;
}

.contact-form__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-form__form {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 48px 42px 54px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.contact-form__row {
  margin-bottom: 26px;
}

.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border-radius: 14px;
  background: #f4f5f6;
  border: 1px solid #e3e5e7;
  padding: 14px 16px;
  font-size: 17px;
  transition: 0.2s ease;
  font-family: inherit;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  background: #fff;
  border-color: #0f907a;
  box-shadow: 0 0 0 3px rgba(15, 144, 122, 0.22);
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 28px;
  color: #4d4d4d;
}

.contact-form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-form__submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #0f907a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form__submit:hover {
  background: #0d7e69;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 60px 0 80px;
  }

  .contact-form__form {
    padding: 32px 22px 40px;
    max-width: 100%;
    border-radius: 16px;
  }
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(23, 156, 123, 0.65); /* мягкий зелёный */
}

/* ===== SOCIAL LINKS (WhatsApp + Instagram) ===== */

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  /* Корпоративный тёмно-зелёный */
  color: #ffffff;
  background: #0F4336;

  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: #0F907A;
  box-shadow: 0 6px 18px rgba(15, 144, 122, 0.25);
  transform: translateY(-1px);
}

.footer__social {
  display: flex;
  gap: 12px;
}
/* ===== MAP SECTION (Google MyMaps) ===== */

.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4faf7 0%, #ffffff 55%);
}

.map-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Карточка, как у Medizingroup: белый блок + тень */
.map-section__card {
  margin-top: 8px;
  padding: 24px 0 0;
}

/* Рамка в фирменном зелёном + лёгкий градиент внутри */
.map-section__frame {
  border-radius: 18px;
  border: 2px solid var(--avand-green);
  background: radial-gradient(circle at top left, #e6f5ef 0%, #ffffff 55%);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Сам iframe */
.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

/* Адаптив под мобильный */
@media (max-width: 768px) {
  .map-section {
    padding: 60px 0 72px;
  }

  .map-section__card {
    padding-top: 12px;
  }

  .map-section__frame {
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
  }

  .map-section__frame iframe {
    height: 360px;
  }
}
/* ===== MOBILE NAV (BURGER) ===== */

@media (max-width: 992px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;

  }

  .header--menu-open {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 0.03em;
    padding-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }

  .burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
  }

  .burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* ===== EFFECT SECTION (icons fix) ===== */

.effect-item {
  display: flex;
  align-items: center;        /* Выровнять иконку и текст по центру */
  gap: 24px;                  /* Расстояние между иконкой и текстом */
  margin-bottom: 48px;        /* Отступ между пунктами */
}

.effect-icon {
  width: 52px;                /* Увеличена иконка */
  height: 52px;
  flex-shrink: 0;             /* Чтобы не сжималась */
  opacity: 0.95;              /* Лёгкая премиальная мягкость */
  transform: translateY(2px); /* Чуть ниже — визуально выравнивает */
}

.effect-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
}

.effect-item p {
  margin: 0;
  font-size: 18px;
  opacity: 0.8;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .effect-item {
    align-items: flex-start;
    gap: 16px;
  }

  .effect-icon {
    width: 44px;
    height: 44px;
    transform: translateY(4px);
  }

  .effect-item h3 {
    font-size: 20px;
  }

  .effect-item p {
    font-size: 16px;
  }
}

.adv-card {
  border: 2px solid var(--avand-green);
  border-radius: 18px;
  padding: 32px;
  background: radial-gradient(circle at top left, #e6f5ef 0%, #ffffff 60%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.adv-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--avand-green);
}

.adv-card p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}


/* Mobile */
@media (max-width: 768px) {
  .adv-card {
    padding: 24px;
  }

  .adv-card h3 {
    font-size: 20px;
  }

  .adv-card p {
    font-size: 16px;
  }
}
.features__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(5, 148, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.features__icon img {
  width: 28px;
  height: 28px;
  display: block;
}
.advantages {
  padding: 40px 0 20px;
}

.advantages__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.advantages__image {
  flex: 1;
  max-width: 520px;
}

.advantages__image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.advantages__content {
  flex: 1;
  max-width: 520px;
}

@media (max-width: 992px) {
  .advantages__inner {
    flex-direction: column;
    gap: 24px;
  }
}
/* ===== Оформление списка в "Rəqəmsal 4K monitorların üstünlükləri" ===== */

.advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.advantages__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}

/* Зелёные кружочки с цифрами */
.advantages__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--avand-green);
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
/* Отступ между зелёными блоками справа от Haqqımızda */
.adv-card:not(:last-child) {
  margin-bottom: 24px;
}
.section-title::before,
section h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--avand-green);
  border-radius: 6px;
  margin-bottom: 12px;
}
/* ==================== FOOTER ==================== */

.footer {
  border-top: 4px solid var(--avand-green);
  background: #f9fafb;
  padding: 36px 0 0;
  margin-top: 60px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 28px;
}

.footer__brand {
  max-width: 220px;
}

.footer__logo {
  height: 34px;
  width: auto;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Колонки */
.footer__col {
  min-width: 160px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  color: #111827;
}

.footer__col a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--avand-green);
}

/* Соцсети */
.footer__col--social {
  min-width: 200px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: #0F4336;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.footer__social-link img {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--avand-green);
  box-shadow: 0 6px 18px rgba(23,156,123,0.25);
  transform: translateY(-1px);
}

/* Оттенки для WA */
.footer__social-link--wa {
  background: #128C7E;
}
.footer__social-link--wa:hover {
  background: #0d6c62;
}

/* Низ футера */
.footer__bottom {
  background: #f3f4f6;
  padding: 10px 0 14px;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}

.footer__copy {
  margin: 0;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer__social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__social-link {
    flex: 1 1 calc(50% - 12px);
    justify-content: center;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
.footer__social {
  display: flex;
  gap: 12px;
}

.footer__icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0F4336;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__icon-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer__icon-btn:hover {
  background: var(--avand-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23,156,123,0.25);
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.footer__icon-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.footer__icon-btn:hover img {
  opacity: 0.75;
  transform: translateY(-1px);
  transition: 0.2s ease;
}
/* ==== Sosial media icons in footer ==== */

.footer__col--social {
  min-width: 180px;
}

.footer__social {
  display: flex;
  gap: 16px;              /* расстояние между иконками */
  align-items: center;
}

.footer__icon-btn {
  padding: 0;
  margin: 0;
  border: none;
  background: none;       /* без фона */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.footer__icon-btn img {
  width: 32px;            /* размер иконки на десктопе */
  height: 32px;
  display: block;
  object-fit: contain;
}

/* Hover — лёгкое увеличение и чуть менее прозрачный вид */
.footer__icon-btn:hover {
  transform: scale(1.06);
  opacity: 0.85;
}

/* На мобильном — чуть меньше иконки */
@media (max-width: 768px) {
  .footer__icon-btn img {
    width: 26px;
    height: 26px;
  }
}
.footer__col--social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col--social .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
/* ----------------------------- */
/*  ГРАДИЕНТ ВВЕРХУ САЙТА         */
/* ----------------------------- */

header::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
}


/* ----------------------------- */
/*  ГРАДИЕНТ ПЕРЕД ФУТЕРОМ        */
/* ----------------------------- */

footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
  margin-bottom: 20px;
}
header,
.footer,
.site-footer,
#footer,
.footer-bottom {
    border: none !important;
    box-shadow: none !important;
}
/* ====== ЛИНИИ ВВЕРХУ И В ФУТЕРЕ ====== */

/* убираем старые жирные бордеры */
header,
footer {
    border: none !important;
    box-shadow: none !important;
}

/* делаем header и footer опорой для псевдоэлементов */
header,
footer {
    position: relative;
}

/* тонкая градиентная линия под шапкой */
header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
}

/* тонкая градиентная линия сверху футера */
footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
}


/* ====== БЛОК СОЦСЕТЕЙ В ФУТЕРЕ ====== */

.footer-social .social-icons {
    display: flex;
    flex-direction: column;   /* иконки одна под другой */
    gap: 10px;
    margin-top: 12px;
}

.footer-social .icon-link {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    outline: none;
    border: none;
}

.footer-social .icon-link:focus,
.footer-social .icon-link:active {
    outline: none;
    box-shadow: none;
}

/* сами SVG-иконки */
.footer-social .icon-svg {
    width: 28px;
    height: 28px;
}

/* элементы с class="stroke" внутри SVG */
.footer-social .icon-svg .stroke {
    stroke: #049C84;
    stroke-width: 32;
    fill: none;
}

/* элементы с class="fill" внутри SVG */
.footer-social .icon-svg .fill {
    fill: #049C84;
    stroke: none;
}

/* лёгкий hover без кружочков */
.footer-social .icon-link:hover .icon-svg {
    opacity: 0.8;
    transform: translateY(-1px);
    transition: 0.15s ease;
}
/* ===== Градиент под шапкой ===== */
.header-gradient {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
}

/* ===== Градиент перед футером ===== */
.footer-gradient {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #0B5B52, #0F8B7A, #049C84);
}

}
.footer {
  background: linear-gradient(
    to top,
    #F4FBF7 0%,
    #FFFFFF 50%,
    #FFFFFF 100%
  );
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 2px solid rgba(15, 167, 122, 0.18);

  background: linear-gradient(
    to bottom,
    #DFF4EC 0%,     /* более насыщенный светло-зелёный */
    #F2FBF7 35%,    /* мягкий переход */
    #FFFFFF 100%    /* чистый белый */
  );
}
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 32px 0 0;

  background: linear-gradient(
    to top,
    #DFF4EC 0%,     /* насыщенный светло-зелёный */
    #F5FBF8 45%,    /* плавный переход */
    #FFFFFF 100%
  );
}
/* ===== MOBILE NAV (BURGER) ===== */

@media (max-width: 992px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 2px solid rgba(15, 167, 122, 0.18);
    /* тот же градиент, что на десктопе */
    background: linear-gradient(
      to bottom,
      #DFF4EC 0%,
      #F2FBF7 35%,
      #FFFFFF 100%
    );
  }

  .header--menu-open {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 16px;
    width: min(280px, calc(100% - 32px)); /* аккуратная карточка справа */
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    text-align: center;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 0.03em;
    padding-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .nav__cta {
    margin-top: 6px;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }

  .burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* ==== Mobile fix: Haqqımızda + Proses в один столбик ==== */
@media (max-width: 768px) {

  /* текст + зелёные карточки Haqqımızda */
  .about__grid {
    grid-template-columns: 1fr;   /* вместо двух колонок */
    gap: 24px;                    /* чуть меньше расстояние между блоками */
  }

  /* шаги + карточка техподдержки Proses */
  .process__grid {
    grid-template-columns: 1fr;   /* всё в колонку */
    gap: 24px;
  }

  /* чтобы карточка техподдержки не прилипала к шагам */
  .support-card {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {

  /* ЛЮБЫЕ сетки, где 2 колонки → одна колонка */
  .container,
  .row,
  .grid,
  .about,
  .about-wrap,
  .columns,
  .two-columns,
  .col-2,
  .section-grid,
  .content-grid,
  .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* предотвращаем растягивание картинок */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}
/* ==== Mobile single-column layout fixes ==== */
@media (max-width: 768px) {
  /* Haqqımızda: текст + зелёные карточки в один столбец */
  .about__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Proses: шаги + карточка техподдержки в один столбец */
  .process__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* порядок внутри Proses, на всякий случай */
  .process__steps {
    order: 1;
  }

  .support-card {
    order: 2;
    margin-top: 8px;
  }
}
/* ==== MOBILE HEADER FIX ==== */
@media (max-width: 768px) {

  /* Лого + бургер в одну строку */
  .header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }

  /* Логотип не гигантский */
  .logo img {
    height: 28px !important;   /* можно 26–30, как тебе больше нравится */
    width: auto !important;
  }

  .logo {
    flex: 0 0 auto;
  }

  /* Бургер справа, на одной линии с логотипом */
  .burger {
    flex: 0 0 auto;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
  }
}
/* Увеличиваем только логотип Araz */
.partners__list img[alt*="araz"],
.partners__list img[src*="araz"] {
    width: 150px !important;    /* подгоняем под другие лого */
    height: auto !important;
    object-fit: contain;
    opacity: 1;
}
.partners__list img[src*="araz"],
.partners__list img[alt*="araz"] {
    width: 160px !important;
    height: auto !important;
    object-fit: contain;
}
/* ================== PARTNERS STRIP (TOP) ================== */

.partners-strip {
  padding: 32px 0 24px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6fbf9 100%
  );
}

.partners-strip__title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 20px;
}

.partners-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners-strip__logos img {
  height: 64px;          /* БОЛЬШЕ, чем было */
  width: auto;
  object-fit: contain;
  opacity: 1;
}
@media (max-width: 768px) {
  .partners-strip {
    padding: 24px 0 20px;
  }

  .partners-strip__logos {
    gap: 28px;
  }

  .partners-strip__logos img {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .partners-strip__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    gap: 24px;
  }

  .partners-strip__logos img {
    height: 36px;
    flex-shrink: 0;
  }

  .partners-strip__logos img:first-child {
    height: 44px; /* Araz чуть крупнее */
  }
}
@media (max-width: 768px) {
  .partners-strip__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
  }

  .partners-strip__logos img {
    height: 34px;
    max-width: 100%;
    object-fit: contain;
  }

  /* Araz — усиливаем визуальный вес */
  .partners-strip__logos img:first-child {
    height: 40px;
  }
}
@media (max-width: 768px) {

  /* сам блок — меньше воздуха */
  .partners-strip{
    padding: 18px 0 10px !important;
  }

  .partners-strip__title{
    margin: 0 0 12px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  /* 3 логотипа в одну строку без скролла */
  .partners-strip__logos{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    justify-items: center !important;
    overflow: hidden !important;     /* на всякий случай */
  }

  /* одинаковые габариты, чтобы не раздувало блок */
  .partners-strip__logos img{
    display: block;
    width: 100%;
    max-width: 110px;               /* чтобы влезло на iPhone */
    height: auto;
    max-height: 34px;               /* ключевой параметр компактности */
    object-fit: contain;
  }

  /* Araz чуть крупнее (компенсация "лёгкости") */
  .partners-strip__logos img:first-child{
    max-height: 38px;
  }
}
/* ===== Partners strip: final sizing (Araz / Rahat / Bazarstore) ===== */

.partners-strip__title{
  color: var(--avand-green);
}

/* Desktop */
.partners-strip__logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: nowrap;
}

.partners-strip__logos img{
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* 1) Araz — визуально легче, делаем крупнее */
.partners-strip__logos img:nth-child(1){
  height: 66px;
}

/* 3) Bazarstore — длинный, чуть ниже чтобы не "давил" */
.partners-strip__logos img:nth-child(3){
  height: 52px;
}

/* Mobile: 1 строка, без прокрутки */
@media (max-width: 768px){
  .partners-strip{
    padding: 18px 0 10px;
  }

  .partners-strip__title{
    font-size: 12px;
    margin: 0 0 12px;
    line-height: 1.3;
  }

  .partners-strip__logos{
    gap: 14px;                 /* чтобы точно влезло */
  }

  .partners-strip__logos img{
    height: 30px;              /* базовый размер */
  }

  .partners-strip__logos img:nth-child(1){
    height: 38px;              /* Araz крупнее */
  }

  .partners-strip__logos img:nth-child(3){
    height: 28px;              /* Bazarstore чуть меньше */
  }
}
.partners-strip__title{
  color: var(--text-main);   /* чёрный */
  position: relative;
}

.partners-strip__title::after{
  content:"";
  display:block;
  width: 56px;
  height: 3px;
  background: var(--avand-green);
  margin: 10px auto 0;
  border-radius: 999px;
}
.partners-strip__logos img:nth-child(3){
  height: 56px;   /* было меньше — возвращаем ближе к базовому */
}
@media (max-width: 768px){
  .partners-strip__logos img:nth-child(3){
    height: 30px;   /* было 28px — этого достаточно */
  }
}
.partners-strip__logos img:nth-child(3){
  transform: scale(1.1);
  transform-origin: center;
}
.partners-strip__logos img:nth-child(2){
  transform: translateY(4px);
}
@media (max-width: 768px){
  .partners-strip__logos img:nth-child(2){
    transform: translateY(3px);
  }
}
/* ===== PARTNERS (нижний блок) ===== */

.partners{
  padding: 64px 0 72px;
}

.partners__title{
  margin: 0 0 22px;
}

.partners__bar{
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(23,156,123,0.06), rgba(23,156,123,0.02));
  padding: 22px 22px;
}

.partners__list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partners__logo{
  height: 54px;         /* основной размер на ПК */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: none;
}

/* чуть выделяем Araz без «кривых» */
.partners__logo--araz{ height: 58px; }      /* чуть больше остальных */
.partners__logo--bazar{ height: 56px; }     /* Bazarstore слегка усиливаем */
.partners__logo--rahat{ height: 54px; }     /* базовый */

/* мобильная адаптация */
@media (max-width: 768px){
  .partners{
    padding: 42px 0 52px;
  }
  .partners__bar{
    padding: 16px 14px;
  }
  .partners__list{
    gap: 22px;
    justify-content: space-between;
  }
  .partners__logo{
    height: 36px;        /* компактно без прокрутки */
    max-width: 120px;
  }
  .partners__logo--araz{ height: 40px; }
  .partners__logo--bazar{ height: 38px; }
  .partners__logo--rahat{ height: 36px; }
}
/* ===== FIX: partners logos alignment (no jumping) ===== */

/* контейнер логотипов */
.partners__list,
.partners-strip__logos {
  display: flex;
  align-items: center;        /* ключевое — выравнивание по центру */
  justify-content: center;
  gap: 56px;
  flex-wrap: nowrap;          /* на ПК держим в одну линию */
}

/* сами логотипы */
.partners__list img,
.partners-strip__logos img {
  height: 56px;               /* единая высота = одинаковый уровень */
  width: auto;
  max-width: 220px;           /* чтобы не раздувались */
  object-fit: contain;
  display: block;             /* убирает baseline-скачки у inline img */
}

/* если хочется, чтобы Araz был чуть заметнее (как просили) */
.partners__list img[alt="Araz"],
.partners-strip__logos img[alt="Araz"]{
  height: 60px;
}

/* мобилка: компактно, но в одну строку */
@media (max-width: 768px){
  .partners__list,
  .partners-strip__logos{
    gap: 18px;
    justify-content: space-between;
  }

  .partners__list img,
  .partners-strip__logos img{
    height: 36px;
    max-width: 120px;
  }

  .partners__list img[alt="Araz"],
  .partners-strip__logos img[alt="Araz"]{
    height: 40px;
  }
}
.partners .section-title{
  margin-bottom: 16px;   /* было больше */
}
@media (max-width: 768px){
  .partners{
    padding: 28px 0 32px; /* вместо 64/80 */
  }
}
.partners__list{
  margin-top: 0;
  gap: 14px;             /* если у тебя display:flex/column */
}

.partners__item{
  margin: 0;
}
.partners__item img{
  height: 44px;      /* под мобильный */
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
/* БАЗА: ПК/десктоп — нормальные отступы */
.partners{
  padding: 64px 0 80px;     /* как у тебя было изначально */
}

.partners .section-title{
  margin-bottom: 32px;
}

.partners__list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

/* МОБИЛКА: компактнее */
@media (max-width: 768px){
  .partners{
    padding: 28px 0 32px;
  }
  .partners .section-title{
    margin-bottom: 16px;
  }
  .partners__list{
    flex-direction: column;
    gap: 14px;
  }
}
/* БАЗА: ПК/десктоп — нормальные отступы */
.partners{
  padding: 64px 0 80px;     /* как у тебя было изначально */
}

.partners .section-title{
  margin-bottom: 32px;
}

.partners__list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

/* МОБИЛКА: компактнее */
@media (max-width: 768px){
  .partners{
    padding: 28px 0 32px;
  }
  .partners .section-title{
    margin-bottom: 16px;
  }
  .partners__list{
    flex-direction: column;
    gap: 14px;
  }
}
.partners__list{
  display: flex;
  justify-content: center;
  align-items: center; /* важно */
  gap: 48px;
}

.partners__item{
  height: 64px;              /* единая высота */
  display: flex;
  align-items: center;       /* вертикальный центр */
  justify-content: center;
}

.partners__item img{
  max-height: 48px;   /* ключевая строка */
  width: auto;
  display: block;
}
<!-- ================== FAQ CSS ================== -->
<style>
  .faq { padding: 64px 0; }
  .faq__list{
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }
  .faq__item + .faq__item{ border-top: 1px solid rgba(15,23,42,.08); }

  .faq__q{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;

    font: inherit;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
  }

  .faq__icon{
    width: 22px;
    height: 22px;
    position: relative;
    flex: 0 0 22px;
  }
  .faq__icon::before,
  .faq__icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width: 14px;
    height: 2px;
    background: var(--avand-green);
    transform: translate(-50%,-50%);
    border-radius: 2px;
  }
  .faq__icon::after{
    transform: translate(-50%,-50%) rotate(90deg);
    transition: transform .18s ease;
  }
  .faq__q[aria-expanded="true"] .faq__icon::after{
    transform: translate(-50%,-50%) rotate(0deg);
  }

  .faq__a{
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 16px;          /* фиксируем одинаковый размер */
    line-height: 1.65;
  }

  /* Одинаковые стили для текста/списков, чтобы не “прыгало” */
  .faq__a p{ margin: 10px 0 0; }
  .faq__a p:first-child{ margin-top: 0; }
  .faq__a ul, .faq__a ol{ margin: 10px 0 0; padding-left: 18px; }
  .faq__a li{ margin: 6px 0; font: inherit; font-size: inherit; line-height: inherit; }

  @media (max-width: 640px){
    .faq__q{ padding: 16px 16px; }
    .faq__a{ padding: 0 16px 16px; font-size: 15px; }
  }
</style>

.gallery__main-item img {
  width: 100%;
  height: 260px;          /* оставляем одинаковую высоту карточек */
  object-fit: contain;    /* НЕ режет фото */
  object-position: center;
  border-radius: 14px;
  background: #fff;       /* чтобы красиво смотрелось с прозрачными/разными фото */
  display: block;
}
/* ГАЛЕРЕЯ: на ПК — горизонтальный скролл */
.gallery__main{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Чтобы скролл был удобный и плавный */
.gallery__main::-webkit-scrollbar{
  height: 8px;
}
.gallery__main::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.18);
  border-radius: 10px;
}

/* Карточка фото */
.gallery__main-item{
  flex: 0 0 340px;      /* ширина карточки на ПК */
  height: 240px;        /* высота карточки (общая) */
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;     /* фон, чтобы contain выглядел аккуратно */
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* Картинка — НЕ режется */
.gallery__main-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* важно: НЕ обрезает */
  object-position: center;
  display: block;
}
/* MOBILE: не режем фото в галерее */
@media (max-width: 768px){
  .gallery .gallery__main-item{
    height: auto;                /* убираем фикс */
    aspect-ratio: 16/10;         /* можно 16/9 или 4/3 — выбери визуально */
  }

  .gallery .gallery__main-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;         /* ключ: без обрезки */
    object-position: center;
  }
}
/* ================== GALLERY (NO CROP + HORIZONTAL SCROLL) ================== */

/* Контейнер-лента */
.gallery__main{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Чтобы на ПК точно был “скролл мышью/трекпадом” */
.gallery__main{
  scrollbar-gutter: stable;
}

/* Карточка */
.gallery__main-item{
  flex: 0 0 380px;              /* ширина карточки на ПК */
  height: 260px;                /* общая высота, фото НЕ режем */
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Картинка — НЕ ОБРЕЗАЕМ */
.gallery__main-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* ключевое: без обрезки */
  object-position: center;
  display: block;
}

/* Планшет/мобилка: карточка шире (удобный свайп), высота чуть меньше */
@media (max-width: 768px){
  .gallery__main-item{
    flex: 0 0 86%;
    height: 220px;
  }
}
.gallery__main{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  padding: 10px 6px 16px;
  scroll-snap-type: x mandatory;
}

.gallery__main-item{
  flex: 0 0 auto;
  width: 320px;              /* можно 280–360 */
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery__main-item img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.gallery__main::-webkit-scrollbar { height: 10px; }
.gallery__main::-webkit-scrollbar-thumb { background: rgba(0,0,0,.25); border-radius: 10px; }
.gallery__main::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 10px; }

/* Tagline under logo in mobile menu */
.menu-tagline{
  white-space: nowrap;          /* запрет переноса */
  font-size: clamp(12px, 3.2vw, 16px);  /* уменьшается на маленьких экранах */
  line-height: 1.2;
  letter-spacing: 0;
}
.menu-tagline{ max-width: 100%; }

.footer__tagline {
  white-space: nowrap;        /* 🔴 запрещает перенос строки */
  font-size: 14px;            /* можно 13px если все еще не влезает */
  line-height: 1.2;
}

/* === Header logo: bigger on desktop, safe resize === */
.header__logo img,
.logo img,
.footer__logo { 
  height: auto;
  max-height: 34px; /* базовый размер (моб/по умолчанию) */
  width: auto;
}

/* Desktop: increase logo */
@media (min-width: 992px) {
  .header__logo img,
  .logo img {
    max-height: 48px; /* попробуй 48–56 */
  }

  /* если из-за увеличения логотип "упирается" — чуть добавим высоту хедера */
  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
/* Partners logos: align by top, same visual height */
.partners-strip__logos,
.partners__list {
  display: flex;
  align-items: flex-start;     /* ключевое: выравниваем сверху */
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;             /* если нужно переносить */
}

/* у каждого логотипа одинаковая "полка" по высоте */
.partners-strip__logos img,
.partners__item img {
  height: 48px;                /* попробуй 44–56px */
  width: auto;
  object-fit: contain;
  object-position: top center; /* приоритет верха */
  display: block;
}
.partners__item {
  display: flex;
  align-items: flex-start; /* ВАЖНО: выравнивание сверху */
  justify-content: center;
  height: 80px;            /* единая высота блока */
}
.partners__item img {
  max-height: 48px;
  width: auto;
  display: block;
}
.contact-form__message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}
.partners-logos{
  display: flex;
  justify-content: center;   /* ГЛАВНОЕ */
  align-items: center;
  margin-top: 24px;
}
.partners-strip__logos,
.partners-logos {
  display: flex;
  justify-content: center !important;
  align-items: center;
  width: 100%;
}
/* базовый размер (мобильный) */
.partners-strip__logos img,
.partners-logos img {
  max-height: 64px;
  width: auto;
}

/* ПК */
@media (min-width: 992px) {
  .partners-strip__logos img,
  .partners-logos img {
    max-height: 88px;
  }
}
/* TOP partners strip — force center */
.partners-strip .partners-strip__logos {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  text-align: center;
}
/* Araz size in top block */
.partners-strip .partners-strip__logos img {
  max-height: 68px;   /* мобильный */
  width: auto;
}

/* Desktop */
@media (min-width: 992px) {
  .partners-strip .partners-strip__logos img {
    max-height: 96px;
  }
}
/* Bottom partners — same size as top */
.partners .partners__item img {
  max-height: 68px;   /* мобильный */
  width: auto;
}

/* Desktop */
@media (min-width: 992px) {
  .partners .partners__item img {
    max-height: 96px;
  }
}
.partners img {
  max-height: 68px;
  width: auto;
}

@media (min-width: 992px) {
  .partners img {
    max-height: 96px;
  }
}
/* Bottom partners (Partnyorlar) — same size as top */
.partners .partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .partners__item img {
  max-height: 68px;   /* мобильный */
  width: auto;
}

/* Desktop */
@media (min-width: 992px) {
  .partners .partners__item img {
    max-height: 96px;
  }
}
/* ABSOLUTE FORCE bottom Araz size */
.partners .partners__item img {
  height: 70px !important;
  max-height: none !important;
  width: auto !important;
}

/* Desktop */
@media (min-width: 992px) {
  .partners .partners__item img {
    height: 96px !important;
  }
}
