/* ============================================
   HEAL THE HEROES — Styles
   ============================================ */

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

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-mid: #1a2d4a;
  --gold: #c8a84e;
  --gold-light: #e6c85a;
  --gold-dark: #a68a3e;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6eb;
  --gray-300: #c5ccd6;
  --gray-500: #6b7a8d;
  --gray-700: #374151;
  --gray-900: #111827;
  --red: #dc3545;
  --red-dark: #a82835;
  --green: #28a745;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 78, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-small { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2847 40%, #162d50 100%);
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 168, 78, 0.05) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(200, 168, 78, 0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-highlight {
  color: var(--gold);
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-stat-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  max-width: 160px;
  display: block;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s 1.2s forwards;
  opacity: 0;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Sections General --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  color: var(--navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Crisis Section --- */
.crisis {
  background: var(--gray-50);
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.crisis-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.crisis-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.crisis-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.crisis-callout {
  background: var(--navy);
  color: var(--white);
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  border-left: 4px solid var(--gold);
}

.crisis-callout strong {
  color: var(--gold);
}

/* --- SGB Section --- */
.sgb {
  background: var(--white);
}

.sgb-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.sgb-step {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.sgb-step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 12px;
  opacity: 0.6;
}

.sgb-step h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.sgb-step p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sgb-benefits {
  background: var(--navy);
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.sgb-benefits h3 {
  text-align: center;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--font-body);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit {
  text-align: center;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit h4 {
  margin-bottom: 8px;
  color: var(--white);
}

.benefit p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* --- Science Section --- */
.science {
  background: var(--gray-50);
}

.research-highlight {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
}

.research-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.research-highlight h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.research-highlight > p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.research-findings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.finding {
  text-align: center;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.finding-stat {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.finding-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.study-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.study-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.study-card h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

.study-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.study-journal {
  font-size: 0.8rem;
  color: var(--gray-300);
  font-style: italic;
}

.science-quote {
  background: var(--navy);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.science-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-context {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Stories Section --- */
.stories {
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story-card {
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.story-quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.story-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.story-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- Action Section --- */
.action {
  background: var(--gray-50);
  padding-bottom: 80px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.action-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.action-card:hover {
  box-shadow: var(--shadow-lg);
}

.action-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.action-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.action-card > p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Congress Card */
.congress-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.letter-template { margin-top: 8px; }

.template-toggle {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  transition: color var(--transition);
}

.template-toggle:hover { color: var(--navy); }

.template-content {
  display: none;
  margin-top: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.template-content.open { display: block; }

.template-content p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.template-content .btn-small {
  margin-top: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
}

/* Donate Card */
.donate-tiers {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tier {
  flex: 1;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.tier:hover, .tier.featured {
  border-color: var(--gold);
}

.tier.featured {
  background: rgba(200, 168, 78, 0.05);
}

.tier-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.donate-note {
  font-size: 0.8rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 12px;
}

/* Provider Card */
.provider-resources {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.provider-link {
  display: block;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.provider-link:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.05);
}

.provider-link strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.provider-link span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.provider-note {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px dashed var(--gray-300);
}

.provider-note p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* Signup Card */
.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: border-color var(--transition);
  background: var(--white);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-check label {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 12px;
}

.signup-success {
  text-align: center;
  padding: 24px;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.signup-success h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.signup-success p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* --- Urgent Banner --- */
.urgent-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #162d50 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.urgent-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.urgent-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-icon {
  font-size: 1.2rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-crisis {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  margin-bottom: 32px;
}

.footer-crisis p { margin: 0; font-size: 0.95rem; }
.footer-crisis strong { color: var(--white); }
.footer-crisis a { color: var(--gold); font-weight: 600; }

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

.footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .crisis-grid { grid-template-columns: repeat(2, 1fr); }
  .studies-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.open { right: 0; }

  .hero-stat-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .crisis-grid { grid-template-columns: 1fr; }
  .sgb-steps { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .research-findings { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .section { padding: 60px 0; }
  .crisis-callout { padding: 28px; }
  .research-highlight { padding: 32px; }
  .sgb-benefits { padding: 32px; }
  .science-quote { padding: 32px; }
  .action-card { padding: 28px; }

  .congress-actions { flex-direction: column; }
  .donate-tiers { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .eo-highlights { flex-direction: column; }
  .video-grid { grid-template-columns: 1fr; }
  .benefits-grid-6 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero { padding: 100px 0 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* --- Executive Order Section --- */
.executive-order {
  background: var(--white);
}

.eo-card {
  background: var(--gray-50);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 36px;
  position: relative;
}

.eo-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eo-card h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.eo-card > p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.eo-highlights {
  display: flex;
  gap: 24px;
}

.eo-highlight {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.eo-highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.eo-highlight strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.eo-highlight span {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.eo-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.eo-cta h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.eo-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 32px;
}

.eo-cta strong {
  color: var(--gold);
}

/* --- Video Testimonials Section --- */
.testimonials {
  background: var(--gray-50);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--navy);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 24px;
}

.video-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.video-info h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

.video-info p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Benefits Grid 6-column override --- */
.benefits-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Share Card --- */
.share-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.share-btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.share-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
}

.share-note strong {
  color: var(--navy);
  font-weight: 700;
}

/* --- Responsive additions for new sections --- */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .benefits-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .eo-highlights { flex-direction: column; }
}

@media (max-width: 768px) {
  .eo-card { padding: 32px; }
  .eo-cta { padding: 32px; }
  .share-actions { flex-direction: column; }
  .share-btn { min-width: unset; }
}
