/* ============================================================
   CMMC Level 1 Compliance - Government Official Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700;900&family=Merriweather:wght@700;900&display=swap');

:root {
  /* Primary Palette - Deep Government Navy */
  --navy:        #0a2463;
  --navy-dark:   #061640;
  --navy-mid:    #0d2d7a;
  --navy-light:  #1a3a8c;

  /* Gold Accent - Authority & Trust */
  --gold:        #c5973a;
  --gold-light:  #d4aa55;
  --gold-pale:   #f5e9cc;

  /* Alert Colors */
  --red-alert:   #b91c1c;
  --red-bg:      #fef2f2;
  --amber:       #d97706;
  --amber-bg:    #fffbeb;
  --green:       #15803d;
  --green-bg:    #f0fdf4;

  /* Neutral */
  --white:       #ffffff;
  --bg-page:     #f4f6fa;
  --bg-subtle:   #eef1f7;
  --border:      #d1d5db;
  --border-strong: #9ca3af;

  /* Text */
  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #626a78;
  --text-on-navy:   #e8edf8;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.15);

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width:        1140px;
  --max-width-narrow: 760px;
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;

  /* Transitions */
  --transition: 0.2s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
}
img { max-width: 100%; display: block; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.2;
  color: var(--navy-dark);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.625rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
p { margin-bottom: var(--space-md); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); }
.small { font-size: 0.875rem; color: var(--text-muted); }

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.section { padding: var(--space-4xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }

/* Section backgrounds */
.section-white { background: var(--white); }
.section-subtle { background: var(--bg-page); }
.section-navy { background: var(--navy); color: var(--text-on-navy); }
.section-navy-dark { background: var(--navy-dark); color: var(--text-on-navy); }
.section-gold-stripe {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-top: 4px solid var(--gold);
  color: var(--white);
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--white);
}
.navbar-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo-text .brand-main {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.navbar-logo-text .brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.navbar-nav a {
  color: var(--text-on-navy);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition);
}
.navbar-nav a:hover { color: var(--gold-light); }
.navbar-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.navbar-cta:hover { background: var(--gold-light) !important; text-decoration: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition);
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: var(--space-lg) var(--space-xl);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    border-bottom: 3px solid var(--gold);
  }
  .navbar-nav.open { display: flex; }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy-dark);
  color: var(--text-on-navy);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand p {
  font-size: 0.875rem;
  color: #9bb4d8;
  line-height: 1.7;
  margin-top: var(--space-sm);
}
.footer-brand .brand-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(197,151,58,0.15);
  border: 1px solid rgba(197,151,58,0.3);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}
.footer-col ul li { margin-bottom: var(--space-sm); }
.footer-col ul a {
  font-size: 0.875rem;
  color: #9bb4d8;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b84a8;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #6b84a8;
  line-height: 1.5;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  text-decoration: none;
}
.btn-red {
  background: var(--red-alert);
  color: var(--white);
  border-color: var(--red-alert);
}
.btn-red:hover {
  background: #991b1b;
  text-decoration: none;
}

/* ===================== CARDS ===================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-navy {
  background: var(--navy);
  border-color: var(--navy-light);
  color: var(--text-on-navy);
}
.card-navy h3, .card-navy h4 { color: var(--white); }

/* ===================== BADGES ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-red { background: var(--red-bg); color: var(--red-alert); border: 1px solid #fecaca; }
.badge-amber { background: var(--amber-bg); color: var(--amber); border: 1px solid #fde68a; }
.badge-green { background: var(--green-bg); color: var(--green); border: 1px solid #bbf7d0; }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-gold { background: var(--gold-pale); color: #7c5a0a; border: 1px solid var(--gold); }
.badge-urgent { background: var(--red-alert); color: var(--white); animation: pulse-badge 2s infinite; }
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ===================== FORMS ===================== */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-xs); }

/* ===================== GRIDS ===================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red-alert); }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-muted); }
.font-serif { font-family: 'Merriweather', serif; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-xl { margin-bottom: var(--space-xl); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.w-full { width: 100%; }

/* ===================== ALERT BARS ===================== */
.alert-bar {
  background: var(--red-alert);
  color: var(--white);
  padding: 0.6rem var(--space-xl);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.alert-bar a { color: var(--white); text-decoration: underline; }

/* ===================== DIVIDERS ===================== */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--navy-dark), var(--gold), var(--navy-dark));
  border: none;
  margin: 0;
}

/* ===================== ICON CIRCLES ===================== */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle-navy { background: var(--navy); color: var(--white); }
.icon-circle-gold { background: var(--gold-pale); color: var(--gold); }
.icon-circle-red { background: var(--red-bg); color: var(--red-alert); }

/* ===================== STEP NUMBERS ===================== */
.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===================== PROGRESS BAR ===================== */
.progress-bar-wrap {
  height: 8px;
  background: var(--bg-subtle);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 100px;
  transition: width 0.4s ease;
}

/* ===================== SEAL / SHIELD DECORATIVE ===================== */
.shield-icon {
  display: inline-block;
  opacity: 0.08;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ===================== URGENCY BANNER ===================== */
.urgency-banner {
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: center;
}
.urgency-banner h3 { color: var(--white); font-size: 1.25rem; margin-bottom: var(--space-xs); }
.deadline-counter {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-md);
}
.deadline-unit {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  text-align: center;
  min-width: 80px;
}
.deadline-unit .num {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.deadline-unit .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ===================== FAQ ACCORDION ===================== */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-lg) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===================== QUIZ SPECIFIC ===================== */
.quiz-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.question-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}
.question-card.answered-no { border-color: var(--red-alert); }
.question-card.answered-yes { border-color: var(--green); }
.question-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.question-text {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
}
.question-subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.answer-buttons {
  display: flex;
  gap: var(--space-md);
}
.answer-btn {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition);
}
.answer-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.answer-btn.yes { border-color: var(--green); color: var(--green); }
.answer-btn.yes:hover, .answer-btn.yes.selected { background: var(--green); color: var(--white); }
.answer-btn.no { border-color: var(--red-alert); color: var(--red-alert); }
.answer-btn.no:hover, .answer-btn.no.selected { background: var(--red-alert); color: var(--white); }

/* ===================== SCORE GAUGE ===================== */
.score-gauge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--red-alert) 0deg, var(--red-alert) var(--score-deg, 0deg), var(--bg-subtle) var(--score-deg, 0deg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.score-gauge::before {
  content: '';
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
}
.score-gauge-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.score-gauge-text .score-pct {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-dark);
  display: block;
}
.score-gauge-text .score-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===================== LEAD GATE ===================== */
.lead-gate {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-gate h2 { color: var(--white); margin-bottom: var(--space-md); }
.lead-gate p { color: var(--text-on-navy); }

/* ===================== PRICING CARD ===================== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.pricing-card .price {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
}
.pricing-card .price-period { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card ul { text-align: left; margin: var(--space-xl) 0; }
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--bg-subtle);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.pricing-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===================== TESTIMONIAL ===================== */
.testimonial {
  background: var(--bg-page);
  border-left: 4px solid var(--gold);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.testimonial blockquote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.testimonial cite {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

/* ===================== INLINE CHECKLIST ===================== */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist li.gap::before { content: '✗'; color: var(--red-alert); }

/* ===================== PROCESS STEPS ===================== */
.process-steps {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}
@media (max-width: 700px) {
  .process-steps { flex-direction: column; }
}
.process-step { flex: 1; text-align: center; }
.process-step .step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero p { color: var(--text-on-navy); }

/* ===================== STICKY CTA BAR ===================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { color: var(--white); font-size: 0.9rem; margin: 0; }
.sticky-cta p strong { color: var(--gold-light); }
@media (max-width: 640px) {
  .sticky-cta { flex-direction: column; text-align: center; }
}

/* ===================== MISC PAGE ELEMENTS ===================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7c5a0a;
  margin-bottom: var(--space-sm);
}
.divider-line {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

/* ===================== TABLE ===================== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 0.75rem var(--space-md);
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.data-table td {
  padding: 0.875rem var(--space-md);
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.data-table tr:nth-child(even) td { background: var(--bg-page); }
.data-table .status-fail { color: var(--red-alert); font-weight: 700; }
.data-table .status-pass { color: var(--green); font-weight: 700; }

/* ===================== RESPONSIVE HELPERS ===================== */
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 var(--space-lg); }
  .section { padding: var(--space-2xl) 0; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
  .lead-gate { padding: var(--space-2xl) var(--space-lg); }
}
