@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&family=Bricolage+Grotesque:wght@300;400;500;600&display=swap');

:root {
  --navy: #23395B;
  --navy-mid: #1a2d4a;
  --navy-deep: #121f33;
  --slate: #89A1C5;
  --baby-blue: #B2C9EA;
  --white: #FFFFFF;
  --black: #000000;
  --off-white: #F4F7FB;
  --light-gray: #E8EDF5;
  --text-muted: #6B7A99;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Roboto', sans-serif; font-weight: 900; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { font-size: 1.05rem; line-height: 1.75; color: #3A4A6B; }

/* ── HERO BACKGROUND: Option 4 — deep gradient ── */
.bg-hero {
  background: linear-gradient(160deg, #23395B 0%, #1a2d4a 60%, #121f33 100%);
}

/* ── CTA BAND BACKGROUND: Option 2 — dot grid ── */
.bg-dot {
  background-color: #23395B;
  background-image: radial-gradient(circle, rgba(137,161,197,0.18) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 100;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.8rem;
  color: var(--navy); line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-logo-text span { display: block; font-weight: 400; font-size: 0.7rem; color: var(--slate); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--navy); padding-bottom: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.75rem 1.75rem;
  border-radius: 6px; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--baby-blue); }
.btn-disabled { background: var(--light-gray); color: var(--slate); cursor: not-allowed; }

/* ── LAYOUT ── */
.page-wrap { padding-top: var(--nav-height); min-height: 100vh; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section { padding: 5rem 0; }

/* ── PAGE HERO (shared) ── */
.page-hero {
  padding: 5rem 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 680px; margin-bottom: 1rem; }
.page-hero p { color: var(--baby-blue); font-size: 1.1rem; max-width: 560px; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: var(--baby-blue); padding: 3rem 0; margin-top: 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.footer-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-tagline { font-size: 0.75rem; color: var(--slate); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--baby-blue); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: var(--slate); width: 100%; padding-top: 1.5rem; border-top: 1px solid rgba(137,161,197,0.2); text-align: center; }

/* ── UTILITIES ── */
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--slate); margin-bottom: 1rem;
}
.tag {
  display: inline-block; padding: 0.3rem 0.9rem;
  background: var(--light-gray); color: var(--navy);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
}
.divider { height: 1px; background: var(--light-gray); margin: 2rem 0; }
.card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 12px; padding: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* ── EYEBROW PILL (hero) ── */
.hero-eyebrow {
  display: inline-block; margin-bottom: 1.5rem; padding: 0.4rem 1rem;
  background: rgba(178,201,234,0.12); border: 1px solid rgba(178,201,234,0.25);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  color: var(--baby-blue); letter-spacing: 1.5px; text-transform: uppercase;
}

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light-gray); padding: 1.5rem 5%; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
