:root {
  --ink: #121826;
  --muted: #5b6677;
  --line: #e6e9ef;
  --bg: #ffffff;
  --soft: #f4f7fb;
  --brand: #0f4c81;
  --brand-dark: #0a3357;
  --accent: #2b78c5;
  --max: 1120px;
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 0 max(20px, calc((100vw - var(--max)) / 2)); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.brand { font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.02em; }
.site-nav { display: flex; gap: 22px; align-items: center; font-size: .95rem; }
.site-nav a { color: var(--ink); }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 1.1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; background: var(--brand); color: white !important; border-radius: 999px; font-weight: 700; text-decoration: none !important; border: 1px solid var(--brand); }
.button:hover { background: var(--brand-dark); }
.button-secondary { background: white; color: var(--brand) !important; border-color: var(--line); }
.button-small { padding: 9px 14px; font-size: .9rem; }
.hero { padding: 94px 0 70px; background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%); }
.hero-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 52px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.35rem, 6vw, 4.8rem); max-width: 880px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 16px; color: var(--muted); }
.hero-copy { font-size: 1.22rem; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-card, .card, .mini-card, .contact-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 20px 45px rgba(18,24,38,.06); }
.hero-card { padding: 28px; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { margin: 12px 0; color: var(--muted); position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.section { padding: 82px 0; }
.section-muted { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; gap: 22px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 26px; }
.mini-card { padding: 22px; }
.card h2 { font-size: 1.35rem; }
.card a { font-weight: 800; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.center-link { text-align: center; margin-top: 28px; font-weight: 800; }
.cta { padding: 70px 0; background: var(--ink); color: white; }
.cta h2, .cta p { color: white; }
.cta p { opacity: .78; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.page-hero { padding: 88px 0 56px; background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%); }
.page-hero p { font-size: 1.14rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-card { padding: 30px; }
.site-footer { padding: 44px 0 24px; background: #0d1320; color: white; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; }
.footer-grid nav { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 20px; color: rgba(255,255,255,.6); font-size: .9rem; }
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { padding: 0 14px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 14px; right: 14px; top: 76px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 16px; flex-direction: column; align-items: stretch; box-shadow: 0 20px 45px rgba(18,24,38,.12); }
  .site-nav.open { display: flex; }
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .section { padding: 58px 0; }
}


@media (max-width: 640px) {
  .brand-logo img {
    width: 145px;
  }
}


/* Logo sizing fix */
.site-header {
  min-height: 84px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 260px;
  overflow: visible;
}

.brand-logo img {
  display: block;
  width: auto !important;
  height: 58px !important;
  max-width: 260px !important;
  max-height: 58px !important;
  object-fit: contain;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

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

  .brand-logo img {
    height: 42px !important;
    max-width: 190px !important;
    max-height: 42px !important;
  }
}
