/* ─────────────────────────────────────────────────────────────
   COCECA CONSULTANTS & ADVISORY  |  style.css
   ───────────────────────────────────────────────────────────── */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:    #0E2347;
  --navy2:   #162E5C;
  --gold:    #C9A84C;
  --gold2:   #E8C460;
  --blue:    #1A5FD1;
  --light:   #F7F9FC;
  --border:  #E1E8F0;
  --text:    #1E293B;
  --muted:   #64748B;
  --white:   #FFFFFF;
  --dark:    #0A1628;
  --green:   #10794E;
  --shadow:  0 4px 24px rgba(14,35,71,0.10);
  --shadow2: 0 2px 8px rgba(14,35,71,0.08);
  --radius:  8px;
  --radius2: 14px;
  --max:     1160px;
  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Inter', 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-h); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--light); }
.section-dark { padding: 80px 0; background: var(--navy); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: all .22s; border: 2px solid transparent;
  font-family: var(--font-b);
}
.btn-primary   { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline   { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy2); color: var(--white); transform: translateY(-1px); }
.btn-lg        { padding: 16px 36px; font-size: 1.05rem; }
.btn svg       { width: 18px; height: 18px; }

/* ── Section labels ────────────────────────────────────────── */
.label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  padding: 4px 12px; background: rgba(201,168,76,.12); border-radius: 99px;
}
.label-light { color: var(--gold2); background: rgba(232,196,96,.12); }

/* ── Section headings ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════ */
/*  HEADER / NAV                                               */
/* ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: var(--navy);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: .95rem; font-weight: 700; color: var(--white); letter-spacing: 1.5px; }
.logo-text span   { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .8px; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: all .2s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.1); color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold2) !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all .25s; border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════ */
/*  HERO                                                        */
/* ═══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #1B3A6B 100%);
  padding: 160px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,95,209,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-tag { color: var(--gold); font-size: .82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.hero h1  { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.12rem; margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stats card */
.hero-stats {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius2); padding: 36px; backdrop-filter: blur(8px);
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-h); line-height: 1; }
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 5px; }
.hero-stat-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 6px 0; }

/* Trust badges */
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.6); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════ */
/*  SERVICE CARDS                                              */
/* ═══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 32px 28px;
  transition: all .25s; cursor: default;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 50px; height: 50px; border-radius: 10px; background: rgba(14,35,71,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--navy);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--navy); }
.service-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; margin: 0; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-card .tag {
  font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 99px;
  background: rgba(14,35,71,.07); color: var(--navy); letter-spacing: .3px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  WHY CHOOSE US                                              */
/* ═══════════════════════════════════════════════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pillar {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius2); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.pillar:hover { background: rgba(255,255,255,.10); }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  color: var(--gold);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.pillar p  { color: rgba(255,255,255,.62); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════ */
/*  TESTIMONIAL CARD (homepage preview)                        */
/* ═══════════════════════════════════════════════════════════ */
.testimonial-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 0;
}
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 32px;
  position: relative; transition: box-shadow .25s;
}
.tcard:hover { box-shadow: var(--shadow); }
.tcard::before {
  content: '\201C'; position: absolute; top: 18px; left: 28px;
  font-size: 4rem; color: var(--gold); font-family: var(--font-h); line-height: 1; opacity: .35;
}
.tcard-quote { font-size: .95rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; padding-top: 20px; }
.tcard-meta  { display: flex; align-items: center; gap: 14px; }
.tcard-badge {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.tcard-name  { font-weight: 700; font-size: .9rem; color: var(--navy); }
.tcard-role  { font-size: .8rem; color: var(--muted); }
.tcard-sector{
  display: inline-block; font-size: .72rem; font-weight: 600;
  padding: 2px 10px; border-radius: 99px; background: rgba(14,35,71,.07);
  color: var(--navy); margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  WHITEPAPER SECTION                                         */
/* ═══════════════════════════════════════════════════════════ */
.wp-selector-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px 40px; margin-bottom: 36px;
  box-shadow: var(--shadow2);
}
.wp-selector-label { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 14px; }
.wp-select {
  width: 100%; padding: 13px 18px; border: 2px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: var(--font-b);
  color: var(--text); background: var(--white); cursor: pointer;
  transition: border-color .2s; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230E2347' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 48px;
}
.wp-select:focus { outline: none; border-color: var(--gold); }

.wp-content { display: none; }
.wp-content.active { display: block; animation: fadeIn .3s ease; }
.wp-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden; box-shadow: var(--shadow2);
}
.wp-card-header {
  background: var(--navy); padding: 28px 36px;
  display: flex; align-items: center; gap: 20px;
}
.wp-num {
  font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-h);
  line-height: 1; flex-shrink: 0; min-width: 52px;
}
.wp-card-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.wp-card-header p  { color: rgba(255,255,255,.62); font-size: .88rem; margin: 0; }
.wp-card-body {
  padding: 40px 36px; min-height: 400px;
  border: 3px dashed var(--border); border-top: none; margin: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(201,168,76,.025) 10px, rgba(201,168,76,.025) 20px
  );
}
.wp-placeholder {
  text-align: center; padding: 60px 20px;
}
.wp-placeholder-icon { color: var(--gold); opacity: .4; margin: 0 auto 20px; }
.wp-placeholder h4 { color: var(--muted); font-size: 1.1rem; margin-bottom: 10px; }
.wp-placeholder p  { color: var(--muted); font-size: .9rem; max-width: 400px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════ */
/*  CASE STUDY CARDS (testimonials page)                       */
/* ═══════════════════════════════════════════════════════════ */
.case-study {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden; margin-bottom: 36px;
  box-shadow: var(--shadow2); transition: box-shadow .25s;
}
.case-study:hover { box-shadow: var(--shadow); }
.cs-header {
  background: var(--navy); padding: 28px 36px;
  display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 24px;
}
.cs-sector-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; color: var(--gold);
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  padding: 4px 14px; border-radius: 99px; margin-bottom: 10px;
}
.cs-header h3 { color: var(--white); font-size: 1.18rem; margin-bottom: 6px; }
.cs-header p  { color: rgba(255,255,255,.62); font-size: .88rem; margin: 0; }
.cs-scope {
  text-align: right; background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25); border-radius: var(--radius);
  padding: 14px 18px; white-space: nowrap;
}
.cs-scope .scope-label { font-size: .72rem; color: rgba(255,255,255,.5); display: block; }
.cs-scope .scope-val   { font-size: .88rem; font-weight: 700; color: var(--gold); }

.cs-body { padding: 32px 36px; }
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cs-quote {
  font-size: 1.02rem; font-style: italic; color: var(--text);
  line-height: 1.75; border-left: 3px solid var(--gold); padding-left: 20px;
  margin-bottom: 20px;
}
.cs-attribution { font-size: .85rem; color: var(--muted); }
.cs-attribution strong { color: var(--navy); }

.cs-outcomes h4 { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 14px; }
.cs-outcomes li {
  font-size: .9rem; color: var(--text); padding: 8px 0 8px 20px;
  position: relative; border-bottom: 1px solid var(--border);
}
.cs-outcomes li:last-child { border-bottom: none; }
.cs-outcomes li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cs-tag {
  font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 99px;
  background: rgba(14,35,71,.07); color: var(--navy); border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════ */
/*  CONTACT / FORM                                             */
/* ═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p  { color: var(--muted); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 8px; background: rgba(14,35,71,.07);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-text { font-size: .9rem; }
.contact-item-text strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 2px; }
.contact-item-text a { color: var(--navy); font-weight: 600; }
.contact-item-text a:hover { color: var(--gold); }

/* Calendly CTA card */
.calendly-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px; box-shadow: var(--shadow2);
  text-align: center;
}
.calendly-card .icon { color: var(--gold); margin: 0 auto 16px; }
.calendly-card h3 { margin-bottom: 10px; }
.calendly-card p  { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════ */
/*  CTA BANNER                                                 */
/* ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(130deg, var(--navy) 0%, #1B3A6B 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 65%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 30px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-banner .actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════ */
/*  MODAL (Calendly)                                           */
/* ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,.75); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
.modal-box {
  background: var(--white); border-radius: var(--radius2);
  width: 100%; max-width: 700px; max-height: 90vh;
  overflow: hidden; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.35); animation: slideUp .3s ease;
}
.modal-header {
  background: var(--navy); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { color: var(--white); font-size: 1.05rem; }
.modal-close {
  background: rgba(255,255,255,.1); border: none; color: var(--white);
  width: 34px; height: 34px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.modal-body { height: 550px; }
.modal-body iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════════════════════════ */
/*  FOOTER                                                     */
/* ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark); padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.6); font-size: .88rem;
  text-decoration: none; margin-bottom: 9px; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); margin-top: 44px; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p   { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-reg {
  font-size: .78rem; color: rgba(255,255,255,.28);
  padding: 5px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 130px 0 70px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.68); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb   { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: .84rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════ */
/*  ANIMATIONS                                                 */
/* ═══════════════════════════════════════════════════════════ */
@keyframes fadeIn  { from { opacity: 0; }             to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                 */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-stats        { display: none; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonial-preview { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .cs-grid           { grid-template-columns: 1fr; }
  .cs-header         { grid-template-columns: 1fr; }
  .cs-scope          { text-align: left; }
  .footer-grid       { grid-template-columns: 1fr; }
  .nav-links         { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open    { display: flex; }
  .nav-toggle        { display: block; }
  .hero              { padding: 120px 0 70px; }
  .section, .section-alt, .section-dark { padding: 56px 0; }
  .wp-card-header    { flex-direction: column; gap: 12px; }
  .wp-card-body      { padding: 28px 24px; }
  .cs-body           { padding: 24px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
}
