﻿:root {
  --blue: #0560cb;
  --text: #071a34;
  --muted: #344359;
  --line: #e8edf3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #469bff;
  outline-offset: 5px;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1104px, calc(100% - 64px));
  margin-inline: auto;
}
.header {
  height: 95px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(1216px, calc(100% - 64px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.logo__mark {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  border: 2px solid #b4d4ff;
}
.logo__mark:before,
.logo__mark:after {
  content: "";
  position: absolute;
  inset: 3px 18px 3px 3px;
  border: 2px solid #b4d4ff;
  border-right: 0;
}
.logo__mark:after {
  inset: -2px -2px -2px 20px;
  border: 2px solid #dfedff;
  border-left: 0;
}
.logo__text {
  font-size: 16px;
  line-height: 1.12;
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  white-space: nowrap;
}
.nav a:hover,
.footer a:hover {
  color: #4195fa;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-left: 14px;
}
.phone {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.header__contact span {
  font-size: 10px;
  color: #647184;
  white-space: nowrap;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid #1874da;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(120deg, #0863c7, #0557b9);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  background: #074eaa;
  box-shadow: 0 5px 18px #0065df26;
}
.btn--small {
  min-height: 44px;
  padding: 12px 20px;
  white-space: nowrap;
}
.btn--outline {
  border-color: #dae5f0;
  background: transparent;
  min-width: 138px;
}
.btn--outline:hover {
  background: #ffffff15;
}
.burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}
.hero {
  position: relative;
  height: 630px;
  color: #fff;
  background: #071c32;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("images/hero.png") center / cover no-repeat;
}
.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  width: 600px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin: 0 0 25px;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.9px;
  font-weight: 700;
}
.hero__lead {
  max-width: 480px;
  margin: 0 0 23px;
  font-size: 18px;
  line-height: 1.7;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.check-list--light li {
  padding-left: 40px;
  margin: 15px 0;
  font-size: 16px;
}
.check-list--light li:before {
  top: -2px;
  width: 24px;
  height: 24px;
  border: 2px solid #3b9bfa;
  border-radius: 50%;
  color: #3b9bfa;
  text-align: center;
  line-height: 20px;
}
.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 39px;
}
.hero-note {
  position: absolute;
  right: -52px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 17px;
  width: 276px;
  padding: 21px 22px;
  background: #fffffff5;
  color: var(--text);
  border: 1px solid #d9e3ed;
  border-radius: 10px;
  box-shadow: 0 6px 24px #06182b20;
  font-size: 13px;
  line-height: 1.5;
}
.hero-note strong {
  display: inline-block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 400;
}
.hero-note__icon {
  color: var(--blue);
}
.hero-note__icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 5px #147aeb40);
}
.section {
  padding: 40px 0;
}
.section-head {
  margin-bottom: 24px;
}
.section-head--center {
  text-align: center;
}
.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.partners {
  padding: 34px 0 32px;
}
.partners h2 {
  font-size: 25px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.partner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 20px #2034510c;
  border: 1px solid #f5f6f8;
  font-weight: 700;
}
.partner b {
  display: flex;
  align-items: center;
  gap: 6px;
}
.partner--sber {
  color: #009d42;
  font-size: 23px;
  letter-spacing: 1px;
}
.partner--sber i {
  width: 26px;
  height: 26px;
  display: block;
  border: 3px solid #16bb4c;
  border-top-color: #0096e0;
  border-left-color: #bdd800;
  border-radius: 50%;
  position: relative;
}
.partner--sber i:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 8px;
  border-left: 3px solid #0baf45;
  border-bottom: 3px solid #0baf45;
  background: white;
  transform: rotate(-40deg);
  top: -2px;
  left: 7px;
}
.partner--sov {
  color: #003981;
  font-size: 14px;
}
.partner--sov i {
  width: 21px;
  height: 21px;
  display: block;
  background: conic-gradient(#e72936 0 45%, #0054a6 45% 90%, white 90%);
  border-radius: 50%;
  border: 2px solid white;
  outline: 1px solid #dbe3ec;
}
.partner--alfa {
  flex-direction: column;
  gap: 7px;
  color: #ed1b24;
}
.partner--alfa b {
  font-size: 37px;
  line-height: 0.9;
  position: relative;
  padding-bottom: 8px;
}
.partner--alfa b:after {
  content: "";
  height: 4px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  inset-inline: 0;
}
.partner--alfa span {
  font-size: 13px;
}
.partner--mkb {
  color: #f40041;
  font-size: 24px;
}
.partner--mkb svg {
  width: 34px;
  stroke-width: 5;
}
.partner--abs {
  color: #ff5200;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.partner--abs b {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.partner--abs b:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #00d445;
  border-radius: 50%;
  align-self: flex-start;
  margin-left: -4px;
}
.partner--abs span {
  font-size: 18px;
}
.partner--psb {
  color: #28228b;
  font-size: 26px;
}
.partner--psb i {
  display: block;
  width: 25px;
  height: 27px;
  background: linear-gradient(
    135deg,
    #292386 0 48%,
    #ff7a00 49% 72%,
    #292386 73%
  );
  clip-path: polygon(0 30%, 50% 0, 100% 0, 100% 70%, 50% 100%, 0 100%);
}
.text-link,
.card-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.text-link {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  padding: 4px;
  background: none;
  border: 0;
}
.text-link span,
.card-link span {
  margin-left: 8px;
}
.text-link:hover,
.card-link:hover {
  color: #003e89;
}
.services,
.process {
  background: #fbfcfd;
}
.services {
  padding-top: 40px;
  padding-bottom: 32px;
}
.cards {
  display: grid;
  gap: 16px;
}
.cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  border: 1px solid #f0f2f5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px #1026410d;
}
.service-card {
  min-height: 414px;
  display: flex;
  flex-direction: column;
  padding: 28px 25px;
}
.icon-box {
  color: #0558d5;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse, #d1e8ff, #f6faff 65%, transparent 70%);
}
.icon-box svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.7;
  filter: drop-shadow(2px 4px 2px #125ae830);
}
.service-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
  max-width: 285px;
}
.service-card .check-list {
  margin-bottom: 24px;
}
.service-card .check-list li {
  margin: 9px 0;
  font-size: 13px;
}
.card-link {
  margin-top: auto;
  width: fit-content;
}
.process {
  padding-top: 32px;
  padding-bottom: 28px;
}
.process__box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px 0;
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 15px;
  box-shadow: 0 6px 18px #1026410b;
}
.process-step {
  position: relative;
  text-align: center;
  padding-inline: 16px;
}
.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 39px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 1px;
  background: #dce5f0;
}
.step-number {
  position: absolute;
  z-index: 1;
  left: calc(50% - 70px);
  top: -10px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: linear-gradient(135deg, #367dff, #1644e9);
  box-shadow: 0 4px 8px #105cda18;
  color: white;
  font-size: 16px;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 1px solid #edf0f5;
  border-radius: 50%;
  background: #fff;
  color: #0056cc;
  box-shadow: 0 3px 12px #15376808;
}
.step-icon svg {
  width: 33px;
  height: 33px;
}
.process-step h3 {
  margin: 0 0 13px;
  font-size: 15px;
}
.process-step p {
  max-width: 220px;
  margin: auto;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.advantages {
  padding-top: 32px;
  padding-bottom: 18px;
}
.advantages h2 {
  font-size: 25px;
}
.advantages .section-head {
  margin-bottom: 20px;
}
.adv-card {
  background: #f7f9fb;
  border-radius: 13px;
  padding: 24px 21px;
  min-height: 211px;
}
.adv-icon {
  color: #0055c2;
  margin-bottom: 23px;
}
.adv-icon svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(3px 3px 3px #398ee329);
}
.adv-card h3 {
  font-size: 14px;
  margin: 0 0 15px;
}
.adv-card p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: var(--muted);
}
.request {
  padding: 0 0 18px;
}
.request__box {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  min-height: 170px;
  padding: 35px 40px;
  border-radius: 15px;
  color: white;
  background:
    radial-gradient(ellipse at 75% 120%, #0b376a, transparent 50%),
    linear-gradient(110deg, #092449, #051a32);
  box-shadow: 0 5px 14px #10264112;
}
.request__text {
  max-width: 485px;
}
.request h2 {
  font-size: 26px;
  margin: 0 0 15px;
}
.request p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.request-form {
  width: 430px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 8px;
}
.request-form input {
  min-width: 0;
  height: 53px;
  padding: 15px 17px;
  border: 1px solid #cad5e3;
  border-radius: 5px;
  color: var(--text);
  font-size: 14px;
  box-shadow: inset 0 2px 5px #08294713;
}
.request-form input::placeholder {
  color: #8c98aa;
}
.request-form .btn {
  padding-inline: 25px;
  min-height: 53px;
}
.form-note {
  grid-column: 1/-1;
  color: #a4b4c9;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
}
.form-note svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.form-success {
  display: none;
  grid-column: 1/-1;
  color: #d0e6ff;
  font-size: 13px;
  line-height: 1.5;
}
.form-success.is-visible {
  display: block;
}
.footer {
  background: #03182d;
  color: #fff;
  padding: 38px 0 22px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.8fr 1.45fr;
  gap: 48px;
}
.logo--dark .logo__mark,
.logo--dark .logo__mark:before,
.logo--dark .logo__mark:after {
  border-color: #2379b8;
}
.footer__brand p {
  max-width: 240px;
  font-size: 14px;
  line-height: 1.5;
  color: #c5cfdd;
  margin: 19px 0 15px;
}
.footer h4 {
  margin: 3px 0 22px;
  font-size: 16px;
}
.footer__grid > div:not(.footer__brand) > a,
.footer__grid > div:not(.footer__brand) > p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
  color: #e0e7f0;
}
.footer__grid > div > a svg,
.footer__grid > div > p svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #3499f5;
}
.footer small {
  display: block;
  margin: -8px 0 0 29px;
  color: #93a2b6;
  font-size: 11px;
}
.socials {
  display: flex;
  gap: 13px;
}
.socials a {
  width: 35px;
  height: 35px;
  border: 1px solid #3987bd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dceafa;
}
.socials svg {
  width: 22px;
  height: 22px;
}
.socials a:hover {
  background: #153d61;
  color: #fff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ffffff10;
  padding-top: 18px;
  margin-top: 34px;
  font-size: 13px;
  color: #96a3b6;
}
.footer__bottom button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.footer__bottom button:hover {
  color: white;
}
.dialog {
  width: min(580px, calc(100% - 32px));
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 16px;
  color: var(--text);
  box-shadow: 0 20px 70px #00152f40;
}
.dialog::backdrop {
  background: #04172c99;
}
.dialog h2 {
  margin: 0 30px 20px 0;
  font-size: 25px;
}
.dialog p,
.dialog li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f0f5fa;
  font-size: 24px;
  color: var(--text);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 15px;
  background: white;
  color: var(--text);
}
.skip-link:focus {
  top: 12px;
}
@media (min-width: 1500px) {
  .hero__bg {
    background-position: center 42%;
  }
}
@media (max-width: 1199px) {
  .header__inner {
    gap: 22px;
  }
  .nav {
    gap: 20px;
  }
  .header__contact {
    display: none;
  }
  .hero-note {
    right: 0;
  }
  .hero h1 {
    font-size: 50px;
  }
  .request__box {
    gap: 30px;
    padding: 30px;
  }
  .request-form {
    width: 400px;
  }
  .footer__grid {
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .header {
    height: 76px;
  }
  .header__inner {
    gap: 16px;
  }
  .nav {
    gap: 15px;
  }
  .nav a {
    font-size: 12px;
  }
  .header .btn--small {
    display: none;
  }
  .hero {
    height: 600px;
  }
  .hero__content {
    width: 65%;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero__lead {
    max-width: 400px;
    font-size: 16px;
  }
  .hero__bg {
    background-position: 58% center;
  }
  .hero-note {
    width: 235px;
    padding: 16px;
    bottom: 28px;
  }
  .hero-note strong {
    font-size: 12px;
  }
  .partners__grid {
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card {
    padding: 24px 18px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .adv-card {
    min-height: 180px;
  }
  .request__box {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }
  .request__text {
    max-width: none;
  }
  .request-form {
    width: 100%;
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 88px;
  }
  .container,
  .header__inner {
    width: calc(100% - 40px);
  }
  .header {
    height: 72px;
  }
  .logo__mark {
    width: 37px;
    height: 37px;
  }
  .logo__text {
    font-size: 14px;
  }
  .burger {
    display: block;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: white;
    box-shadow: 0 15px 25px #061b3614;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 13px 5px;
    font-size: 16px;
  }
  .hero {
    height: auto;
    min-height: 670px;
  }
  .hero__bg {
    background-position: 66% center;
  }
  .hero__bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #04182ded, #04182da8 65%, #04182d55);
  }
  .hero__inner {
    display: block;
    padding-top: 54px;
    padding-bottom: 140px;
  }
  .hero__content {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(32px, 6.5vw, 43px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 23px;
  }
  .hero__lead {
    font-size: 16px;
    max-width: 450px;
  }
  .check-list--light li {
    font-size: 14px;
    margin: 18px 0;
    padding-left: 35px;
  }
  .hero__actions {
    margin-top: 30px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero__actions .btn {
    padding-inline: 19px;
  }
  .hero-note {
    right: 0;
    bottom: 26px;
    font-size: 12px;
  }
  .section {
    padding-block: 32px;
  }
  .section-head h2 {
    font-size: 25px;
  }
  .eyebrow {
    font-size: 14px;
  }
  .partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner {
    height: 82px;
  }
  .cards--3 {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 360px;
    padding: 25px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    max-width: none;
    font-size: 15px;
  }
  .service-card .check-list li {
    font-size: 14px;
  }
  .process {
    padding-top: 10px;
  }
  .process__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 0;
    padding: 30px 8px;
  }
  .process-step {
    padding-inline: 10px;
  }
  .process-step:after {
    display: none;
  }
  .step-number {
    left: calc(50% - 52px);
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .step-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }
  .process-step h3 {
    font-size: 14px;
    line-height: 1.4;
  }
  .process-step p {
    font-size: 13px;
  }
  .advantages {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cards--4 {
    gap: 12px;
  }
  .adv-card {
    padding: 20px 16px;
  }
  .adv-card h3 {
    line-height: 1.4;
  }
  .request {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .request__box {
    padding: 26px 22px;
  }
  .request h2 {
    font-size: 24px;
  }
  .request-form {
    grid-template-columns: 1fr;
  }
  .request-form .btn {
    width: 100%;
  }
  .form-note {
    font-size: 11px;
  }
  .footer {
    padding-top: 32px;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
  .footer__brand p {
    max-width: 330px;
  }
  .footer__grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    line-height: 1.5;
  }
  .footer__bottom button {
    text-align: left;
  }
}
@media (max-width: 360px) {
  .container,
  .header__inner {
    width: calc(100% - 32px);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .cards--4 {
    grid-template-columns: 1fr;
  }
  .partner--sov {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
/* Server-backed request form */
.request-form label {
  display: block;
  color: #d8e5f5;
  font-size: 13px;
  line-height: 1.5;
}
.request-form input:not([type="checkbox"]),
.request-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  font: inherit;
  color: #071a34;
  background: white;
  border: 1px solid #cad5e3;
  border-radius: 5px;
  padding: 12px 14px;
}
.request-form textarea {
  min-height: 94px;
  resize: vertical;
}
.request-form .form-wide,
.request-form .form-consent {
  grid-column: 1/-1;
}
.request-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
}
.request-form .form-consent input {
  height: 17px;
  width: 17px;
  margin: 3px 0 0;
  flex-shrink: 0;
}
.form-consent button {
  border: 0;
  background: none;
  color: #b7d9ff;
  padding: 0;
  text-decoration: underline;
  font: inherit;
}
.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.request-form .form-success {
  margin: 0;
  line-height: 1.6;
}
.request-form .form-error {
  color: #ffd6ca;
}
.request-form .field-error {
  display: block;
  margin-top: 6px;
  color: #ffd6ca;
  font-size: 12px;
  line-height: 1.5;
}
.request-form .field-error[hidden] { display: none; }
.request-form [aria-invalid="true"] {
  border-color: #ff9c85;
  outline: 2px solid #ff9c85;
  outline-offset: 2px;
}
.request-form .form-success.is-visible {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
}
.request-form .form-success[data-state="success"] {
  color: #c0f2d1;
  background: #143b36;
}
.request-form .form-success[data-state="pending"] { color: #d8e5f5; }
.request-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.request__box {
  gap: 40px;
}
@media (max-width: 680px) {
  .request-form {
    gap: 16px;
  }
  .request-form label {
    font-size: 14px;
  }
}
/* Supplied brand assets: preserve proportions at every breakpoint. */
.logo__image {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.logo--dark .logo__image {
  width: 128px;
  height: 128px;
  filter: brightness(0) invert(1);
}
.partners__grid--eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner__image {
  display: block;
  width: calc(100% - 36px);
  max-width: 200px;
  height: 60px;
  object-fit: contain;
}
.partner__image--compact {
  max-width: 132px;
}
@media (max-width: 900px) {
  .logo__image {
    width: 64px;
    height: 64px;
  }
  .partners__grid--eight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .logo__image {
    width: 62px;
    height: 62px;
  }
  .logo--dark .logo__image {
    width: 110px;
    height: 110px;
  }
  .partner__image {
    width: calc(100% - 28px);
    height: 54px;
  }
  .partner__image--compact {
    max-width: 110px;
  }
}
