@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --brand-blue: #1c75bc;
  --brand-cyan: #4fb6e8;
  --brand-gold: #f6be3b;
  --brand-ink: #10253d;
  --text-main: #16344f;
  --text-soft: #335772;
  --surface: #ffffff;
  --surface-alt: #eef5fb;
  --border: #d7e5f3;
  --shadow: 0 18px 45px rgba(16, 37, 61, 0.14);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 8% 10%, rgba(79, 182, 232, 0.16) 0%, rgba(79, 182, 232, 0) 42%),
    radial-gradient(circle at 92% 14%, rgba(246, 190, 59, 0.18) 0%, rgba(246, 190, 59, 0) 36%),
    linear-gradient(160deg, #f7fbff 0%, #eaf2fb 42%, #f5f9ff 100%);
  min-height: 100vh;
  line-height: 1.55;
}

.page-wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 18px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(16, 37, 61, 0.1);
  border-radius: 18px;
  padding: 10px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brand-ink);
}

.brand img {
  width: 142px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-text span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.header-shell nav {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: flex-end;
  width: 100%;
  white-space: nowrap;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-soft);
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  border: 1px solid rgba(28, 117, 188, 0.25);
  background: #fff;
  color: var(--brand-blue);
  border-radius: 10px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand-ink);
  border-color: rgba(28, 117, 188, 0.28);
  background: rgba(79, 182, 232, 0.12);
}

.nav-list a.is-active {
  color: #fff;
  background: linear-gradient(125deg, var(--brand-blue), #2e8fd8);
  box-shadow: 0 9px 20px rgba(28, 117, 188, 0.28);
}

main {
  padding: 30px 0 36px;
}

.hero {
  position: relative;
  background: linear-gradient(130deg, var(--brand-ink), #1f4f7f 58%, #2f8cd3 100%);
  color: #f3f9ff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 3.5vw, 48px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -84px;
  top: -84px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 190, 59, 0.8) 0%, rgba(246, 190, 59, 0) 70%);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  line-height: 1.08;
  max-width: 840px;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(241, 250, 255, 0.94);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.content-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(16, 37, 61, 0.08);
  padding: 20px;
  min-width: 0;
}

.card h2 {
  margin: 0 0 10px;
  color: var(--brand-ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.18rem;
}

.card p {
  margin: 0 0 10px;
  color: var(--text-soft);
}

.card p:last-child {
  margin-bottom: 0;
}

.list-check {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-check li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(140deg, var(--brand-blue), var(--brand-cyan));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.service-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-links a {
  display: block;
  text-decoration: none;
  color: var(--brand-ink);
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(79, 182, 232, 0.12), rgba(246, 190, 59, 0.16));
  border: 1px solid rgba(28, 117, 188, 0.16);
  transition: 0.2s ease;
}

.service-links a:hover,
.service-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(28, 117, 188, 0.2);
}

.cta-band {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(120deg, #10375d, #1c75bc 65%, #3a9fde);
  color: #fff;
  border-radius: 16px;
}

.cta-band p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  color: #0f355a;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
}

.doc-link {
  display: block;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-blue);
}

.site-footer {
  padding: 22px 0 40px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer .foot-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 37, 61, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .brand-text span {
    display: none;
  }

  .nav-list a {
    padding: 6px 8px;
    font-size: 0.78rem;
  }
}

@media (max-width: 960px) {
  .header-shell {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-shell nav {
    width: 100%;
    flex-basis: 100%;
  }

  .js-enabled .header-shell nav {
    display: none;
  }

  .js-enabled .header-shell nav.is-open {
    display: block;
  }

  .nav-list {
    justify-content: flex-start;
    width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
  }

  .nav-list a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .page-wrap {
    width: 94vw;
  }

  .hero {
    border-radius: 20px;
  }

  .card {
    padding: 16px;
  }
}
