/* ============================================================
   WayFinder Shield — Main Stylesheet
   Edit this file to change colors, fonts, spacing, and layout.
   Brand colors are defined in the :root section below.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0B1D31;   /* primary dark */
  --navy-mid:   #102942;   /* nav, footer bg */
  --steel:      #334E68;   /* section bg, card borders */
  --gold:       #C7A36B;   /* accent, CTAs, highlights */
  --gold-dark:  #A8854E;   /* gold hover */
  --offwhite:   #F8FAFC;   /* light section bg */
  --slate:      #536476;   /* body text on light */
  --text-dark:  #1a2e3f;   /* dark body text */
  --border:     #D1D9E0;   /* subtle borders */
  --white:      #ffffff;

  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 2px 12px rgba(11,29,49,0.10);
  --shadow-lg:  0 6px 28px rgba(11,29,49,0.15);

  --max-w:      1140px;
  --section-py: 80px;
}

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

/* ── Utility ───────────────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-py   { padding: var(--section-py) 0; }
.section-py-sm{ padding: 48px 0; }
.bg-offwhite  { background: var(--offwhite); }
.bg-navy      { background: var(--navy); color: var(--white); }
.bg-navy-mid  { background: var(--navy-mid); color: var(--white); }
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--slate); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--slate); max-width: 680px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(199,163,107,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--navy); }
.nav-logo-text { font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.875rem !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; width: 100%; }
  .nav-cta { margin: 8px 24px; width: calc(100% - 48px); text-align: center; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 55%, var(--steel) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(199,163,107,0.18);
  border: 1px solid rgba(199,163,107,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}
.hero-trust-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(6px);
}
.hero-card-title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-check-list { display: flex; flex-direction: column; gap: 12px; }
.hero-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.hero-check-icon {
  width: 20px; height: 20px;
  background: rgba(199,163,107,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-check-icon svg { width: 11px; height: 11px; fill: var(--gold); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 60px 0; }
}

/* ── How It Works (3-step) ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.step-number {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { margin-bottom: 8px; color: var(--navy); }
.step-card p  { font-size: 0.9rem; }
.step-connector {
  display: none;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Service cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-icon {
  width: 46px; height: 46px;
  background: rgba(11,29,49,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--navy); }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { font-size: 0.9rem; line-height: 1.65; }

/* ── Who we help ───────────────────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.fit-list { display: flex; flex-direction: column; gap: 14px; }
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
}
.bg-navy .fit-item { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.bg-offwhite .fit-item { background: var(--white); border-color: var(--border); }
.fit-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.fit-item p { font-size: 0.9rem; margin: 0; color: inherit; }
.bg-navy .fit-item p { color: rgba(255,255,255,0.78); }
.bg-offwhite .fit-item p { color: var(--slate); }
.fit-not h3 { color: rgba(255,255,255,0.6); margin-bottom: 14px; font-size: 1rem; }

@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
}
.trust-item svg { width: 32px; height: 32px; fill: var(--gold); margin: 0 auto 12px; }
.trust-item h4 { color: var(--white); margin-bottom: 6px; }
.trust-item p  { color: rgba(255,255,255,0.60); font-size: 0.875rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-btn h3 { font-size: 1rem; color: var(--navy); font-weight: 600; flex: 1; }
.faq-btn .faq-icon {
  width: 24px; height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 4px 20px;
}
.faq-item.open .faq-body { display: block; }
.faq-body p { font-size: 0.93rem; }

/* ── CTA section ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: var(--section-py) 0;
  background: var(--navy);
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section .lead { color: rgba(255,255,255,0.72); margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── About page ────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  padding: 70px 0;
  text-align: center;
}
.about-hero h1 { color: var(--white); }
.about-hero p  { color: rgba(255,255,255,0.72); max-width: 600px; margin: 16px auto 0; }

.about-section {
  padding: var(--section-py) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 90px;
}
/* Edit /assets/images/corey-walling-about.jpg to replace the photo */
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-photo-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--slate);
}
.founder-bio h2 { margin-bottom: 20px; }
.founder-bio p  { margin-bottom: 18px; }
.founder-bio h3 { margin-top: 32px; margin-bottom: 14px; color: var(--steel); font-size: 1.05rem; }
.cred-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
}
.cred-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { position: static; max-width: 280px; margin: 0 auto; }
}

/* ── Services page ─────────────────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 70px 0;
  text-align: center;
}
.services-hero h1 { color: var(--white); }
.services-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 14px auto 0; }

.service-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section h2 { margin-bottom: 14px; }
.service-section p  { margin-bottom: 14px; }
.service-bullets { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
}
.service-bullet-dot {
  width: 18px; height: 18px;
  background: rgba(199,163,107,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-bullet-dot svg { width: 10px; height: 10px; fill: var(--gold); }
.service-meta {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.service-meta h4 { color: var(--navy); margin-bottom: 14px; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

.pricing-table { width: 100%; margin-top: 48px; }
.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-label { font-size: 0.93rem; color: var(--navy); font-weight: 500; }
.pricing-label span { display: block; font-size: 0.8rem; color: var(--slate); font-weight: 400; }
.pricing-price { font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

@media (max-width: 820px) {
  .service-section-inner { grid-template-columns: 1fr; gap: 28px; }
  .service-section-inner.reverse { direction: ltr; }
}

/* ── Free Audit page ───────────────────────────────────────── */
.audit-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  padding: 70px 0;
  text-align: center;
}
.audit-hero h1 { color: var(--white); }
.audit-hero p { color: rgba(255,255,255,0.72); max-width: 620px; margin: 16px auto 0; }

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  padding: var(--section-py) 0;
}
.audit-what h2 { margin-bottom: 20px; }
.audit-covers { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.audit-cover-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.audit-cover-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audit-cover-item h4 { margin-bottom: 4px; color: var(--navy); }
.audit-cover-item p  { font-size: 0.875rem; }

/* Audit form card */
.audit-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
}
.audit-form-card h3 { color: var(--navy); margin-bottom: 6px; }
.audit-form-card .sub { color: var(--slate); font-size: 0.875rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,163,107,0.15);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--slate); margin-top: 12px; }

@media (max-width: 820px) {
  .audit-grid { grid-template-columns: 1fr; gap: 36px; }
  .audit-form-card { position: static; }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(255,255,255,0.60); font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Page hero (generic) ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; }

/* ── Misc ──────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.gap-stack { display: flex; flex-direction: column; gap: 10px; }
