@font-face {
  font-family: "Tilda Sans";
  src: url("fonts/tilda-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #05080d;
  --bg-soft: #090e14;
  --surface: #0c121a;
  --surface-strong: #111a24;
  --text: #f6f8fb;
  --muted: #98a3af;
  --muted-strong: #c1c9d2;
  --line: rgba(157, 181, 205, 0.18);
  --line-strong: rgba(103, 191, 255, 0.38);
  --accent: #58b9ff;
  --accent-bright: #82cdff;
  --success: #68d7ae;
  --container: 1240px;
  --header-height: 76px;
  color-scheme: dark;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

button,
input,
textarea {
  border: 0;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Tilda Sans", "Manrope", system-ui, sans-serif;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #04111a;
  border-radius: 8px;
  background: var(--accent-bright);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.wordmark {
  width: fit-content;
  font-family: "Tilda Sans", "Manrope", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #dbe1e7;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--accent-bright);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #06111a;
  background: #f6f8fb;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  color: #06111a;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(47, 165, 248, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--accent-bright);
  box-shadow: 0 14px 34px rgba(47, 165, 248, 0.27);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 600;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero,
.impact-section {
  color: #f6f8fb;
}

.hero-image,
.impact-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 8, 13, 0.98) 0%, rgba(4, 8, 13, 0.86) 27%, rgba(4, 8, 13, 0.25) 59%, rgba(4, 8, 13, 0.06) 100%),
    linear-gradient(0deg, rgba(4, 8, 13, 0.7) 0%, transparent 28%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 110px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 4.75vw, 78px);
  font-weight: 520;
  line-height: 0.99;
  letter-spacing: -0.035em;
  white-space: pre-line;
  text-wrap: pretty;
}

.hero-lead {
  max-width: 610px;
  margin-top: 30px;
  color: #c1c9d2;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.journey-section,
.infrastructure-section,
.value-section,
.faq-section,
.contact-section {
  padding-block: 124px;
}

.journey-section {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 72px;
  align-items: end;
}

.section-heading h2,
.infrastructure-copy h2,
.value-title,
.impact-content h2,
.contact-copy h2 {
  font-size: clamp(44px, 4.05vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.section-heading p,
.section-lead,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-step {
  position: relative;
  min-height: 438px;
  padding: 18px 18px 36px;
}

.journey-step + .journey-step {
  border-left: 1px solid var(--line);
}

.step-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.step-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 8, 14, 0.32) 100%);
  content: "";
  pointer-events: none;
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.journey-step:hover .step-visual img {
  transform: scale(1.025);
}

.journey-step h3 {
  margin-top: 27px;
  padding-inline: 8px;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.journey-step p {
  margin-top: 13px;
  padding-inline: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

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

.infrastructure-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.83fr) minmax(520px, 1.17fr);
  gap: 80px;
  align-items: center;
}

.infrastructure-copy .section-lead {
  max-width: 560px;
  margin-top: 28px;
}

.infrastructure-list {
  margin-block: 42px;
  border-top: 1px solid var(--line);
}

.infrastructure-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.infrastructure-list article > span,
.value-item > span {
  padding-top: 3px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.infrastructure-list h3 {
  font-size: 16px;
  font-weight: 550;
}

.infrastructure-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.media-frame {
  overflow: hidden;
  aspect-ratio: 1.18;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.value-title {
  max-width: 900px;
}

.value-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
}

.value-column {
  padding-right: 64px;
}

.value-column + .value-column {
  padding-right: 0;
  padding-left: 64px;
  border-left: 1px solid var(--line);
}

.column-label {
  margin-bottom: 26px;
  color: var(--muted-strong);
  font-size: 17px;
  font-weight: 600;
}

.value-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.value-item h4 {
  font-size: 17px;
  font-weight: 550;
}

.value-item p {
  max-width: 440px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.impact-section {
  position: relative;
  display: flex;
  min-height: 670px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.impact-image {
  object-position: 64% center;
}

.impact-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(6, 12, 19, 0.98) 0%, rgba(6, 12, 19, 0.84) 31%, rgba(6, 12, 19, 0.22) 66%, rgba(6, 12, 19, 0.05) 100%);
}

.impact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.impact-content h2 {
  max-width: 610px;
}

.impact-content p {
  max-width: 570px;
  margin-top: 28px;
  color: #c1c9d2;
  font-size: 17px;
  line-height: 1.7;
}

.impact-content strong {
  max-width: 570px;
  margin-top: 34px;
  padding-left: 22px;
  color: #f6f8fb;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid var(--accent);
}

.faq-section {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  gap: 110px;
  align-items: start;
}

.faq-heading h2 {
  font-size: clamp(44px, 4.05vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

.faq-heading p {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-block: 25px;
  font-family: "Tilda Sans", "Manrope", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent-bright);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 8px;
  content: "+";
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 700px;
  padding: 0 56px 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(540px, 1.25fr);
  gap: 110px;
  align-items: start;
}

.contact-copy > p {
  max-width: 520px;
  margin-top: 28px;
}

.contact-copy > a {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent-bright);
  font-size: 16px;
  font-weight: 600;
}

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

.partner-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 600;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: rgba(4, 8, 13, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.partner-form input {
  min-height: 54px;
  padding: 0 16px;
}

.partner-form textarea {
  min-height: 144px;
  padding: 15px 16px;
  resize: vertical;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
  color: #65717d;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 185, 255, 0.11);
}

.partner-form .button {
  width: 100%;
  margin-top: 2px;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #ff9c9c;
}

.partner-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 44px;
  align-items: center;
  min-height: 110px;
  padding: 30px 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #04070b;
}

.site-footer > a:nth-child(2) {
  color: var(--accent-bright);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 10px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(9, 14, 20, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

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

  .section-heading p {
    max-width: 650px;
  }

  .journey-step {
    padding-inline: 22px;
  }

  .infrastructure-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .infrastructure-copy {
    max-width: 720px;
  }

  .media-frame {
    aspect-ratio: 1.45;
  }

  .contact-copy {
    max-width: 720px;
  }

  .faq-heading {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(calc(100% - 38px), var(--container));
  }

  .site-header {
    padding-inline: 19px;
  }

  .wordmark {
    font-size: 25px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 30px;
    padding-inline: 6px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 840px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 8, 13, 0.99) 4%, rgba(4, 8, 13, 0.84) 50%, rgba(4, 8, 13, 0.1) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 90px 82px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 11.4vw, 55px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 30px;
  }

  .journey-section,
  .infrastructure-section,
  .value-section,
  .faq-section,
  .contact-section {
    padding-block: 84px;
  }

  .section-heading h2,
  .infrastructure-copy h2,
  .value-title,
  .impact-content h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .section-heading p,
  .section-lead,
  .faq-heading p,
  .contact-copy > p {
    font-size: 15px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .journey-step {
    display: block;
    min-height: 0;
    padding: 20px 0 30px;
  }

  .journey-step + .journey-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step-visual {
    aspect-ratio: 16 / 10;
  }

  .journey-step h3 {
    margin-top: 22px;
    padding-inline: 0;
  }

  .journey-step p {
    margin-top: 8px;
    padding-inline: 0;
  }

  .infrastructure-layout {
    gap: 52px;
  }

  .media-frame {
    aspect-ratio: 0.92;
  }

  .media-frame img {
    object-position: 57% center;
  }

  .value-columns {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 52px;
  }

  .value-column,
  .value-column + .value-column {
    padding: 0;
    border-left: 0;
  }

  .value-column + .value-column {
    padding-top: 54px;
    border-top: 1px solid var(--line);
  }

  .impact-section {
    min-height: 720px;
    align-items: flex-end;
  }

  .impact-image {
    object-position: 66% center;
  }

  .impact-shade {
    background: linear-gradient(0deg, rgba(5, 10, 16, 0.99) 7%, rgba(5, 10, 16, 0.84) 50%, rgba(5, 10, 16, 0.12) 100%);
  }

  .impact-content {
    justify-content: flex-end;
    padding-block: 90px 76px;
  }

  .impact-content p,
  .impact-content strong {
    font-size: 15px;
  }

  .contact-layout {
    gap: 52px;
  }

  .faq-layout {
    gap: 46px;
  }

  .faq-item summary {
    gap: 18px;
    padding-block: 22px;
    font-size: 19px;
  }

  .faq-item p {
    padding-right: 10px;
  }

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

  .field-wide {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 19px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    gap: 15px 24px;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f7fa;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --surface-strong: #eaf0f5;
    --text: #0b131c;
    --muted: #607080;
    --muted-strong: #334454;
    --line: rgba(30, 58, 82, 0.14);
    --line-strong: rgba(36, 151, 226, 0.35);
    --accent: #168fdb;
    --accent-bright: #0876b8;
    --success: #087657;
    color-scheme: light;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 36px rgba(26, 48, 67, 0.08);
  }

  .site-nav {
    color: #334454;
  }

  .language-switch,
  .menu-button {
    background: rgba(11, 19, 28, 0.04);
  }

  .language-switch button.is-active {
    color: #ffffff;
    background: #0b131c;
  }

  .button {
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(22, 143, 219, 0.2);
  }

  .button:hover {
    color: #ffffff;
    background: #0876b8;
    box-shadow: 0 14px 34px rgba(22, 143, 219, 0.25);
  }

  .step-visual,
  .media-frame {
    background: #09111a;
    box-shadow: 0 24px 60px rgba(26, 48, 67, 0.15);
  }

  .infrastructure-media {
    border-color: rgba(30, 58, 82, 0.12);
    background: #eaf0f5;
    box-shadow: 0 24px 68px rgba(26, 48, 67, 0.12);
  }

  .value-section {
    border-top-color: rgba(30, 58, 82, 0.08);
  }

  .partner-form input,
  .partner-form textarea {
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(30, 58, 82, 0.03);
  }

  .partner-form input::placeholder,
  .partner-form textarea::placeholder {
    color: #71808e;
  }

  .form-status.is-error {
    color: #b42318;
  }

  .site-footer {
    border-top-color: rgba(30, 58, 82, 0.08);
    background: #ffffff;
  }

  @media (max-width: 1080px) {
    .site-nav {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 20px 55px rgba(26, 48, 67, 0.16);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
