/* =========================================================
   DESKTOP STYLES  (застосовується від 768px і ширше)
   Підключається з media="(min-width: 768px)"
   Макет за Figma — контентна ширина 1440px, відступи 16px
   ========================================================= */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Вертикальні відступи між секціями = 8px (як у Figma) */
.section-gap {
  padding-top: 8px;
}

/* ---------- Header ---------- */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__cta {
  padding: 12px 40px;
  font-size: 28px;
  line-height: 36px;
}

/* ---------- Hero ---------- */
.hero__card {
  position: relative;
  display: flex;
  align-items: center;
  height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__card {
    background: url('../assets/bg-spheres.png') center / cover no-repeat;
  }

  .hero__bg {
    display: none;
  }
}

.hero__title {
  position: relative;
  z-index: 1;
  padding: 0 72px;
  max-width: 1408px;
  font-weight: 400;
  font-size: 70px;
  line-height: 85px;
  color: var(--color-white);
}

.hero__title--desk {
  display: inline;
}

.hero__title--mob {
  display: none;
}

/* ---------- Блок «Ми створили гайд» ---------- */
.guide__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 72px;
  border-radius: var(--radius-lg);
  background-color: var(--color-dark);
}

.guide__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "lead desc"
    "action desc";
  gap: 32px;
  width: 100%;
  align-items: start;
}

.guide__lead {
  grid-area: lead;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.25;
}

.guide__desc {
  grid-area: desc;
  font-weight: 200;
  font-size: 22px;
  line-height: 1.3;
}

.guide__desc p + p {
  margin-top: 20px;
}

/* «Для кого» */
.audience {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.audience__title {
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
}

.audience__list {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.audience__item {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  padding: 64px;
  border-radius: var(--radius-md);
  background-color: var(--color-dark-grey);
  color: var(--color-grey);
  font-weight: 200;
  font-size: 22px;
  line-height: 1.3;
}

/* Кнопка «Відкрити гайд» */
.guide__action {
  grid-area: action;
  align-self: end;
  width: 390px;
}

.guide__action .btn {
  padding: 20px 60px;
  font-size: 28px;
  line-height: 36px;
}

/* ---------- Блок-виноска ---------- */
.callout__card {
  padding: 120px 72px;
  box-shadow: inset 0 0 40px 0 rgba(255, 255, 255, 0.45);
}

.callout__text {
  position: relative;
  z-index: 1;
  font-weight: 200;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-white);
}

/* ---------- Партнери (десктоп — 4 плитки в ряд) ---------- */
.partners {
  padding-bottom: 16px;
}

.partners__list {
  display: flex;
  gap: 8px;
}

.partners__item {
  flex: 1 0 0;
  min-width: 0;
  height: 200px;
  padding: 24px;
  background-color: var(--color-dark);
}

.partners__logo {
  max-width: 100%;
  max-height: 152px; /* висота плитки 200 − паддінги 2×24 */
}

/* Розміри логотипів за Figma (футер, плитки 200px) */
.logo--playcity  { width: 180px; height: auto; }
.logo--ministry  { width: 210px; height: auto; }
.logo--rgc       { height: 120px; width: auto; }
.logo--lifespace { height: 120px; width: auto; }
