:root {
  color-scheme: light;
  --brand-blue: #005f8d;
  --brand-blue-deep: #13355a;
  --brand-blue-ink: #004b70;
  --brand-cyan: #0098da;
  --surface: #f8fbfd;
  --surface-soft: #e6f0f6;
  --text: #0e2335;
  --muted: #4b6374;
  --line: rgba(14, 35, 53, 0.15);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--surface-soft);
}

a {
  color: inherit;
}

.site-section {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 438px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: min(704px, calc(100vh - 64px));
  margin-top: 32px;
  border: 1px solid rgba(244, 248, 251, 0.28);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(5, 25, 39, 0.26);
}

main {
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, var(--brand-blue-deep) 0 462px, var(--surface-soft) 462px 100%);
}

.brand {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 44px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 248, 251, 0.035) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(160deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
}

.brand::before {
  position: absolute;
  right: -58px;
  bottom: 20px;
  width: 142px;
  height: 40px;
  background: rgba(0, 152, 218, 0.24);
  box-shadow:
    -470px -8px 0 rgba(0, 152, 218, 0.3),
    -284px -116px 0 rgba(244, 248, 251, 0.055),
    -142px -44px 0 rgba(244, 248, 251, 0.07);
  content: "";
}

.brand::after {
  position: absolute;
  inset: 0;
  border-right: 1px solid rgba(244, 248, 251, 0.22);
  background: linear-gradient(180deg, transparent 0 62%, rgba(5, 27, 42, 0.16) 100%);
  content: "";
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 382px;
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 58px 56px;
  background:
    linear-gradient(90deg, rgba(0, 152, 218, 0.11) 0 5px, transparent 5px 100%) left top / 5px 100% no-repeat,
    var(--surface);
}

.language-switch {
  display: inline-flex;
  width: fit-content;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 2px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--brand-blue);
  outline: 2px solid rgba(0, 152, 218, 0.22);
  outline-offset: 2px;
}

.language-option.is-active {
  color: var(--white);
  background: var(--brand-blue);
}

.eyebrow {
  margin: 0;
  color: var(--brand-blue);
  font-family: "Arial Narrow", "HelveticaNeue-Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 17ch;
  margin: 0;
  font-size: 2.72rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.intro {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-highlights li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-cyan);
  content: "";
}

.hero-actions {
  margin-top: 0;
}

.intro-section,
.why,
.support,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  padding-block: 76px;
  border-bottom: 1px solid var(--line);
}

.intro-section > p,
.support > p,
.why-item p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-left: 18px;
  border-left: 5px solid var(--brand-cyan);
}

.section-header {
  display: grid;
  gap: 10px;
  padding-bottom: 26px;
  padding-left: 18px;
  border-left: 5px solid var(--brand-cyan);
}

.section-header h2 {
  max-width: 720px;
  text-align: left;
}

.why-list {
  display: grid;
  gap: 24px;
}

.why-item {
  display: grid;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.why-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.services {
  padding-block: 76px;
  border-bottom: 1px solid var(--line);
}

.services .section-header {
  padding-left: 0;
  border-left: 0;
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(9, 47, 73, 0.045);
}

.service-card.featured {
  border-color: rgba(11, 93, 134, 0.2);
  background: rgba(255, 255, 255, 0.94);
}

.service-kicker {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(0, 152, 218, 0.42);
  color: var(--brand-blue);
  font-family: "Arial Narrow", "HelveticaNeue-Condensed", "Helvetica Neue", Arial, sans-serif;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.support {
  align-items: center;
}

.support h2 {
  max-width: 22ch;
}

.contact-section {
  align-items: start;
  border-bottom: 0;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--brand-cyan) 0 5px, transparent 5px 100%) left top / 5px 100% no-repeat,
    var(--white);
  box-shadow: 0 14px 34px rgba(9, 47, 73, 0.07);
}

.language-switch-footer {
  margin-top: 22px;
}

.contact {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.45;
}

.contact a {
  width: fit-content;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus-visible {
  text-decoration: underline;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-cyan);
  outline: 2px solid rgba(0, 152, 218, 0.22);
  outline-offset: 2px;
  text-decoration: none;
}

.button-primary {
  border-color: var(--brand-blue);
  color: var(--white);
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-ink) 100%);
}

@media (max-width: 980px) {
  main {
    padding-bottom: 0;
    background: var(--surface-soft);
  }

  .site-section {
    width: 100%;
  }

  .hero {
    min-height: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .brand {
    min-height: 0;
    padding: 28px 28px 24px;
  }

  .brand-logo {
    max-width: 278px;
  }

  .content {
    justify-content: flex-start;
    gap: 18px;
    padding: 34px 24px 40px;
  }

  .language-switch {
    width: 100%;
  }

  .language-option {
    flex: 1;
  }

  h1 {
    max-width: 16ch;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .intro {
    font-size: 1rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .why,
  .support,
  .contact-section,
  .services {
    width: auto;
    margin-inline: 24px;
    padding-block: 48px;
  }

  .intro-section,
  .why,
  .support,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-header h2 {
    max-width: none;
  }

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

  .service-card {
    min-height: 0;
  }

  .contact-panel {
    padding: 22px 22px 22px 26px;
  }

  .button {
    width: auto;
  }
}

@media (max-width: 620px) {
  .brand {
    padding-block: 24px 22px;
  }

  .brand-logo {
    max-width: 236px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand {
    padding-inline: 20px;
  }

  .content {
    padding-inline: 20px;
  }

  h1 {
    font-size: 1.75rem;
  }
}
