/* =====================================================
   HOME PAGE — additional styles (1:1 Figma)
   Loads AFTER style.css.
   Maps exporters CSS vars, adds:
     - hero (screen 1)
     - scenarios with photos (screen 2)
     - advantages adv-cards (screen 3)
     - plots/tabs (screen 5)
     - infra/Галузевий фокус (screen 7)
     - partners (screen 12)
   ===================================================== */

/* -------------------------------------------------------
   CSS VARIABLES — exporters design system
   (compatible with style.css from relocants)
------------------------------------------------------- */
:root {
  --color-dark:        #121211;
  --color-white:       #FFFFFF;
  --color-orange-500:  #C8502A;
  --color-orange-400:  #D37355;
  --color-orange-300:  #DA8A70;
  --color-orange-200:  #E6AF9D;
  --color-orange-100:  #EEC9BD;
  --color-orange-50:   #FAEEEA;
  --color-orange-10:   #F9F7F6;
  --color-blue-900:    #124154;
  --color-blue-500:    #2A9BC7;
  --color-blue-200:    #9DD1E5;
  --color-blue-100:    #BDE0EE;
  --color-grey-900:    #3E3E3E;
  --color-grey-800:    #515151;
  --color-grey-700:    #696969;
  --color-grey-600:    #878787;
  --color-grey-500:    #949494;
  --color-grey-300:    #B7B7B7;
  --color-grey-200:    #CECECE;
  --color-grey-100:    #DEDEDE;
  --color-grey-50:     #F4F4F4;
  --shadow-100: 0 1px 4px 0 rgba(22, 12, 1, 0.05);
  --shadow-200: 0 2px 4px 0 rgba(48, 40, 31, 0.04), 0 2px 4px 0 rgba(22, 12, 1, 0.04);
  --shadow-300: 0 4px 8px 0 rgba(48, 40, 31, 0.02), 0 4px 4px 0 rgba(22, 12, 1, 0.04);
  --container-width:   1320px;
  --transition-base:   250ms ease;
  --transition-fast:   150ms ease;
  /* hero/layout helpers */
  --clr-orange:        #C8502A;
  --clr-orange-10:     #F9F7F6;
  --clr-orange-50:     #FAEEEA;
  --clr-dark:          #121211;
  --clr-grey-900:      #3E3E3E;
  --clr-grey-800:      #515151;
  --clr-grey-200:      #CECECE;
  --clr-white:         #FFFFFF;
  --radius-card:       12px;
  --radius-btn:        12px;
  --section-px:        60px;
}

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.47;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-300);
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn--primary { background: var(--clr-orange); color: var(--clr-white); }
.btn--primary:hover { background: #b04420; }
.btn--outline { background: transparent; color: var(--clr-dark); border-color: var(--clr-dark); }
.btn--outline:hover { background: rgba(18,18,17,0.05); }

/* -------------------------------------------------------
   SECTION LAYOUT HELPERS
------------------------------------------------------- */
.section-inner {
  max-width: calc(var(--container-width) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 80px var(--section-px) 100px;
}
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 500; line-height: 24px; color: var(--color-grey-800);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px; font-weight: 700; line-height: 56px;
  letter-spacing: -0.02em; color: var(--clr-dark);
}
.section-cta { margin-top: 60px; display: flex; }
.section-cta--center { justify-content: center; }

/* -------------------------------------------------------
   01 HOME HERO — 1:1 Figma
   photo at top (640px) + stats overlay bottom-right (2×2)
   + location pin bottom-left + 2-col text below
------------------------------------------------------- */
/* ===== 01 HERO — 1:1 з chervonohrad-exporters-v5 (_03-hero.css) ===== */
.hero {
  --section-bg: var(--color-orange-10);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 60px 100px;
  background: var(--section-bg);
}

/* full-bleed background */
.hero::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-bg);
  z-index: -1;
}

/* ─── Banner (photo + overlays) ─────────────────────── */
.hero__banner {
  position: relative;
  max-width: var(--container-width);
  width: 100%;
  height: 640px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background:
    url('../img/location/map-desktop.png') center / cover no-repeat,
    var(--color-grey-100);
}

.hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
  pointer-events: none;
}

.hero__banner > * { position: relative; z-index: 1; }

/* ─── Location label (bottom-left) ──────────────────── */
.hero__location {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero__location img { width: 24px; height: 24px; flex-shrink: 0; }

/* ─── Numbers 2×2 grid (bottom-right) ───────────────── */
.hero__numbers {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 292px);
  gap: 1px;
  width: 584px;
  border-radius: 12px;
  overflow: hidden;
}

.hero__number {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 121px;
}

.hero__number-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-dark);
  white-space: nowrap;
}

.hero__number-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-grey-900);
}

/* ─── Content row ────────────────────────────────────── */
.hero__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

.hero__title {
  flex: 1 0 0;
  min-width: 520px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -1.12px;
  color: var(--color-dark);
  margin: 0;
}

.hero__text {
  flex: 0 0 536px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
  color: var(--color-grey-900);
  margin: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.hero__cta {
  align-self: flex-start;
  background: var(--color-orange-500);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  box-shadow: var(--shadow-300);
  transition: background-color var(--transition-base);
  text-decoration: none;
  border: 1px solid transparent;
}
.hero__cta:hover { background: var(--color-orange-400); }

.hero__cta--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.hero__cta--outline:hover { background: rgba(255, 255, 255, 0.12); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1439px) {
  .hero { padding-inline: 40px; }
  .hero__banner { height: 560px; }
  .hero__numbers { width: 520px; grid-template-columns: repeat(2, 260px); }
  .hero__number-value { font-size: 32px; line-height: 40px; }
  .hero__title { font-size: 44px; line-height: 52px; min-width: 420px; }
  .hero__text { flex-basis: 460px; }
}

@media (max-width: 1023px) {
  .hero { padding-inline: 20px; padding-bottom: 64px; gap: 40px; }
  .hero__banner { height: 560px; }
  .hero__numbers {
    right: 16px;
    left: 16px;
    bottom: 64px;
    width: auto;
    grid-template-columns: 1fr 1fr;
  }
  .hero__number { padding: 16px; min-height: auto; }
  .hero__number-value { font-size: 26px; line-height: 32px; }
  .hero__number-label { font-size: 13px; line-height: 18px; }
  .hero__location { font-size: 13px; line-height: 18px; left: 16px; bottom: 16px; }
  .hero__title { font-size: 36px; line-height: 44px; min-width: 100%; letter-spacing: -0.72px; }
  .hero__description { font-size: 20px; line-height: 28px; }
  .hero__text { flex: 1 1 100%; }
}

@media (max-width: 767px) {
  /* hero__banner mobile: inherit from style.css (background: transparent, height: auto, flex-column) */
  .hero__banner { height: auto; background: transparent; overflow: visible; }
  .hero__numbers {
    position: static;
    width: auto;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--color-orange-10);
    border-radius: 0;
  }
  .hero__number { background: var(--color-white); backdrop-filter: none; -webkit-backdrop-filter: none; padding: 16px; gap: 0; min-height: auto; }
  .hero__number-value { font-size: 22px; line-height: 28px; }
  .hero__title { font-size: 32px; line-height: 40px; letter-spacing: -0.64px; min-width: 100%; }
  .hero__description { font-size: 17px; line-height: 26px; }
  .hero__text { flex: 1 1 100%; }
}

/* -------------------------------------------------------
   02 SCENARIOS — 1:1 Figma (photo cards from exporters)
------------------------------------------------------- */
.scenarios {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; align-items: center;
  gap: 60px; padding: 80px 60px 100px;
  background: var(--color-white);
}
.scenarios::before {
  content: ""; position: absolute; inset-block: 0; left: 50%;
  width: 100vw; transform: translateX(-50%);
  background: var(--color-white); z-index: -1;
}
.scenarios__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  align-self: stretch;
  max-width: var(--container-width);
  width: 100%;
}
.scenarios__head-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
}
.scenarios__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px; color: var(--color-grey-800);
}
.scenarios__tag img { width: 20px; height: 20px; flex-shrink: 0; }
.scenarios__decor {
  display: grid;
  grid-template-columns: repeat(3, 26px);
  gap: 12px;
  padding-top: 12px;
  flex-shrink: 0;
}
.scenarios__decor-tri {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 22px solid var(--color-blue-100);
}
.scenarios__decor-tri--accent { border-bottom-color: var(--color-orange-200); }
.scenarios__decor-tri--light { border-bottom-color: var(--color-orange-50); }
.scenarios__decor-tri--muted { border-bottom-color: var(--color-grey-200); }
.scenarios__title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 48px; line-height: 56px; letter-spacing: -0.96px;
  color: var(--color-dark); margin: 0;
}
.scenarios__subtitle {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 20px; line-height: 28px;
  color: var(--color-grey-900); margin: 0;
}
.scenarios__cards {
  display: flex; align-items: stretch; gap: 24px;
  width: 100%; max-width: var(--container-width);
}
.scenarios__card {
  flex: 1; position: relative;
  display: flex; flex-direction: column; gap: 0;
  padding: 32px 16px 32px;
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-200);
  border-radius: 12px;
  box-shadow: var(--shadow-200);
}
.scenarios__card-image {
  flex-shrink: 0; height: 260px;
  border-radius: 12px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--color-grey-100);
}
.scenarios__card-badge {
  position: absolute; top: 16px; left: 50%;
  transform: translate(-50%, -100%); z-index: 2;
  padding: 8px 16px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px;
  color: var(--color-white); white-space: nowrap;
}
.scenarios__card-badge--orange { background: var(--color-orange-500); }
.scenarios__card-badge--blue   { background: var(--color-blue-500); }
.scenarios__card-badge--dark   { background: var(--color-grey-900); }
.scenarios__card-content {
  display: flex; flex-direction: column; flex: 1; margin-top: 24px; gap: 0;
}

/* Card CTA button — pinned to bottom of card */
.scenarios__card-txt {
  flex: 1; /* pushes button down */
}

.scenarios__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  margin: 28px 16px 0;
  padding: 12px 20px;
  background: var(--color-orange-500);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.47;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: var(--shadow-300);
  transition: background-color var(--transition-base);
}
.scenarios__card-btn:hover { background: var(--color-orange-400); }
.scenarios__card-txt {
  display: flex; flex-direction: column; gap: 16px; padding: 0 16px;
}
.scenarios__card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 24px; line-height: 32px; letter-spacing: -0.24px;
  color: var(--color-dark); margin: 0;
}
.scenarios__card-body {
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px; color: var(--color-grey-800); margin: 0;
  display: block; overflow: visible;
}
.scenarios__card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 16px 16px 0;
  color: var(--color-orange-500);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.47;
  text-decoration: none;
  transition: color var(--transition-base);
}
.scenarios__card-link::after { content: ' →'; }
.scenarios__card-link:hover { color: var(--color-orange-400); }

.scenarios__cta {
  background: var(--color-orange-500); color: var(--color-white);
  padding: 12px 20px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px;
  box-shadow: var(--shadow-300);
  transition: background-color var(--transition-base);
  text-decoration: none; display: inline-block;
}
.scenarios__cta:hover { background: var(--color-orange-400); }

/* -------------------------------------------------------
   03 ADVANTAGES — adv-cards (6 items, 3 cols × 2 rows)
------------------------------------------------------- */
.adv-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.adv-card {
  background: var(--color-orange-10);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  border: 1px solid var(--color-orange-50);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.adv-card:hover { box-shadow: var(--shadow-300); transform: translateY(-2px); }
.adv-card__icon { width: 48px; height: 48px; flex-shrink: 0; display: block; }
.adv-card__body { display: flex; flex-direction: column; gap: 16px; }
.adv-card__title {
  font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 600;
  color: var(--color-dark); line-height: 32px; letter-spacing: -0.01em; margin: 0;
}
.adv-card__text {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--color-grey-800); line-height: 24px; margin: 0;
}

/* -------------------------------------------------------
   05 PLOTS — rebuilt 1:1 reference
   Layout: inner container, head, pill tabs with badges,
   panel = 60% image + 40% content, wide orange CTA
------------------------------------------------------- */
.plots {
  background: var(--color-white);
  position: relative; isolation: isolate;
}

.plots__inner {
  max-width: calc(var(--container-width) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 80px var(--section-px) 100px;
  display: flex; flex-direction: column; gap: 40px;
}

/* Head */
.plots__head { display: flex; flex-direction: column; gap: 12px; }

.plots__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 500; line-height: 24px;
  color: var(--color-grey-800);
}
.plots__tag svg { color: var(--color-orange-500); flex-shrink: 0; }

.plots__title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 48px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--color-dark); margin: 0;
}

/* Tabs — WHITE pill container, ORANGE active pill */
.plots__tabs {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-100);
  width: fit-content;
  gap: 2px;
  overflow-x: auto; scrollbar-width: none;
}
.plots__tabs::-webkit-scrollbar { display: none; }

.plots__tab {
  padding: 10px 20px;
  border-radius: 8px;
  background: transparent;
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; line-height: 24px;
  color: var(--color-grey-700);
  white-space: nowrap;
  transition: background-color var(--transition-base), color var(--transition-base);
}
.plots__tab:hover { background: var(--color-orange-10); color: var(--color-dark); }
.plots__tab.is-active {
  background: var(--color-orange-500);
  color: var(--color-white);
  font-weight: 600;
}

/* Panels — white card, content LEFT (40%) + image RIGHT (60%) */
.plots__panels {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.plots__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 460px;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(250, 238, 234, 0.82) 0%, rgba(249, 247, 246, 0.92) 100%);
  border: 1px solid rgba(206, 206, 206, 0.4);
  border-radius: 24px;
  align-items: stretch;
}
.plots__panel[hidden] { display: none; }

.plots__panel-txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  padding: 32px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-100);
}
.plots__panel-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.plots__panel-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-200);
  background: var(--color-white);
  padding: 10px;
}
.plots__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.plots__panel-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: var(--color-dark);
  margin: 0;
}
.plots__panel-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-orange-50);
  border: 1px solid var(--color-orange-100);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-orange-500);
  margin: 0;
}

.plots__panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-grey-800);
  margin: 0;
}

.plots__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.plots__features li {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--color-grey-900); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.plots__features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--color-orange-500); border-radius: 50%;
}

/* Wide orange CTA button */
.plots__cta-wide {
  display: block; width: 100%;
  background: var(--color-orange-500); color: var(--color-white);
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; text-decoration: none;
  padding: 16px 24px; border-radius: 10px;
  box-shadow: var(--shadow-300);
  transition: background-color var(--transition-base);
}
.plots__cta-wide:hover { background: var(--color-orange-400); }

/* ≤1024px */
@media (max-width: 1024px) {
  .plots__inner { padding: 64px 40px 80px; gap: 32px; }
  .plots__title { font-size: 36px; }
  .plots__panel {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding: 20px;
  }
  .plots__panel-txt { padding: 28px; }
  .plots__panel-img { min-height: 300px; }
  .plots__tab { padding: 12px 16px 10px; }
  .plots__tab-name { font-size: 14px; }
}
/* ≤767px */
@media (max-width: 767px) {
  .plots__inner { padding: 48px 16px 60px; gap: 24px; }
  .plots__title { font-size: 28px; line-height: 1.25; }
  .plots__tabs {
    width: calc(100% + 8px);
    margin-right: -8px;
    padding-right: 8px;
  }
  .plots__panel {
    min-height: 0;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }
  .plots__panel-img { min-height: 220px; max-height: 280px; padding: 8px; }
  .plots__panel-img img { height: 220px; }
  .plots__panel-txt { padding: 24px 20px; border-radius: 16px; }
  .plots__panel-heading { align-items: flex-start; }
  .plots__panel-title { font-size: 24px; line-height: 30px; }
  .plots__panel-status { font-size: 13px; line-height: 18px; }
  .plots__tab { padding: 10px 12px 8px; }
  .plots__tab-name { font-size: 13px; }
}

/* -------------------------------------------------------
   07 INFRA / ГАЛУЗЕВИЙ ФОКУС — 1:1 exporters CSS
------------------------------------------------------- */
.infra {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  gap: 60px; padding: 80px 60px 100px;
  background: var(--color-orange-10);
}
.infra::before {
  content: ""; position: absolute; inset-block: 0; left: 50%;
  width: 100vw; transform: translateX(-50%);
  background: var(--color-orange-10); z-index: -1;
}
.infra__head {
  display: flex; flex-direction: column; gap: 24px;
  max-width: var(--container-width); width: 100%; margin: 0 auto;
}
.infra__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px; color: var(--color-grey-800);
}
.infra__tag img { width: 20px; height: 20px; flex-shrink: 0; }
.infra__title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 48px; line-height: 56px; letter-spacing: -0.96px;
  color: var(--color-dark); margin: 0;
}
.infra__subtitle {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 20px; line-height: 28px;
  color: var(--color-grey-900); margin: 0;
}
.infra__content {
  display: flex; flex-direction: column; gap: 24px;
  max-width: var(--container-width); width: 100%; margin: 0 auto;
}
.infra__tabs {
  display: flex; padding: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px; box-shadow: var(--shadow-100);
  width: fit-content; flex-wrap: wrap; gap: 0;
}
.infra__tab {
  padding: 12px 16px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px;
  color: var(--color-grey-700);
  background: transparent; border: none; cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base);
  white-space: nowrap; outline: none;
}
.infra__tab:hover { color: var(--color-dark); background: var(--color-grey-50); }
.infra__tab:focus-visible { outline: 2px solid var(--color-orange-500); outline-offset: 2px; }
.infra__tab.is-active { background: var(--color-orange-500); color: var(--color-white); }
.infra__panel { display: flex; flex-direction: column; }
.infra__panel[hidden] { display: none; }
.infra__panel-head {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--color-grey-500);
}
.infra__panel-icon { flex-shrink: 0; }
.infra__panel-name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 40px; line-height: 48px;
  color: var(--color-dark); margin: 0;
}
.infra__body { display: flex; gap: 48px; align-items: flex-start; }
.infra__items { flex: 1; display: flex; flex-direction: column; }
.infra__item {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--color-grey-100);
}
.infra__item:last-of-type { border-bottom: none; }
.infra__item-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50px;
  background: var(--color-orange-500); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
}
.infra__item-icon svg { width: 20px; height: 20px; }
.infra__item-txt { display: flex; flex-direction: column; gap: 12px; }
.infra__item-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 24px; line-height: 32px; letter-spacing: -0.24px;
  color: var(--color-dark); margin: 0;
}
.infra__item-body {
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px; color: var(--color-grey-800); margin: 0;
}
.infra__items-cta { padding: 24px 68px 0; display: flex; }
.infra__cta {
  background: var(--color-orange-500); color: var(--color-white);
  padding: 12px 20px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px;
  box-shadow: var(--shadow-300);
  transition: background-color var(--transition-base);
  text-decoration: none; display: inline-block;
}
.infra__cta:hover { background: var(--color-orange-400); }
.infra__photo-wrap {
  flex: 0 0 636px; padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px; box-shadow: var(--shadow-100);
}
.infra__photo {
  height: 453px; border-radius: 12px;
  background-size: cover; background-position: center;
  background-color: var(--color-grey-100);
}

/* -------------------------------------------------------
   03 ADVANTAGES — redesigned 1:1 Figma
   Background: #F3F9FB (blue-light), white cards, navy icons, triangle decor
------------------------------------------------------- */
.adv-section {
  position: relative;
  isolation: isolate;
  background: #F3F9FB;
  padding: 0;
}
.adv-section::before {
  content: "";
  position: absolute;
  inset-block: 0; left: 50%;
  width: 100vw; transform: translateX(-50%);
  background: #F3F9FB; z-index: -1;
}

.adv-section__inner {
  max-width: calc(var(--container-width) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 80px var(--section-px) 100px;
  display: flex; flex-direction: column; gap: 60px;
}

/* Header: text left + triangles right */
.adv-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.adv-section__head-txt {
  display: flex; flex-direction: column; gap: 12px;
}

.adv-section__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px;
  color: var(--color-grey-800);
}
.adv-section__tag svg { color: var(--color-orange-500); flex-shrink: 0; }

.adv-section__title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 48px; line-height: 56px; letter-spacing: -0.02em;
  color: var(--color-dark); margin: 0;
}

/* Triangles decoration — side by side, aligned at bottom */
.adv-section__decor {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  margin-top: 4px;
}
.adv-decor__tri { display: block; flex-shrink: 0; }
.adv-decor__tri--sm-grey  { width: 72px;  height: 72px; }
.adv-decor__tri--big-blue { width: 148px; height: 148px; }
.adv-decor__tri--sm-teal  { width: 88px;  height: 88px; }

/* Cards grid: 3 cols × 2 rows, white bg */
.adv-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Override adv-card for this section */
.adv-card--blue {
  background: #FFFFFF;
  border: 1px solid #E0ECF5;
  box-shadow: 0 1px 4px 0 rgba(42, 155, 199, 0.08);
}

/* Orange icon circle — brand accent (changed 2026-06-08 per client) */
.adv-icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-orange-500);
  color: #FFFFFF;
  flex-shrink: 0;
}
.adv-icon-circle svg { width: 22px; height: 22px; }

/* Override adv-card__body titles for blue cards */
.adv-card--blue .adv-card__title {
  color: var(--color-dark);
  min-height: 64px;          /* 2 lines × 32px — aligns body text in each row */
  display: flex;
  align-items: flex-start;
}
.adv-card--blue .adv-card__text  { color: var(--color-grey-800); }

/* CTA row removed — no longer needed */

/* CTA */
.adv-section__cta { display: flex; justify-content: center; }

/* ≤1024px */
@media (max-width: 1024px) {
  .adv-section__inner { padding: 64px 40px 80px; gap: 40px; }
  .adv-section__title { font-size: 36px; line-height: 44px; }
  .adv-section__grid  { gap: 16px; }
  .adv-section__decor { display: none; }
}
/* ≤767px */
@media (max-width: 767px) {
  .adv-section__inner { padding: 48px 16px 60px; gap: 32px; }
  .adv-section__title { font-size: 28px; line-height: 36px; }
  .adv-section__grid  { grid-template-columns: 1fr; gap: 12px; }
}

/* -------------------------------------------------------
   04 LOCATION — composite map image
------------------------------------------------------- */
/* Composite map: fills the map-wrap absolutely */
.location__map-composite-img {
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Railway legend dashed line */
.location__legend-railway-line {
  width: 32px;
  height: 4px;
  flex-shrink: 0;
  border-top: 3px dashed #3E3E3E;
  align-self: center;
}

/* -------------------------------------------------------
   04 LOCATION — info text bullets (2 columns, blue border)
------------------------------------------------------- */
.location__info-text {
  border: 1px solid #2A9BC7;
  border-radius: 8px;
  padding: 24px 32px;
}
.location__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
}
.location__info-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.location__info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .location__info-text { padding: 16px 20px; }
  .location__info-list { grid-template-columns: 1fr; gap: 10px; }
}

/* -------------------------------------------------------
   12 PARTNERS
------------------------------------------------------- */
.partners {
  background: var(--color-orange-10);
  border-top: 1px solid var(--color-grey-200);
}
.partners__inner {
  max-width: calc(var(--container-width) + var(--section-px) * 2);
  margin: 0 auto; padding: 48px var(--section-px);
  display: flex; align-items: center; gap: 48px;
}
.partners__label {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #888; white-space: nowrap;
}
.partners__logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.partners__logos img { display: block; object-fit: contain; }
.partners__logo-giz { height: 40px; width: auto; opacity: 0.75; }
.partners__logo-coat { height: 56px; width: auto; opacity: 0.85; }

/* -------------------------------------------------------
   RESPONSIVE ≤1440px
------------------------------------------------------- */
@media (max-width: 1439px) {
  .scenarios { padding-inline: 40px; }
  .scenarios__title { font-size: 40px; line-height: 48px; }
  .infra { padding-inline: 40px; }
  .infra__photo-wrap { flex-basis: 480px; }
  .infra__title { font-size: 40px; line-height: 48px; }
}

/* -------------------------------------------------------
   RESPONSIVE ≤1280px
------------------------------------------------------- */
@media (max-width: 1279px) {
  .infra__photo-wrap { flex-basis: 380px; }
  .infra__panel-name { font-size: 32px; line-height: 40px; }
}

/* -------------------------------------------------------
   RESPONSIVE ≤1024px
------------------------------------------------------- */
@media (max-width: 1024px) {
  .section-title { font-size: 36px; line-height: 44px; }
  .scenarios { padding: 64px 20px 80px; gap: 40px; }
  .scenarios__head { flex-direction: column; gap: 24px; }
  .scenarios__head-copy { gap: 20px; }
  .scenarios__decor { padding-top: 0; }
  .scenarios__title { font-size: 32px; line-height: 40px; letter-spacing: -0.64px; }
  .scenarios__subtitle { font-size: 17px; }
  .scenarios__cards { flex-direction: column; gap: 16px; }
  .scenarios__card { flex: none; padding: 24px 16px 24px; }
  .adv-cards { gap: 16px; }
  .plots__panel-img img { height: 260px; }
  .infra { padding: 64px 20px 80px; gap: 40px; }
  .infra__title { font-size: 32px; line-height: 40px; letter-spacing: -0.64px; }
  .infra__subtitle { font-size: 17px; }
  .infra__body { flex-direction: column; gap: 32px; }
  .infra__photo-wrap { flex: none; }
  .infra__photo { height: 300px; }
  .infra__panel-name { font-size: 28px; line-height: 36px; }
  .infra__item-title { font-size: 20px; line-height: 28px; }
  .infra__items-cta { padding: 24px 0 0; }
  .infra__tabs { width: 100%; }
  .infra__tab { font-size: 13px; line-height: 18px; padding: 10px 12px; }
  .partners__inner { gap: 32px; }
}

/* -------------------------------------------------------
   RESPONSIVE ≤767px
------------------------------------------------------- */
@media (max-width: 767px) {
  .menu-mobile__top { gap: 12px; }
  .menu-mobile__top-actions { flex-shrink: 0; }
  .menu-mobile__cta {
    min-width: 0;
    text-align: center;
  }
  .menu-mobile__contact {
    min-width: 0;
    align-items: flex-start;
  }
  .menu-mobile__contact span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hero {
    overflow: hidden;
    background: var(--color-orange-10);
    /* P2.1 (2026-06-11): full-bleed hero як на /relocants/ — прибрати бічний
       padding-inline:20px (успадкований з @media 1023), щоб фото було за 16px
       від краю (через margin самої мапи), а не за 36px. Ширина мапи стає 358 →
       висота авто-вирівнюється до ~286px, як на еталоні. */
    padding-left: 0;
    padding-right: 0;
  }
  .hero__banner {
    gap: 12px;
    padding-top: 4px;
  }
  .hero__mob-map {
    width: calc(100% - 32px);
    margin: 0 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-200);
    background: #d4dde1;
  }
  .hero__numbers {
    margin: 0 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-100);
  }
  .hero__number { min-width: 0; }
  .hero__number-value { white-space: normal; }
  .hero__number-label { overflow-wrap: anywhere; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero__cta--outline {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-grey-200);
  }
  .section-inner { padding: 48px 16px 60px; }
  .section-title { font-size: 28px; line-height: 36px; }
  .scenarios { padding: 48px 16px 60px; gap: 32px; }
  .scenarios__title { font-size: 28px; line-height: 34px; }
  .scenarios__decor {
    grid-template-columns: repeat(6, 18px);
    gap: 8px;
  }
  .scenarios__decor-tri {
    border-left-width: 9px;
    border-right-width: 9px;
    border-bottom-width: 16px;
  }
  .scenarios__cards { flex-direction: column; padding-top: 20px; gap: 36px; }
  .scenarios__card { flex: none; padding: 32px 16px 24px; }
  .scenarios__card-image { height: 220px; }
  .scenarios__card-btn {
    width: 100%;
    margin: 24px 0 0;
  }
  .adv-cards { grid-template-columns: 1fr; }

  .adv-card__title { font-size: 20px; line-height: 28px; }
  .plots__tab { padding: 12px 14px; }
  .plots__tab-name { font-size: 13px; }
  .infra { padding: 48px 16px 60px; }
  .infra__title { font-size: 28px; line-height: 36px; }
  .infra__panel-name { font-size: 22px; line-height: 28px; }
  .infra__photo { height: 240px; }
  .infra__tabs { width: 100%; flex-wrap: wrap; }
  .infra__tab { font-size: 15px; padding: 12px 16px; white-space: normal; flex: 1 1 auto; text-align: center; }
  .infra__photo-wrap { order: -1; flex: none; width: 100%; }
  .partners__inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 16px; }
}

/* ============================================================
   CTA color fix — 2026-06-08 per client
   Force white text on orange CTAs (some selector was overriding to dark).
   Make outline CTA visible on light hero background.
   ============================================================ */
.hero__cta:not(.hero__cta--outline),
.site-header__cta,
.scenarios__card-btn,
.scenarios__cta,
.infra__cta,
.timeline__cta,
.site-footer__cta,
.menu-mobile__cta,
.advantages__cta,
.trust__cta:not(.trust__cta--ghost),
.risks__cta,
.contact__submit {
  color: #FFFFFF !important;
}

/* Financial CTA — БІЛИЙ фон на оранжевому контейнері, темний текст для контрасту */
.financial__cta,
.financial__mob-cta-big a,
a.financial__cta {
  color: var(--color-dark) !important;
  background: var(--color-white) !important;
}

/* Outline hero CTA — на світлому фоні має бути контрастна (бренд-оранж) */
.hero__cta--outline {
  color: var(--color-orange-500) !important;
  border: 1.5px solid var(--color-orange-500) !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 8px rgba(200,80,42,.08) !important;
}
.hero__cta--outline:hover {
  background: var(--color-orange-50) !important;
  color: var(--color-orange-500) !important;
}

/* Hero CTAs row — обидві кнопки видно поряд */
.hero__ctas {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Ghost trust CTA — тёмний текст на білому, з оранж бордером */
.trust__cta--ghost {
  color: var(--color-dark) !important;
}

/* ============================================================
   MOBILE TOKEN PARITY — 2026-06-11 (P2.3/P2.4)
   home.css :root задавав --section-px:60px без мобільного override,
   перебиваючи style.css (16px на ≤767) → FAQ і секції мали 60px на mobile.
   Вирівнюємо до 16px, як на /relocants/ та /exporters/.
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-px: 16px; }
}
