.hibiny-page {
  --hibiny-sky: #2a6f97;
  --hibiny-deep: #24485c;
  --hibiny-moss: #55735c;
  --hibiny-snow: light-dark(#f7fafb, rgba(230, 240, 244, 0.07));
  --hibiny-route-line: light-dark(
    rgba(42, 111, 151, 0.2),
    rgba(126, 189, 219, 0.22)
  );
}

.hibiny-hero h1 {
  max-width: 1000px;
  margin-inline: auto;
  font-size: clamp(3.1rem, 7vw, 5.35rem);
}

.hibiny-hero__deck {
  max-width: 780px;
  margin: 0 auto;
  color: var(--kachu-muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hibiny-hero__media::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(7, 19, 27, 0.52), transparent 62%);
  pointer-events: none;
}

.hibiny-hero__media img {
  object-position: 50% 46%;
}

.hibiny-hero__media .kachu-hero__image-title {
  z-index: 2;
  max-width: min(650px, calc(100% - 48px));
  font-size: clamp(2.5rem, 6vw, 5.35rem);
}

.hibiny-facts-section {
  padding-top: 18px;
}

.hibiny-facts {
  width: min(1040px, 100%);
}

.hibiny-facts .kachu-fact div {
  display: grid;
  gap: 3px;
}

.hibiny-facts .kachu-fact strong {
  color: light-dark(var(--hibiny-deep), #cce8f4);
  font-family: Nunito, sans-serif;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1;
}

.hibiny-facts .kachu-fact span {
  color: var(--kachu-muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.hibiny-story,
.hibiny-route,
.hibiny-logistics,
.hibiny-appeal {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.hibiny-story {
  padding-top: 28px;
}

.hibiny-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.hibiny-prose {
  color: var(--kachu-muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.hibiny-prose p {
  margin: 0 0 18px;
}

.hibiny-prose__lead {
  color: var(--kachu-ink);
  font-family: Nunito, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.hibiny-quote {
  position: relative;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--kachu-line);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(42, 111, 151, 0.17),
      transparent 38%
    ),
    var(--kachu-paper);
  box-shadow:
    0 24px 62px rgba(31, 42, 54, 0.11),
    0 8px 20px rgba(42, 111, 151, 0.06);
  color: light-dark(#3f4547, #e6ecee);
  font-size: 1.07rem;
  line-height: 1.75;
}

.hibiny-quote__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: light-dark(rgba(42, 111, 151, 0.12), rgba(126, 189, 219, 0.14));
  color: light-dark(var(--hibiny-sky), #8ac4df);
}

.hibiny-quote p {
  margin: 0 0 18px;
}

.hibiny-quote footer {
  display: grid;
  gap: 2px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--kachu-line);
}

.hibiny-quote footer strong {
  color: var(--kachu-ink);
  font-family: Nunito, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.hibiny-quote footer span {
  color: var(--kachu-muted);
  font-size: 0.9rem;
}

.hibiny-route {
  margin-top: 28px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--kachu-line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, var(--hibiny-snow), transparent), var(--kachu-panel);
  box-shadow: 0 24px 64px rgba(31, 42, 54, 0.08);
}

.hibiny-route__header {
  max-width: 810px;
  margin: 0 auto 34px;
  text-align: center;
}

.hibiny-route__header h2,
.hibiny-appeal h2 {
  margin: 8px 0 16px;
  color: var(--kachu-ink);
  font-family: Nunito, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
}

.hibiny-route__header p {
  margin: 0 auto 10px;
  color: var(--kachu-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hibiny-route__path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.hibiny-route__path li {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 0 26px;
}

.hibiny-route__path li::after {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 23px;
  width: 2px;
  background: var(--hibiny-route-line);
}

.hibiny-route__path li:nth-last-child(-n + 2)::after {
  display: none;
}

.hibiny-route__number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hibiny-route-line);
  border-radius: 50%;
  background: light-dark(#f8fbfc, #26343c);
  color: light-dark(var(--hibiny-deep), #b9dcea);
  font-size: 0.77rem;
  font-weight: 900;
}

.hibiny-route__path li > div {
  display: grid;
  gap: 5px;
  padding-top: 3px;
}

.hibiny-route__path strong {
  color: var(--kachu-ink);
  font-family: Nunito, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
}

.hibiny-route__path li > div > span {
  color: var(--kachu-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hibiny-logistics {
  padding-top: 34px;
}

.hibiny-logistics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hibiny-logistics__card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--kachu-line);
  border-radius: 8px;
  background: var(--kachu-paper);
}

.hibiny-logistics__card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: light-dark(rgba(214, 167, 67, 0.16), rgba(214, 167, 67, 0.14));
  color: light-dark(var(--kachu-brown), #f2d99f);
  font-size: 1.08rem;
}

.hibiny-logistics__card p {
  margin: 0;
  color: var(--kachu-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hibiny-appeal {
  padding: 46px 0 6px;
  text-align: center;
}

.hibiny-appeal p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--kachu-muted);
  font-size: 1.12rem;
  line-height: 1.76;
}

.recipient-campaign-callout--hibiny {
  --recipient-callout-accent: var(--hibiny-sky);
  --recipient-callout-accent-soft: light-dark(
    rgba(42, 111, 151, 0.13),
    rgba(126, 189, 219, 0.14)
  );
  --recipient-callout-line: light-dark(
    rgba(42, 111, 151, 0.18),
    rgba(126, 189, 219, 0.16)
  );
}

@media (max-width: 991.98px) {
  .hibiny-story__grid,
  .hibiny-logistics__grid {
    grid-template-columns: 1fr;
  }

  .hibiny-logistics__card {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .hibiny-hero__media::after {
    display: none;
  }

  .hibiny-hero__media .kachu-hero__image-title {
    position: static;
    max-width: none;
    margin: 18px 12px 8px;
    color: var(--kachu-ink);
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.08;
    text-align: center;
    text-shadow: none;
  }

  .hibiny-route__path {
    grid-template-columns: 1fr;
  }

  .hibiny-route__path li:nth-last-child(2)::after {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .hibiny-hero h1 {
    font-size: 2.65rem;
  }

  .hibiny-story,
  .hibiny-logistics,
  .hibiny-appeal {
    padding-inline: 4px;
  }

  .hibiny-quote,
  .hibiny-route,
  .hibiny-logistics__card {
    padding: 22px;
  }

  .hibiny-route__path li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .hibiny-route__number {
    width: 42px;
    height: 42px;
  }

  .hibiny-route__path li::after {
    top: 42px;
    left: 20px;
  }
}
