/* =============================================
   VERDE PARK — Переваги
   ============================================= */

/* =============================================
   ГЕРОЙ-БАНЕР
   ============================================= */
.adv-hero-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin-top: 50px;
}

.adv-hero-bg {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  bottom: -140px;
  background: url('../images/hero/advantagesbg.jpeg') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

/* .adv-hero-overlay — стилі перенесено в .page-hero-overlay (layout.css) */

.adv-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 50px 0 150px;
}

.adv-h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}

.adv-promo {
  font-family: var(--font-museo);
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-left: auto;
  text-align: right;
  transform: translateY(20px);
}

.adv-promo strong {
  color: var(--white);
  font-weight: 700;
}

/* =============================================
   СЕКЦІЯ З СІТКОЮ ПЕРЕВАГ
   ============================================= */
.adv-grid-section {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, .04) 0px,
      rgba(0, 0, 0, .04) 1px,
      transparent        1px,
      transparent        120px
    )
    var(--section-bg);
  /* Розтягнення на повну ширину content-area (компенсація відступів page-content) */
  margin-top: -80px;
  margin-left: -150px;
  margin-right: -50px;
  padding: 80px 50px 64px 150px;
  margin-bottom: 64px;
}

.adv-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 40px;
}

/* Сітка 4 × 3 */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

/* Картка переваги */
.adv-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--gap-sm);
  padding: var(--gap-sm) 0;
  transition: transform 0.3s ease;
}

.adv-icon {
  display: block;
}

.adv-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* =============================================
   ІНФОРМАЦІЙНІ БЛОКИ (А / Б / В)
   ============================================= */
.adv-info-block {
  margin-bottom: 56px;
  max-width: 720px;
}

.adv-block-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 20px;
}

.adv-block-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

.adv-block-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.adv-block-list li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
  position: relative;
  padding-left: 18px;
}

.adv-block-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.adv-block-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

/* =============================================
   ПРЕМІАЛЬНІ АНІМАЦІЇ
   ============================================= */

/* Hover на картці переваги */
.adv-item:hover {
  transform: translateY(-4px);
}

.adv-item:hover .adv-icon {
  transform: scale(1.12);
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.adv-icon {
  transition: transform 0.3s ease;
}

/* =============================================
   АДАПТИВ
   ============================================= */

/* Планшет: 768–1199px */
@media (max-width: 1199px) {
  .adv-hero-banner {
    margin-top: 80px;
  }

  .adv-banner-content {
    padding: 0 28px 0 80px;
  }

  .adv-grid-section {
    margin-top: -60px;
    margin-left: -80px;
    margin-right: -32px;
    padding: 60px 32px 48px 80px;
  }

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

/* Мобайл: < 768px */
@media (max-width: 767px) {
  .adv-hero-banner {
    margin-top: 0;
  }

  .adv-banner-content {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }

  .adv-h1 {
    font-size: 38px;
  }

  .adv-promo {
    margin-left: 0;
    text-align: left;
    transform: none;
  }

  .adv-grid-section {
    margin-top: -24px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 16px 40px 16px;
    margin-bottom: 40px;
  }

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

  .adv-info-block {
    margin-bottom: 40px;
  }
}
