:root {
  --navy: #001a63;
  --blue: #0c38b7;
  --orange: #f7a505;
  --ink: #17213d;
  --muted: #59627a;
  --pale: #f2f4fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  border-bottom: 1px solid #e5e8f1;
  background: var(--navy);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.language-form select {
  appearance: none;
  min-width: 64px;
  padding: 9px 28px 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 4px;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 9px center;
  font: inherit;
  cursor: pointer;
}

.hero {
  max-width: 920px;
  padding-top: 104px;
  padding-bottom: 104px;
  text-align: center;
}

.status-pill {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 14px;
  color: #754d00;
  background: #fff1d6;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  font-family: "Questrial", "Lato", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.16;
}

h1 {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -.025em;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
}

.namsu-section {
  padding: 88px 0;
  background: var(--pale);
}

.namsu-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-card {
  padding: 40px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(0, 26, 99, .09);
}

.service-card ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 30px;
}

.service-card li + li {
  margin-top: 24px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-1px);
}

.data-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.data-card {
  max-width: 860px;
  display: flex;
  gap: 22px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #dfe3ef;
  border-radius: 8px;
}

.data-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.data-card p {
  margin: 0;
  color: var(--muted);
}

.data-card p + p {
  margin-top: 10px;
}

.data-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.site-footer {
  padding: 30px 0;
  color: #c8cee0;
  background: var(--navy);
  font-size: .9rem;
}

.footer-inner,
.footer-inner nav {
  display: flex;
  align-items: center;
}

.footer-inner {
  justify-content: space-between;
  gap: 24px;
}

.footer-inner nav {
  gap: 24px;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .namsu-section {
    padding: 64px 0;
  }

  .namsu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .primary-button {
    width: 100%;
  }

  .data-card {
    padding: 24px 20px;
  }

  .footer-inner,
  .footer-inner nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    gap: 10px;
  }
}
