:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b2239;
  background: #f5f4ef;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f5f4ef;
}

body {
  min-width: 320px;
  margin: 0;
  background: #e9e8e3;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
  padding: 20px clamp(24px, 5vw, 80px);
  color: #ffffff;
  background: #0b2239;
  border-bottom: 4px solid #e34a2f;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-left: 16px;
  border-left: 6px solid #f2c14e;
  text-decoration: none;
}

.brand-name {
  font-size: 20px;
  font-weight: 750;
}

.company-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  max-width: 640px;
  color: #c8d3db;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  background: #faf9f5;
  border-inline: 1px solid #d6d8d8;
}

.hero {
  min-height: clamp(440px, 64vh, 620px);
  padding: clamp(72px, 10vw, 144px) clamp(28px, 8vw, 112px) 72px;
  border-bottom: 1px solid #cfd4d4;
}

.hero-kicker,
.section-label {
  margin: 0 0 18px;
  color: #286b5d;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 32px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 790px;
  margin-bottom: 0;
  color: #425160;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.48;
}

.services,
.support {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(40px, 8vw, 112px);
  padding: clamp(64px, 8vw, 104px) clamp(28px, 8vw, 112px);
  border-bottom: 1px solid #cfd4d4;
}

h2 {
  max-width: 480px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #0b2239;
}

.service-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #bfc7c8;
  font-size: 20px;
  line-height: 1.35;
}

.service-number {
  color: #e34a2f;
  font-size: 13px;
  font-weight: 800;
}

.support {
  background: #e7ede9;
}

.support-details {
  align-self: end;
}

.support-details a {
  display: inline-block;
  margin-bottom: 22px;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 750;
  text-underline-offset: 6px;
}

.support-details p {
  max-width: 620px;
  margin-bottom: 0;
  color: #425160;
  font-size: 16px;
  line-height: 1.6;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
  padding: 28px clamp(24px, 5vw, 80px);
  color: #d3dce2;
  background: #0b2239;
  font-size: 12px;
  line-height: 1.4;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .company-identity {
    align-items: flex-start;
    text-align: left;
  }

  main {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 0;
    padding-block: 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .services,
  .support {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-details {
    align-self: start;
  }

  .support-details a {
    overflow-wrap: anywhere;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
