/* ========================================
   Justice Advisory Group — Shared Styles
   ======================================== */

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

:root {
  /* ── Legacy palette (active) ── */
  --navy: #0c1929;
  --slate: #1a2a3f;
  --warm: #c9a96e;
  --warm-light: #e8d5a8;
  --cream: #f5f0e8;
  --text: #2c3e50;
  --text-light: #6b7c8d;
  --white: #ffffff;
  --success: #2d6a4f;
  --error: #c0392b;

  /* ════════════════════════════════════════
     JAG BRAND PALETTE — Phase 1 Definition
     Patriotic Red · White · Blue
     Apply in Phases 2-4
     ════════════════════════════════════════

     COLOR SYSTEM
     ─────────────────────────────────────── */

  /* Primary: Old Glory Blue */
  --jag-blue:        #002868;   /* Deep patriotic navy — primary brand color */
  --jag-blue-mid:    #1a3a7a;   /* Mid-tone blue — section backgrounds, cards */
  --jag-blue-light:  #2a5298;   /* Lighter blue — hover states, links */
  --jag-blue-pale:   #e8edf8;   /* Very pale blue — subtle tints, alt sections */

  /* Primary: Old Glory Red */
  --jag-red:         #B22234;   /* Old Glory red — CTAs, accents, alerts */
  --jag-red-hover:   #cc2640;   /* Hover state for red buttons */
  --jag-red-dark:    #8b1a27;   /* Pressed/active state */
  --jag-red-pale:    #fdf0f2;   /* Very pale red — error backgrounds */

  /* Neutral: White & Grays */
  --jag-white:       #ffffff;   /* Pure white — backgrounds, text on dark */
  --jag-off-white:   #f8f5f0;   /* Warm off-white — page backgrounds */
  --jag-silver:      #c8cfd8;   /* Cool light gray — borders, dividers */
  --jag-gray:        #5a6472;   /* Mid gray — body text */
  --jag-gray-dark:   #2c3a4a;   /* Dark gray — headings, dark text */

  /* Accent: Gold (retained from legacy for trust/authority) */
  --jag-gold:        #c9a96e;   /* Warm gold — premium accents, highlights */
  --jag-gold-light:  #e8d5a8;   /* Light gold — subtle tints */

  /* ─────────────────────────────────────────
     TYPOGRAPHY SYSTEM
     ─────────────────────────────────────── */

  /* Heading font: DM Serif Display (current) — authoritative, legal gravitas
     Google Fonts: https://fonts.google.com/specimen/DM+Serif+Display
     Alt option:   Playfair Display — more editorial weight
     Alt option:   Libre Baskerville — classic serif authority          */

  /* Body font: DM Sans (current) — clean, modern, readable
     Google Fonts: https://fonts.google.com/specimen/DM+Sans
     Alt option:   Instrument Sans — slightly more structured
     Alt option:   Plus Jakarta Sans — strong hierarchy                  */

  /* Monospace/accent: Space Mono — for labels, codes, contrast moments   */

  /* ─────────────────────────────────────────
     BUTTON STYLES (Reference)
     ─────────────────────────────────────── */
  /* Primary CTA:   bg #B22234, color white, hover bg #cc2640            */
  /* Secondary CTA: border 2px #002868, color #002868, hover fill        */
  /* Ghost:         border 1px rgba(255,255,255,0.4), color white        */

  /* ─────────────────────────────────────────
     SECTION BACKGROUNDS (Reference)
     ─────────────────────────────────────── */
  /* Hero/dark:     #002868 (jag-blue) or gradient to #001a50            */
  /* Alt section:   #f8f5f0 (jag-off-white)                              */
  /* Feature dark:  #0d1f45 (deeper navy, between jag-blue and navy)     */
  /* Dividers:      1px solid rgba(0,40,104,0.12) on light               */
  /*                1px solid rgba(255,255,255,0.1) on dark               */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 2rem;
  height: 70px;
  background: rgba(0, 40, 104, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand:hover { opacity: 0.9; }

.nav-logo {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links .nav-cta {
  background: var(--jag-red);
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--jag-red-hover);
  color: #ffffff;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 5px 0;
  transition: 0.3s;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--jag-blue-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  margin-top: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 50vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), transparent);
  opacity: 0.3;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  position: relative;
  z-index: 1;
}

.page-hero .hero-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--warm);
}

.page-hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 5rem 2rem;
}

.content-section.alt {
  background: var(--cream);
}

.content-section.dark {
  background: var(--slate);
}

.content-section.navy {
  background: var(--navy);
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.3;
}

.content-section.dark .section-title,
.content-section.navy .section-title {
  color: var(--cream);
}

.content-section.dark .section-label,
.content-section.navy .section-label {
  color: var(--warm-light);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--warm);
  opacity: 0.4;
  line-height: 1;
}

.step-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.content-section.dark .step-content h3 {
  color: var(--warm-light);
}

.content-section.dark .step-content p {
  color: rgba(245, 240, 232, 0.55);
}

/* ===== KEY POINTS / GRID ===== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.point-card {
  padding: 2rem 0;
  border-top: 1px solid rgba(12, 25, 41, 0.08);
}

.point-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.point-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.content-section.dark .point-card {
  border-top-color: rgba(201, 169, 110, 0.15);
}

.content-section.dark .point-card h4 {
  color: var(--warm-light);
}

.content-section.dark .point-card p {
  color: rgba(245, 240, 232, 0.55);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 2rem;
  background: var(--jag-blue);
  text-align: center;
}

.cta-banner-inner {
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--jag-red);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--jag-red-hover);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== FORMS ===== */
.form-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-label .required {
  color: var(--error);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(12, 25, 41, 0.15);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7c8d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.form-divider {
  margin: 2.5rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(12, 25, 41, 0.08);
}

.form-divider-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-divider-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Checkbox group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--warm);
  cursor: pointer;
}

.checkbox-item label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--warm);
  cursor: pointer;
}

.radio-item label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

/* Form messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: none;
}

.form-message.success {
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.2);
  color: var(--success);
  display: block;
}

.form-message.error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  color: var(--error);
  display: block;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== FOOTER ===== */
footer {
  background: var(--jag-blue);
  padding: 4rem 2rem 2.5rem;
  border-top: 1px solid rgba(178, 34, 52, 0.3);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-section .footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand-section p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
}

/* ===== EARLY INTERVENTION TIMELINE ===== */
.timeline-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.timeline-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-section .section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--warm), rgba(201, 169, 110, 0.15));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 54px;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 7px;
  top: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--warm);
  border: 4px solid var(--cream);
  z-index: 1;
  transition: transform 0.2s;
}

.timeline-item:nth-child(2) .timeline-dot { opacity: 0.75; }
.timeline-item:nth-child(3) .timeline-dot { opacity: 0.5; }
.timeline-item:nth-child(4) .timeline-dot { opacity: 0.3; }

.timeline-stage {
  font-family: 'DM Serif Display', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.timeline-impact {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.impact-high {
  background: rgba(45, 106, 79, 0.1);
  color: var(--success);
}

.impact-medium {
  background: rgba(201, 169, 110, 0.15);
  color: #9a7d3a;
}

.impact-limited {
  background: rgba(192, 57, 43, 0.08);
  color: var(--error);
}

.timeline-cta {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.timeline-cta p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
}

/* ===== EARLY INTERVENTION CALLOUT ===== */
.early-callout {
  padding: 2rem 2.5rem;
  background: var(--cream);
  border-left: 3px solid var(--warm);
  border-radius: 0 6px 6px 0;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.early-callout h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.early-callout p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.early-callout .btn {
  margin-top: 1rem;
}

/* Dark variant of callout */
.early-callout.dark {
  background: rgba(201, 169, 110, 0.08);
  border-left-color: var(--warm);
}

.early-callout.dark h4 {
  color: var(--warm-light);
}

.early-callout.dark p {
  color: rgba(245, 240, 232, 0.55);
}

/* ===== URGENCY BANNER (for attorney/contact pages) ===== */
.urgency-banner {
  background: var(--navy);
  padding: 1.25rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.urgency-banner p {
  font-size: 0.9rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.3px;
}

.urgency-banner strong {
  color: var(--warm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--jag-blue);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0;
  }

  .nav-dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .nav-toggle { display: block; }

  .page-hero-inner { padding: 7rem 1.5rem 4rem; }

  .content-section { padding: 4rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .step-number { font-size: 1.5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner { padding: 4rem 1.5rem; }

  .timeline-section { padding: 4rem 1.5rem; }

  .timeline-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .early-callout {
    padding: 1.5rem;
  }
}

/* ===== EMPATHY COPY ===== */
.page-hero-empathy {
  font-size: 0.98rem;
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
  margin-top: 0.85rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ===== CHECKLIST PROMO BANNER (blog posts + blog index) ===== */
.checklist-promo-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--navy);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.checklist-promo-banner:hover { opacity: 0.93; }
.checklist-promo-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.checklist-promo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.checklist-promo-text strong {
  color: var(--warm-light);
  font-weight: 600;
}
.checklist-promo-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--warm);
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.checklist-promo-cta:hover { background: #b8924f; }
@media (max-width: 600px) {
  .checklist-promo-banner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
