.home-company-facts {
  --facts-ink: #07141d;
  --facts-muted: #64727a;
  --facts-line: #d5dcdf;
  --facts-red: #cf332f;
  --facts-blue: #104b7d;
  position: relative;
  padding: clamp(88px, 9vw, 144px) max(24px, calc((100vw - 1344px) / 2));
  overflow: hidden;
  color: var(--facts-ink);
  background: #f5f7f7;
}

.home-facts-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #8ea2ad;
  opacity: .13;
  pointer-events: none;
}

.home-facts-circuit path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 8 16;
  animation: home-facts-trace 16s linear infinite;
}

.home-facts-circuit circle { fill: currentColor; }

.home-facts-head,
.home-facts-groups,
.home-facts-footer {
  position: relative;
  z-index: 1;
}

.home-facts-head {
  margin-bottom: clamp(46px, 6vw, 74px);
}

.home-facts-head p {
  margin: 0 0 18px;
  color: var(--facts-blue);
  font-size: 14px;
  font-weight: 700;
}

.home-facts-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.home-facts-group + .home-facts-group { margin-top: 44px; }

.home-facts-group-title {
  margin: 0 0 16px;
  color: var(--facts-muted);
  font-size: 14px;
  font-weight: 650;
}

.home-facts-grid {
  display: grid;
  border-top: 1px solid #9aa9b0;
  border-bottom: 1px solid var(--facts-line);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}

.home-facts-grid--basic { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-facts-grid--operations { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.home-fact-card {
  --delay: calc(var(--i, 0) * 80ms);
  position: relative;
  min-height: 278px;
  padding: 36px 28px 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--facts-line);
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(28px);
  transition:
    background .4s ease,
    box-shadow .4s ease,
    transform .7s cubic-bezier(.2,.78,.2,1) var(--delay),
    opacity .55s ease var(--delay);
}

.home-facts-grid--basic .home-fact-card:last-child,
.home-facts-grid--operations .home-fact-card:nth-child(3n) { border-right: 0; }
.home-facts-grid--operations .home-fact-card:nth-child(-n+3) { border-bottom: 1px solid var(--facts-line); }

.home-company-facts.is-visible .home-fact-card {
  opacity: 1;
  transform: none;
}

.home-fact-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--facts-red);
  transition: width .55s cubic-bezier(.2,.78,.2,1);
}

.home-fact-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--facts-red);
  font-size: 20px;
  content: "↗";
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity .3s ease, transform .4s cubic-bezier(.2,.78,.2,1);
}

.home-fact-card:not(.home-fact-card--static):hover,
.home-fact-card:not(.home-fact-card--static):focus-visible {
  z-index: 2;
  background: #fff;
  box-shadow: 0 24px 50px rgba(18,37,48,.1);
  transform: translateY(-9px);
}

.home-fact-card:hover::before,
.home-fact-card:focus-visible::before { width: 100%; }
.home-fact-card:hover::after,
.home-fact-card:focus-visible::after { opacity: 1; transform: none; }
.home-fact-card:focus-visible { outline: 3px solid rgba(16,75,125,.4); outline-offset: -3px; }

.home-fact-icon {
  width: 62px;
  height: 62px;
  color: var(--facts-red);
  transition: transform .5s cubic-bezier(.2,.78,.2,1);
}

.home-fact-card:hover .home-fact-icon,
.home-fact-card:focus-visible .home-fact-icon { transform: translateY(-5px) scale(1.05); }

.home-fact-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.home-company-facts.is-visible .home-fact-icon * {
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: home-facts-icon-draw 1.1s cubic-bezier(.2,.78,.2,1) calc(.3s + var(--delay)) forwards;
}

.home-fact-value {
  margin-top: 42px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.home-fact-value strong {
  font-size: clamp(42px, 3.55vw, 56px);
  font-weight: 590;
  line-height: .92;
  letter-spacing: -.055em;
}

.home-fact-value em {
  padding-bottom: 5px;
  color: #45545c;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.home-fact-name {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 650;
}

.home-facts-footer {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.home-facts-more {
  min-width: 174px;
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--facts-red);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: background .3s ease, transform .35s cubic-bezier(.2,.78,.2,1);
}

.home-facts-more:hover,
.home-facts-more:focus-visible { background: #a82220; transform: translateY(-3px); }

@keyframes home-facts-icon-draw { to { stroke-dashoffset: 0; } }
@keyframes home-facts-trace { to { stroke-dashoffset: -240; } }

@media (max-width: 920px) {
  .home-facts-grid--basic,
  .home-facts-grid--operations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-facts-grid .home-fact-card { border-right: 1px solid var(--facts-line); border-bottom: 1px solid var(--facts-line); }
  .home-facts-grid .home-fact-card:nth-child(2n) { border-right: 0; }
  .home-facts-grid .home-fact-card:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 600px) {
  .home-company-facts { padding: 72px 16px 58px; }
  .home-facts-head { margin-bottom: 42px; }
  .home-facts-head p { margin-bottom: 14px; font-size: 12px; }
  .home-facts-head h2 { font-size: clamp(32px, 9vw, 34px); }
  .home-facts-group + .home-facts-group { margin-top: 34px; }
  .home-fact-card { min-height: 230px; padding: 25px 17px 21px; }
  .home-fact-icon { width: 46px; height: 46px; }
  .home-fact-value { margin-top: 32px; gap: 4px; }
  .home-fact-value strong { font-size: 32px; }
  .home-fact-value em { padding-bottom: 3px; font-size: 11px; }
  .home-fact-name { margin-top: 13px; font-size: 14px; line-height: 1.35; }
  .home-facts-more { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-facts-circuit path,
  .home-fact-icon *,
  .home-fact-card { animation: none !important; transition: none !important; }
  .home-fact-card { opacity: 1; transform: none; }
  .home-fact-icon * { stroke-dashoffset: 0 !important; }
}
