.metric-card__svg {
  width: 28px;
  height: 28px;
}

.proof {
  background: transparent;
}

.proof__main {
  display: grid;
  grid-template-columns: minmax(330px, .95fr) 1fr;
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.proof__main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  width: 1px;
  height: 210px;
  background: linear-gradient(transparent, rgba(11, 95, 70, .25), transparent);
}

.proof__metric {
  text-align: center;
}

.proof__number {
  font-size: clamp(118px, 17vw, 245px);
  line-height: .8;
  color: var(--green);
  font-weight: 800;
  letter-spacing: -.09em;
  text-shadow: 0 14px 34px rgba(6, 79, 58, .12);
}

.proof__metric p {
  max-width: 600px;
  margin: 42px auto 0;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.18;
  font-weight: 800;
}

.proof__text h2 {
  font-family: var(--sans);
  font-size: clamp(30px, 3.1vw, 54px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.proof__text p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(42px, 5vw, 74px);
}

.metric-card,
.trust-panel {
  border: 1px solid rgba(22, 64, 51, .1);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
}

.metric-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 24px 26px;
  border-radius: 20px;
}

.metric-card .metric-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--green);
  border-radius: 16px;
  background: rgba(7, 84, 61, .08);
  font-size: 26px;
}

.metric-card div span {
  display: block;
  color: var(--green);
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.metric-card div p {
  margin-top: 6px;
  color: rgba(21, 33, 29, .78);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.trust-panel {
  margin-top: 38px;
  padding: 25px clamp(18px, 3vw, 46px) 30px;
  border-radius: 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.trust-panel__title {
  position: relative;
  margin-bottom: 22px;
  color: var(--green);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.trust-panel__title::before,
.trust-panel__title::after {
  content: "";
  display: inline-block;
  width: min(18vw, 190px);
  height: 1px;
  margin: 0 18px 4px;
  background: rgba(6, 82, 61, .18);
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  align-items: center;
}

.trust-logos span {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: rgba(20, 33, 29, .62);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  filter: grayscale(1);
}

@media (max-width: 1240px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .proof__main {
    grid-template-columns: 1fr;
  }

  .proof__main::before {
    display: none;
  }

  .proof__metric {
    text-align: center;
  }

  .proof__metric p {
    margin-inline: 0;
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel__title::before,
  .trust-panel__title::after {
    display: none;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.proof {
  min-height: clamp(760px, 56.3vw, 941px);
  padding: clamp(70px, 7vw, 112px) 0;
}

.proof__main {
  grid-template-columns: .92fr 1fr;
  gap: clamp(58px, 7vw, 108px);
}

.proof__number {
  font-size: clamp(150px, 17.2vw, 250px);
}

.proof__metric p {
  max-width: 610px;
  margin-top: 38px;
  font-size: clamp(30px, 2.7vw, 45px);
}

.proof__text h2 {
  max-width: 650px;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.12;
}

.proof__text p {
  max-width: 670px;
  font-size: clamp(17px, 1.25vw, 22px);
}

.metrics-grid {
  margin-top: clamp(48px, 5vw, 78px);
}

.metric-card {
  min-height: 128px;
  padding: 28px 30px;
}

.trust-panel {
  margin-top: 42px;
}

@media (min-width: 1241px) {
  .proof {
    min-height: min(941px, 100svh);
    padding: clamp(58px, 5.8vw, 82px) 0 clamp(60px, 6vw, 86px);
  }

  .proof__main {
    gap: clamp(48px, 5.8vw, 88px);
  }

  .proof__number {
    font-size: clamp(128px, 15vw, 218px);
  }

  .proof__metric p {
    margin-top: 24px;
    font-size: clamp(27px, 2.35vw, 39px);
  }

  .proof__text h2 {
    font-size: clamp(34px, 2.85vw, 48px);
  }

  .proof__text p {
    margin-top: 18px;
    font-size: clamp(16px, 1.12vw, 19px);
  }

  .metrics-grid {
    gap: 20px;
    margin-top: clamp(34px, 3.8vw, 56px);
  }

  .metric-card {
    min-height: 112px;
    padding: 22px 24px;
  }

  .metric-card div span {
    font-size: clamp(24px, 2.1vw, 32px);
  }

  .trust-panel {
    margin-top: 28px;
    padding: 18px clamp(18px, 3vw, 36px) 22px;
  }

  .trust-panel__title {
    margin-bottom: 14px;
  }

  .trust-logos span {
    min-height: 46px;
  }
}

@media (min-width: 1241px) and (max-height: 860px) {
  .proof {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .proof__number {
    font-size: clamp(118px, 13vw, 184px);
  }

  .proof__metric p {
    margin-top: 18px;
  }

  .metrics-grid {
    margin-top: 28px;
  }

  .trust-panel {
    margin-top: 22px;
    padding-top: 14px;
    padding-bottom: 16px;
  }
}

.proof {
  position: relative;
  min-height: clamp(760px, 56.3vw, 941px);
  padding: clamp(104px, 7.4vw, 128px) 0 clamp(12px, 2.1vw, 34px);
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  contain: paint;
  background:
    radial-gradient(circle at 0 76%, rgba(7, 84, 61, .07), transparent 19rem),
    radial-gradient(circle at 86% 12%, rgba(7, 84, 61, .045), transparent 20rem),
    linear-gradient(180deg, #fbfcfb 0%, #f8faf8 100%);
}

.proof::before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: 128px;
  z-index: 0;
  width: 440px;
  height: 440px;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(7, 84, 61, .28) 0 2px, transparent 2.6px);
  background-size: 13px 13px;
  border-radius: 50%;
  filter: blur(.1px);
}

.proof::after {
  content: "";
  position: absolute;
  top: -86px;
  right: -86px;
  z-index: 0;
  width: 360px;
  height: 340px;
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='340' viewBox='0 0 360 340' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2387d9b2' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round' opacity='.72'%3E%3Cpath d='M218-24C322 37 322 104 231 164C140 224 141 292 245 356'/%3E%3Cpath d='M292-24C188 37 188 104 279 164C370 224 369 292 265 356'/%3E%3Cpath d='M238 10 274-4M256 39 300 24M263 71 310 55M254 104 298 91M232 139 271 134M228 168 272 166M250 199 295 208M263 231 309 247M258 265 299 285M236 303 277 328'/%3E%3C/g%3E%3Cg fill='%2387d9b2' opacity='.62'%3E%3Ccircle cx='218' cy='-24' r='2.1'/%3E%3Ccircle cx='292' cy='-24' r='2.1'/%3E%3Ccircle cx='238' cy='10' r='2.1'/%3E%3Ccircle cx='274' cy='-4' r='2.1'/%3E%3Ccircle cx='256' cy='39' r='2.1'/%3E%3Ccircle cx='300' cy='24' r='2.1'/%3E%3Ccircle cx='263' cy='71' r='2.1'/%3E%3Ccircle cx='310' cy='55' r='2.1'/%3E%3Ccircle cx='254' cy='104' r='2.1'/%3E%3Ccircle cx='298' cy='91' r='2.1'/%3E%3Ccircle cx='232' cy='139' r='2.1'/%3E%3Ccircle cx='271' cy='134' r='2.1'/%3E%3Ccircle cx='228' cy='168' r='2.1'/%3E%3Ccircle cx='272' cy='166' r='2.1'/%3E%3Ccircle cx='250' cy='199' r='2.1'/%3E%3Ccircle cx='295' cy='208' r='2.1'/%3E%3Ccircle cx='263' cy='231' r='2.1'/%3E%3Ccircle cx='309' cy='247' r='2.1'/%3E%3Ccircle cx='258' cy='265' r='2.1'/%3E%3Ccircle cx='299' cy='285' r='2.1'/%3E%3Ccircle cx='236' cy='303' r='2.1'/%3E%3Ccircle cx='277' cy='328' r='2.1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-10deg);
}

.proof .container {
  position: relative;
  z-index: 1;
  width: min(1504px, calc(100% - 56px));
  min-width: 0;
}

.proof__main {
  --proof-divider-left: 48%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(590px, 1fr) minmax(560px, .92fr);
  gap: clamp(76px, 6vw, 104px);
  align-items: start;
}

.proof__main::before {
  content: "";
  position: absolute;
  left: var(--proof-divider-left);
  top: 0;
  width: 1px;
  height: 330px;
  background: linear-gradient(180deg, rgba(7, 84, 61, .08), rgba(7, 84, 61, .32), rgba(7, 84, 61, .08));
  transform: translateX(-50%);
}

.proof__main::after {
  content: "";
  position: absolute;
  left: var(--proof-divider-left);
  top: 143px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 84, 61, .28);
  transform: translateX(-50%);
}

.proof__metric {
  position: relative;
  padding-top: 36px;
  text-align: left;
}

.proof__metric::before {
  content: "";
  position: absolute;
  left: -104px;
  right: -6px;
  top: 84px;
  z-index: -1;
  height: 112px;
  opacity: .42;
  background-image: url("data:image/svg+xml,%3Csvg width='760' height='120' viewBox='0 0 760 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 62H42L52 62L64 18L78 104L92 62H120L134 50L148 72L162 62H250L260 62L272 26L286 98L300 62H398L410 62L422 35L436 88L450 62H560L572 62L584 18L598 104L612 62H760' fill='none' stroke='%2387d9b2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.proof__number {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(168px, 13vw, 214px);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.095em;
  text-align: center;
  text-shadow: 0 17px 24px rgba(7, 84, 61, .18);
}

.proof__metric p {
  max-width: 650px;
  margin: 74px 0 0 62px;
  color: #171a18;
  font-size: clamp(31px, 2.3vw, 38px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.045em;
}

.proof__text {
  padding-top: 2px;
}

.proof__text h2 {
  max-width: 700px;
  color: #151717;
  font-family: var(--sans);
  font-size: clamp(36px, 2.75vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.04em;
}

.proof__text p {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(21, 24, 23, .73);
  font-size: clamp(19px, 1.42vw, 24px);
  line-height: 1.48;
  font-weight: 400;
}

.proof .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.1vw, 34px);
  margin-top: clamp(56px, 4.9vw, 72px);
}

.proof .metric-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 146px;
  padding: 26px 28px;
  overflow: hidden;
  border: 0;
  border-top: 3px solid var(--green);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 28px rgba(20, 33, 29, .16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.proof .metric-card .metric-card__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  overflow: visible;
  color: var(--green);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(7, 84, 61, .08), rgba(7, 84, 61, .035));
}

.proof .metric-card__svg {
  width: 54px;
  height: 54px;
}

.proof .metric-card__img {
  display: block;
  width: calc(100% + clamp(6px, .56vw, 12px));
  height: calc(100% + clamp(6px, .56vw, 12px));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: drop-shadow(0 7px 9px rgba(7, 84, 61, .16));
}

.proof .metric-card div span {
  display: block;
  color: var(--green);
  font-size: clamp(32px, 2.42vw, 42px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.proof .metric-card div p {
  margin-top: 6px;
  color: #171a18;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.14;
  font-weight: 500;
}

.proof .trust-panel {
  margin-top: clamp(38px, 3.9vw, 54px);
  padding: 22px clamp(28px, 3.5vw, 48px) 30px;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(20, 33, 29, .13);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.proof .trust-panel__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  color: var(--green);
  text-align: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.proof .trust-panel__title::before,
.proof .trust-panel__title::after {
  content: "";
  display: block;
  width: min(18vw, 210px);
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(7, 84, 61, .22));
}

.proof .trust-panel__title::after {
  background: linear-gradient(90deg, rgba(7, 84, 61, .22), transparent);
}

.proof .trust-logos {
  --trust-logo-slot: clamp(164px, 11vw, 204px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--trust-logo-slot);
  grid-template-rows: 1fr;
  gap: clamp(18px, 1.8vw, 28px);
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.proof .trust-logos::-webkit-scrollbar {
  display: none;
}

.proof .trust-logos.is-dragging {
  cursor: grabbing;
}

.proof .trust-logos span {
  min-height: 92px;
}

.proof .trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding-inline: 8px;
  color: rgba(18, 21, 20, .7);
  text-align: center;
  filter: grayscale(1);
}

.proof .trust-logo svg {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof .trust-logo b {
  color: currentColor;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.035em;
}

.proof .trust-logo--academy {
  flex-direction: column;
  gap: 2px;
}

.proof .trust-logo--academy svg {
  width: 104px;
  height: 50px;
}

.proof .trust-logo--academy b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.proof .trust-logo--who svg,
.proof .trust-logo--university svg,
.proof .trust-logo--medical svg,
.proof .trust-logo--state svg {
  width: 78px;
  height: 78px;
}

.proof .trust-logo--institute svg,
.proof .trust-logo--biotech svg,
.proof .trust-logo--pharma svg {
  width: 58px;
  height: 58px;
}

@media (max-width: 1240px) {
  .proof {
    min-height: auto;
    padding: 88px 0 34px;
  }

  .proof::before {
    left: -170px;
    width: 360px;
    height: 360px;
  }

  .proof::after {
    right: 24px;
    width: 292px;
    height: 276px;
    opacity: .26;
  }

  .proof .container {
    width: min(100% - 40px, 1040px);
  }

  .proof__main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .proof__main::before,
  .proof__main::after {
    display: none;
  }

  .proof__metric {
    padding-top: 0;
    text-align: center;
  }

  .proof__metric::before {
    left: 0;
    right: 0;
    top: 58px;
  }

  .proof__number {
    font-size: clamp(140px, 22vw, 210px);
  }

  .proof__metric p {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: center;
  }

  .proof__text {
    max-width: 760px;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .proof__text p {
    margin-inline: auto;
  }

  .proof .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof .trust-logos {
    --trust-logo-slot: 156px;
    grid-template-rows: 1fr;
    grid-auto-columns: var(--trust-logo-slot);
    row-gap: 0;
  }
}

@media (max-width: 720px) {
  .proof {
    padding: 66px 0 28px;
  }

  .proof::before {
    left: -178px;
    bottom: auto;
    top: 74px;
    width: 280px;
    height: 280px;
    opacity: .14;
  }

  .proof::after {
    top: -54px;
    right: 18px;
    width: min(210px, 56vw);
    height: 218px;
    opacity: .22;
  }

  .proof .container {
    width: min(100% - 28px, 620px);
  }

  .proof__number {
    font-size: clamp(88px, 26vw, 124px);
    letter-spacing: -.075em;
  }

  .proof__metric::before {
    top: 34px;
    height: 68px;
  }

  .proof__metric p {
    margin-top: 28px;
    font-family: var(--sans);
    font-size: clamp(21px, 5.8vw, 28px);
    line-height: 1.18;
  }

  .proof__metric::after {
    content: "";
    display: block;
    width: min(230px, 58vw);
    height: 9px;
    margin: 30px auto 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 50%, rgba(7, 84, 61, .34) 0 3.5px, transparent 4px),
      linear-gradient(90deg, transparent 0, rgba(7, 84, 61, .1) 18%, rgba(7, 84, 61, .28) 50%, rgba(7, 84, 61, .1) 82%, transparent 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%, 100% 1px;
  }

  .proof__text h2 {
    font-family: var(--sans);
    font-size: clamp(25px, 6.9vw, 32px);
    line-height: 1.18;
  }

  .proof__text p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
  }

  .proof .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .proof .metric-card {
    grid-template-columns: 66px minmax(0, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: center;
    column-gap: 16px;
    width: 85%;
    max-width: 520px;
    min-height: 104px;
    margin-inline: auto;
    padding: 17px 18px;
    text-align: center;
  }

  .proof .metric-card > div {
    width: 100%;
    min-width: 0;
  }

  .proof .metric-card .metric-card__icon {
    width: 66px;
    height: 66px;
    border-radius: 12px;
  }

  .proof .metric-card__svg {
    width: 42px;
    height: 42px;
  }

  .proof .metric-card div span,
  .proof .metric-card div p {
    text-align: center;
  }

  .proof .metric-card div span {
    font-family: var(--sans);
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .proof .metric-card div p {
    font-family: var(--sans);
    font-size: 16px;
  }

  .proof .trust-panel {
    margin-top: 28px;
    padding: 20px 16px 24px;
  }

  .proof .trust-panel__title {
    gap: 12px;
    font-size: 12px;
    letter-spacing: .28em;
  }

  .proof .trust-panel__title::before,
  .proof .trust-panel__title::after {
    width: min(16vw, 70px);
  }

  .proof .trust-logos {
    --trust-logo-slot: 150px;
    grid-auto-flow: column;
    grid-auto-columns: var(--trust-logo-slot);
    grid-template-rows: repeat(2, 74px);
    gap: 16px 18px;
  }

  .proof .trust-logos span {
    min-height: 74px;
  }

  .proof .trust-logo {
    min-width: 0;
  }

  .proof .trust-logo svg {
    width: 52px;
    height: 52px;
  }

  .proof .trust-logo b {
    font-size: 13px;
  }
}

@media (min-width: 921px) and (max-width: 1240px) {
  .proof {
    --proof-tablet-pt: clamp(46px, 5.6svh, 64px);
    --proof-tablet-pb: clamp(18px, 3svh, 30px);
    min-height: 100svh;
    padding: var(--proof-tablet-pt) 0 var(--proof-tablet-pb);
  }

  .proof .container {
    display: flex;
    min-height: calc(100svh - var(--proof-tablet-pt) - var(--proof-tablet-pb));
    flex-direction: column;
    justify-content: flex-start;
    row-gap: clamp(24px, 2.9svh, 34px);
    width: min(100% - 40px, 1180px);
  }

  .proof__main {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: clamp(42px, 4.8vw, 66px);
    align-items: center;
    min-height: 0;
  }

  .proof__main::before {
    display: block;
    height: 250px;
  }

  .proof__main::after {
    display: block;
    top: 112px;
  }

  .proof__metric {
    padding-top: 12px;
    text-align: left;
  }

  .proof__metric::before {
    left: 0;
    right: 0;
    top: 50px;
    height: 78px;
  }

  .proof__number {
    font-size: clamp(118px, 14vw, 168px);
    text-align: center;
  }

  .proof__metric p {
    max-width: 520px;
    margin: 34px 0 0 clamp(12px, 3.6vw, 42px);
    font-size: clamp(22px, 2.45vw, 30px);
    text-align: left;
  }

  .proof__text {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .proof__text h2 {
    font-size: clamp(28px, 2.9vw, 36px);
  }

  .proof__text p {
    margin-top: 14px;
    font-size: clamp(15px, 1.45vw, 17px);
    line-height: 1.42;
  }

  .proof .metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .proof .metric-card {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: 88px;
    padding: 13px 12px;
  }

  .proof .metric-card .metric-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 11px;
  }

  .proof .metric-card__svg {
    width: 34px;
    height: 34px;
  }

  .proof .metric-card div span {
    font-size: clamp(21px, 2.1vw, 29px);
  }

  .proof .metric-card div p {
    font-size: 14px;
  }

  .proof .trust-panel {
    margin-top: 0;
    padding: 12px 18px 16px;
  }

  .proof .trust-panel__title {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .28em;
  }

  .proof .trust-logos span {
    min-height: 54px;
  }

  .proof .trust-logo {
    min-width: 132px;
  }

  .proof .trust-logo svg,
  .proof .trust-logo--who svg,
  .proof .trust-logo--university svg,
  .proof .trust-logo--medical svg,
  .proof .trust-logo--state svg {
    width: 44px;
    height: 44px;
  }

  .proof .trust-logo--academy svg {
    width: 88px;
    height: 40px;
  }

  .proof .trust-logo b {
    font-size: 12px;
  }
}

@media (min-width: 721px) and (max-width: 920px) {
  .proof {
    --proof-tablet-pt: clamp(52px, 5.8svh, 72px);
    --proof-tablet-pb: clamp(24px, 3.8svh, 44px);
    min-height: 100svh;
    padding: var(--proof-tablet-pt) 0 var(--proof-tablet-pb);
  }

  .proof .container {
    display: flex;
    min-height: calc(100svh - var(--proof-tablet-pt) - var(--proof-tablet-pb));
    flex-direction: column;
    justify-content: flex-start;
    row-gap: clamp(24px, 3svh, 36px);
  }

  .proof__main {
    flex: 1 1 auto;
    gap: clamp(24px, 3svh, 36px);
    align-content: center;
    min-height: 0;
  }

  .proof__number {
    font-size: clamp(118px, 19vw, 150px);
  }

  .proof__metric::before {
    top: 48px;
    height: 72px;
  }

  .proof__metric p {
    max-width: 620px;
    margin-top: 30px;
    font-size: clamp(24px, 4.1vw, 31px);
  }

  .proof__text h2 {
    font-size: clamp(28px, 4.1vw, 34px);
  }

  .proof__text p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.42;
  }

  .proof .metrics-grid {
    gap: 14px;
    margin-top: 0;
  }

  .proof .metric-card {
    grid-template-columns: 58px 1fr;
    min-height: 92px;
    padding: 14px;
  }

  .proof .metric-card .metric-card__icon {
    width: 58px;
    height: 58px;
  }

  .proof .metric-card__svg {
    width: 36px;
    height: 36px;
  }

  .proof .trust-panel {
    margin-top: 0;
    padding: 14px 18px 18px;
  }

  .proof .trust-panel__title {
    margin-bottom: 12px;
  }

  .proof .trust-logos span {
    min-height: 68px;
  }

  .proof .trust-logo svg,
  .proof .trust-logo--who svg,
  .proof .trust-logo--university svg,
  .proof .trust-logo--medical svg,
  .proof .trust-logo--state svg {
    width: 54px;
    height: 54px;
  }

  .proof .trust-logo--academy svg {
    width: 92px;
    height: 42px;
  }
}

@media (min-width: 721px) and (max-width: 920px) and (max-height: 760px) {
  .proof {
    --proof-tablet-pt: clamp(26px, 4.2svh, 38px);
    --proof-tablet-pb: clamp(12px, 2.4svh, 22px);
  }

  .proof .container {
    row-gap: clamp(12px, 2.1svh, 18px);
  }

  .proof__main {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1fr);
    gap: clamp(30px, 4.4vw, 48px);
    align-items: center;
  }

  .proof__metric {
    text-align: left;
  }

  .proof__number {
    font-size: clamp(98px, 14vw, 128px);
    text-align: center;
  }

  .proof__metric::before {
    left: 0;
    right: 0;
    top: 40px;
    height: 62px;
  }

  .proof__metric p {
    max-width: 430px;
    margin: 22px 0 0 22px;
    font-size: clamp(19px, 2.8vw, 24px);
    text-align: left;
  }

  .proof__text {
    max-width: none;
    text-align: left;
  }

  .proof__text h2 {
    font-size: clamp(24px, 3.3vw, 30px);
  }

  .proof__text p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.34;
  }

  .proof .metric-card {
    min-height: 78px;
    padding: 10px 12px;
  }

  .proof .metric-card .metric-card__icon {
    width: 50px;
    height: 50px;
  }

  .proof .metric-card__svg {
    width: 31px;
    height: 31px;
  }

  .proof .trust-panel {
    padding: 10px 16px 12px;
  }

  .proof .trust-panel__title {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .proof .trust-logos span {
    min-height: 54px;
  }
}

@media (min-width: 921px) and (max-height: 700px) {
  .proof {
    --proof-tablet-pt: 28px;
    --proof-tablet-pb: 12px;
    padding-top: var(--proof-tablet-pt);
    padding-bottom: var(--proof-tablet-pb);
  }

  .proof__main {
    gap: clamp(34px, 4vw, 54px);
  }

  .proof__number {
    font-size: clamp(104px, 11vw, 148px);
  }

  .proof__metric {
    padding-top: 8px;
  }

  .proof__metric::before {
    top: 40px;
    height: 68px;
  }

  .proof__metric p {
    margin-top: 24px;
    font-size: clamp(20px, 2vw, 27px);
  }

  .proof__text h2 {
    font-size: clamp(26px, 2.45vw, 34px);
  }

  .proof__text p {
    margin-top: 10px;
    font-size: clamp(14px, 1.12vw, 16px);
    line-height: 1.36;
  }

  .proof .metrics-grid {
    margin-top: 0;
  }

  .proof .metric-card {
    min-height: 78px;
    padding: 11px 12px;
  }

  .proof .trust-panel {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .proof .trust-panel__title {
    margin-bottom: 8px;
  }
}

@media (min-width: 1241px) and (max-height: 900px) {
  .proof {
    --proof-laptop-pt: clamp(48px, 6.4svh, 62px);
    --proof-laptop-pb: clamp(18px, 2.6svh, 26px);
    min-height: 100svh;
    padding: var(--proof-laptop-pt) 0 var(--proof-laptop-pb);
  }

  .proof .container {
    display: flex;
    min-height: calc(100svh - var(--proof-laptop-pt) - var(--proof-laptop-pb));
    flex-direction: column;
    justify-content: center;
    row-gap: clamp(26px, 3.2svh, 34px);
    width: min(1380px, calc(100% - 48px));
  }

  .proof__main {
    grid-template-columns: minmax(470px, .92fr) minmax(560px, 1fr);
    gap: clamp(58px, 5vw, 86px);
    align-items: center;
  }

  .proof__main::before {
    height: 285px;
  }

  .proof__main::after {
    top: 126px;
  }

  .proof__metric {
    padding-top: 14px;
  }

  .proof__metric::before {
    left: -70px;
    top: 58px;
    height: 94px;
  }

  .proof__number {
    font-size: clamp(150px, 12vw, 190px);
    line-height: .76;
  }

  .proof__metric p {
    max-width: 610px;
    margin: 42px 0 0 50px;
    font-size: clamp(27px, 2.08vw, 33px);
    line-height: 1.12;
  }

  .proof__text h2 {
    max-width: 680px;
    font-size: clamp(33px, 2.55vw, 40px);
    line-height: 1.16;
  }

  .proof__text p {
    max-width: 680px;
    margin-top: 16px;
    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.43;
  }

  .proof .metrics-grid {
    gap: 18px;
    margin-top: 0;
  }

  .proof .metric-card {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    min-height: 122px;
    padding: 19px 22px;
  }

  .proof .metric-card .metric-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  .proof .metric-card__svg {
    width: 44px;
    height: 44px;
  }

  .proof .metric-card div span {
    font-size: clamp(29px, 2.18vw, 36px);
  }

  .proof .metric-card div p {
    font-size: 15px;
  }

  .proof .trust-panel {
    margin-top: 0;
    padding: 20px 32px 26px;
    border-radius: 18px;
  }

  .proof .trust-panel__title {
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: .34em;
  }

  .proof .trust-logos {
    --trust-logo-slot: 186px;
  }

  .proof .trust-logos span {
    min-height: 82px;
  }

  .proof .trust-logo {
    min-width: 0;
    gap: 8px;
  }

  .proof .trust-logo svg,
  .proof .trust-logo--who svg,
  .proof .trust-logo--university svg,
  .proof .trust-logo--medical svg,
  .proof .trust-logo--state svg {
    width: 64px;
    height: 64px;
  }

  .proof .trust-logo--academy svg {
    width: 102px;
    height: 48px;
  }

  .proof .trust-logo b {
    font-size: 15px;
  }
}

@media (min-width: 1241px) and (max-height: 720px) {
  .proof {
    --proof-laptop-pt: clamp(32px, 5svh, 42px);
    --proof-laptop-pb: clamp(12px, 2svh, 18px);
  }

  .proof__main {
    gap: clamp(44px, 4vw, 64px);
  }

  .proof__main::before {
    height: 225px;
  }

  .proof__main::after {
    top: 98px;
  }

  .proof__metric {
    padding-top: 6px;
  }

  .proof__metric::before {
    left: -56px;
    top: 42px;
    height: 70px;
  }

  .proof__number {
    font-size: clamp(118px, 9.8vw, 148px);
  }

  .proof__metric p {
    margin-top: 28px;
    font-size: clamp(22px, 1.75vw, 27px);
    line-height: 1.1;
  }

  .proof__text h2 {
    font-size: clamp(27px, 2.15vw, 33px);
    line-height: 1.12;
  }

  .proof__text p {
    margin-top: 10px;
    font-size: clamp(14px, 1.08vw, 16px);
    line-height: 1.34;
  }

  .proof .metrics-grid {
    gap: 14px;
  }

  .proof .metric-card {
    grid-template-columns: 58px 1fr;
    gap: 13px;
    min-height: 96px;
    padding: 13px 16px;
  }

  .proof .metric-card .metric-card__icon {
    width: 58px;
    height: 58px;
  }

  .proof .metric-card__svg {
    width: 36px;
    height: 36px;
  }

  .proof .metric-card div span {
    font-size: clamp(24px, 1.9vw, 30px);
  }

  .proof .metric-card div p {
    margin-top: 4px;
    font-size: 13px;
  }

  .proof .trust-panel {
    padding: 14px 24px 18px;
  }

  .proof .trust-panel__title {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .proof .trust-logos span {
    min-height: 62px;
  }

  .proof .trust-logos {
    --trust-logo-slot: 156px;
  }

  .proof .trust-logo {
    min-width: 0;
  }

  .proof .trust-logo svg,
  .proof .trust-logo--who svg,
  .proof .trust-logo--university svg,
  .proof .trust-logo--medical svg,
  .proof .trust-logo--state svg {
    width: 50px;
    height: 50px;
  }

  .proof .trust-logo--academy svg {
    width: 88px;
    height: 40px;
  }

  .proof .trust-logo b {
    font-size: 12px;
  }
}

@media (min-width: 721px) and (max-width: 1240px) {
  .proof {
    min-height: auto;
  }

  .proof .container {
    min-height: 0;
  }

  .proof__main {
    flex: 0 0 auto;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .proof .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 18px);
  }

  .proof .metric-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 92px;
    padding: 14px 16px;
  }

  .proof .metric-card .metric-card__icon {
    width: 58px;
    height: 58px;
  }

  .proof .metric-card__svg {
    width: 36px;
    height: 36px;
  }

  .proof .metric-card div span {
    font-size: clamp(25px, 3vw, 32px);
  }
}

@media (min-width: 1241px) and (max-width: 1600px) and (max-height: 900px) {
  .proof {
    min-height: auto;
  }

  .proof .container {
    min-height: 0;
    justify-content: flex-start;
  }
}

/* Institution logos in the second screen. */
.proof .trust-panel__title {
  line-height: 1.2;
  letter-spacing: .14em;
}

.proof .trust-panel__title::before,
.proof .trust-panel__title::after {
  width: min(12vw, 150px);
}

.proof .trust-panel {
  padding-top: 16px;
  padding-bottom: 18px;
}

.proof .trust-panel__title {
  margin-bottom: 14px;
}

.proof .trust-logos {
  --trust-logo-slot: clamp(196px, 15.4vw, 258px);
  grid-auto-flow: column;
  grid-auto-columns: var(--trust-logo-slot);
  grid-template-columns: none;
  grid-template-rows: 1fr;
  gap: clamp(16px, 1.5vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.proof .trust-logos span {
  min-height: 94px;
  filter: none;
}

.proof .trust-logo {
  flex-direction: column;
  gap: 0;
  padding: 4px 8px;
  color: rgba(18, 21, 20, .9);
  filter: none !important;
  opacity: 1;
}

.proof .trust-logo__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
}

.proof .trust-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82px;
  filter: none;
  opacity: 1;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.proof .trust-logo b {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 30px;
  max-width: 100%;
  color: rgba(18, 21, 20, .68);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.proof .trust-logo--minzdrav img {
  max-width: 200px;
  max-height: 70px;
}

.proof .trust-logo--minobrnauki img {
  max-width: 206px;
  max-height: 76px;
}

.proof .trust-logo--ran img {
  max-width: 206px;
  max-height: 72px;
}

.proof .trust-logo--sportfmba img,
.proof .trust-logo--secarctic img {
  max-width: 210px;
  max-height: 74px;
}

.proof .trust-logo--rc-medicine img {
  max-width: 212px;
  max-height: 76px;
}

.proof .trust-logo--rospotrebnadzor img {
  max-width: 212px;
  max-height: 76px;
}

.proof .trust-logo--minsport img {
  max-width: 190px;
  max-height: 70px;
}

@media (min-width: 721px) and (max-width: 920px) {
  .proof .trust-logos {
    --trust-logo-slot: 214px;
    grid-auto-flow: column;
    grid-auto-columns: var(--trust-logo-slot);
    grid-template-columns: none;
    grid-template-rows: 1fr;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .proof .trust-logos span {
    min-height: 92px;
  }

  .proof .trust-logo__media {
    height: 84px;
  }

  .proof .trust-logo img {
    max-height: 78px;
  }

  .proof .trust-logo--rospotrebnadzor img,
  .proof .trust-logo--minsport img {
    max-width: 200px;
    max-height: 76px;
  }
}

@media (max-width: 720px) {
  .proof .trust-panel__title {
    gap: 12px;
    letter-spacing: .08em;
  }

  .proof .trust-panel__title::before,
  .proof .trust-panel__title::after {
    width: min(10vw, 42px);
  }

  .proof .trust-logos {
    --trust-logo-slot: 198px;
    grid-auto-flow: column;
    grid-auto-columns: var(--trust-logo-slot);
    grid-template-columns: none;
    grid-template-rows: repeat(2, 82px);
    gap: 24px 34px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .proof .trust-logos span {
    min-height: 82px;
  }

  .proof .trust-logo {
    align-self: center;
    justify-self: center;
    justify-content: center;
    width: 100%;
    height: 82px;
    min-height: 82px;
    padding-inline: 6px;
  }

  .proof .trust-logo__media {
    height: 82px;
    line-height: 0;
  }

  .proof .trust-logo img {
    max-height: 68px;
    object-position: center center;
  }

  .proof .trust-logo--rospotrebnadzor img,
  .proof .trust-logo--minsport img {
    max-width: 176px;
    max-height: 68px;
  }
}

/* Final containment pass for institution and metric icons. */
.proof .trust-logos {
  padding-inline: clamp(10px, 1vw, 18px);
  scroll-padding-inline: clamp(10px, 1vw, 18px);
  -webkit-mask-image: none;
  mask-image: none;
}

.proof .trust-logo__media {
  overflow: visible;
}

.proof .trust-logo {
  --trust-logo-image-max: 212px;
}

.proof .trust-logo img {
  max-width: min(100%, var(--trust-logo-image-max));
}

.proof .trust-logo--minzdrav {
  --trust-logo-image-max: 200px;
}

.proof .trust-logo--minobrnauki,
.proof .trust-logo--ran,
.proof .trust-logo--sportfmba,
.proof .trust-logo--secarctic,
.proof .trust-logo--rc-medicine,
.proof .trust-logo--rospotrebnadzor {
  --trust-logo-image-max: 212px;
}

.proof .trust-logo--minsport {
  --trust-logo-image-max: 190px;
}

@media (min-width: 1241px) {
  .proof .trust-logos {
    --trust-logo-slot: clamp(228px, 13.2vw, 252px);
    gap: clamp(20px, 1.45vw, 30px);
    padding-inline: clamp(14px, 1.4vw, 24px);
  }
}

@media (min-width: 921px) and (max-width: 1240px) {
  .proof .trust-logos {
    --trust-logo-slot: clamp(210px, 21vw, 236px);
    gap: clamp(20px, 2.1vw, 26px);
    padding-inline: clamp(14px, 1.8vw, 22px);
  }
}

@media (min-width: 721px) and (max-width: 920px) {
  .proof .trust-logos {
    --trust-logo-slot: clamp(202px, 29vw, 224px);
    gap: clamp(18px, 2.6vw, 24px);
  }
}

@media (max-width: 720px) {
  .proof .trust-logos {
    --trust-logo-slot: min(166px, 42vw);
    grid-template-rows: repeat(2, 76px);
    gap: 16px 18px;
    padding-inline: 8px;
  }

  .proof .trust-logos span,
  .proof .trust-logo,
  .proof .trust-logo__media {
    min-height: 76px;
    height: 76px;
  }

  .proof .trust-logo img,
  .proof .trust-logo--rospotrebnadzor img,
  .proof .trust-logo--minsport img {
    max-width: 154px;
    max-height: 62px;
  }
}
