/* =====================================================
   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
------------------------------------------------------- */
.home-hero { background: var(--clr-orange-10); }
.home-hero__inner {
  max-width: calc(var(--container-width) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 0 var(--section-px) 100px;
  display: flex; flex-direction: column; gap: 60px;
}
.home-hero__image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 640px;
}
.home-hero__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-hero__overlay {
  position: absolute; left: -28px; bottom: 24px;
  width: 476px; height: 28px;
  background: #000; filter: blur(50px); opacity: 0.6; pointer-events: none;
}
.home-hero__location {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  color: var(--clr-white);
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none;
}
.home-hero__location-icon { width: 24px; height: 24px; flex-shrink: 0; }
.home-hero__location-text u { text-decoration: underline; text-underline-offset: 3px; text-transform: uppercase; }
.home-hero__stats {
  position: absolute; bottom: 8px; right: 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  width: min(584px, calc(100% - 48px));
  border-radius: 12px; overflow: hidden;
}
.home-hero__stat {
  background: rgba(255,255,255,0.80);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 24px; display: flex; flex-direction: column; gap: 8px; min-width: 0;
}
.home-hero__stat-val {
  font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 700;
  color: var(--clr-dark); line-height: 48px; letter-spacing: -0.01em; white-space: nowrap;
}
.home-hero__stat-lbl {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--clr-grey-900); line-height: 24px;
}
.home-hero__content {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 24px 48px; align-items: flex-start;
}
.home-hero__title {
  flex: 1; min-width: 0;
  font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 800;
  line-height: 64px; letter-spacing: -0.02em; color: var(--clr-dark);
}
.home-hero__right {
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
  width: min(536px, 100%); flex-shrink: 0;
}
.home-hero__text {
  font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 500;
  color: var(--clr-grey-900); line-height: 30px; letter-spacing: -0.01em;
}
.home-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* -------------------------------------------------------
   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; flex-direction: column; gap: 24px;
  align-self: stretch; max-width: var(--container-width); width: 100%;
}
.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__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__cards.has-expanded { align-items: flex-start; }
.scenarios__card {
  flex: 1; position: relative;
  display: flex; flex-direction: column; gap: 24px;
  padding: 32px 8px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px;
  box-shadow: var(--shadow-100);
}
.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);
  position: relative;
}
.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; gap: 16px; flex: 1;
}
.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: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.scenarios__card-body.is-expanded {
  display: block; -webkit-line-clamp: unset; overflow: visible;
}
.scenarios__card-accordion {
  margin-top: auto;
  display: flex; justify-content: flex-end; align-items: center;
  gap: 8px; padding: 0 16px;
  background: none; border: none; cursor: pointer; width: 100%;
}
.scenarios__card-accordion span {
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 15px; line-height: 24px; color: var(--color-orange-500);
}
.scenarios__card-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--color-orange-500);
  transition: transform var(--transition-base);
}
.scenarios__card-accordion[aria-expanded="true"] .scenarios__card-arrow { transform: rotate(180deg); }
.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 & INFRASTRUCTURE TABS (screen 5)
------------------------------------------------------- */
.plots { background: var(--color-white); }
.plots__tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--color-grey-200);
  overflow-x: auto; scrollbar-width: none; margin-bottom: 40px;
}
.plots__tabs::-webkit-scrollbar { display: none; }
.plots__tab {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; padding: 16px 24px;
  background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  cursor: pointer; text-align: left; white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.plots__tab:hover { background: var(--color-orange-10); }
.plots__tab.is-active { border-bottom-color: var(--color-orange-500); }
.plots__tab-status {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 10px;
}
.plots__tab-status--available { background: #d4edda; color: #155724; }
.plots__tab-status--base      { background: #fff3cd; color: #856404; }
.plots__tab-status--concept   { background: #e8ecf4; color: #3a4a6b; }
.plots__tab-name {
  font-family: 'Montserrat', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--color-dark);
}
.plots__tab.is-active .plots__tab-name { color: var(--color-orange-500); }
.plots__panel { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.plots__panel[hidden] { display: none; }
.plots__panel-img img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius-card); display: block;
}
.plots__panel-title {
  font-family: 'Montserrat', sans-serif; font-size: 26px;
  font-weight: 800; color: var(--color-dark); margin: 0 0 16px;
}
.plots__panel-desc {
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.65; color: var(--color-grey-800); margin: 0 0 24px;
}
.plots__features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.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: 8px;
  width: 8px; height: 8px;
  background: var(--color-orange-500); border-radius: 50%;
}
.plots__cta {
  display: inline-flex; align-items: center;
  background: var(--color-orange-500); color: var(--color-white);
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; padding: 13px 24px; border-radius: 8px;
  transition: opacity 0.2s;
}
.plots__cta:hover { opacity: 0.88; }

/* -------------------------------------------------------
   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);
}

/* -------------------------------------------------------
   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; opacity: 0.7; }

/* -------------------------------------------------------
   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) {
  .home-hero__inner { padding: 0 40px 80px; gap: 40px; }
  .home-hero__image-wrap { height: 480px; }
  .home-hero__stat-val { font-size: 30px; line-height: 38px; }
  .home-hero__title { font-size: 40px; line-height: 48px; }
  .home-hero__text { font-size: 18px; }
  .section-title { font-size: 36px; line-height: 44px; }
  .scenarios { padding: 64px 20px 80px; gap: 40px; }
  .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 8px; }
  .scenarios__card-content { flex: none; min-height: auto; }
  .scenarios__card-body { -webkit-line-clamp: 3; }
  .adv-cards { gap: 16px; }
  .plots__panel { grid-template-columns: 1fr; }
  .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) {
  .home-hero__inner { padding: 0 0 60px; gap: 24px; }
  .home-hero__image-wrap { height: auto; border-radius: 0; overflow: visible; margin: 0 16px; }
  .home-hero__image { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }
  .home-hero__overlay { display: none; }
  .home-hero__location { bottom: 12px; left: 16px; font-size: 12px; }
  .home-hero__stats {
    position: static; width: 100%; border-radius: 12px;
    background: var(--color-grey-200); margin-top: 12px;
  }
  .home-hero__stat {
    padding: 16px; gap: 4px;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: var(--color-white);
  }
  .home-hero__stat-val { font-size: 24px; line-height: 32px; }
  .home-hero__stat-lbl { font-size: 14px; line-height: 20px; }
  .home-hero__content { padding: 0 16px; gap: 16px; flex-direction: column; }
  .home-hero__title { font-size: 28px; line-height: 36px; font-weight: 700; }
  .home-hero__text { font-size: 16px; line-height: 24px; }
  .home-hero__right { width: 100%; gap: 16px; }
  .home-hero__ctas { flex-direction: column; }
  .home-hero__ctas .btn { width: 100%; justify-content: center; }
  .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__cards { flex-direction: column; padding-top: 20px; gap: 36px; }
  .scenarios__card { flex: none; padding: 32px 8px 24px; }
  .scenarios__card-image { height: 220px; }
  .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: nowrap; }
  .infra__tab { font-size: 15px; padding: 12px 16px; }
  .infra__photo-wrap { order: -1; flex: none; width: 100%; }
  .partners__inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 16px; }
}
