:root {
  --blue: #064b97;
  --deep-blue: #043f85;
  --white: #ffffff;
  --cookie-bg: #eeeeee;
  --text: #101010;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background: #0b2445;
}

body * {
  font-family: inherit;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(100%, 1230px);
  margin: 0 auto;
  padding: 0 15px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  background: var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 142px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 0.9;
  text-decoration: none;
}

.logo::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 65px;
  width: 16px;
  height: 16px;
  border: 3px dotted #f1d025;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.6vw, 48px);
  flex: 1;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-button,
.menu-button {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.language-button span {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--white);
}

.menu-button {
  display: none;
  width: 40px;
  height: 32px;
  padding: 0;
  position: relative;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0 0 9px;
  background: var(--white);
  transition: transform 220ms ease, opacity 180ms ease, margin 220ms ease;
}

.menu-button span:last-child {
  margin-bottom: 0;
}

.menu-button.is-open span:first-child {
  transform: translateY(12px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:last-child {
  transform: translateY(-12px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 92px;
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 18px 31px 24px;
  color: var(--white);
  background: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-image: url("./images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.04) 66%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 92px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 585px;
  padding-top: 34px;
}

.hero h1 {
  margin: 0 0 25px;
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 560px;
  margin: 0 0 42px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  max-width: 100%;
  padding: 16px 31px;
  border-radius: 999px;
  color: #003f91;
  background: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.how-section {
  scroll-margin-top: 92px;
  color: #000000;
  background: var(--white);
}

.how-inner {
  display: grid;
  grid-template-columns: minmax(0, 585px) minmax(0, 615px);
  gap: 48px;
  align-items: start;
  padding-top: 120px;
  padding-bottom: 112px;
}

.how-copy h2 {
  margin: 0 0 63px;
  color: #004aad;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.how-copy p {
  margin: 0 0 22px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.07;
}

.how-copy p:last-child {
  margin-bottom: 0;
}

.how-copy strong {
  font-weight: 800;
}

.how-media {
  width: 100%;
  padding-top: 0;
}

.how-media img {
  display: block;
  width: 100%;
  height: auto;
}

.accounts-section {
  scroll-margin-top: 92px;
  color: #000000;
  background: var(--white);
}

.accounts-inner {
  padding-top: 78px;
  padding-bottom: 106px;
}

.accounts-header {
  max-width: 690px;
  margin: 0 auto 53px;
  text-align: center;
}

.accounts-header h2 {
  margin: 0 0 22px;
  color: #004aad;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accounts-header p {
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.2;
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 105px;
}

.account-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 123px;
  padding: 24px 38px;
  color: #000000;
  background: #c8d3e9;
  text-align: center;
}

.account-card strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.confirmation-block {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.confirmation-block img {
  display: block;
  width: 100%;
  height: auto;
}

.confirmation-copy {
  padding-left: 0;
}

.confirmation-copy h2 {
  margin: 0 0 57px;
  color: #004aad;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.confirmation-copy p {
  margin: 0 0 21px;
  color: #000000;
  font-size: 24px;
  line-height: 1.08;
}

.confirmation-copy p:last-child {
  margin-bottom: 0;
}

.confirmation-copy strong {
  font-weight: 800;
}

.process-section {
  color: #000000;
  background: #c8d3e9;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 505px);
  justify-content: space-between;
  gap: 72px;
  padding-top: 86px;
  padding-bottom: 84px;
}

.process-intro h2,
.process-steps h2 {
  margin: 0;
  color: #004aad;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.process-intro h2 {
  margin-bottom: 18px;
  text-transform: uppercase;
}

.process-intro p {
  max-width: 360px;
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.08;
}

.process-steps h2 {
  margin-bottom: 44px;
  text-transform: none;
}

.step-card {
  margin-bottom: 27px;
  padding: 24px 22px 25px;
  color: #000000;
  background: var(--white);
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-card span {
  display: block;
  margin-bottom: 27px;
  color: #004aad;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 17px;
  color: #070b2b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.step-card p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.18;
}

.request-section {
  scroll-margin-top: 92px;
  color: #000000;
  background: #0042a5;
}

.request-inner {
  display: flex;
  justify-content: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.request-form {
  width: min(100%, 520px);
  padding: 45px 40px 39px;
  color: #000000;
  background: var(--white);
}

.request-form h2 {
  max-width: 360px;
  margin: 0 auto 21px;
  color: #004aad;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.04;
  text-align: center;
  text-transform: uppercase;
}

.request-form > p {
  max-width: 360px;
  margin: 0 auto 25px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 10px;
  margin-bottom: 23px;
}

.form-grid label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-grid input {
  width: 100%;
  height: 34px;
  border: 1px solid #c9c9c9;
  border-radius: 0;
  padding: 0 10px;
  color: #000000;
  background: var(--white);
  font-size: 16px;
  line-height: 1;
}

.form-grid input::placeholder {
  color: #6f6f6f;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-form button {
  width: 100%;
  min-height: 53px;
  border: 0;
  color: var(--white);
  background: #0042a5;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #b42318;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #8a8f99;
  font-size: 11px;
  line-height: 1.2;
}

.privacy-check.is-invalid {
  color: #b42318;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin: 0;
  accent-color: #0042a5;
}

.privacy-check.is-invalid input {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.privacy-error {
  min-height: 20px;
  margin: 8px 0 0 21px;
  color: #b42318;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-section {
  scroll-margin-top: 92px;
  color: #000000;
  background: var(--white);
}

.faq-inner {
  padding-top: 87px;
  padding-bottom: 100px;
}

.faq-inner h2 {
  margin: 0 0 68px;
  color: #070b2b;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.faq-list {
  max-width: 1010px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 35px 21px 0;
  border-bottom: 1px solid #d1d5db;
  margin-bottom: 21px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  border: 0;
  padding: 0;
  color: #070b2b;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  display: block;
  color: #070b2b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: #004aad;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  padding-top: 24px;
}

.faq-answer p {
  max-width: 600px;
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.22;
}

.site-footer {
  color: var(--white);
  background: var(--blue);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 165px;
}

.footer-logo {
  min-width: 245px;
  font-size: 41px;
}

.footer-logo::after {
  top: 6px;
  left: 111px;
  width: 23px;
  height: 23px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  flex: 1;
}

.footer-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.thanks-page {
  min-height: 100svh;
  background: #0042a5;
}

.thanks-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05)),
    url("./images/hero-bg.webp") center / cover no-repeat;
}

.thanks-inner {
  max-width: 780px;
}

.thanks-logo {
  margin-bottom: 72px;
}

.thanks-inner h1 {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.thanks-inner p {
  max-width: 560px;
  margin: 0 0 42px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.thanks-cta {
  min-width: 210px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  color: var(--text);
  background: var(--cookie-bg);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.cookie-banner.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 113px;
  gap: 34px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.cookie-copy {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.cookie-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.cookie-copy a {
  color: #004aad;
}

.cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  color: var(--white);
  background: #004aad;
  font-size: 25px;
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-actions button {
  min-height: 60px;
  padding: 14px 20px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: #004aad;
  font-size: 20px;
  line-height: 1.1;
  cursor: pointer;
}

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

  .language-button {
    font-size: 17px;
  }

  .cookie-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .how-media {
    max-width: 615px;
  }

  .accounts-grid,
  .confirmation-block {
    grid-template-columns: 1fr;
  }

  .confirmation-block {
    gap: 30px;
  }

  .confirmation-block img {
    max-width: 650px;
  }

  .process-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 31px;
  }

  .site-header {
    height: 92px;
  }

  .logo {
    min-width: 128px;
    font-size: 22px;
  }

  .logo::after {
    left: 59px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 31px;
  }

  .language-button {
    font-size: 20px;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    background-position: 55% top;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.2);
  }

  .hero-inner {
    align-items: center;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding-top: 118px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 1;
  }

  .hero p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.15;
  }

  .hero-cta {
    width: 100%;
    min-height: 68px;
    padding: 13px 24px;
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .how-inner {
    gap: 29px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .how-copy h2 {
    margin-bottom: 31px;
    font-size: 22px;
    line-height: 1.05;
  }

  .how-copy p {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.15;
  }

  .how-media {
    max-width: none;
  }

  .accounts-inner {
    padding-right: 14px;
    padding-left: 14px;
    padding-top: 47px;
    padding-bottom: 48px;
  }

  .accounts-header {
    margin-bottom: 28px;
  }

  .accounts-header h2 {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.08;
  }

  .accounts-header p {
    font-size: 16px;
    line-height: 1.2;
  }

  .accounts-grid {
    gap: 11px;
    margin-bottom: 42px;
  }

  .account-card {
    min-height: 82px;
    padding: 16px 18px;
  }

  .account-card strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .confirmation-block {
    gap: 14px;
  }

  .confirmation-copy h2 {
    margin-bottom: 31px;
    font-size: 20px;
    line-height: 1.1;
  }

  .confirmation-copy p {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 1.14;
  }

  .process-inner {
    gap: 34px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .process-intro h2,
  .process-steps h2 {
    font-size: 22px;
  }

  .process-intro p,
  .step-card p {
    font-size: 16px;
    line-height: 1.18;
  }

  .process-steps h2 {
    margin-bottom: 20px;
  }

  .step-card {
    margin-bottom: 16px;
    padding: 20px 17px;
  }

  .step-card span {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .step-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .request-inner {
    padding: 50px 15px;
  }

  .request-form {
    padding: 31px 20px 27px;
  }

  .request-form h2 {
    font-size: 22px;
  }

  .request-form > p {
    font-size: 16px;
  }

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

  .form-grid input {
    height: 46px;
    font-size: 16px;
  }

  .privacy-check {
    align-items: flex-start;
    font-size: 16px;
  }

  .privacy-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .privacy-error {
    margin-left: 25px;
  }

  .thanks-section {
    background-position: 55% top;
  }

  .thanks-inner {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .thanks-logo {
    margin-bottom: 72px;
  }

  .thanks-inner h1 {
    font-size: 42px;
  }

  .thanks-inner p {
    font-size: 16px;
  }

  .faq-inner {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .faq-inner h2 {
    margin-bottom: 38px;
    font-size: 34px;
  }

  .faq-item {
    padding-right: 0;
  }

  .faq-question {
    gap: 18px;
  }

  .faq-question span:first-child {
    font-size: 18px;
  }

  .faq-answer {
    padding-top: 12px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 1.16;
  }

  .footer-inner {
    gap: 30px;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer-logo {
    min-width: 170px;
    font-size: 28px;
  }

  .footer-logo::after {
    left: 76px;
    width: 17px;
    height: 17px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .cookie-inner {
    gap: 16px;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .cookie-copy {
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-copy p {
    font-size: 16px;
    line-height: 1.35;
  }

  .cookie-icon {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-actions button {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 24px;
  }

  .header-actions {
    gap: 22px;
  }

  .hero-content {
    padding-top: 80px;
  }
}
