/* ============================================================
   Lattice Meridian K-12 AI Advisory
   Main Stylesheet
   ============================================================ */

/* ============================================================
   CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-primary:    #1B2A4A;   /* Deep navy — authority, trust */
  --color-secondary:  #2E75B6;   /* Warm blue — approachability */
  --color-accent:     #E8792F;   /* Burnt orange — urgency, CTAs */
  --color-bg:         #FAFAF8;   /* Off-white — warm, not sterile */
  --color-text:       #2D2D2D;   /* Dark charcoal — readable */
  --color-light:      #E8EEF2;   /* Soft blue-gray — cards, sections */
  --color-white:      #FFFFFF;
  --color-border:     #D0DBE8;
  --color-success:    #2A7A4B;
  --color-warning:    #E8792F;
  --color-danger:     #C0392B;

  /* Derived / semantic */
  --color-primary-dark:   #12203A;
  --color-secondary-light: #4A8FCC;
  --color-accent-dark:    #C9671F;
  --color-text-muted:     #6B7280;
  --color-text-light:     #9CA3AF;

  /* Typography */
  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;

  /* Font sizes — fluid-ish scale */
  --text-xs:   0.75rem;     /* 12px */
  --text-sm:   0.875rem;    /* 14px */
  --text-base: 1.125rem;    /* 18px */
  --text-lg:   1.25rem;     /* 20px */
  --text-xl:   1.5rem;      /* 24px */
  --text-2xl:  1.875rem;    /* 30px */
  --text-3xl:  2.25rem;     /* 36px */
  --text-4xl:  2.75rem;     /* 44px */
  --text-5xl:  3.5rem;      /* 56px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width:        1140px;
  --nav-height:       72px;
  --border-radius:    8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(27,42,74,0.08), 0 1px 2px rgba(27,42,74,0.04);
  --shadow-md:  0 4px 12px rgba(27,42,74,0.10), 0 2px 4px rgba(27,42,74,0.06);
  --shadow-lg:  0 12px 32px rgba(27,42,74,0.12), 0 4px 8px rgba(27,42,74,0.06);
  --shadow-xl:  0 24px 48px rgba(27,42,74,0.16), 0 8px 16px rgba(27,42,74,0.08);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 700;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  line-height: 1.75;
  color: var(--color-text);
}

.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }

.text-muted  { color: var(--color-text-muted); }
.text-white  { color: var(--color-white); }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }

.font-bold   { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* Alternating section backgrounds */
.section-white  { background-color: var(--color-white); }
.section-bg     { background-color: var(--color-bg); }
.section-light  { background-color: var(--color-light); }
.section-navy   { background-color: var(--color-primary); }
.section-dark   { background-color: var(--color-primary-dark); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   Section Headers
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.section-header--light h2 {
  color: var(--color-white);
}

.section-header--light p {
  color: rgba(255,255,255,0.75);
}

.section-header--light .section-eyebrow {
  color: var(--color-accent);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

/* Primary: accent orange — for primary CTAs */
.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Secondary: navy outline */
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Ghost: white outline — for dark backgrounds */
.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Navy solid */
.btn-navy {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-navy:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open a {
    font-size: var(--text-lg);
    padding: var(--space-3) 0;
    width: 100%;
    border-bottom: 1px solid var(--color-light);
  }

  .nav-links.open a::after { display: none; }

  .nav-cta.open {
    display: flex;
    flex-direction: column;
    width: calc(100% - var(--space-12));
    position: fixed;
    left: var(--space-6);
    right: var(--space-6);
    top: calc(var(--nav-height) + 340px);
    background: var(--color-white);
    padding: 0 var(--space-6) var(--space-6);
  }

  .nav-cta.open .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Page offset for fixed nav */
.page-top {
  padding-top: var(--nav-height);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--color-primary);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geometric background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,117,182,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,47,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-24) var(--space-6);
  width: 100%;
}

.hero-content {
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(232,121,47,0.15);
  border: 1px solid rgba(232,121,47,0.3);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: var(--space-6);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--color-white);
  font-weight: 900;
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: var(--space-10);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-bar-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.trust-states {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.trust-state {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 600;
}

.trust-state-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero { min-height: 75vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Stats / Problem Section
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 4px solid var(--color-secondary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card:nth-child(4) {
  border-top-color: var(--color-accent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 900;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat-card:nth-child(4) .stat-number {
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.problem-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius);
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-secondary);
  stroke-width: 1.75;
  fill: none;
}

.card-phase {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.card-timeline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-light);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-5);
}

.card-link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.card-link:hover {
  color: var(--color-primary);
  gap: var(--space-2);
}

.card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   State Compliance Tracker
   ============================================================ */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

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

.compliance-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light);
  border-left: 5px solid var(--color-secondary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.compliance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.compliance-card.urgent { border-left-color: var(--color-accent); }
.compliance-card.active { border-left-color: var(--color-success); }
.compliance-card.pending { border-left-color: var(--color-secondary); }
.compliance-card.monitoring { border-left-color: var(--color-text-muted); }

.compliance-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.compliance-state {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-urgent {
  background: rgba(232,121,47,0.12);
  color: var(--color-accent-dark);
}

.badge-active {
  background: rgba(42,122,75,0.1);
  color: var(--color-success);
}

.badge-pending {
  background: rgba(46,117,182,0.1);
  color: var(--color-secondary);
}

.badge-monitoring {
  background: var(--color-light);
  color: var(--color-text-muted);
}

.compliance-text {
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.compliance-cta {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-light);
  border-radius: var(--border-radius-lg);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.compliance-cta a {
  font-weight: 700;
  color: var(--color-accent);
}

.compliance-cta a:hover { color: var(--color-accent-dark); }

/* ============================================================
   Why Us / Value Props
   ============================================================ */
.value-props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .value-props { grid-template-columns: 1fr; }
}

.value-prop {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: rgba(255,255,255,0.06);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition-base);
}

.value-prop:hover {
  background: rgba(255,255,255,0.1);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  background: rgba(46,117,182,0.2);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-prop-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-secondary);
  stroke-width: 1.75;
  fill: none;
}

.value-prop-text h4 {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.value-prop-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding: var(--space-16) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* Invert to white for the dark footer background */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-5);
  color: rgba(255,255,255,0.65);
}

.footer-contact {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

.footer-contact a {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover { color: var(--color-white); }

.footer-col h5 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

/* Email signup */
.footer-signup h5 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-signup p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.footer-signup-form {
  display: flex;
  gap: var(--space-2);
}

.footer-signup-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  padding: 0.6rem 0.875rem;
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-signup-form input::placeholder { color: rgba(255,255,255,0.35); }

.footer-signup-form input:focus {
  border-color: var(--color-secondary);
  background: rgba(255,255,255,0.12);
}

.footer-signup-form button {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.footer-signup-form button:hover {
  background: var(--color-accent-dark);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.footer-bottom-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
}

.footer-bottom-text a:hover {
  color: var(--color-white);
}

/* ============================================================
   Page Hero (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #243C6A 100%);
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,117,182,0.2) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.page-hero p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ============================================================
   Services Page
   ============================================================ */
.service-phase {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-light);
}

.service-phase:last-of-type {
  border-bottom: none;
}

.service-phase-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 900px) {
  .service-phase-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.service-phase-meta {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.phase-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-light);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.phase-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.service-phase-meta h2 {
  font-size: var(--text-2xl);
  line-height: 1.3;
  margin-bottom: var(--space-4);
}

.phase-audience {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.phase-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-light);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.service-includes h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.service-includes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-include-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-include-item:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.include-icon {
  width: 40px;
  height: 40px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.include-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-secondary);
  stroke-width: 2;
  fill: none;
}

.include-text h5 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.include-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.workshop-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .workshop-tracks { grid-template-columns: 1fr; }
}

.workshop-track {
  padding: var(--space-5) var(--space-6);
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light);
  border-left: 3px solid var(--color-secondary);
  transition: transform var(--transition-fast);
}

.workshop-track:hover { transform: translateX(3px); }

.workshop-track h5 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.workshop-track p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-2);
}

.workshop-duration {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

/* ============================================================
   Assessment Page
   ============================================================ */
.assessment-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.assessment-intro {
  text-align: center;
  margin-bottom: var(--space-10);
}

.assessment-intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.assessment-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

.assessment-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

.assessment-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-secondary);
  stroke-width: 2;
  fill: none;
}

/* Progress bar */
.quiz-progress {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.progress-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.progress-fraction {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

.progress-track {
  height: 6px;
  background: var(--color-light);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Question card */
.question-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8) var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light);
  margin-bottom: var(--space-6);
  display: none;
  animation: fadeSlideIn 0.3s ease forwards;
}

.question-card.active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.question-number {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.question-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: var(--space-6);
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.option-item {
  position: relative;
}

.option-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--border-radius);
  border: 2px solid var(--color-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-bg);
}

.option-label:hover {
  border-color: var(--color-secondary);
  background: var(--color-white);
}

.option-item input:checked + .option-label {
  border-color: var(--color-secondary);
  background: rgba(46,117,182,0.06);
}

.option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-item input:checked + .option-label .option-radio {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}

.option-radio::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  display: none;
}

.option-item input:checked + .option-label .option-radio::after {
  display: block;
}

.option-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

.option-item input:checked + .option-label .option-text {
  font-weight: 600;
  color: var(--color-primary);
}

/* Quiz navigation */
.quiz-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-light);
  margin-top: var(--space-6);
}

#btn-next {
  opacity: 0.4;
  pointer-events: none;
}

#btn-next.enabled {
  opacity: 1;
  pointer-events: auto;
}

/* Results section */
.results-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-light);
  display: none;
  animation: fadeSlideIn 0.5s ease forwards;
}

.results-card.active { display: block; }

.results-score-area {
  text-align: center;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-light);
  margin-bottom: var(--space-8);
}

.results-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.score-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.score-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.5s ease;
}

.score-denom {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Score gauge */
.score-gauge {
  max-width: 400px;
  margin: 0 auto var(--space-6);
}

.gauge-track {
  height: 12px;
  background: var(--color-light);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.gauge-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.score-band {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  margin-bottom: var(--space-5);
}

.score-band-leader    { background: rgba(42,122,75,0.1);  color: var(--color-success); }
.score-band-building  { background: rgba(46,117,182,0.1); color: var(--color-secondary); }
.score-band-starting  { background: rgba(232,121,47,0.1); color: var(--color-accent); }
.score-band-urgent    { background: rgba(192,57,43,0.1);  color: var(--color-danger); }

.gauge-fill-leader   { background: var(--color-success); }
.gauge-fill-building { background: var(--color-secondary); }
.gauge-fill-starting { background: var(--color-accent); }
.gauge-fill-urgent   { background: var(--color-danger); }

.score-number-leader   { color: var(--color-success); }
.score-number-building { color: var(--color-secondary); }
.score-number-starting { color: var(--color-accent); }
.score-number-urgent   { color: var(--color-danger); }

.results-context {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.75;
  text-align: center;
  margin-bottom: var(--space-8);
}

/* Email capture form in results */
.results-cta-section {
  background: var(--color-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
}

.results-cta-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.results-cta-section > p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  line-height: 1.65;
}

.lead-form {
  display: grid;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .results-card { padding: var(--space-6) var(--space-5); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.875rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(46,117,182,0.12);
}

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

.form-group select {
  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='%236B7280' 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 0.75rem center;
  padding-right: 2.5rem;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   Resources Page
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .resources-grid { grid-template-columns: 1fr; }
}

.resource-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resource-card-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.resource-card-header svg {
  width: 48px;
  height: 48px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.85;
  z-index: 1;
}

/* Color variants for resource cards */
.rc-navy { background: linear-gradient(135deg, var(--color-primary), #243C6A); }
.rc-blue { background: linear-gradient(135deg, var(--color-secondary), #4A8FCC); }
.rc-orange { background: linear-gradient(135deg, var(--color-accent), #C9671F); }
.rc-teal { background: linear-gradient(135deg, #1A7A6B, #249080); }
.rc-slate { background: linear-gradient(135deg, #374151, #4B5563); }
.rc-indigo { background: linear-gradient(135deg, #3730A3, #4F46E5); }

.resource-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.resource-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.rb-guide     { background: rgba(46,117,182,0.1); color: var(--color-secondary); }
.rb-article   { background: rgba(27,42,74,0.08); color: var(--color-primary); }
.rb-whitepaper { background: rgba(42,122,75,0.1); color: var(--color-success); }
.rb-research  { background: rgba(232,121,47,0.1); color: var(--color-accent); }
.rb-template  { background: rgba(55,48,163,0.1); color: #3730A3; }
.rb-interactive { background: rgba(26,122,107,0.1); color: #1A7A6B; }

.resource-read-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  background: var(--color-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.resource-card-body h3 {
  font-size: var(--text-lg);
  line-height: 1.35;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.resource-card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  flex: 1;
}

.resource-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
}

.resource-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.resource-link:hover {
  color: var(--color-primary);
  gap: var(--space-2);
}

.resource-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.gate-icon {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

.gate-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ============================================================
   About / Contact Page
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-content p {
  margin-bottom: var(--space-5);
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-text);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 700;
}

.about-value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.about-sidebar {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light);
}

.about-sidebar h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-light);
}

/* Contact form */
.contact-form-section {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-form-section h2 {
  margin-bottom: var(--space-3);
}

.contact-form-section > p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-secondary);
  stroke-width: 1.75;
  fill: none;
}

.contact-item-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.contact-item-text p,
.contact-item-text a {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
  text-decoration: none;
}

.contact-item-text a:hover { color: var(--color-secondary); }

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumb {
  padding: var(--space-4) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-light);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumb-inner a {
  color: var(--color-secondary);
  font-weight: 600;
}

.breadcrumb-inner a:hover { color: var(--color-primary); }

.breadcrumb-sep {
  color: var(--color-text-muted);
}

.breadcrumb-current {
  color: var(--color-text-muted);
}

/* ============================================================
   Urgency Banner
   ============================================================ */
.urgency-bar {
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

.urgency-bar a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}

.urgency-bar a:hover {
  color: var(--color-white);
  text-decoration-color: white;
}

/* ============================================================
   Animate on scroll (fade-in)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

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

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Horizontal rule style */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}

/* Inline highlight */
.highlight-orange {
  color: var(--color-accent);
  font-weight: 700;
}

/* Ohio deadline callout */
.deadline-callout {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(232,121,47,0.1);
  border: 1px solid rgba(232,121,47,0.3);
  color: var(--color-accent-dark);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
}

.deadline-callout svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}
