﻿:root {
  --text: #0b1f33;
  --muted: #4f6476;
  --border: #b8c4ce;
  --panel: #ffffff;
  --soft: #f4f7f9;
  --blue: #005eb8;
  --blue-dark: #003f7d;
  --green: #008a5b;
  --green-dark: #006e49;
  --warning: #ffdd00;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: "Atkinson Hyperlegible Next", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--blue-dark);
  text-decoration-thickness: 2px;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid var(--warning);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 10px 14px;
  color: #000000;
  background: var(--warning);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.main-nav,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 16px;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 16px;
}

.language-control label {
  font-weight: 800;
}

.language-control select {
  min-height: 40px;
  padding: 6px 34px 6px 10px;
  border: 2px solid var(--text);
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.hero {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
  min-height: 560px;
  padding: 64px 0 72px;
}

.service-label {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
}

.lead {
  max-width: 720px;
  color: #243f57;
  font-size: 22px;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 3px 0 var(--green-dark);
}

.button-primary:hover {
  color: #ffffff;
  background: var(--green-dark);
}

.button-secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: var(--blue);
}

.button-secondary:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.support-summary,
.card,
.warning-box,
.cta-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--panel);
}

.support-summary {
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.08);
}

.summary-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  color: #ffffff;
  background: #4f6476;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.tag-blue {
  background: var(--blue);
}

.summary-list {
  margin: 0;
}

.summary-list div {
  display: grid;
  grid-template-columns: 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.summary-list dt {
  color: var(--muted);
  font-weight: 600;
}

.summary-list dd {
  margin: 0;
  font-weight: 800;
}

.progress-block {
  margin-top: 22px;
  font-weight: 800;
}

.progress-bar {
  height: 14px;
  margin-top: 10px;
  border: 1px solid var(--border);
  background: #e7edf2;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: var(--green);
}

.section {
  padding: 72px 0;
}

.muted-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.inset {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 8px solid var(--blue);
  background: var(--soft);
  font-weight: 700;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  min-height: 240px;
  padding: 24px 0 0;
  border-top: 6px solid var(--blue);
}

.process-list li::before {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--text);
  border-radius: 50%;
  content: counter(step);
  font-weight: 800;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 24px;
}

.card p,
.warning-box p,
.cta-panel p,
.process-list p,
.support-summary p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: start;
}

.warning-box {
  padding: 22px;
  border-left: 8px solid var(--warning);
}

.warning-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.cta-section {
  background: #ffffff;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 36px;
  padding: 32px;
}

.early-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.form-row {
  display: flex;
  gap: 12px;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--text);
  border-radius: 0;
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}

.form-message {
  margin: 14px 0 0;
  font-weight: 800;
}

.form-message.is-success {
  color: var(--green-dark);
}

.form-message.is-error {
  color: #b10e1e;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b1f33;
  color: #ffffff;
}

.site-footer a {
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner,
  .footer-inner,
  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-control {
    margin-left: 0;
  }

  .hero-grid,
  .split-section,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 32px;
    padding: 48px 0 56px;
  }

  .process-list,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding-right: 0;
  }

  .form-row .button {
    width: 100%;
  }
}

@media (max-width: 520px) {

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .main-nav {
    gap: 10px 14px;
  }

  .section {
    padding: 52px 0;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .cta-panel,
  .support-summary,
  .card,
  .warning-box {
    padding: 20px;
  }
}


