:root {
  --bg: #edf3f8;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --hero: #0f2f57;
  --hero-2: #173d6f;
  --text: #14304a;
  --muted: #587088;
  --heading: #0f2740;
  --accent: #0f5ea8;
  --accent-2: #dce8f5;
  --line: #d6e1ec;
  --line-strong: #c3d2e1;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f8fb 0%, #edf3f8 100%);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--heading);
}
.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav a.active, .nav a:hover { color: var(--heading); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.hero {
  background: linear-gradient(135deg, var(--hero) 0%, var(--hero-2) 100%);
  border: none;
  border-radius: 28px;
  padding: 52px;
  color: #eef5fb;
}
.hero p,
.hero .eyebrow,
.hero .hero-note { color: rgba(238, 245, 251, 0.88); }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-note {
  margin-top: 18px;
  max-width: 760px;
  font-size: 15px;
}
h1, h2, h3 {
  color: var(--heading);
  margin: 0 0 14px;
  line-height: 1.15;
}
.hero h1, .hero h2, .hero h3 { color: #ffffff; }
h1 { font-size: clamp(38px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3vw, 34px); }
h3 { font-size: 20px; }
p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.section { margin-top: 34px; }
.section-intro {
  max-width: 760px;
  margin-bottom: 18px;
}
.grid { display: grid; gap: 22px; }
@media (min-width: 860px) {
  .cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.service-card,
.pathway-card,
.trust-card,
.link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.service-card p,
.pathway-card p,
.trust-card p,
.link-card p { margin-bottom: 0; }
img.cover {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: #e7eef5;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: #ffffff;
  color: var(--hero);
}
.btn.ghost {
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.band {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.band .grid { gap: 18px; }
.footer-block {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-block p,
.small {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.link-list {
  display: grid;
  gap: 10px;
}
.link-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.link-list a:hover { text-decoration: underline; }
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
label {
  display: block;
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  line-height: 1.4;
  margin-bottom: 16px;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 94, 168, 0.12);
}
form .btn.primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
}
.footer-meta {
  display: grid;
  gap: 6px;
}
.footer-meta strong {
  color: var(--heading);
}
@media (max-width: 859px) {
  .hero { padding: 34px 24px; }
  .card { padding: 22px; }
  .container { padding: 20px 16px 56px; }
  img.cover { height: 210px; }
}
