/* ============================================================
   People First HCM — Design System
   ============================================================ */

/* CSS Variables */
:root {
  --navy-50:  #eef2f9;
  --navy-100: #d4deed;
  --navy-200: #a9bddb;
  --navy-300: #7e9cc9;
  --navy-400: #537bb7;
  --navy-500: #2e5aa5;
  --navy-600: #1b3a6b;
  --navy-700: #152e55;
  --navy-800: #102240;
  --navy-900: #0a162a;

  --amber-50:  #fef8ec;
  --amber-100: #fceece;
  --amber-200: #f8d98e;
  --amber-300: #f3c34e;
  --amber-400: #e8a020;
  --amber-500: #c4861a;
  --amber-600: #9f6c14;

  --sky-400: #2e86c1;

  --bg: #ffffff;
  --fg: #1a1a2e;
  --secondary: #f4f7fc;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 0.75rem;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 800; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Icons
   ============================================================ */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { width: 1em; height: 1em; }
.icon-xs svg { width: 0.75rem; height: 0.75rem; }
.icon-sm svg { width: 1rem; height: 1rem; }
.icon-md svg { width: 1.25rem; height: 1.25rem; }
.icon-lg svg { width: 1.5rem; height: 1.5rem; }
.icon-xl svg { width: 2rem; height: 2rem; }
.icon-2xl svg { width: 2.5rem; height: 2.5rem; }
.icon-3xl svg { width: 3.5rem; height: 3.5rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-sm  { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.btn-lg  { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-xl  { padding: 0.875rem 1.75rem; font-size: 1.0625rem; }

/* Primary (navy) */
.btn-primary {
  background: var(--navy-600);
  color: #fff;
  border-color: var(--navy-600);
}
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }

/* Accent (amber) */
.btn-accent {
  background: var(--amber-400);
  color: var(--navy-900);
  border-color: var(--amber-400);
  box-shadow: 0 4px 14px rgba(232,160,32,0.2);
}
.btn-accent:hover { background: #f3c34e; border-color: #f3c34e; color: var(--navy-900); }

/* Outline white (for dark backgrounds) */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Outline navy */
.btn-outline-navy {
  background: transparent;
  color: var(--navy-600);
  border-color: var(--navy-600);
}
.btn-outline-navy:hover { background: rgba(27,58,107,0.08); color: var(--navy-600); }

/* Outline dark (for amber backgrounds) */
.btn-outline-dark {
  background: transparent;
  color: var(--navy-600);
  border-color: var(--navy-600);
}
.btn-outline-dark:hover { background: rgba(27,58,107,0.1); color: var(--navy-600); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-content { padding: 1.5rem; }
.card-accent-top { height: 0.5rem; }
.card-accent-navy { background: var(--navy-600); }
.card-accent-amber { background: var(--amber-400); }
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ============================================================
   Badges
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.badge-amber { background: rgba(232,160,32,0.15); color: #c4861a; border-color: rgba(232,160,32,0.3); }
.badge-navy  { background: rgba(27,58,107,0.1);   color: var(--navy-600); border-color: rgba(27,58,107,0.2); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img {
  height: 4rem;
  width: auto;
  display: block;
}
@media (max-width: 639px) { .site-logo-img { height: 3.25rem; } }

/* Footer logo */
.footer-logo-img {
  height: 4rem;
  width: auto;
  display: block;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* Desktop nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
  border-radius: 0.375rem;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active { color: var(--fg); background: var(--secondary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 13rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 0.375rem;
  padding-top: 0.625rem;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(26,26,46,0.7);
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-dropdown-item:hover { color: var(--fg); background: var(--secondary); }
.nav-chevron svg { width: 0.875rem; height: 0.875rem; opacity: 0.5; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--fg); }
.header-phone .icon svg { width: 0.875rem; height: 0.875rem; }
@media (min-width: 768px) { .header-phone { display: flex; } }
.header-cta { display: inline-flex; font-size: 0.8125rem; padding: 0.4rem 0.875rem; }
@media (min-width: 768px) { .header-cta { font-size: 0.9375rem; padding: 0.5rem 1.25rem; } }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: rgba(26,26,46,0.7);
  border-radius: 0.375rem;
  transition: background 0.15s;
}
.mobile-toggle:hover { background: var(--secondary); }
.mobile-toggle .icon svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 0.75rem 0; }
.mobile-nav-section-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
  border-radius: 0.375rem;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  margin: 0 0.25rem;
}
.mobile-nav-link.indented { padding-left: 1.5rem; }
.mobile-nav-link:hover { color: var(--fg); background: var(--secondary); }
.mobile-nav-footer {
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav-footer a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-600);
  text-decoration: none;
}
.mobile-nav-footer .icon svg { width: 1rem; height: 1rem; }

/* ============================================================
   Pre-footer CTA
   ============================================================ */
.prefooter-cta {
  background: var(--navy-600);
  padding: 4rem 0;
}
.prefooter-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .prefooter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}
.prefooter-h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.prefooter-sub {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 36rem;
}
.prefooter-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .prefooter-btns { flex-direction: row; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #1b3a6b 0%, #0d2347 100%);
  color: #fff;
}
.footer-inner { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 20rem; margin-bottom: 1.75rem; }
.footer-veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.footer-veteran-badge .star { color: var(--amber-400); font-size: 1rem; font-weight: 900; }
.footer-veteran-badge span { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a66c2;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s;
}
.footer-social-btn:hover { background: #004182; color: #fff; }

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-links a:hover { color: #fff; }
.footer-links .icon svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.footer-network-disclosure {
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   Hero Sections
   ============================================================ */
.hero-navy {
  background: var(--navy-600);
  color: #fff;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .hero-navy { padding: 7rem 0; } }

.hero-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
  margin-bottom: 1rem;
}
.hero-h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-h1 { font-size: 3rem; } }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 40rem; }

/* Homepage-specific hero */
.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2347 0%, #1b3a6b 60%, #1e4a80 100%);
  color: #fff;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .hero-home { padding: 8rem 0; } }

.hero-home-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}
.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2347 0%, rgba(27,58,107,0.8) 60%, rgba(30,74,128,0.6) 100%);
}
.hero-home-circle-1 {
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 37.5rem;
  height: 37.5rem;
  border-radius: 9999px;
  opacity: 0.1;
  background: radial-gradient(circle, #e8a020 0%, transparent 70%);
}
.hero-home-circle-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24rem;
  height: 24rem;
  opacity: 0.05;
  background: radial-gradient(circle at bottom right, #fff 0%, transparent 70%);
}
.hero-home-content { position: relative; max-width: 40rem; width: 100%; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
}
.hero-pill-star { color: var(--amber-400); font-size: 0.75rem; font-weight: 900; flex-shrink: 0; }
.hero-h1-home {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px)  { .hero-h1-home { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-h1-home { font-size: 4.5rem; } }
.hero-sub-home { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 32rem; line-height: 1.7; }
@media (min-width: 640px) { .hero-sub-home { font-size: 1.25rem; } }
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (max-width: 639px) { .hero-btns .btn { width: 100%; justify-content: center; } }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
.hero-contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}
.hero-contact-info a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.hero-contact-info a:hover { color: rgba(255,255,255,0.7); }
.hero-contact-info .icon svg { width: 0.875rem; height: 0.875rem; }

/* ============================================================
   Section Patterns
   ============================================================ */
.section { padding: 4rem 0; }
.section-lg { padding: 5rem 0; }
@media (min-width: 1024px) { .section-lg { padding: 6.25rem 0; } }

.section-bg-white { background: #fff; }
.section-bg-secondary { background: var(--secondary); }
.section-bg-navy { background: var(--navy-600); color: #fff; }
.section-bg-amber { background: var(--amber-400); }
.section-bg-gradient {
  background: linear-gradient(135deg, #0d2347 0%, #1b3a6b 100%);
  color: #fff;
}

.section-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-600);
  margin-bottom: 0.75rem;
}
.section-overline-amber { color: rgba(232,160,32,0.7); }
.section-h2 { font-size: 1.875rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.15; }
@media (min-width: 640px) { .section-h2 { font-size: 2.25rem; } }
.section-h2-white { color: #fff; }
.section-h2-navy { color: var(--navy-600); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 40rem; }
.section-sub-white { color: rgba(255,255,255,0.8); }
.section-sub-navy { color: rgba(27,58,107,0.8); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }

/* ============================================================
   Grids
   ============================================================ */
.grid { display: grid; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

@media (min-width: 640px)  { .grid-2  { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-2-md { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .grid-3  { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3  { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4  { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4  { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px)  { .grid-6  { grid-template-columns: repeat(6, 1fr); } }

.grid-2-col-span-2 { grid-column: span 2; }
@media (min-width: 1024px) { .grid-lg-col-2 { grid-column: span 2; } }

/* Two-col split with items-center */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .split-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }

/* ============================================================
   Differentiator Cards
   ============================================================ */
.diff-card { transition: transform 0.2s, box-shadow 0.2s; }
.diff-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.diff-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.diff-icon-box .icon svg { width: 1.25rem; height: 1.25rem; }
.diff-icon-box-amber { background: rgba(232,160,32,0.15); color: var(--amber-500); }
.diff-icon-box-amber .icon svg { width: 1.25rem; height: 1.25rem; }
.diff-icon-box-sm { width: 2rem; height: 2rem; border-radius: 0.5rem; }
.diff-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.5rem; }
.diff-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   Check Lists
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.check-item .icon svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }
.check-item-navy .icon { color: var(--navy-600); }
.check-item-amber .icon { color: var(--amber-500); }
.check-item span { color: rgba(26,26,46,0.8); }

/* ============================================================
   Who We Serve Cards (homepage)
   ============================================================ */
.serve-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.serve-card-navy:hover  { border-color: rgba(27,58,107,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.serve-card-amber:hover { border-color: rgba(232,160,32,0.5); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.serve-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.serve-icon-navy  { padding: 0.625rem; border-radius: 0.75rem; background: var(--navy-600); color: #fff; display: flex; }
.serve-icon-amber { padding: 0.625rem; border-radius: 0.75rem; background: var(--amber-400); color: #fff; display: flex; }
.serve-icon-navy .icon svg,
.serve-icon-amber .icon svg { width: 1.25rem; height: 1.25rem; }
.serve-card-title { font-size: 1.125rem; font-weight: 700; }
.serve-card-desc { color: var(--muted); line-height: 1.7; font-size: 0.9375rem; margin-bottom: 1.5rem; }
.serve-card-cta { width: 100%; justify-content: center; }

/* ============================================================
   Founder Banner
   ============================================================ */
.founder-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2347 0%, #1b3a6b 100%);
  padding: 3.5rem 0;
}
.founder-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.3) 40px, rgba(255,255,255,0.3) 41px);
}
.founder-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .founder-inner { flex-direction: row; align-items: center; gap: 3rem; }
}
.founder-star {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber-400);
}
.founder-overline {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232,160,32,0.7);
  margin-bottom: 0.5rem;
}
.founder-quote {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 40rem;
  font-style: italic;
}
.founder-attr { color: var(--amber-400); font-size: 0.875rem; font-weight: 600; margin-top: 0.75rem; }

/* ============================================================
   Sun Belt Markets Grid
   ============================================================ */
.market-chip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(244,247,252,0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.8);
  transition: border-color 0.15s, background 0.15s;
}
.market-chip:hover { border-color: rgba(27,58,107,0.2); background: rgba(27,58,107,0.05); }
.market-chip .icon svg { width: 0.875rem; height: 0.875rem; color: var(--navy-600); }

/* ============================================================
   Platform Logos Strip
   ============================================================ */
.platform-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.platform-logo-card:hover { border-color: rgba(27,58,107,0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.07); }
.platform-logo-card img { height: 2rem; width: auto; object-fit: contain; }

/* Platform abbr card (text-based) */
.platform-abbr-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
  padding: 1.25rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.platform-abbr-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.07); transform: translateY(-2px); }
.platform-abbr-badge {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}
.platform-abbr-name { font-weight: 700; font-size: 0.9375rem; }
.platform-abbr-desc { font-size: 0.75rem; color: var(--muted); margin-top: 0.125rem; }

/* Candidate platform abbr card */
.platform-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
  padding: 1rem;
  background: #fff;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.platform-mini-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.07); transform: translateY(-2px); }
.platform-mini-abbr { font-size: 1.125rem; font-weight: 900; }
.platform-mini-name { font-size: 0.75rem; font-weight: 500; line-height: 1.3; }

/* ============================================================
   Platform Nav Bar (sticky on platforms/industries)
   ============================================================ */
.platform-nav-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 5.5rem;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.platform-nav-scroll {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
}
.platform-nav-scroll::-webkit-scrollbar { display: none; }
.platform-nav-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: box-shadow 0.15s;
  text-decoration: none;
}
.platform-nav-pill:hover { box-shadow: 0 2px 6px rgba(0,0,0,0.1); }

/* ============================================================
   Platform Detail Sections
   ============================================================ */
.platform-section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .platform-section-header { flex-direction: row; align-items: center; } }
.platform-abbr-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
}
.platform-detail-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .platform-detail-grid { grid-template-columns: 1fr 2fr; } }
.platform-detail-cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .platform-detail-cards { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Steps (process)
   ============================================================ */
.step-card { background: var(--secondary); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--border); height: 100%; }
.step-number { font-size: 2.5rem; font-weight: 900; color: rgba(27,58,107,0.2); margin-bottom: 0.75rem; }
.step-title  { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc   { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   About Page
   ============================================================ */
.about-p1-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}
.about-icon-box {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(27,58,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-600);
}
.about-icon-box .icon svg { width: 1.25rem; height: 1.25rem; }
.about-bio-card { border-radius: var(--radius); overflow: hidden; border: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.founder-photo-placeholder {
  width: 9rem;
  height: 9rem;
  border-radius: 1rem;
  background: rgba(27,58,107,0.1);
  border: 2px solid rgba(27,58,107,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27,58,107,0.4);
}
.founder-photo-placeholder .icon svg { width: 3.5rem; height: 3.5rem; }
.skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--navy-600);
  border: 1px solid rgba(27,58,107,0.1);
}

/* Stats grid */
.stat-box {
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-number { font-size: 1.875rem; font-weight: 900; color: var(--navy-600); margin-bottom: 0.25rem; }
.stat-label  { font-size: 0.875rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   Our Team Page
   ============================================================ */
.team-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 0; }
.team-photo {
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.bio-section { margin-bottom: 1.5rem; }
.bio-section h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.bio-section p  { color: var(--muted); line-height: 1.7; }
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 640px) { .skills-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Quote Section
   ============================================================ */
.quote-section {
  padding: 4rem 0;
  background: var(--navy-600);
  color: #fff;
  text-align: center;
}
.quote-icon { color: var(--amber-400); opacity: 0.8; margin: 0 auto 1.5rem; }
.quote-icon .icon svg { width: 2.5rem; height: 2.5rem; }
.quote-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 640px) { .quote-text { font-size: 1.25rem; } }
.quote-attr { color: var(--amber-400); font-weight: 600; font-size: 0.9375rem; }

/* ============================================================
   Veteran Callout
   ============================================================ */
.veteran-callout { display: flex; flex-direction: column; gap: 2rem; align-items: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .veteran-callout { flex-direction: row; align-items: center; } }
.veteran-icon-wrap {
  flex-shrink: 0;
  text-align: center;
}
.veteran-star-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--amber-400);
}
.veteran-star-circle .icon svg { width: 2.5rem; height: 2.5rem; }

/* ============================================================
   Locations Page
   ============================================================ */
.state-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--navy-600);
  color: #fff;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.state-pill-abbr { }
.state-pill-name { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

.state-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: center;
}
.state-box-icon { color: rgba(27,58,107,0.4); }
.state-box-icon .icon svg { width: 1rem; height: 1rem; }
.state-box-abbr { font-size: 1.25rem; font-weight: 900; color: var(--navy-600); }
.state-box-name { font-size: 0.6875rem; color: var(--muted); line-height: 1.3; }

.states-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px)  { .states-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .states-grid { grid-template-columns: repeat(9, 1fr); } }

.location-card { border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s; }
.location-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.location-card-bar { height: 0.25rem; background: var(--navy-600); }
.location-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.location-icon-wrap {
  flex-shrink: 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(27,58,107,0.1);
  color: var(--navy-600);
}
.location-icon-wrap .icon svg { width: 1.25rem; height: 1.25rem; }
.location-city { font-size: 1.25rem; font-weight: 900; }
.location-city span { color: var(--navy-600); }
.location-headline { font-size: 0.875rem; font-weight: 600; color: var(--amber-600); }
.location-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.location-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.location-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--navy-600);
  border: 1px solid rgba(27,58,107,0.1);
}

/* ============================================================
   Let's Connect Page
   ============================================================ */
.connect-contact-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.connect-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.connect-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-600);
  text-decoration: none;
  transition: text-decoration 0.15s;
}
.connect-contact-link:hover { text-decoration: underline; }
.connect-contact-link .icon svg { width: 1rem; height: 1rem; }
.connect-contact-addr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.connect-contact-addr .icon svg { width: 1rem; height: 1rem; }
.connect-form-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.connect-form-num {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 900;
  flex-shrink: 0;
}
.connect-form-num-navy  { background: var(--navy-600); color: #fff; }
.connect-form-num-amber { background: var(--amber-400); color: var(--navy-900); }
.connect-form-title { font-size: 1.5rem; font-weight: 900; }
.connect-form-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; padding-left: 2.75rem; margin-bottom: 1.25rem; }
.connect-prefer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.connect-prefer h2 { font-size: 1.25rem; font-weight: 900; margin-bottom: 0.5rem; }
.connect-prefer p  { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.connect-prefer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .connect-prefer-links { flex-direction: row; justify-content: center; } }
.connect-prefer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-600);
  text-decoration: none;
}
.connect-prefer-link:hover { text-decoration: underline; }
.connect-prefer-link .icon svg { width: 1.25rem; height: 1.25rem; }
.connect-sep { color: var(--muted); display: none; }
@media (min-width: 640px) { .connect-sep { display: block; } }

/* Gravity Forms overrides */
.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select {
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem !important;
  padding: 0.625rem 0.875rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9375rem !important;
  color: var(--fg) !important;
  background: #fff !important;
  width: 100% !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none !important;
  border-color: var(--sky-400) !important;
  box-shadow: 0 0 0 3px rgba(46,134,193,0.15) !important;
}
.gform_wrapper label { font-size: 0.875rem !important; font-weight: 600 !important; color: var(--fg) !important; margin-bottom: 0.375rem !important; display: block !important; }
.gform_wrapper .gfield { margin-bottom: 1.25rem !important; }
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_page_footer input[type="submit"] {
  background: var(--navy-600) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1.75rem !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  width: auto !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover { background: var(--navy-700) !important; }
.gform_wrapper .gfield_validation_message { color: #dc2626 !important; font-size: 0.8125rem !important; margin-top: 0.25rem !important; }

/* ============================================================
   Network (Dimensional Search) Card
   ============================================================ */
.ds-card-navy  { border: 2px solid var(--navy-600); }
.ds-card-amber { border: 2px solid var(--amber-400); }
.ds-bullet-navy  { width: 1.25rem; height: 1.25rem; border-radius: 9999px; background: rgba(27,58,107,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.ds-bullet-navy::after  { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--navy-600); }
.ds-bullet-amber { width: 1.25rem; height: 1.25rem; border-radius: 9999px; background: rgba(232,160,32,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.ds-bullet-amber::after { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--amber-500); }

/* ============================================================
   Industry Section Headers
   ============================================================ */
.industry-section-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
@media (min-width: 640px) { .industry-section-header { flex-direction: row; align-items: center; } }
.industry-icon-box {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon-box .icon svg { width: 1.75rem; height: 1.75rem; }
.industry-name { font-size: 1.875rem; font-weight: 900; }
.industry-tagline { font-size: 0.875rem; font-weight: 600; margin-top: 0.125rem; }

/* ============================================================
   CTA Sections
   ============================================================ */
.cta-gradient {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2347 0%, #1b3a6b 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-gradient-circle {
  position: absolute;
  left: -5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  opacity: 0.1;
  background: radial-gradient(circle, #e8a020 0%, transparent 70%);
}
.cta-amber { background: var(--amber-400); padding: 4rem 0; text-align: center; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #fff; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--secondary); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.5rem; }
.blog-card-meta { font-size: 0.75rem; color: var(--muted); }
.blog-meta-sep { font-size: 0.75rem; color: var(--border); }
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-readmore { font-size: 0.875rem; font-weight: 600; color: var(--navy-600); display: inline-flex; align-items: center; gap: 0.375rem; text-decoration: none; }
.blog-card-readmore:hover { text-decoration: underline; }
.blog-card-readmore .icon svg { width: 0.875rem; height: 0.875rem; }

.blog-card-linkedin { border-top: 3px solid #0a66c2; }
.blog-linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #e8f0fb;
  color: #0a66c2;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}
.blog-linkedin-badge .icon svg { width: 0.625rem; height: 0.625rem; }

/* Single post */
.post-header { padding: 3rem 0; background: var(--navy-600); color: #fff; }
.post-meta { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.post-title { font-size: 2.25rem; font-weight: 900; line-height: 1.15; }
.post-content { padding: 3rem 0; max-width: 48rem; }
.post-content h2 { font-size: 1.5rem; font-weight: 800; margin: 2rem 0 0.75rem; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.post-content p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.post-content ul { list-style: disc; padding-left: 1.5rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.post-content a  { color: var(--navy-600); text-decoration: underline; }

/* ============================================================
   Responsive Helpers
   ============================================================ */
.hidden-mobile  { display: none; }
@media (min-width: 640px)  { .hidden-mobile { display: block; } }
.hidden-desktop { display: block; }
@media (min-width: 1024px) { .hidden-desktop { display: none; } }
.flex-wrap-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.flex-col-sm-row { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .flex-col-sm-row { flex-direction: row; } }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ============================================================
   Misc
   ============================================================ */
.divider { border-top: 1px solid var(--border); margin: 2rem 0; }
.text-navy   { color: var(--navy-600); }
.text-amber  { color: var(--amber-400); }
.text-muted  { color: var(--muted); }
.text-white  { color: #fff; }
.font-black  { font-weight: 900; }
.font-bold   { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.uppercase   { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }
.italic      { font-style: italic; }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }
.text-lg     { font-size: 1.125rem; }

/* Smooth section dividers on long pages */
.divide-sections > section + section { border-top: 1px solid var(--border); }

/* ── Cookie Consent Banner ───────────────────────────────────────────────── */
#p1hcm-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-900);
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
}
#p1hcm-cookie-bar[hidden] { display: none; }
.cookie-bar-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}
.cookie-bar-text {
  flex: 1 1 18rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.cookie-bar-text a {
  color: var(--amber-300);
  text-decoration: underline;
}
.cookie-bar-text a:hover { color: var(--amber-200); }
.cookie-bar-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.4375rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.cookie-btn-accept {
  background: var(--amber-400);
  color: var(--navy-900);
  border-color: var(--amber-400);
}
.cookie-btn-accept:hover {
  background: var(--amber-300);
  border-color: var(--amber-300);
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.3);
}
.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
