:root{
  --blue:#0073CC;
  --blue-2:#0A5AA6;
  --grey:#A5A5A5;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --bg-2:#f6f8fb;
  --card:#ffffff;
  --border:rgba(15,23,42,.10);
  --shadow:0 12px 30px rgba(2,6,23,.08);
  --radius:18px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}

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

/* Desktop / default */
.site-header{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: 96px;                 /* fixed header height */
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;                   /* keep height predictable */
  flex-wrap: nowrap;            /* keep nav on one line */
}

.brand{
  display: flex;
  align-items: center;
  min-width: 0;
}

/* BIGGER logo that fills the header space */
.brand-logo{
  height: 84px;                 /* adjust to taste: 80–90 is ideal */
  width: auto;
  display: block;
}

/* keep nav stable */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 720px){
  /* Make the header a clean 2-row layout */
  .header-inner{
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
    gap: 2px;                 /* vertical gap between logo row + nav row */
  }

  /* Force logo onto its own full-width row */
  .brand{
    width: 100%;
  }

  /* Prevent logo from being so tall it overlaps the nav */
  .brand-logo{
    height: 50px;             /* try 56; bump to 64 if you want bigger */
    max-height: 50px;
  }

  /* Force nav onto its own full-width row */
  .nav{
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 2px;
  }

  /* Keep the Contact button sized nicely for touch */
  .nav-cta{
    padding: 8px 12px;
  }
}





.nav a{ color:var(--muted); text-decoration:none; font-weight:500; font-size:14px; }
.nav a:hover{ color:var(--ink); }
.nav-cta{
  padding:10px 14px; border:1px solid var(--border); border-radius:999px;
  background:#fff; box-shadow:0 1px 0 rgba(2,6,23,.03);
}
.nav-cta:hover{ border-color:rgba(0,115,204,.35); }

.hero{ position:relative; padding:74px 0 34px; overflow:hidden; }
.hero-gradient{
  position:absolute; inset:-200px -200px auto -200px; height:520px;
  background:radial-gradient(closest-side, rgba(0,115,204,.18), transparent 70%);
  pointer-events:none;
}
.hero-inner{ display:grid; grid-template-columns: 1.25fr .75fr; gap:28px; align-items:start; }

.eyebrow{
  display:inline-block; color:var(--blue-2); font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; font-size:12px; margin:0 0 10px;
}
h1{ font-size:46px; line-height:1.08; margin:0 0 12px; letter-spacing:-.02em; }
.lead{ font-size:16.5px; line-height:1.7; color:var(--muted); margin:0 0 18px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px; border:1px solid rgba(0,115,204,.25);
  background:var(--blue); color:#fff; font-weight:600; text-decoration:none;
  box-shadow:0 10px 20px rgba(0,115,204,.18);
}
.button:hover{ filter:brightness(.96); }
.button.ghost{ background:#fff; color:var(--ink); border:1px solid var(--border); box-shadow:0 1px 0 rgba(2,6,23,.03); }
.button.ghost:hover{ border-color:rgba(0,115,204,.30); }

.pill-row{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{ font-size:12px; color:var(--ink); border:1px solid var(--border); background:rgba(255,255,255,.75); padding:8px 10px; border-radius:999px; }

.hero-card{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:18px;
}
.stat{ display:flex; align-items:baseline; gap:10px; }
.stat-num{ font-size:34px; font-weight:700; letter-spacing:-.02em; color:var(--blue-2); }
.stat-label{ color:var(--muted); font-weight:500; }
.divider{ height:1px; background:var(--border); margin:14px 0; }
.checklist{ margin:0; padding-left:18px; color:var(--muted); }
.checklist li{ margin:10px 0; }

.section{ padding:56px 0; }
.section.alt{ background:var(--bg-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
h2{ margin:0 0 10px; font-size:30px; letter-spacing:-.02em; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }

.split{ display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start; }
.panel{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:0 8px 20px rgba(2,6,23,.05); padding:18px;
}
.panel h3{ margin:0 0 10px; }
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:10px 0; }

.grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.card{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:18px; box-shadow:0 8px 18px rgba(2,6,23,.04);
}
.card h3{ margin:0 0 8px; font-size:18px; }
.card p{ margin:0; color:var(--muted); line-height:1.7; }

.contact{ background:linear-gradient(180deg, rgba(0,115,204,.06), transparent 40%); }
.contact-inner{ display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start; }
.contact-card{
  background:var(--card); border:1px solid rgba(0,115,204,.18); border-radius:var(--radius);
  padding:18px; box-shadow:0 16px 30px rgba(0,115,204,.10);
}
.contact-row{
  display:flex; justify-content:space-between; gap:14px; padding:10px 0;
  border-bottom:1px dashed rgba(15,23,42,.12);
}
.contact-row:last-of-type{ border-bottom:none; }
.contact-label{ color:var(--muted); font-weight:500; }
.contact-value{ font-weight:600; color:var(--ink); text-decoration:none; }
.contact-value:hover{ color:var(--blue-2); text-decoration:underline; }

.site-footer{ border-top:1px solid var(--border); padding:18px 0; background:#fff; }
.footer-inner{ display:flex; justify-content:space-between; gap:18px; align-items:flex-start; flex-wrap:wrap; }
.footer-left{ display:flex; align-items:center; gap:12px; }
.footer-logo{ height:34px; width:auto; }
.footer-right{ text-align:right; }

@media (max-width: 900px){
  .hero-inner, .split, .contact-inner{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  h1{ font-size:36px; }
  .nav{ gap:12px; }
  .footer-right{ text-align:left; }
}
