:root {
  /* Palette */
  --bg-primary: #0a192f;
  --bg-secondary: #0e2a47;
  --bg-tertiary: #1a365d;
  --bg-surface: #ffffff;
  --bg-light: #f8fafc;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #f8fafc;
  --text-muted: #64748b;

  --brand-navy: #0e2a47;
  --brand-blue: #1d4ed8;
  --brand-blue-hover: #2563eb;
  --brand-blue-light: #eff6ff;
  --brand-gold: #FF2222;
  --brand-gold-hover: #D91A1A;
  --brand-crimson: #dc2626;
  --brand-green: #10b981;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Glass */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-surface);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

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

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

/* Container with generous padding */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* ====================================================
   HEADER & NAVIGATION
==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

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

.mobile-nav-top,
.mobile-nav-bottom,
.nav-chevron {
  display: none !important;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.8rem;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--brand-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 34, 34, 0.3);
}

.btn-primary:hover {
  background: var(--brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 34, 34, 0.45);
}

.btn-secondary {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-secondary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.75rem;
  cursor: pointer;
}

/* ====================================================
   HERO SECTION
==================================================== */
.hero {
  position: relative;
  background-color: #0a192f;
  background-image:
    linear-gradient(90deg, #0a192f 0%, #0a192f 0%, rgba(10, 25, 47, 0.82) 10%, rgba(10, 25, 47, 0.30) 30%, rgba(10, 25, 47, 0.05) 45%),
    linear-gradient(180deg, rgba(10, 25, 47, 0.15) 0%, rgba(10, 25, 47, 0) 40%, rgba(10, 25, 47, 0.65) 100%),
    url('_assets/images/content/v1/68b3541695fa0517264564b1/421dbaa7-043b-4d7e-b5d1-b2e8f1d76a3b/SB-32-Rg.jpg');
  background-size: max(100%, 1400px) auto;
  background-position: calc(100% + 160px) 28%;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 9rem 0 11rem;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-caption-bar {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-col {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(29, 78, 216, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--brand-blue);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ====================================================
   WHAT SALLY STANDS FOR (THE 3 CLEAR PILLARS)
==================================================== */
.core-pillars-section {
  padding: 3.5rem 0;
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--brand-blue-light);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.pillars-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-card-hero {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pillar-card-hero:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pillar-card-hero h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pillar-card-hero p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* ====================================================
   SALLY IN OUR COMMUNITY (VISUAL PHOTO GALLERY)
==================================================== */
.community-gallery-section {
  padding: 6.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.gallery-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ====================================================
   INTERACTIVE UTILITY INFOGRAPHIC (2014 - 2026)
==================================================== */
.utility-infographic-section {
  background: linear-gradient(145deg, #0a192f 0%, #0f294a 60%, #163863 100%);
  color: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(10, 25, 47, 0.45);
  padding: 3.5rem 3rem;
  margin: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.infographic-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.infographic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 34, 34, 0.18);
  border: 1px solid rgba(255, 34, 34, 0.4);
  color: var(--brand-gold);
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.infographic-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.infographic-subtitle-banner {
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #bfdbfe;
  line-height: 1.5;
}

.info-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.info-stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1.75rem 1.4rem;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.info-stat-card:hover,
.info-stat-card.active {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--brand-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.info-stat-card .big-stat {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.info-stat-card .stat-desc {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.info-callout-banner {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.2) 0%, rgba(29, 78, 216, 0.25) 100%);
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: #fef2f2;
  font-weight: 500;
  scroll-margin-top: 110px;
  outline: none;
}

.info-callout-banner strong {
  color: #fca5a5;
  font-weight: 700;
}

.info-interactive-wrapper {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 2.25rem;
  margin-bottom: 2rem;
}

.info-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.info-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.info-tab-btn:hover,
.info-tab-btn.active {
  background: var(--brand-gold);
  color: #0f172a;
  border-color: var(--brand-gold);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.info-tab-pane {
  display: none;
  animation: fadeInPane 0.3s ease;
}

.info-tab-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-chart-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.info-legend {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-dot.indiana {
  background: #dc2626;
}

.legend-dot.neighbor {
  background: #64748b;
}

.bar-chart-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 210px 1fr 65px;
  align-items: center;
  gap: 1.25rem;
}

.bar-label {
  font-size: 0.93rem;
  font-weight: 600;
  color: #e2e8f0;
}

.bar-track {
  width: 100%;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  padding-left: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.bar-fill.indiana-bar {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
}

.bar-fill.highlight-bar {
  background: linear-gradient(90deg, #d97706 0%, #FF2222 100%);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
  color: #0f172a;
}

.bar-fill.neighbor-bar {
  background: #475569;
}

.bar-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  text-align: right;
}

/* Timeline Comparison Card */
.timeline-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.timeline-era-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.75rem;
}

.era-year-badge {
  display: inline-block;
  background: rgba(29, 78, 216, 0.3);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.era-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.era-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.era-list li {
  position: relative;
  padding-left: 1.65rem;
  line-height: 1.55;
  display: block;
}

.era-list li>span:first-child {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: inline-block;
  width: 1.25rem;
}

.infographic-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
}

.footer-sources {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}

.d78-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

/* Responsive infographic adjustments */
@media (max-width: 1220px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .utility-infographic-section {
    padding: 2.5rem 1.5rem;
  }

  .info-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-comparison-grid {
    grid-template-columns: 1fr;
  }

  .d78-action-grid {
    grid-template-columns: 1fr;
  }

  .bar-item {
    grid-template-columns: 140px 1fr 50px;
  }
}

@media (max-width: 768px) {
  .utility-infographic-section {
    padding: 2rem 0.5rem;
  }

  .info-stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline-comparison-grid {
    grid-template-columns: 1fr;
  }

  .d78-action-grid {
    grid-template-columns: 1fr;
  }

  .bar-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .bar-val {
    text-align: left;
  }

  .timeline-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .timeline-card-header>span:not(.section-tag) {
    width: 100%;
    text-align: right;
  }

  .issue-card,
  .timeline-card {
    padding: 1.6rem;
  }

  main .btn {
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    height: auto !important;
    line-height: 1.35 !important;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ====================================================
   CALCULATOR PREVIEW CARD
==================================================== */
.calc-section {
  background: linear-gradient(135deg, #0e2a47 0%, #1a365d 100%);
  color: #ffffff;
  padding: 4.5rem 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(10, 25, 47, 0.45);
  margin: 3.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

.cta-section {
  background: linear-gradient(135deg, #0e2a47 0%, #1a365d 100%);
  color: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(10, 25, 47, 0.45);
  padding: 4.5rem 2.5rem;
  margin: 3.5rem 0 4.5rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.calc-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.range-slider {
  width: 100%;
  margin: 1.5rem 0;
  accent-color: var(--brand-gold);
  cursor: pointer;
}

.calc-results {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-stat-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-blue-light);
  text-align: left;
  line-height: 1.35;
}

/* ====================================================
   PRIORITIES SHOWCASE
==================================================== */
.priorities-showcase-section {
  background: #ffffff;
  color: #0f172a;
  padding: 2.5rem 0;
  position: relative;
}

.timeline-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-pill {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(11, 120, 245, 0.35);
}

/* ====================================================
   CONSTITUENT PRIORITIES POLL
==================================================== */
.poll-section {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 28px;
  padding: 4rem 0.5rem;
  margin: 4rem 0;
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.08);
  text-align: center;
}

.poll-btn {
  background: #f8fafc;
  color: #1e293b;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.poll-btn:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue) !important;
  box-shadow: 0 8px 20px rgba(11, 120, 245, 0.15);
}

.poll-btn.selected {
  border-color: #10b981 !important;
  background: #ecfdf5 !important;
  color: #065f46 !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}

.poll-btn.selected::before {
  content: "✓ ";
  font-weight: 800;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  align-items: start;
}

.issues-grid .issue-card.centered-odd-card {
  grid-column: 1 / -1;
  max-width: calc(50% - 1.125rem);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.issue-card,
.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  align-self: start;
  width: 100%;
  box-sizing: border-box;
}

.timeline-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.timeline-card-header .section-tag {
  margin: 0;
  text-align: center;
}

.timeline-card-header>span:not(.section-tag) {
  font-weight: 700;
  color: #dc2626;
  text-align: center;
}

.issue-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.issue-card-header-toggle {
  cursor: pointer;
  user-select: none;
  border-radius: 12px;
  transition: opacity 0.2s ease;
  outline: none;
}

.issue-card-header-toggle:hover {
  opacity: 0.92;
}

.issue-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  width: 100%;
}

.issue-icon {
  display: none;
}

.issue-number-badge {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
  border: none;
  text-align: left;
  margin: 0;
}

.card-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.issue-card:hover .card-toggle-icon {
  background: var(--brand-blue);
  color: #ffffff;
  transform: scale(1.08);
}

.issue-card-body {
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0.5rem;
}

.issue-card.collapsed .issue-card-body {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.issue-card.collapsed .card-toggle-icon {
  transform: rotate(0deg);
}

.issue-card:not(.collapsed) .card-toggle-icon {
  transform: rotate(180deg);
  background: var(--brand-blue);
  color: #ffffff;
}

.issue-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.issue-card p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.issue-card ul.priority-list {
  margin: 0.5rem 0 0 0;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.issue-card ul.priority-list li {
  margin-bottom: 0.6rem;
}

.issue-card ul.priority-list li:last-child {
  margin-bottom: 0;
}

.executive-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.roadmap-tag {
  background: rgba(29, 78, 216, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  padding: 0.4rem 1.1rem;
}

.roadmap-zone-label {
  color: #93c5fd;
  font-weight: 800;
  font-size: 0.8rem;
  display: block;
}

.take-action-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 2.5rem;
}

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

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

@media (max-width: 900px) {

  .issues-grid,
  .executive-overview-grid,
  .take-action-cards-grid,
  .roadmap-grid {
    grid-template-columns: 1fr !important;
  }

  .issues-grid .issue-card.centered-odd-card {
    grid-column: auto;
    max-width: 100%;
  }
}

/* ====================================================
   DONOR NEXUS SUMMARY MATRIX TABLE
==================================================== */
.matrix-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
  box-sizing: border-box;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.matrix-table thead tr {
  background: #0e2a47;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.matrix-table th {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.matrix-table th:last-child {
  border-right: none;
}

.matrix-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.matrix-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.matrix-table td {
  padding: 1.4rem 1.5rem;
  vertical-align: top;
  color: #334155;
}

.matrix-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: #64748b;
  display: block;
  margin-top: 0.25rem;
}

.matrix-blue {
  color: #1d4ed8;
  font-weight: 700;
}

.matrix-sub-blue {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 850px) {
  .matrix-wrapper {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .matrix-table,
  .matrix-table thead,
  .matrix-table tbody,
  .matrix-table th,
  .matrix-table td,
  .matrix-table tr {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .matrix-table thead {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    display: none !important;
  }

  .matrix-table tbody tr {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
    margin-bottom: 1.75rem !important;
    padding: 1.5rem !important;
  }

  .matrix-table tbody tr:last-child {
    margin-bottom: 0 !important;
  }

  .matrix-table td {
    padding: 1.1rem 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-align: left !important;
  }

  .matrix-table td:first-child {
    padding-top: 0 !important;
  }

  .matrix-table td:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }

  .matrix-table td::before {
    content: attr(data-label);
    display: block !important;
    font-family: var(--font-heading);
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: #1d4ed8 !important;
    margin-bottom: 0.45rem !important;
  }
}

@media (max-width: 480px) {
  .matrix-table tbody tr {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    margin-bottom: 1.35rem !important;
  }

  .matrix-table td {
    padding: 0.9rem 0 !important;
    font-size: 0.92rem !important;
  }

  .matrix-table td::before {
    font-size: 0.76rem !important;
    margin-bottom: 0.35rem !important;
  }
}

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
  background: #0a192f;
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
}

/* ====================================================
   VIDEO HUB & CONSTITUENT Q&A
==================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0f172a;
  overflow: hidden;
}

.video-thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  background: rgba(245, 158, 11, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.social-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-badge.youtube {
  background: #dc2626;
}

.social-badge.tiktok {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-badge.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-badge.facebook {
  background: #1877f2;
}

.video-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.video-desc {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.video-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.5rem;
}

.watch-yt-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.watch-yt-link:hover {
  color: var(--brand-gold-hover);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1220px) {
  .hero {
    padding: 7rem 0 9rem;
    min-height: calc(100vh - 84px);
    background-position: calc(100% + 180px) 25%;
  }

  .hero-text-col {
    max-width: 100%;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-grid>div:first-child,
  .hero-grid>.hero-text-col {
    display: contents;
  }

  .hero,
  .page-hero,
  .page-hero .container,
  .hero-content,
  .hero-text-col,
  .hero-grid {
    text-align: center !important;
  }

  .hero-subtitle,
  .page-hero .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-badge,
  .hero-grid .hero-badge,
  .page-hero .hero-badge {
    display: flex !important;
    width: fit-content !important;
    order: -1 !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-grid .hero-photo-wrapper {
    order: 2;
    width: 100%;
    margin: 0.5rem 0 0.75rem;
  }

  .hero-grid .hero-title {
    order: 3;
    margin-top: 0 !important;
  }

  .hero-grid .hero-subtitle {
    order: 4;
  }

  .hero-grid .hero-actions {
    order: 5;
  }

  .pillars-3-grid,
  .timeline-comparison-grid,
  .roadmap-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calc-box {
    grid-template-columns: 1fr;
  }

  .calc-controls {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .calc-how-it-works {
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .calc-slider-group {
    order: 2;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-grid form {
    max-width: 420px;
    margin: 0 auto;
    justify-content: center;
  }

  .footer-grid .footer-social-icons {
    justify-content: center;
  }

  .footer-grid>div:nth-child(1) {
    order: 1;
  }

  .footer-grid>div:nth-child(2) {
    order: 2;
  }

  .footer-grid>div:nth-child(3) {
    order: 3;
  }

  .footer-grid>div:nth-child(4) {
    order: 4;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(10, 25, 47, 0.65) 0%, rgba(10, 25, 47, 0) 10%, rgba(10, 25, 47, 0) 20%, rgba(10, 25, 47, 0.82) 100%),
      url('_assets/images/content/v1/68b3541695fa0517264564b1/421dbaa7-043b-4d7e-b5d1-b2e8f1d76a3b/SB-32.jpg');
    background-position: center 18%;
    background-size: cover;
    align-items: stretch;
    padding: 1.8rem 0 3.5rem;
    min-height: calc(100vh - 84px);
  }

  .page-hero {
    padding: 1.8rem 0 !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .hero-text-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .hero-badge {
    display: flex;
    width: fit-content;
    order: -1;
    align-self: center;
    margin: 0 auto 1.5rem auto;
    justify-content: center;
    text-align: center;
    background: rgba(29, 78, 216, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: none;
  }

  .hero .hero-title {
    margin-top: max(18rem, 38vh);
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.95);
  }

  .hero-subtitle,
  .page-hero .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 auto 1.75rem auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.95);
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    text-shadow: none;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1300px) {
  .nav-links {
    gap: 1.25rem;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 0.75rem;
    padding: 0 1.25rem;
  }

  .brand-logo {
    order: 1;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-logo img {
    height: 75px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .header-inner .btn-primary {
    order: 2;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
  }

  html.menu-lock-scroll,
  body.menu-lock-scroll {
    overflow: hidden !important;
    overscroll-behavior: none !important;
    height: 100% !important;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 85px);
    height: calc(100dvh - 85px);
    z-index: 999;
    background: #0a192f;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    align-items: center;
    padding: 2rem 1.8rem;
    overflow-y: auto;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  }

  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none;
  }

  .nav-links .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 5.0vw, 4.0rem);
    font-weight: 600;
    color: #ffffff;
    padding: 0.65rem 1rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .nav-links .nav-link:hover {
    color: var(--brand-gold);
    transform: scale(1.03);
  }

  .nav-chevron {
    display: inline-block !important;
    font-size: clamp(0.95rem, 3.8vw, 2.45rem);
    font-weight: 800;
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .nav-links .nav-link:hover .nav-chevron {
    color: var(--brand-gold);
    transform: translateX(3px);
  }

  /* STYLIZED ANIMATED HAMBURGER MENU BUTTON */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    order: 3;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 0.25rem;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-toggle:hover {
    background: rgba(29, 78, 216, 0.22);
    border-color: #60a5fa;
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
  }

  .hamburger-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
  }

  .mobile-toggle.is-active {
    background: rgba(29, 78, 216, 0.28);
    border-color: #60a5fa;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.45);
  }

  .mobile-toggle.is-active .bar-top {
    transform: translateY(7.5px) rotate(45deg);
    background-color: #93c5fd;
  }

  .mobile-toggle.is-active .bar-mid {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle.is-active .bar-bot {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: #93c5fd;
  }
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .take-action-cards-grid>div {
    padding: 1.5rem !important;
    border-radius: 18px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .take-action-cards-grid input,
  .take-action-cards-grid textarea,
  .take-action-cards-grid button,
  .take-action-cards-grid a {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 600px) {
  .calc-section {
    padding: 2.5rem 0.5rem !important;
    border-radius: 20px !important;
    margin: 2.5rem 0 3.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-box {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 1.2rem !important;
    border-radius: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-controls {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-how-it-works {
    order: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .calc-slider-group {
    order: 2 !important;
    width: 100% !important;
  }

  .calc-controls label {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .calc-controls input[type="range"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-results {
    padding: 1.5rem 1.2rem !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-stat-row {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    padding: 0.85rem 0 !important;
    text-align: center !important;
  }

  .stat-label {
    font-size: 0.9rem !important;
    text-align: center !important;
  }

  .stat-value {
    font-size: 1.15rem !important;
    text-align: center !important;
  }

  .cta-section {
    padding: 2.5rem 1.35rem !important;
    border-radius: 20px !important;
    margin: 2.5rem 0 3.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-section h2 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .cta-section p {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }

  main .btn,
  .calc-results .btn,
  .cta-section .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.95rem !important;
    height: auto !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 550px) {

  .calc-stat-row,
  .action-form-row-2,
  .action-form-row-3 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 3rem;
    background-position: center 15%;
  }

  .hero-title {
    margin-top: max(17rem, 36vh);
    font-size: 2.15rem;
  }

  .header-inner {
    padding: 0 0.85rem;
    gap: 0.5rem;
  }

  .brand-logo img {
    height: 44px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .header-inner .btn-primary {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-grid form {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid form input[type="email"] {
    width: 100%;
  }

  .footer-grid form button {
    width: 100%;
  }

  .footer-grid .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .header-inner {
    padding: 0 0.65rem !important;
    gap: 0.35rem !important;
  }

  .brand-logo {
    gap: 0.4rem !important;
  }

  .brand-logo img {
    height: 75px !important;
  }

  .brand-title {
    font-size: 0.98rem !important;
  }

  .header-inner .btn-primary {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.78rem !important;
  }

  .mobile-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .hero,
  .page-hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .hero-content,
  .hero-text-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-badge,
  .hero-grid .hero-badge,
  .page-hero .hero-badge {
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
  }

  .container {
    padding: 0 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .core-pillars-section,
  .pillars-3-grid,
  .pillar-card-hero {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .pillars-3-grid {
    margin: 0 auto !important;
  }

  .pillar-card-hero {
    padding: 1.6rem 1.2rem !important;
    margin: 0 auto !important;
    align-items: center !important;
    text-align: center !important;
  }

  .pillar-card-hero h3,
  .pillar-card-hero p,
  .pillar-card-hero .pillar-number {
    text-align: center !important;
    width: 100% !important;
  }

  .calc-section {
    padding: 2rem 0.85rem !important;
    border-radius: 16px !important;
    margin: 2rem 0 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-box {
    padding: 1.25rem 0.85rem !important;
    gap: 1.25rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-controls {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-controls label {
    font-size: 0.9rem !important;
  }

  .calc-controls input[type="range"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-controls .calc-how-it-works {
    padding: 1rem 0.85rem !important;
    font-size: 0.85rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .calc-results {
    padding: 1.25rem 0.85rem !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-stat-row {
    grid-template-columns: 1fr !important;
    gap: 0.35rem !important;
    padding: 0.75rem 0 !important;
    text-align: center !important;
  }

  .stat-label {
    font-size: 0.88rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .stat-value {
    font-size: 1.1rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  #annualImpactDisplay {
    font-size: 1.45rem !important;
  }

  .cta-section {
    padding: 2rem 0.85rem !important;
    border-radius: 16px !important;
    margin: 2rem 0 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-section h2 {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
  }

  .cta-section p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  main .btn,
  .calc-results .btn,
  .cta-section .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    height: auto !important;
  }
}