/* ============================================================
   CHERVONOHRAD IP — Foreign Business Landing (v2 · 1:1 Figma)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #3E3E3E;
  background: #F9F7F6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

:root {
  --orange-500: #C8502A;
  --orange-400: #D96A44;
  --orange-50:  #FAEEEA;
  --orange-10:  #F9F7F6;
  --blue-500:   #2A9BC7;
  --blue-900:   #124154;
  --blue-light: #F3F9FB;
  --dark:       #121211;
  --dark-soft:  #282828;
  --grey-900:   #3E3E3E;
  --grey-800:   #515151;
  --grey-700:   #696969;
  --grey-600:   #878787;
  --grey-300:   #C2C2C2;
  --grey-200:   #CECECE;
  --grey-100:   #DEDEDE;
  --grey-50:    #F4F4F4;
  --white:      #FFFFFF;

  --shadow-100: 0px 1px 4px 0px rgba(22, 12, 1, 0.05);
  --shadow-200: 0px 2px 4px 0px rgba(48, 40, 31, 0.04), 0px 2px 4px 0px rgba(22, 12, 1, 0.04);
  --shadow-300: 0px 4px 8px 0px rgba(48, 40, 31, 0.02), 0px 4px 4px 0px rgba(22, 12, 1, 0.04);

  --radius-card: 12px;
  --radius-btn:  12px;
  --radius-input: 10px;

  --container: 1320px;
  --section-py: 80px;
  --section-px: 60px;
}

/* --- LAYOUT --- */
.section-inner {
  max-width: calc(var(--container) + 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-head--faq { align-items: center; text-align: center; }

.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(--grey-800);
  align-self: flex-start;
}
.section-tag__arrow { color: var(--grey-800); font-size: 20px; line-height: 1; }
.section-tag__arrow--blue { color: var(--blue-500); }

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

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--grey-900);
  margin-top: 12px;
}

.section-cta { margin-top: 24px; display: flex; }
.section-cta--center { justify-content: center; }

/* --- 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;
}
.btn--primary { background: var(--orange-500); color: var(--white); }
.btn--primary:hover { background: #b04420; }

.btn--blue { background: var(--blue-500); color: var(--white); }
.btn--blue:hover { background: #238aaf; }

.btn--outline { background: var(--white); color: var(--grey-900); border-color: var(--grey-300); }
.btn--outline:hover { border-color: var(--grey-600); }

.btn--white { background: var(--white); color: var(--grey-900); }
.btn--white:hover { background: var(--orange-10); }

.btn--full { width: 100%; }

/* --- ICON CIRCLES --- */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle--filled { background: var(--orange-500); }
.icon-circle svg { width: 24px; height: 24px; }

/* ============================================================
   TRUST BAR (grey-900 per Figma)
   ============================================================ */
.trust-bar { background: var(--grey-900); }
.trust-bar__inner {
  max-width: calc(var(--container) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.trust-bar__logo { height: 32px; width: auto; flex-shrink: 0; filter: brightness(0) invert(1); }
.trust-bar__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 18px;
}

@media (max-width: 767px) {
  .trust-bar__inner { gap: 12px; padding: 8px 16px; }
  .trust-bar__logo { height: 24px; }
  .trust-bar__text { font-size: 11px; line-height: 16px; text-align: center; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-100);
}
.site-header__inner {
  max-width: calc(var(--container) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 8px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  min-height: 96px;
}
.site-header__left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
.site-header__logo { height: 80px; width: auto; flex-shrink: 0; }
.site-header__right { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.site-header__right > .btn { margin-left: 24px; }

.site-nav { display: flex; align-items: center; }
.site-nav__item {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  transition: color 0.2s;
  white-space: normal;
  line-height: 22px;
  border-bottom: 2px solid transparent;
  text-align: center;
}
.site-nav__item:hover { color: var(--orange-500); }
.site-nav__item.is-active { color: var(--orange-500); border-bottom-color: var(--orange-500); }
.site-nav--left { flex: 1; }
.site-nav--left .site-nav__item { flex: 1; }

.site-header__lang {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  line-height: 24px;
  color: var(--grey-900);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.site-header__lang:hover { background: var(--orange-10); }
.site-header__lang-arrow {
  display: inline-flex; width: 16px; height: 16px;
  color: var(--grey-900); font-size: 10px; line-height: 1;
  align-items: center; justify-content: center;
}

.site-header__burger { display: none; padding: 8px; color: var(--grey-900); }

/* ============================================================
   HERO (light — orange-10 per Figma node 2146:3154)
   ============================================================ */
.hero { background: var(--orange-10); }
.hero__inner {
  max-width: calc(var(--container) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 0 var(--section-px) 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 640px;
}
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__image-overlay {
  position: absolute;
  left: -28px;
  bottom: 24px;
  width: 476px;
  height: 28px;
  background: #000;
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__location {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.hero__stats {
  position: absolute; bottom: 24px; right: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 584px;
  border-radius: 12px;
  overflow: hidden;
}
.hero__stat {
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.hero__stat-value { white-space: nowrap; }
.hero__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0;
}
.hero__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--grey-900);
  line-height: 24px;
}

.hero__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-start;
}
.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(--dark);
}
.hero__right {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
  width: 536px;
  flex-shrink: 0;
}
.hero__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--grey-900);
  line-height: 32px;
  letter-spacing: -0.01em;
}

/* ============================================================
   COMPARISON TABLE (Figma node 2146:3176)
   ============================================================ */
.section { background: var(--white); }

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.comparison-table__header,
.comparison-table__row {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
}
.comparison-table__header {
  background: var(--blue-900);
  border-radius: 12px;
}
.comparison-table__header .comparison-table__cell {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.comparison-table__row:nth-child(odd) { background: var(--blue-light); }
.comparison-table__cell {
  padding: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-800);
  line-height: 24px;
  align-self: center;
}
.comparison-table__cell--param {
  font-weight: 700;
  color: var(--dark);
}
.comparison-table__sub {
  color: var(--grey-800);
  font-weight: 500;
  font-size: 15px;
  display: inline;
}
.ast { color: var(--orange-500); font-weight: 700; }

.comparison-table__footnotes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-table__footnote-col { display: flex; flex-direction: column; gap: 16px; }
.comparison-table__footnotes p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-800);
  line-height: 24px;
}

/* ============================================================
   WAR RISK
   ============================================================ */
.war-risk { background: var(--orange-10); }
.war-risk .section-cta { justify-content: center; margin-top: 60px; }

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-100);
}
.info-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  line-height: 32px;
  letter-spacing: -0.01em;
}
.info-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-800);
  line-height: 24px;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages { background: var(--white); }
.adv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--orange-10);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adv-card .icon-circle { margin-bottom: 4px; }
.adv-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.adv-card__text {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--blue-light); }
.location__body { display: flex; flex-direction: column; gap: 24px; }

.location__map-wrap {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--grey-100);
}
.location__map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location__map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.location__pin {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
}
.location__legend {
  position: absolute;
  top: 316px;
  right: 16px;
  width: 378px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-200);
}
.location__legend-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.location__legend-item img { flex-shrink: 0; }
.location__legend-text { flex: 1 0 0; min-width: 0; }
.location__legend-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}
.location__legend-sub {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--grey-700);
  margin: 2px 0 0;
}

.location__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-100);
}
.location-card__label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--grey-700);
  line-height: 1.4;
}
.location-card__label svg { flex-shrink: 0; margin-top: 1px; }
.location-card__distance { display: flex; align-items: baseline; gap: 6px; }
.location-card__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.01em;
}
.location-card__time { font-size: 13px; color: var(--grey-600); font-weight: 500; }

.location__note {
  max-width: 872px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark);
  margin: 0;
}

/* ============================================================
   FINANCIAL
   ============================================================ */
.financial { background: var(--white); }

.financial__panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 300px;
  gap: 0;
  align-items: stretch;
  background: var(--orange-10);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-100);
}

.financial__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 24px;
}
.financial__icon-box {
  width: 48px; height: 48px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.financial__example-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.financial__example-note {
  font-size: 12px;
  color: var(--grey-600);
  margin-top: auto;
}

.financial__table {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--grey-100);
}
.financial__table-header,
.financial__table-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
}
.financial__table-header { background: var(--white); border-bottom: 1px solid var(--grey-100); }
.financial__table-header .financial__tcell {
  color: var(--grey-700);
  font-weight: 500;
  font-size: 13px;
}
.financial__table-row + .financial__table-row,
.financial__table-header + .financial__table-row { border-top: 1px solid var(--grey-100); }
.financial__tcell {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
  line-height: 1.5;
}
.financial__tcell--param { font-weight: 600; color: var(--grey-800); }
.financial__tcell--accent-h { color: var(--orange-500) !important; font-weight: 600 !important; }
.financial__tcell--accent { color: var(--orange-500); font-weight: 700; }

.financial__highlight {
  background: var(--orange-500);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-left: 24px;
}
.financial__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.financial__amount-text {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  font-weight: 500;
}
.financial__amount-note {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  margin-top: auto;
}
.financial__highlight .btn { width: 100%; margin-top: 8px; }

.financial__disclaimer {
  margin-top: 28px;
  font-size: 13px;
  color: var(--grey-700);
  line-height: 1.6;
  max-width: 1000px;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--orange-10); }

.trust__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
.trust__head-left { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.trust__actions { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-100);
}
.trust-card__giz-box {
  background: transparent;
  border: 1px solid var(--orange-500);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 4px;
}
.trust-card__giz-logo { height: 40px; width: auto; display: block; }
.trust-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.trust-card__text {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

.trust__esg-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.esg-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px;
}
.esg-item:nth-child(3n+1),
.esg-item:nth-child(3n+2) { border-right: 1px solid var(--grey-200); }
.esg-item:nth-child(-n+3) { border-bottom: 1px solid var(--grey-200); }
.esg-item__arrow {
  color: var(--orange-500);
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}
.esg-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { background: var(--white); }
.timeline .section-title { max-width: none; font-size: 42px; white-space: nowrap; }
.timeline__steps { display: flex; flex-direction: column; }

.timeline-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
}
.timeline-step__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.timeline-step__body { display: flex; flex-direction: column; gap: 8px; }
.timeline-step__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.timeline-step__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-900);
  line-height: 1.6;
  margin: 0;
}
.timeline-step__time {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grey-50, #F4F4F4);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  justify-self: end;
  align-self: start;
}
.timeline-step__time svg { color: var(--dark); flex-shrink: 0; }

.timeline-step--final {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 24px 0 0;
  border-bottom: none;
  align-items: center;
  gap: 16px;
}
.timeline-step__final-icon {
  width: 48px; height: 48px;
  background: var(--orange-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.timeline-step__final-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.timeline__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
.timeline__note {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  max-width: 872px;
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--blue-light); }
.faq .section-title { text-align: left; font-size: 48px; font-weight: 700; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-100);
  overflow: hidden;
}
.faq__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.4;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.faq__trigger:hover { color: var(--orange-500); }
.faq__item.is-open .faq__trigger { color: var(--orange-500); }
.faq__chevron {
  color: var(--grey-600);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); color: var(--orange-500); }

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 28px;
}
.faq__item.is-open .faq__body {
  max-height: 400px;
  padding: 0 28px 24px;
}
.faq__body p {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.65;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact { background: var(--white); }
.contact__panel {
  background: var(--orange-10);
  border-radius: var(--radius-card);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--grey-900);
}
.contact__text {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.6;
}
.contact__direct { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.contact__direct-label { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--grey-900); }
.contact__direct-links { display: flex; flex-direction: column; gap: 10px; }
.contact__link {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  transition: color 0.2s;
}
.contact__link:hover { color: var(--orange-500); }

.contact__form-wrap { position: relative; }
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.contact__fields { display: flex; flex-direction: column; gap: 24px; }

.contact__field { position: relative; display: block; }
.contact__field-label {
  position: absolute;
  top: -8px;
  left: 14px;
  padding: 0 6px;
  background: var(--orange-10);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-700);
  z-index: 1;
}
.contact__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-input);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  transition: border-color 0.2s;
  appearance: none;
}
.contact__input::placeholder { color: #949494; }
.contact__input:focus { outline: none; border-color: var(--orange-500); }
.contact__input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23696969' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.contact__consent { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.contact__consent input[type="checkbox"] {
  width: 20px; height: 20px;
  flex-shrink: 0;
  accent-color: var(--orange-500);
  cursor: pointer;
}
.contact__consent-text { font-size: 13px; color: var(--grey-800); line-height: 1.5; }
.contact__consent-text u { text-decoration-color: var(--grey-500); }

.contact__success {
  background: var(--orange-50);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--grey-900);
  margin-top: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--grey-900); position: relative; overflow: hidden; }
.site-footer__pattern {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 60px;
  background-image: url('../img/pattern-triangles.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: right top;
  pointer-events: none;
  z-index: 0;
}

.site-footer__inner {
  position: relative;
  max-width: calc(var(--container) + var(--section-px) * 2);
  margin: 0 auto;
  padding: 40px var(--section-px) 32px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.site-footer__logo-link { display: inline-flex; align-self: flex-start; }
.site-footer__logo { height: 56px; width: auto; display: block; filter: brightness(0) invert(1); }
.site-footer__desc {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.site-footer__right { display: flex; flex-direction: column; gap: 28px; padding-top: 52px; }
.site-footer__top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer__nav { display: flex; align-items: stretch; gap: 4px; flex: 1; }
.site-footer__nav-item {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
  border-bottom: 2px solid transparent;
  text-align: center;
  white-space: normal;
  transition: color 0.2s;
}
.site-footer__nav-item:hover { color: var(--white); }
.site-footer__nav-item.is-active { color: var(--white); border-bottom-color: var(--white); }
.site-footer__nav-sep {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  margin: 0 8px;
}
.site-footer__top-row .btn { margin-left: auto; }
.site-footer__contacts {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-footer__contact {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.site-footer__contact:hover { color: var(--white); }

.site-footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px var(--section-px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__bottom span { font-size: 12px; color: rgba(255,255,255,0.45); }
.site-footer__lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 10px;
  border-radius: 6px;
}
.site-footer__lang-arrow { color: var(--orange-500); font-size: 9px; line-height: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --section-px: 40px; }
  .hero__title { font-size: 40px; }
  .section-title { font-size: 40px; }
  .faq .section-title { font-size: 44px; }
  .comparison-table__header,
  .comparison-table__row { grid-template-columns: 220px 1fr 1fr; }
  .financial__panel { grid-template-columns: 200px 1fr 280px; }
}

@media (max-width: 1000px) {
  :root { --section-px: 32px; --section-py: 60px; }
  .site-nav--left { display: none; }
  .site-nav--right { display: none; }
  .site-header__burger { display: flex; }
  .site-header__lang { display: none; }

  .hero__image-wrap { height: 520px; }
  .hero__content { grid-template-columns: 1fr; gap: 24px; }
  .hero__title { font-size: 32px; }

  .section-title { font-size: 32px; }
  .faq .section-title { font-size: 36px; }

  .comparison-table__header,
  .comparison-table__row { grid-template-columns: 160px 1fr 1fr; }
  .comparison-table__footnotes { grid-template-columns: 1fr; }

  .info-cards, .adv-cards, .trust-cards, .esg-grid { grid-template-columns: 1fr; }
  .esg-item { border-right: none !important; border-bottom: 1px solid var(--grey-200); }
  .esg-item:last-child { border-bottom: none; }
  .location__map-wrap { height: 460px; }
  .location__legend { width: 300px; top: 16px; padding: 12px; gap: 10px; }
  .location__legend-title, .location__legend-sub { font-size: 12px; }
  .location__cards { grid-template-columns: repeat(2, 1fr); }
  .location__note { font-size: 17px; line-height: 24px; }
  .financial__panel { grid-template-columns: 1fr; }
  .financial__left { padding-right: 0; }
  .financial__highlight { margin-left: 0; margin-top: 20px; }

  .trust__head { flex-direction: column; align-items: flex-start; }
  .trust__actions { flex-wrap: wrap; }

  .timeline .section-title { font-size: 32px; white-space: normal; }
  .timeline-step { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .timeline-step__num { font-size: 20px; }
  .timeline-step__title { font-size: 20px; }
  .timeline-step__final-title { font-size: 20px; }
  .timeline__note { font-size: 17px; }
  .timeline__footer { flex-direction: column; align-items: flex-start; }

  .contact__panel { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .contact__title { font-size: 28px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__top-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-footer__contacts { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 640px) {
  .hero__image-wrap { height: 400px; }
  .hero__stats { width: auto; position: static; margin-top: 16px; }
  .hero__location { bottom: 16px; }
  .hero__title { font-size: 28px; }
  .section-title { font-size: 26px; }

  .comparison-table__header,
  .comparison-table__row { grid-template-columns: 120px 1fr 1fr; font-size: 12px; }
  .comparison-table__cell { padding: 12px; font-size: 12px; }

  .location__map-wrap { height: 380px; }
  .location__legend { position: static; width: auto; top: auto; right: auto; margin-top: 12px; }
  .location__pin { display: none; }
  .location__cards { grid-template-columns: 1fr; }

  .timeline-step { grid-template-columns: 48px 1fr; }
  .timeline-step__time { grid-column: 1 / -1; justify-self: start; }

  .faq__trigger { padding: 18px 20px; font-size: 15px; }
  .faq__item.is-open .faq__body { padding: 0 20px 18px; }

  .contact__panel { padding: 24px; }
}
