@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1f38;
  --blue: #1a56a0;
  --blue-light: #2a72c8;
  --blue-pale: #e8f0fb;
  --steel: #4a6080;
  --text: #1a2535;
  --muted: #4a5568;
  --border: #d8e2f0;
  --bg: #f9fafc;
  --white: #ffffff;
  --accent: #c8a040;
  --sans: 'DM Sans', sans-serif;
  --serif: 'Libre Baskerville', serif;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2.5rem;
}
.nav-logo { margin-right: auto; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--blue-light) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 5px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #3a82d8 !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue-light);
  color: #fff;
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: #3a82d8; }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  padding: 12px 26px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid var(--blue);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--blue); color: #fff; }
.btn-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: gap 0.2s, color 0.2s;
}
.btn-link:hover { color: var(--blue-light); gap: 0.65rem; }

/* ── SECTION UTILITIES ── */
.section-wrap { padding: 100px 2rem; }
.section-wrap.alt { background: var(--white); }
.section-wrap.dark { background: var(--navy); }
.inner { max-width: 1200px; margin: 0 auto; }
.section-overline {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-overline.light { color: rgba(255,255,255,0.5); }
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 1rem;
}
.section-heading.light { color: #fff; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 2rem 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.75;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 90px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.03);
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.025);
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.cta-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
.cta-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #080f1e;
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo img { height: 32px; opacity: 0.7; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12.5px; }

/* ── TAG ── */
.tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* ── PREVIEW BADGE ── */
.preview-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}
.card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.card-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
