:root {
  --black: #050505;
  --ink: #0f0f0f;
  --muted: #626865;
  --white: #ffffff;
  --soft: #f6f7f6;
  --line: #dfe4e1;
  --green: #34c759;
  --green-dark: #062e24;
  --green-deep: #041e18;
  --green-soft: #e8f9ed;
  --blue: #c9e1e4;
  --peach: #f7ded5;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(4, 30, 24, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* У картинок в разметке проставлены собственные размеры — они резервируют
   место до загрузки и убирают сдвиг вёрстки. height: auto нужен, чтобы при
   сжатии по max-width высота считалась по пропорции, а не бралась из атрибута.
   Правила с классами (.hero__visual-main img и подобные) задают высоту явно
   и перебивают это значение. */
img {
  height: auto;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.04;
}

h2 em,
h1 em {
  color: var(--green);
  font-style: normal;
}

::selection {
  color: var(--black);
  background: #a8f0ba;
}

:focus-visible {
  outline: 3px solid #2ab84d;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 40px;
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
  overflow: clip;
}

.section--soft {
  background: var(--soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #4e5652;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 28px;
  border: 1px solid var(--green);
  border-radius: 48px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #25b84b;
  background: #25b84b;
}

.button--small {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button--white {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.button--white:hover {
  border-color: var(--white);
  background: #eefcf1;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 500;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready[data-reveal-delay="1"] {
  transition-delay: 120ms;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(5, 5, 5, 0.08);
  box-shadow: 0 8px 28px rgba(5, 5, 5, 0.06);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.campaign-logo {
  display: inline-flex;
  align-items: center;
}

.campaign-logo__image {
  display: block;
  width: 146px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #343936;
  font-size: 14px;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 72px;
  right: 0;
  bottom: auto;
  left: 0;
  height: calc(100dvh - 72px);
  padding: 30px 24px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(5, 5, 5, 0.08);
}

.mobile-menu nav {
  display: flex;
  width: min(100%, 520px);
  margin: 0 auto;
  flex-direction: column;
}

.mobile-menu nav > a:not(.button) {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.mobile-menu .button {
  margin-top: 28px;
}

.mobile-menu .button + .button {
  margin-top: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 735px;
  padding: 64px 0 16px;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.hero__grid,
.request-section__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.8;
}

.hero__glow--one {
  top: -180px;
  right: 10%;
  width: 440px;
  height: 440px;
  background: rgba(52, 199, 89, 0.24);
}

.hero__glow--two {
  right: -80px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  background: rgba(30, 132, 152, 0.2);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 655px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 72px;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(54px, 5.35vw, 78px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

@media (min-width: 1121px) {
  .hero h1 {
    font-size: clamp(54px, 4.5vw, 66px);
  }
}

.hero__subtitle {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.hero__date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #aaf3bc;
  font-size: 26px;
  font-weight: 600;
}

.hero__date i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero__trust-logos {
  display: flex;
  gap: 8px;
}

.mini-logo {
  display: grid;
  width: 76px;
  height: 42px;
  place-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--white);
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-logo--federation {
  width: 54px;
}

.hero__visual {
  position: relative;
  min-height: 655px;
  align-self: stretch;
}

.hero__visual-main {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero__visual-main img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 981px) {
  .hero__visual-main img {
    width: 183%;
    max-width: none;
    transform: translateX(-12%);
  }
}

.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero__foot a {
  color: var(--white);
}

/* Section headings */
.section-heading--split {
  display: grid;
  align-items: start;
  grid-template-columns: 0.38fr 1.18fr 0.82fr;
  gap: 36px;
  margin-bottom: 68px;
}

.section-heading--split .eyebrow {
  margin-top: 8px;
}

.section-heading--split h2,
.section-heading--split .section-heading__copy {
  margin-bottom: 0;
}

.section-heading__copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading--about {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 96px;
}

.section-heading--about h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading--about .section-heading__copy {
  max-width: 560px;
  margin-left: auto;
}

.section-heading__closing {
  margin: 38px 0 0;
  color: var(--green);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.section-heading--center {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
}

/* Campaign flow */
.movement-flow {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
}

.movement-flow__item {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.movement-flow__item--dark {
  background: var(--black);
  color: var(--white);
}

.movement-flow__item--mint {
  background: var(--blue);
}

.movement-flow__item--peach {
  background: var(--peach);
}

.movement-flow__number {
  color: currentColor;
  font-size: 12px;
  opacity: 0.55;
}

.movement-flow__icon {
  display: grid;
  width: 108px;
  height: 108px;
  margin: 40px auto 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 42px;
  opacity: 0.9;
}

.movement-flow__item h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.movement-flow__item p {
  max-width: 270px;
  margin-bottom: 0;
  color: currentColor;
  font-size: 14px;
  opacity: 0.68;
}

.movement-flow__arrow {
  color: var(--green);
  font-size: 26px;
}

/* Counter */
.counter-section {
  position: relative;
  padding: 96px 0 40px;
  overflow: hidden;
  background: #021f18;
  color: var(--white);
}

@media (min-width: 981px) {
  .counter-section {
    height: auto;
  }

  .counter-section__media {
    min-height: max-content;
  }
}

.campaign-overview__intro {
  display: block;
  margin-bottom: 36px;
}

.campaign-overview__title .eyebrow {
  margin-bottom: 22px;
}

.campaign-overview__intro h2 {
  color: var(--white);
}

.campaign-overview__intro .section-heading__copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: left;
}

.campaign-overview__title .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.campaign-overview__intro .section-heading__closing {
  color: var(--green);
  text-align: left;
}

.counter-section__inner {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 72px;
}

.campaign-overview__left {
  min-width: 0;
}

.counter-section__copy,
.counter-section__media {
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.counter-section__copy {
  display: flex;
  padding: 32px 40px;
  flex-direction: column;
  justify-content: center;
  background: #073a2d;
}

.counter-section__number {
  margin: 18px 0 8px;
  color: var(--green);
  font-size: clamp(58px, 5.7vw, 86px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.counter-section h2 {
  max-width: 640px;
  margin-bottom: 14px;
}

.counter-section__copy h2 {
  color: var(--white);
}

.counter-section__copy > p:not(.eyebrow, .counter-section__number) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.counter-progress {
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.counter-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transform: translateX(-100%);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-section.is-active .counter-progress span {
  transform: translateX(var(--counter-fill, 0%));
}

.counter-section__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.counter-section__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.counter-section__meta strong {
  color: var(--white);
  font-weight: 500;
}

.counter-section__cta {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.counter-section__cta .button {
  min-height: 40px;
  padding: 8px 20px;
}

.counter-section__media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.counter-section__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: 100%;
  border-radius: calc(14% + 5px) / calc(4% + 5px);
  clip-path: inset(0 1.2% round calc(14% + 5px) / calc(4% + 5px));
  background: transparent;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

/* Culture */
.culture-section__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 88px;
}

.culture-section__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.culture-slider__track,
.culture-slider__slide {
  position: absolute;
  inset: 0;
}

.culture-slider__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.culture-slider__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.culture-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-slider__counter,
.culture-slider__controls {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.14);
}

.culture-slider__source {
  position: absolute;
  z-index: 2;
  bottom: 76px;
  left: 22px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.66);
  color: var(--white);
  font-size: 11px;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}

.culture-slider__counter {
  left: 22px;
  gap: 7px;
  padding: 10px 14px;
  font-size: 13px;
}

.culture-slider__counter i {
  color: var(--muted);
  font-style: normal;
}

.culture-slider__controls {
  right: 22px;
  padding: 4px;
  gap: 4px;
}

.culture-slider__controls button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.culture-slider__controls button:hover,
.culture-slider__controls button:focus-visible {
  background: var(--green);
  color: var(--white);
}

.culture-section__quote {
  position: relative;
  max-width: 610px;
  margin: 0 0 32px;
  padding: 52px 36px 32px;
  overflow: hidden;
  border: 1px solid #dce8df;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--white), var(--green-soft));
  box-shadow: 0 18px 50px rgba(4, 30, 24, 0.08);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
  letter-spacing: -0.022em;
  text-align: left;
}

.culture-section__content {
  text-align: left;
}

.culture-section__quote-mark {
  position: absolute;
  top: 14px;
  right: 28px;
  color: var(--green);
  font-size: 92px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.22;
}

.culture-section__quote > p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.culture-section__quote footer {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  margin-top: 28px;
  padding-top: 20px;
  align-items: center;
  border-top: 1px solid rgba(4, 30, 24, 0.12);
  gap: 14px;
}

.culture-section__author-photo {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(49, 199, 91, 0.38);
  border-radius: 50%;
  object-fit: cover;
}

.culture-section__quote footer div {
  display: grid;
  gap: 3px;
}

.culture-section__quote strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.campaign-timeline {
  position: relative;
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.campaign-timeline__line {
  position: absolute;
  top: 28px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: var(--line);
}

.campaign-timeline article {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 150px;
  padding: 0 16px 18px;
  align-items: flex-start;
  flex-direction: column;
}

.campaign-timeline article span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 13px;
}

.campaign-timeline article strong {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.campaign-timeline article small {
  color: var(--muted);
  font-size: 14px;
}

.culture-section__quote footer span {
  max-width: 500px;
  color: #3b5a52;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.culture-section__content > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

.culture-section__content .large-copy {
  color: var(--ink) !important;
  font-size: 22px;
  line-height: 1.5;
}

/* Partners */
.partners-section {
  padding: 72px 0;
}

.partners-section__heading {
  display: grid;
  max-width: none;
  margin-bottom: 32px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 64px;
  text-align: left;
}

.partners-section__heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.partners-section__description {
  display: grid;
  max-width: 680px;
  margin: 0;
  gap: 18px;
  color: var(--muted);
  text-align: left;
}

.partners-section__description p {
  margin: 0;
}

.partners-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.partners-founders article {
  display: flex;
  min-height: 154px;
  padding: 24px 28px;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius);
  background: var(--white);
}

.partners-founders img {
  width: 154px;
  height: 92px;
  object-fit: contain;
}

.partners-founders article:first-child img {
  width: 104px;
}

.partners-founders article div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partners-founders article .partner-role {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.partners-founders article strong {
  max-width: 300px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.partner-strip {
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
}

.partner-strip > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.partner-strip__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, auto);
  gap: 12px;
}

.wordmark {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.wordmark--mobiuz {
  color: #f02737;
  text-transform: lowercase;
}

.wordmark--click img {
  width: 132px;
  max-height: 62px;
  object-fit: contain;
}

.wordmark--korzinka {
  color: #1976d2;
}

.wordmark--next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.wordmark--next:hover,
.wordmark--next:focus-visible {
  background: #2ab84d;
  transform: translateY(-2px);
}

.wordmark--next span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 21px;
}

/* Benefits */
.benefits-section {
  padding: 64px 0;
  background: var(--white);
}

.benefits-heading {
  margin-bottom: 28px;
}

.benefits-heading h2 {
  max-width: 1040px;
  margin-bottom: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 26px 112px 26px 28px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}

.benefit-card__number {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.benefit-card__icon {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.25)),
    linear-gradient(145deg, rgba(52, 199, 89, 0.28), rgba(61, 173, 190, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
}

.benefit-card__icon::after {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 35px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  content: "";
  filter: blur(6px);
}

.benefit-card__icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  stroke: #168c44;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 9px;
  font-size: clamp(22px, 1.8vw, 27px);
  line-height: 1.1;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Mechanics */
.mechanics-section {
  position: relative;
  padding: 48px 0;
  overflow: visible;
  background: var(--green-dark);
  color: var(--white);
}

.mechanics-section__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: 48px;
}

.mechanics-section__copy {
  position: relative;
  z-index: 2;
}

.mechanics-section__copy h2 {
  max-width: 800px;
  margin-bottom: 28px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mechanics-phone {
  position: relative;
  top: auto;
  height: fit-content;
  min-height: 0;
  align-self: center;
  transform: none;
  overflow: hidden;
  border: 0;
  border-radius: 44px;
  background: #ffffff;
}

.mechanics-phone img,
.mechanics-phone video {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: min(68vh, 650px);
  margin: 0 auto;
  border-radius: 44px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.34));
}

.mechanics-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mechanics-steps article {
  display: grid;
  min-height: 100px;
  padding: 16px 0;
  align-items: center;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mechanics-steps article > span {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mechanics-steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.mechanics-steps p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

.mechanics-steps p a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Technology */
.technology-section {
  background: var(--white);
}

.technology-section__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 78px;
}

.technology-section__logo {
  width: 240px;
  margin: 28px 0 48px;
}

.technology-section__content h2 {
  max-width: 570px;
}

.technology-section__content > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
}

.technology-section__note {
  display: flex;
  max-width: 590px;
  margin: 32px 0;
  padding: 20px;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.technology-section__note span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.technology-section__note p {
  margin: 1px 0 0;
}

.technology-section__visual {
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f2f2f0;
}

.technology-section__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1917 / 905;
  border-radius: 22px;
  object-fit: cover;
}

/* Quotes */
.quotes-section {
  padding: 72px 0;
}

.quotes-section__header {
  display: flex;
  align-items: start;
  margin-bottom: 44px;
}

.quotes-section__header h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.slider-controls button:hover {
  background: var(--green);
  color: var(--white);
}

.slider-controls span {
  min-width: 46px;
  text-align: center;
  font-size: 13px;
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quote-track::-webkit-scrollbar {
  display: none;
}

.quote-card {
  display: flex;
  min-width: 0;
  min-height: 540px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.quote-card__photo {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #cdd8d4;
}

.quote-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card:first-child .quote-card__photo img {
  object-position: center top;
}

.quote-card__mark {
  height: 58px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 0.9;
}

.quote-card blockquote {
  margin: 26px 0 auto;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.quote-card__author > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.quote-card__author strong {
  font-size: 17px;
  font-weight: 600;
}

.quote-card__author span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* Media */
.media-section {
  padding: 72px 0;
}

.media-section__heading {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.media-section__heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.media-section__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.media-section__controls button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.media-section__controls button:hover:not(:disabled) {
  background: rgba(47, 201, 91, 0.1);
  color: var(--green);
}

.media-section__controls button:disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.42;
}

.media-section__controls > span {
  min-width: 64px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.media-section__controls strong {
  color: var(--black);
  font-weight: 600;
}

/* Лента прокручивается программно (script.js -> scrollTo), поэтому overflow по
   горизонтали должен оставаться скроллируемым: overflow-x: clip тут не подходит.
   Но overflow-x: hidden делает вычисленный overflow-y равным auto, и любой выход
   за верхний или нижний край даёт вертикальный скролл и обрезает карточку.
   Отсюда вертикальные поля: в них помещается подъём карточки по ховеру вместе
   с тенью. Отрицательные margin возвращают отступы секции к исходным. */
.media-grid {
  display: grid;
  overflow: hidden;
  margin: -20px 0 -56px;
  padding: 20px 0 56px;
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  gap: 20px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  touch-action: pan-y;
}

.media-grid::-webkit-scrollbar {
  display: none;
}

.media-card {
  display: grid;
  min-height: 244px;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 104px minmax(140px, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.media-card__visual {
  position: relative;
  display: flex;
  min-height: 104px;
  padding: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  font-weight: 600;
}

.media-card__visual::before {
  position: absolute;
  right: -30%;
  bottom: -34%;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.media-card__logo {
  position: relative;
  z-index: 1;
  width: min(72%, 180px);
  max-height: 62px;
  object-fit: contain;
}

.media-card__logo--uzdaily {
  filter: brightness(0) invert(1);
}

.media-card__logo--nuz {
  width: min(76%, 188px);
}

.media-card__logo--kursiv {
  width: min(76%, 190px);
}

.media-card__logo--telegram {
  width: 74px;
  height: 74px;
}

.media-card__sputnik-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--white);
  line-height: 1;
}

.media-card__sputnik-logo strong {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.06em;
}

.media-card__sputnik-logo span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.media-card--blue .media-card__visual {
  background: #166097;
}

.media-card--red .media-card__visual {
  background: #d63a38;
}

.media-card--green .media-card__visual {
  background: #168369;
}

.media-card--black .media-card__visual {
  background: var(--black);
}

.media-card--sputnik .media-card__visual {
  background: #f26d21;
}

.media-card__body {
  display: flex;
  padding: 15px 18px;
  flex-direction: column;
}

.media-card__body > span {
  color: var(--muted);
  font-size: 12px;
}

.media-card__body h3 {
  display: -webkit-box;
  margin: 8px 0 auto;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.media-card__body b {
  margin-top: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

/* Request */
.request-section {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.request-section__pattern {
  mask-image: linear-gradient(to top, black, transparent 90%);
}

.request-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.request-section__copy h2 {
  max-width: 510px;
}

@media (min-width: 981px) {
  .request-section__copy h2 {
    font-size: clamp(54px, 4.5vw, 66px);
    line-height: 0.99;
    letter-spacing: -0.055em;
  }
}

.request-section__copy > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.request-section__stat {
  display: flex;
  margin: 58px 0 30px;
  padding: 22px 0;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.request-section__stat strong {
  color: var(--green);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.request-section__stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.request-section .text-button {
  color: var(--white);
}

.request-form {
  position: relative;
  min-height: 0;
  padding: 38px 38px 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
}

.request-form__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.request-form__header b {
  color: var(--muted);
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
}

.request-form label:not(.choice) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-form__contact-row {
  display: grid;
  margin: 32px 0 34px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.request-form .request-form__contact-row fieldset {
  margin: 0;
}

.request-form label > span,
.request-form legend {
  color: #68706c;
  font-size: 12px;
}

.request-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  height: 48px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #afb7b3;
  border-radius: 0;
  outline: none;
  background: transparent;
}

.request-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

/* Замечание к полю: подсвечиваем линию под полем красным + подпись мелким
   шрифтом. Тень 0 1px повторяет приём из :focus и делает линию плотнее,
   не сдвигая вёрстку. */
.request-form input[aria-invalid="true"]:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  border-color: #e2574c;
  box-shadow: 0 1px 0 #e2574c;
}

.request-form input[aria-invalid="true"]:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus {
  border-color: #e2574c;
  box-shadow: 0 1px 0 #e2574c;
}

/* Селектор с двумя классами намеренно: правило `.request-form label > span`
   задаёт подписи полей и по специфичности (0,1,2) перебило бы одиночный
   `.field-error` (0,1,0) — подсказка выводилась бы серой 12px. */
.request-form .field-error {
  display: block;
  margin-top: -2px;
  color: #c0392b;
  font-size: 11px;
  line-height: 1.35;
}

.request-form__consent.has-error .request-form__consent-box {
  border: 1px solid #e2574c;
  box-shadow: 0 0 0 1px rgba(226, 87, 76, 0.35);
}

.request-form .field-error--consent {
  grid-column: 2;
  margin-top: 8px;
}

.request-form fieldset {
  margin: 38px 0 34px;
  padding: 0;
  border: 0;
}

.request-form legend {
  margin-bottom: 14px;
}

.choice {
  display: inline-flex;
  margin: 0 7px 7px 0;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 48px;
  color: var(--ink) !important;
  transition: border-color 160ms ease, background 160ms ease;
}

.choice input:checked + span {
  border-color: var(--green);
  background: var(--green-soft);
}

.choice input:focus-visible + span {
  outline: 3px solid #2ab84d;
  outline-offset: 3px;
}

.request-form__submit {
  width: 100%;
}

.request-form__consent {
  display: grid !important;
  margin: 0 0 18px;
  align-items: start;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  cursor: pointer;
}

.request-form__consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.request-form__consent-box {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border: 1px solid #8e9893;
  border-radius: 5px;
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease;
}

.request-form__consent input:checked + .request-form__consent-box {
  border-color: var(--green);
  background: var(--green);
}

.request-form__consent input:checked + .request-form__consent-box::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.request-form__consent input:focus-visible + .request-form__consent-box {
  outline: 3px solid rgba(42, 184, 77, 0.34);
  outline-offset: 3px;
}

.request-form__consent-text {
  color: #4f5753 !important;
  font-size: 11px !important;
  line-height: 1.45;
}

.request-form__consent-text a {
  color: #138b3b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.request-form__legal {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: inherit;
  background: var(--white);
}

.form-success > span {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 26px;
}

.form-success strong {
  font-size: 20px;
  font-weight: 500;
}

.form-success p {
  margin: 4px 0 0;
  color: var(--muted);
}

/* Ошибка отправки показывается блоком внутри формы, чтобы поля остались
   доступны для правки, а не перекрывались экраном успеха. */
.form-success--error {
  position: static;
  padding: 20px;
  align-items: flex-start;
  border: 1px solid rgba(226, 87, 76, 0.35);
  border-radius: var(--radius);
  background: #fdf3f2;
  text-align: left;
}

.form-success--error > span {
  background: #e2574c;
  font-weight: 600;
}

.form-success__retry {
  margin-top: 16px;
}

.request-form.is-sending {
  opacity: 0.75;
}

.request-form__submit:disabled {
  cursor: progress;
  opacity: 0.7;
}

.request-form__submit:disabled:hover {
  transform: none;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  background: var(--black);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  min-height: 160px;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 40px;
}

.campaign-logo--footer {
  align-self: start;
}

.campaign-logo--footer .campaign-logo__image {
  width: 176px;
}

.site-footer__top > p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__logos {
  display: flex;
  gap: 8px;
}

.site-footer__logos img {
  width: 100px;
  height: 52px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.site-footer__logos img:first-child {
  width: 62px;
}

.site-footer__legal {
  display: grid;
  padding: 28px 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__contacts {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__contacts strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.site-footer__contacts a,
.site-footer__legal-links a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 3px;
}

.site-footer__legal-links a {
  cursor: pointer;
}

.site-footer__legal-links {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  font-size: 12px;
  line-height: 1.4;
}

.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.site-footer__bottom a:nth-child(2) {
  margin-left: auto;
}

.site-footer__bottom a {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 22px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  border: 1px solid #dce3df;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(0, 24, 17, 0.2);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.cookie-banner__copy p {
  margin: 0;
  color: #59615d;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-banner__copy a {
  color: #138b3b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.cookie-banner__button--secondary {
  background: var(--white);
  color: #137a35;
}

.legal-page {
  min-height: 100vh;
  background: #f5f7f6;
}

.legal-page__header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-page__header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-page__back {
  color: #235244;
  font-size: 14px;
}

.legal-page__main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-page__eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-page h1 {
  max-width: 780px;
  margin: 16px 0 12px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-page__updated {
  margin: 0 0 34px;
  color: var(--muted);
}

.legal-card {
  margin-top: 18px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 550;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 17px;
}

.legal-card p,
.legal-card li {
  color: #4f5753;
  line-height: 1.65;
}

.legal-card a {
  color: #138b3b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 13px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  line-height: 1.45;
}

.legal-table th {
  background: #f3f7f4;
  color: #274c40;
}

/* Modal */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 120;
  display: flex;
  padding: 32px 20px;
  align-items: center;
  justify-content: center;
  inset: 0;
}

.modal__backdrop {
  position: absolute;
  border: 0;
  background: rgba(4, 30, 24, 0.62);
  inset: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: modal-fade 220ms ease;
}

.modal__dialog {
  position: relative;
  display: flex;
  width: min(100%, 620px);
  max-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: modal-rise 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal--doc .modal__dialog {
  width: min(100%, 940px);
  height: min(100%, 860px);
}

.modal__header {
  display: flex;
  flex: 0 0 auto;
  padding: 24px 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.modal__title {
  margin: 0;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.modal__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.modal__close:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.modal__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 24px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.modal__body:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -4px;
}

.modal__footer {
  display: flex;
  flex: 0 0 auto;
  padding: 18px 28px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.modal__download::after {
  content: "↓";
  font-size: 15px;
}

.modal__state {
  margin: 0;
  color: var(--muted);
}

.modal__state--error {
  color: #c0392b;
}

.modal__to-top {
  position: absolute;
  right: 28px;
  bottom: 92px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 48px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(4, 30, 24, 0.16);
  font-size: 14px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.modal__to-top:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* Контакт с копированием по клику */
.contact-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.contact-copy__button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-copy__button:hover {
  text-decoration-style: solid;
}

.contact-copy__button.is-copied {
  color: var(--green);
  text-decoration: none;
}

.contact-copy__button.is-copy-failed {
  color: #e2574c;
  text-decoration: none;
}

.contact-copy__open {
  flex: 0 0 auto;
  opacity: 0.66;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.contact-copy__open:hover {
  opacity: 1;
}

/* Внутри футера ссылки подчёркнуты по умолчанию — стрелке это не нужно. */
.site-footer__contacts .contact-copy__open {
  text-decoration: none;
}

.org-card__contacts .contact-copy__button {
  color: var(--green-dark);
  text-decoration-color: rgba(6, 46, 36, 0.4);
}

/* Organizer card */
.org-card {
  display: grid;
  gap: 22px;
}

.org-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.org-card__list {
  display: grid;
  margin: 0;
  gap: 14px;
}

.org-card__row {
  display: grid;
  gap: 3px;
}

.org-card__row dt {
  color: var(--muted);
  font-size: 13px;
}

.org-card__row dd {
  margin: 0;
  line-height: 1.5;
}

.org-card__contacts {
  display: grid;
  padding-top: 20px;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.org-card__contacts strong {
  font-weight: 500;
}

.org-card__contacts ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.org-card__contacts a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: rgba(6, 46, 36, 0.3);
  text-underline-offset: 3px;
}

.org-card__contacts a:hover {
  text-decoration-color: currentColor;
}

/* Markdown document */
/* Текст документа занимает всю ширину блока просмотра — без ограничения
   длины строки, чтобы таблицы и длинные пункты помещались целиком. */
.markdown {
  width: 100%;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  margin: 32px 0 12px;
  font-weight: 600;
  line-height: 1.3;
}

.markdown > :first-child {
  margin-top: 0;
}

.markdown h2 {
  font-size: 20px;
}

.markdown h3 {
  font-size: 18px;
}

.markdown h4,
.markdown h5,
.markdown h6 {
  font-size: 16px;
}

.markdown p {
  margin: 0 0 14px;
}

.markdown ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.markdown li {
  margin-bottom: 8px;
}

.markdown a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.markdown hr {
  height: 1px;
  margin: 26px 0;
  border: 0;
  background: var(--line);
}

.markdown__table {
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.markdown table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}

.markdown th,
.markdown td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.markdown th {
  background: var(--soft);
  font-weight: 600;
}

.markdown tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .modal {
    padding: 0;
  }

  .modal__dialog,
  .modal--doc .modal__dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .modal__header {
    padding: 18px 20px;
  }

  .modal__body {
    padding: 20px;
  }

  .modal__footer {
    padding: 14px 20px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }

  .modal__footer .button {
    width: 100%;
  }

  .modal__to-top {
    right: 20px;
    bottom: 88px;
    width: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .modal__to-top-label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .markdown table {
    min-width: 480px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 38px;
  }

  .section-heading--split {
    grid-template-columns: 0.3fr 1.15fr 0.75fr;
    gap: 24px;
  }

  .mechanics-phone img,
  .mechanics-phone video {
    right: -8%;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 104px 0;
  }

  .quotes-section {
    padding: 72px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__visual {
    width: min(100%, 690px);
    min-height: 560px;
    margin: 0 auto;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading--about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading--about .section-heading__copy {
    max-width: 680px;
    margin-left: 0;
  }

  .partners-section__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split h2 {
    max-width: 760px;
  }

  .section-heading--split .section-heading__copy {
    max-width: 680px;
  }

  .movement-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .movement-flow__arrow {
    display: none;
  }

  .movement-flow__item {
    min-height: 300px;
  }

  .counter-section__inner,
  .culture-section__grid,
  .technology-section__grid,
  .request-section__grid {
    grid-template-columns: 1fr;
  }

  .counter-section__copy,
  .counter-section__media {
    min-height: 360px;
  }

  .campaign-overview__left {
    display: contents;
  }

  .counter-section {
    padding: 80px 0 28px;
  }

  .campaign-overview__intro {
    margin-bottom: 48px;
  }

  .culture-section__grid,
  .technology-section__grid {
    gap: 52px;
  }

  .culture-section__image img {
    min-height: 0;
  }

  .mechanics-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mechanics-section__copy {
    max-width: none;
  }

  .mechanics-phone {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none;
  }

  .mechanics-phone img,
  .mechanics-phone video {
    right: auto;
    width: auto;
    max-width: 100%;
    height: min(70vh, 640px);
  }

  .mechanics-steps {
    display: block;
  }

  .mechanics-steps article:nth-child(n) {
    border-top: 0;
  }

  .quote-track {
    grid-template-columns: 1fr;
  }

  .request-section__grid {
    gap: 62px;
  }

  .request-section__copy {
    max-width: 680px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__logos {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading__closing {
    font-size: 18px;
    text-align: left;
  }

  .campaign-logo__image {
    width: 128px;
  }

  .hero {
    padding: 96px 0 0;
  }

  .hero__grid {
    background-size: 48px 48px;
  }

  .hero__inner {
    min-height: 0;
    gap: 20px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 10vw, 43px);
    line-height: 0.98;
  }

  .hero__subtitle {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero__date {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    font-size: 18px;
  }

  .hero__date i {
    display: none;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .counter-section__cta .button {
    width: 100%;
  }

  .hero__trust {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    white-space: nowrap;
  }

  .hero__trust-logos {
    gap: 6px;
  }

  .mini-logo {
    width: 64px;
    height: 36px;
    padding: 6px 8px;
    border-radius: 8px;
  }

  .mini-logo--federation {
    width: 46px;
  }

  .hero__visual {
    width: 100%;
    min-height: 0;
    margin-bottom: 0;
  }

  .hero__visual-main {
    position: relative;
    inset: auto;
  }

  .hero__visual-main img {
    width: 170%;
    max-width: 560px;
    margin-bottom: -28px;
    transform: translateY(-28px);
  }

  .hero__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .movement-flow,
  .partners-founders,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-auto-columns: 100%;
    gap: 12px;
    height: auto;
  }

  .media-section {
    padding: 56px 0;
  }

  .media-section__heading {
    margin-bottom: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .media-section__controls {
    gap: 6px;
  }

  .media-section__controls button {
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .media-section__controls > span {
    min-width: 52px;
    font-size: 15px;
  }

  .movement-flow__item {
    min-height: 270px;
  }

  .movement-flow__icon {
    width: 88px;
    height: 88px;
    margin: 28px auto;
  }

  .counter-section {
    padding: 72px 0 20px;
  }

  .counter-section__inner {
    gap: 24px;
  }

  .campaign-overview__intro {
    margin-bottom: 0;
  }

  .counter-section__copy,
  .counter-section__media {
    min-height: 330px;
    border-radius: 22px;
  }

  .counter-section__copy {
    padding: 26px 28px;
  }

  .counter-section__number {
    margin-top: 18px;
    font-size: 17vw;
  }

  .counter-section__copy h2 {
    font-size: 21px;
    line-height: 1.08;
  }

  /* Видео 720x1438 вписано по высоте контейнера (height: 100%, width: auto),
     поэтому размер задаётся высотой блока. На мобильных тянем её от ширины
     экрана с потолком, чтобы ролик занимал заметную часть кадра. */
  .counter-section__media {
    min-height: min(132vw, 480px);
  }

  .culture-section__image img {
    min-height: 0;
  }

  .culture-section__image {
    min-height: 420px;
  }

  .culture-section__quote {
    padding: 48px 24px 26px;
    font-size: 19px;
  }

  .culture-section__content .large-copy {
    font-size: 19px;
  }

  .campaign-timeline {
    display: flex;
    margin-top: 52px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .campaign-timeline__line {
    display: none;
  }

  .campaign-timeline article {
    min-width: 220px;
    min-height: 170px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--soft);
    scroll-snap-align: start;
  }

  .campaign-timeline article span {
    margin-bottom: 28px;
  }

  .partners-founders article {
    min-height: 180px;
    padding: 28px;
    gap: 22px;
  }

  .partners-founders img {
    width: 130px;
  }

  .partner-strip {
    padding: 24px;
  }

  .partner-strip__logos {
    grid-template-columns: 1fr 1fr;
  }

  .wordmark {
    min-height: 90px;
  }

  .benefits-heading {
    margin-bottom: 36px;
  }

  .benefit-card {
    min-height: 200px;
    padding: 24px;
    border-radius: 22px;
  }

  .benefit-card__icon {
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .benefit-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-card h3 {
    margin: 24px 0 8px;
  }

  .benefit-card p {
    font-size: 15px;
  }

  .mechanics-section {
    padding: 68px 0;
  }

  .mechanics-section__copy h2 {
    margin-bottom: 36px;
  }

  .mechanics-phone {
    min-height: 0;
    border-radius: 28px;
  }

  .mechanics-phone img,
  .mechanics-phone video {
    right: auto;
    bottom: auto;
    width: auto;
    max-width: 100%;
    height: min(48vh, 414px);
    border-radius: 28px;
  }

  .mechanics-steps {
    display: block;
    overflow: visible;
  }

  .mechanics-steps article {
    min-width: 0;
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    border-top: 0 !important;
  }

  .mechanics-steps strong {
    font-size: 19px;
  }

  .mechanics-steps p {
    font-size: 15px;
  }

  .technology-section__logo {
    width: 190px;
  }

  .technology-section__visual {
    padding: 14px;
  }

  .quotes-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-track {
    display: grid;
    overflow-x: auto;
    padding-bottom: 4px;
    grid-template-columns: none;
    grid-auto-columns: calc(100% - 32px);
    grid-auto-flow: column;
    gap: 12px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
    touch-action: pan-x;
  }

  .quote-card {
    min-height: 0;
    padding: 28px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .quote-card__photo {
    width: 60px;
    height: 60px;
    min-height: 0;
    max-height: none;
    flex-basis: 60px;
  }

  .quote-card__mark {
    height: 50px;
    font-size: 68px;
  }

  .quote-card blockquote {
    font-size: 18px;
  }

  .media-card {
    min-height: 220px;
    grid-template-columns: 1fr;
    grid-template-rows: 92px minmax(128px, 1fr);
  }

  .media-card__visual {
    min-height: 92px;
  }

  .media-card__body {
    padding: 16px 18px;
  }

  .media-card__visual {
    padding: 14px;
  }

  .request-section {
    padding: 84px 0 42px;
  }

  .request-form {
    min-height: 0;
    padding: 26px 20px 18px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .request-form__contact-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* На мобильных форма после отправки сворачивается до компактной карточки,
     а значок и текст выравниваются по центру. */
  .request-form.is-sent {
    padding: 0;
  }

  /* !important — потому что .request-form__consent объявлен display: grid !important,
     иначе галочки согласий остаются видны поверх карточки. */
  .request-form.is-sent > *:not([data-form-success]) {
    display: none !important;
  }

  .form-success:not(.form-success--error) {
    position: static;
    padding: 34px 22px;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .form-success:not(.form-success--error) > span {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .form-success:not(.form-success--error) strong {
    font-size: 18px;
  }

  .form-success--error {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__logos {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__bottom a:nth-child(2) {
    margin-left: 0;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__legal-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 17px;
  }

  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .legal-page__header-inner {
    min-height: 72px;
  }

  .legal-page__back {
    font-size: 12px;
  }

  .legal-page__main {
    width: min(100% - 24px, 920px);
    padding: 48px 0 72px;
  }

  .legal-page h1 {
    font-size: 40px;
  }

  .legal-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .legal-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }

  .legal-table td {
    display: grid;
    padding: 10px 12px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-table td:last-child {
    border-bottom: 0;
  }

  .legal-table td::before {
    content: attr(data-label);
    color: #285044;
    font-weight: 600;
  }
}

@media (max-width: 440px) {
  .campaign-logo__image {
    width: 112px;
  }

  .partners-founders article {
    align-items: flex-start;
    flex-direction: column;
  }

  .partners-founders img {
    height: 80px;
  }

  .partner-strip__logos {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 216px;
    grid-template-columns: 1fr;
    grid-template-rows: 90px minmax(126px, 1fr);
  }

  .media-card__visual {
    min-height: 90px;
  }

  .media-card__logo {
    max-height: 54px;
  }

  .media-card__logo--telegram {
    width: 54px;
    height: 54px;
  }

  .media-card__sputnik-logo strong {
    font-size: 32px;
  }

  .request-section__stat {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
