* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Global Login Modal ===== */
.global-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.global-login-modal {
  background: white;
  border-radius: 18px;
  padding: 2rem 2.25rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-height: 90vh;
  overflow-y: auto;
}
.global-login-modal h3 { font-size: 1.3rem; color: #1a1a2e; margin-bottom: 0.4rem; font-weight: 800; }
.global-login-sub { font-size: 0.88rem; color: #666; margin-bottom: 1.25rem; line-height: 1.5; }
.global-login-close {
  position: absolute; top: 1rem; right: 1rem;
  background: #f0f0f0; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #555; transition: background 0.2s ease;
}
.global-login-close:hover { background: #e0e0e0; }
.global-login-group { margin-bottom: 0.9rem; }
.global-login-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 0.3rem; }
.global-login-group input {
  width: 100%; padding: 0.6rem 0.85rem; border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-size: 0.9rem; color: #1a1a2e;
  transition: border-color 0.2s ease; box-sizing: border-box;
}
.global-login-group input:focus { outline: none; border-color: #28a745; }
.global-login-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white; border: none; border-radius: 10px;
  padding: 0.8rem 1.5rem; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; margin-top: 0.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.global-login-btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.global-login-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.global-login-status { margin-top: 0.6rem; font-size: 0.85rem; min-height: 1.2rem; }
.global-login-success-icon { font-size: 3rem; text-align: center; margin-bottom: 0.75rem; }
.global-login-success-text { text-align: center; font-size: 1.1rem; font-weight: 700; color: #28a745; }

/* Welcome back banner */
.global-login-welcome-back {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1.5px solid #a5d6a7;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}
.global-login-welcome-icon { font-size: 2rem; flex-shrink: 0; }
.global-login-welcome-name { font-size: 1.05rem; font-weight: 700; color: #1b5e20; }
.global-login-welcome-email { font-size: 0.82rem; color: #388e3c; margin-top: 0.15rem; }

/* Back button */
.global-login-back-btn {
  background: none;
  border: none;
  color: #667eea;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.2s ease;
}
.global-login-back-btn:hover { color: #764ba2; }

/* ===== Nav Login Button ===== */
.nav-login-item { display: flex; align-items: center; }
.nav-login-btn {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white !important; border: none; border-radius: 8px;
  padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease; white-space: nowrap;
}
.nav-login-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-login-trigger { font-family: inherit; }

/* Navigation */
.navbar {
  background-color: #1a1a2e;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00d4ff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 0;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero p {
  font-size: 0.98rem;
  margin-bottom: 0;
  opacity: 0.95;
  line-height: 1.4;
}

.usa-flag-icon {
  display: inline-flex;
  width: 28px;
  height: 18px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.usa-flag-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #00d4ff;
  color: #1a1a2e;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #00b8d4;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #eef2ff 100%);
}

.how-it-works-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.how-it-works-header h2 {
  font-size: 2.4rem;
  color: #1a1a2e;
  margin-bottom: 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.how-it-works-card {
  background: white;
  border: 1px solid #dfe6fb;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.08);
  text-align: left;
}

.how-it-works-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin-bottom: 1rem;
}

.how-it-works-card h3 {
  font-size: 1.35rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.how-it-works-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: white;
}

.features h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.feature-card h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: #555;
}

/* Quick Facts */
.quick-facts {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.quick-facts h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.fact {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 8px;
}

.fact .number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.fact p {
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 0;
  background-color: #f0f0f0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* ===== Trump Accounts Return Calculator ===== */
.calculator-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 100%);
}

.calculator-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.calculator-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Input Panel --- */
.calc-input-panel {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.calc-input-panel h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #667eea;
}

.calc-form-group {
  margin-bottom: 1.25rem;
}

.calc-form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.calc-label-with-tooltip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.calc-form-group input[type="number"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.calc-form-group input[type="number"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
  background: white;
}

.calc-form-group input[type="number"]:disabled,
.calc-form-group input[disabled] {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}

.calc-form-group .input-hint {
  font-size: 0.78rem;
  color: #999;
  margin-top: 0.25rem;
}

/* Philanthropic Toggle */
.philanthropic-toggle {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #f8f9ff;
  border: 1.5px solid #e0e4f0;
  border-radius: 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.philanthropic-toggle.active {
  border-color: #667eea;
  background: #f0f3ff;
}

.philanthropic-toggle label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a1a2e;
  margin: 0;
}

.philanthropic-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #667eea;
  cursor: pointer;
  flex-shrink: 0;
}

.philanthropic-badge {
  margin-top: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.philanthropic-badge.eligible {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.philanthropic-badge.ineligible {
  display: block;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Simulate Buttons */
.simulate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.simulate-btn {
  flex: 1;
  min-width: 80px;
  padding: 0.7rem 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.simulate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.simulate-btn:active {
  transform: translateY(0);
}

/* Custom Age Group */
.custom-age-group {
  display: flex;
  gap: 0.4rem;
  flex: 1;
  min-width: 140px;
  align-items: stretch;
}

.custom-age-group input[type="number"] {
  flex: 1;
  min-width: 60px;
  padding: 0.5rem 0.6rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.custom-age-group input[type="number"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
  background: white;
}

.simulate-btn-custom {
  flex: 0 0 auto;
  min-width: 50px;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
}

/* --- Results Panel --- */
.calc-results-panel {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.calc-results-panel h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #667eea;
}

.results-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  text-align: center;
  padding: 2rem;
}

.results-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.results-placeholder p {
  font-size: 0.95rem;
  max-width: 220px;
}

.results-dashboard {
  display: none;
  animation: fadeSlideIn 0.5s ease;
}

.results-dashboard.visible {
  display: block;
}

/* Summary Cards */
.results-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.summary-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf8 100%);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.summary-card .summary-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.summary-card .summary-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
}

.summary-card .summary-value.positive {
  color: #28a745;
}

/* Inflation-Adjusted Summary */
.inflation-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.inflation-card {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-align: center;
  border: 1px solid #ffeeba;
}

.inflation-card .inflation-label {
  font-size: 0.75rem;
  color: #856404;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.inflation-card .inflation-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #856404;
}

.inflation-card .inflation-value.positive {
  color: #28a745;
}

/* Contribution Breakdown */
.breakdown-section {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: #f8f9ff;
  border-radius: 12px;
  border: 1px solid #e8ecf8;
}

.breakdown-section h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-size: 0.82rem;
}

.breakdown-item .breakdown-label {
  color: #555;
  font-weight: 500;
}

.breakdown-item .breakdown-value {
  font-weight: 700;
  color: #1a1a2e;
}

.breakdown-item .breakdown-value.positive {
  color: #28a745;
}

.breakdown-item.breakdown-total {
  border-top: 1.5px solid #d0d5e8;
  padding-top: 0.6rem;
  margin-top: 0.2rem;
  grid-column: 1 / -1;
}

.breakdown-item.breakdown-total .breakdown-label {
  font-weight: 700;
  color: #1a1a2e;
}

.breakdown-item.breakdown-total .breakdown-value {
  font-size: 1rem;
  color: #667eea;
}

.breakdown-item.breakdown-growth {
  grid-column: 1 / -1;
  padding-top: 0.3rem;
}

.breakdown-item.breakdown-growth .breakdown-label {
  font-weight: 600;
  color: #28a745;
}

.breakdown-item.breakdown-growth .breakdown-value {
  font-size: 0.95rem;
  color: #28a745;
}

/* Milestone Options */
.milestone-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.milestone-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.milestone-card {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 2px solid #e8ecf8;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.milestone-card:hover {
  transform: translateY(-3px);
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.milestone-card .milestone-emoji {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.milestone-card .milestone-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}

.milestone-card .milestone-desc {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.3;
}

.milestone-card .milestone-amount {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #667eea;
}

/* Responsive */
@media (max-width: 900px) {
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .results-summary {
    grid-template-columns: 1fr;
  }
  .milestone-options {
    grid-template-columns: 1fr;
  }
  .calculator-section h2 {
    font-size: 1.8rem;
  }
}

/* Blog Section */
.blog-header {
  background-color: #1a1a2e;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blog-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.blog-list {
  padding: 3rem 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.post-card h2 {
  margin-bottom: 1rem;
}

.post-card h2 a {
  color: #667eea;
  text-decoration: none;
}

.post-card h2 a:hover {
  text-decoration: underline;
}

.post-card p {
  color: #666;
  margin-bottom: 1rem;
}

.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #764ba2;
}

/* Blog Post */
.blog-post {
  padding: 3rem 0;
  background-color: white;
}

.post-header {
  margin-bottom: 3rem;
  border-bottom: 2px solid #667eea;
  padding-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.post-date {
  color: #999;
  font-style: italic;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}

.post-content h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content h4 {
  font-size: 1.1rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.post-content ul,
.post-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.post-content table th,
.post-content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.post-content table th {
  background-color: #667eea;
  color: white;
  font-weight: bold;
}

.post-content table tr:hover {
  background-color: #f5f5f5;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.back-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #764ba2;
}

/* FAQ Section */
.faq-header {
  background-color: #1a1a2e;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.faq-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.faq-content {
  padding: 3rem 0;
  background-color: white;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid #667eea;
  border-radius: 4px;
}

.faq-item h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #555;
  line-height: 1.7;
}

/* Resources Section */
.resources-header {
  background-color: #1a1a2e;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.resources-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.resources-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.resources-content {
  padding: 3rem 0;
  background-color: white;
}

.resources-content h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.resource-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.resource-item h3 {
  color: #667eea;
  margin-bottom: 0.75rem;
}

.resource-item p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.resource-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: #764ba2;
}

.resources-content ul {
  list-style: none;
}

.resources-content ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.resources-content ul li a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resources-content ul li a:hover {
  color: #764ba2;
}

/* About Section */
.about-content {
  padding: 3rem 0;
  background-color: white;
}

.about-content h1 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.about-content h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.about-content p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.about-content ul li {
  margin-bottom: 0.75rem;
  color: #555;
}

/* Error Page */
.error-page {
  padding: 6rem 0;
  text-align: center;
  background-color: white;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.error-page h1 {
  font-size: 5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.error-page h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer p {
  margin: 0;
}

/* Question Submission Section */
.question-submission {
  padding: 3rem 0;
  background-color: #f0f0f0;
}

.question-submission h2 {
  font-size: 2rem;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
}

.question-submission > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.question-form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
  font-weight: bold;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #667eea;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #764ba2;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.success-message {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  animation: slideIn 0.3s ease;
}

.error-message {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HR Proposal Letter Generator ===== */
.proposal-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f0ff 0%, #e8ecf8 100%);
}

.proposal-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.proposal-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.proposal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Input Panel */
.proposal-form-panel {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.proposal-form-panel h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #667eea;
}

.proposal-form-group {
  margin-bottom: 1.25rem;
}

.proposal-form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.proposal-form-group input[type="text"],
.proposal-form-group input[type="number"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.proposal-form-group input[type="text"]:focus,
.proposal-form-group input[type="number"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
  background: white;
}

.proposal-generate-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.proposal-generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.proposal-generate-btn:active {
  transform: translateY(0);
}

/* Letter Output Panel */
.proposal-letter-panel {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.proposal-letter-panel h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #667eea;
}

.proposal-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  text-align: center;
  padding: 2rem;
}

.proposal-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.proposal-placeholder p {
  font-size: 0.95rem;
  max-width: 220px;
}

.letter-body {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #333;
  max-height: 500px;
  overflow-y: auto;
  white-space: pre-wrap;
  margin-bottom: 1.25rem;
}

/* Email Delivery Section */
.proposal-email-section {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1.5px solid #e8ecf8;
}

.email-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.email-input-row input[type="email"] {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.email-input-row input[type="email"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
  background: white;
}

.proposal-send-btn {
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.proposal-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(40, 167, 69, 0.4);
}

.proposal-send-btn:active {
  transform: translateY(0);
}

.proposal-send-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.proposal-send-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.proposal-send-status.error {
  color: #dc3545;
}

/* Success Toast */
.proposal-success-toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #d4edda;
  color: #155724;
  border: 1.5px solid #c3e6cb;
  border-radius: 12px;
  animation: slideIn 0.4s ease;
  margin-top: 0.5rem;
}

.proposal-success-toast .toast-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.proposal-success-toast .toast-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .proposal-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .email-input-row {
    flex-direction: column;
  }
  .proposal-section h2 {
    font-size: 1.8rem;
  }
}

/* ===== Philanthropic Summary Display ===== */
.philanthropic-summary {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1.5px solid #a5d6a7;
  border-radius: 10px;
  animation: fadeSlideIn 0.4s ease;
}

.philanthropic-summary-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 0.3rem;
}

.philanthropic-summary-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1b5e20;
}

.philanthropic-summary-breakdown {
  font-size: 0.78rem;
  color: #388e3c;
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* Optional Label & Required Star */
.optional-label {
  font-weight: 400;
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
}

.required-star {
  color: #dc3545;
  font-weight: 700;
  font-size: 1rem;
}

/* ===== Export Button Bar ===== */
.export-bar {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.export-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.export-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.export-btn:active {
  transform: translateY(0);
}

.export-pdf {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}

.export-word {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.export-md {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
  color: white;
}

.export-email {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
}

.export-copy {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
}

@media (max-width: 600px) {
  .export-bar {
    grid-template-columns: 1fr;
  }
  .export-btn {
    min-width: auto;
  }
}

/* ===== Employer Request Message ===== */
.employer-request {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
  padding: 0.65rem 0.9rem;
  background: #fff8e1;
  border: 1.5px solid #ffeeba;
  border-radius: 10px;
  animation: fadeSlideIn 0.4s ease;
}

.employer-request-text {
  font-size: 0.82rem;
  color: #856404;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

.employer-request-btn {
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.employer-request-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.employer-request-btn:active {
  transform: translateY(0);
}

/* ===== Company Search Autocomplete ===== */
.company-search-group {
  position: relative;
}

.company-search-wrapper {
  position: relative;
}

.company-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid #e0e4f0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
  animation: fadeSlideIn 0.15s ease;
}

.company-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
}

.company-dropdown-item:last-child {
  border-bottom: none;
}

.company-dropdown-item:hover {
  background: #f0f3ff;
}

.company-dropdown-item:active {
  background: #e0e4f8;
}

.company-dropdown-name {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.9rem;
}

.company-dropdown-count {
  font-size: 0.78rem;
  color: #667eea;
  font-weight: 600;
  background: #f0f3ff;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.company-dropdown-new {
  border-top: 1.5px dashed #d0d5e8;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  justify-content: flex-start;
  gap: 0.5rem;
  color: #667eea;
}

.company-dropdown-new:hover {
  background: #f0f3ff;
}

.company-dropdown-new-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.company-dropdown-new-text {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Campaign Info Block */
.campaign-info-block {
  margin-top: 0.75rem;
  animation: fadeSlideIn 0.3s ease;
}

.campaign-info-block-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.campaign-info-block-content.campaign-exists {
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  color: #1b5e20;
}

.campaign-info-block-content.campaign-new {
  background: #fff8e1;
  border: 1.5px solid #ffeeba;
  color: #856404;
}

.campaign-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.campaign-info-text {
  flex: 1;
}

.campaign-info-link {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  white-space: nowrap;
}

.campaign-info-link:hover {
  opacity: 0.8;
}

/* Responsive Form */
@media (max-width: 768px) {
  .question-form {
    padding: 1.5rem;
  }

  .question-submission h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .features-grid,
  .facts-grid,
  .posts-grid,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .post-header h1,
  .blog-header h1,
  .faq-header h1,
  .resources-header h1 {
    font-size: 1.75rem;
  }

  .features h2,
  .quick-facts h2,
  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-menu a {
    font-size: 0.8rem;
  }

  .hero {
    padding: 0.75rem 0 1rem;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .hero h1 {
    font-size: 1.15rem;
    gap: 0.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .hero-actions .cta-button {
    width: auto;
    min-width: 170px;
    text-align: center;
  }

  .usa-flag-icon {
    width: 24px;
    height: 15px;
  }

  .how-it-works {
    padding: 3rem 0;
  }

  .how-it-works-header h2 {
    font-size: 1.9rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .error-page h1 {
    font-size: 3rem;
  }
}

/* ===== Campaign Page Styles ===== */
.campaign-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.campaign-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.campaign-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.campaign-progress {
  padding: 3rem 0;
  background: white;
}

.campaign-progress h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.progress-card {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9ff;
  border: 1.5px solid #e0e4f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.progress-count {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.progress-message {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.progress-bar-container {
  width: 100%;
  height: 24px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 12px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-bar-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
}

/* Campaign Simulation */
.campaign-simulation {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf8 100%);
}

.campaign-simulation h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.campaign-simulation > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.simulation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.simulation-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1.5px solid #e8ecf8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simulation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.simulation-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.simulation-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.3rem;
}

.simulation-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.simulation-sub {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.simulation-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.4rem;
  font-size: 0.72rem;
  border-top: 1px solid #f0f0f0;
}

.simulation-detail:first-of-type {
  border-top: 1px solid #e8ecf8;
  padding-top: 0.4rem;
  margin-top: 0.3rem;
}

.sim-detail-label {
  color: #888;
  font-weight: 500;
}

.sim-detail-value {
  color: #555;
  font-weight: 700;
}

.sim-detail-growth {
  color: #28a745;
}

/* Campaign Graphics */
.campaign-graphics {
  padding: 3rem 0;
  background: white;
}

.campaign-graphics h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.graphics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.graphic-card {
  background: #f8f9ff;
  border: 1.5px solid #e0e4f0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.graphic-card h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.graphic-card canvas {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.graphic-download-btn {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.graphic-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

/* Campaign OTP Section */
.campaign-otp-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f5f0ff 0%, #e8ecf8 100%);
}

.campaign-otp-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.campaign-otp-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.otp-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.otp-step {
  animation: fadeSlideIn 0.4s ease;
}

.otp-step h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  text-align: center;
}

.otp-form-group {
  margin-bottom: 1rem;
}

.otp-form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.otp-form-group input[type="email"],
.otp-form-group input[type="text"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
  text-align: center;
  letter-spacing: 0.3rem;
  font-size: 1.3rem;
}

.otp-form-group input[type="email"]:focus,
.otp-form-group input[type="text"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
  background: white;
}

.otp-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.otp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.otp-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.otp-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.otp-status.success {
  color: #28a745;
}

.otp-status.error {
  color: #dc3545;
}

.otp-resend {
  margin-top: 1rem;
  text-align: center;
}

.otp-resend-btn {
  background: none;
  border: none;
  color: #667eea;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.3rem 0.5rem;
}

.otp-resend-btn:hover {
  color: #764ba2;
}

.otp-resend-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Campaign Share */
.campaign-share {
  padding: 2rem 0;
  background: white;
  text-align: center;
}

.campaign-share h2 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.share-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.share-btn-secondary {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
}

@media (max-width: 768px) {
  .simulation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulation-personas {
    grid-template-columns: 1fr 1fr;
  }
  .graphics-grid {
    grid-template-columns: 1fr;
  }
  .campaign-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .simulation-grid {
    grid-template-columns: 1fr;
  }
  .simulation-personas {
    grid-template-columns: 1fr;
  }
}

/* ===== Geographic Grant Notification ===== */
.grant-notification {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 18px;
  margin: 16px 0;
}
.grant-notification-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.grant-notification-icon { font-size: 1.5rem; }
.grant-notification-title { font-weight: 700; color: #856404; font-size: 0.95rem; }
.grant-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.grant-item { background: #fff; border: 1px solid #fde68a; border-radius: 8px; padding: 12px 14px; }
.grant-sponsor { font-weight: 700; color: #1a1a2e; font-size: 0.95rem; }
.grant-program { color: #667eea; font-size: 0.88rem; margin: 2px 0; }
.grant-amount { font-size: 1.2rem; font-weight: 800; color: #28a745; margin: 4px 0; }
.grant-region { font-size: 0.8rem; color: #888; margin-bottom: 4px; }
.grant-desc { font-size: 0.82rem; color: #555; line-height: 1.4; }
.grant-total-row { margin-bottom: 12px; }
.grant-total-row label { display: block; font-weight: 700; color: #856404; font-size: 0.88rem; margin-bottom: 4px; }
.grant-total-input {
  width: 100%; padding: 10px 14px; font-size: 1.2rem; font-weight: 800;
  color: #28a745; background: #fff; border: 2px solid #28a745;
  border-radius: 8px; cursor: default; box-sizing: border-box;
}
.advocacy-link-row { margin-bottom: 10px; }
.advocacy-link {
  color: #667eea; font-weight: 600; font-size: 0.9rem; text-decoration: none;
  display: inline-block; padding: 8px 0; border-bottom: 2px dashed #667eea; transition: color 0.2s;
}
.advocacy-link:hover { color: #764ba2; border-bottom-color: #764ba2; }
.org-search-card { background: #fff; border: 1px solid #ddd; border-radius: 10px; padding: 16px; margin-top: 10px; }
.org-search-card h4 { margin: 0 0 6px 0; color: #1a1a2e; font-size: 1rem; }
.org-search-hint { font-size: 0.83rem; color: #777; margin-bottom: 10px; }
.org-search-wrapper { position: relative; }
.org-search-input {
  width: 100%; padding: 10px 14px; border: 2px solid #ddd; border-radius: 8px;
  font-size: 0.95rem; box-sizing: border-box; transition: border-color 0.2s;
}
.org-search-input:focus { outline: none; border-color: #667eea; }
.org-dropdown {
  position: absolute; top: 100%; left: 0; right: 0; background: #fff;
  border: 1px solid #ddd; border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); z-index: 100;
  display: none; max-height: 200px; overflow-y: auto;
}
.org-dropdown-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #f0f0f0; transition: background 0.15s;
}
.org-dropdown-item:hover { background: #f5f7ff; }
.org-item-name { font-weight: 600; color: #1a1a2e; font-size: 0.9rem; }
.org-item-count { font-size: 0.8rem; color: #888; }
.org-search-status { margin-top: 8px; font-size: 0.85rem; }
.org-new-hint, .org-found-hint { color: #555; }
.org-go-btn {
  margin-top: 10px; padding: 10px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff; border: none; border-radius: 8px; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: opacity 0.2s;
}
.org-go-btn:hover { opacity: 0.9; }
.org-go-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Employer Campaign Link Row */
.employer-campaign-link-row {
  margin-top: 8px;
}
.employer-campaign-link {
  display: inline-block;
  color: #667eea;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 7px 12px;
  background: #f0f3ff;
  border: 1.5px solid #c5cff8;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.employer-campaign-link:hover {
  background: #e0e6ff;
  color: #764ba2;
}

/* ===== Campaign Login Block ===== */
.campaign-login-block { max-width: 520px; margin: 0 auto; }
.login-form-card {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 14px;
  padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.login-form-card h3 { margin: 0 0 6px 0; color: #1a1a2e; }
.login-form-hint { color: #777; font-size: 0.88rem; margin-bottom: 18px; }
.login-form-group { margin-bottom: 14px; }
.login-form-group label { display: block; font-weight: 600; color: #333; font-size: 0.88rem; margin-bottom: 5px; }
.login-form-group input {
  width: 100%; padding: 10px 14px; border: 2px solid #ddd; border-radius: 8px;
  font-size: 0.95rem; box-sizing: border-box; transition: border-color 0.2s;
}
.login-form-group input:focus { outline: none; border-color: #667eea; }
.otp-send-btn, .otp-verify-btn {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff; border: none; border-radius: 8px; font-size: 1rem;
  font-weight: 600; cursor: pointer; margin-top: 6px; transition: opacity 0.2s;
}
.otp-send-btn:hover, .otp-verify-btn:hover { opacity: 0.9; }
.otp-send-btn:disabled, .otp-verify-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.otp-entry-block { margin-top: 16px; padding-top: 16px; border-top: 1px solid #eee; }
.otp-input { letter-spacing: 0.3em; font-size: 1.3rem !important; text-align: center; font-weight: 700; }
.otp-success { color: #28a745; }
.otp-error { color: #dc3545; }

/* ===== Authenticated Dashboard ===== */
.campaign-auth-dashboard { max-width: 700px; margin: 0 auto; }
.auth-welcome-banner {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff; border-radius: 12px; padding: 16px 20px; margin-bottom: 20px;
}
.auth-welcome-icon { font-size: 2rem; }
.auth-welcome-name { font-size: 1.1rem; font-weight: 700; }
.auth-welcome-sub { font-size: 0.85rem; opacity: 0.85; }
.auth-welcome-sub a { color: #fff; text-decoration: underline; }
.petition-signed-block {
  display: flex; align-items: center; gap: 12px;
  background: #d4edda; border: 1px solid #28a745; border-radius: 10px;
  padding: 14px 18px; margin-bottom: 16px;
}
.petition-signed-icon { font-size: 1.5rem; }
.petition-signed-text { color: #155724; font-weight: 600; }
.petition-action-block { margin-bottom: 20px; }
.petition-sign-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff; border: none; border-radius: 10px; font-size: 1.05rem;
  font-weight: 700; cursor: pointer; transition: opacity 0.2s;
}
.petition-sign-btn:hover { opacity: 0.9; }
.petition-sign-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.petition-sign-status { margin-top: 8px; font-size: 0.88rem; color: #dc3545; }

/* ===== Momentum Dashboard ===== */
.momentum-dashboard {
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.1rem;
}
.momentum-dashboard-header {
  text-align: left;
  margin-bottom: 0.9rem;
}
.momentum-dashboard-header h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: inherit;
}
.momentum-dashboard-header p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.45;
}
.momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.momentum-card {
  background: rgba(255,255,255,0.95);
  color: #1a1a2e;
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.momentum-card-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.35rem;
}
.momentum-card-value {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}
.momentum-card-count {
  font-size: 0.85rem;
  color: #555;
}
.momentum-card-count span {
  font-size: 1.25rem;
  font-weight: 900;
  color: #28a745;
  margin-right: 0.25rem;
}
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #9aa6c0;
  color: #6d7890;
  font-size: 11px;
  line-height: 1;
  margin-left: 0.35rem;
  cursor: help;
  position: relative;
  vertical-align: middle;
  background: #f8f9ff;
}
.tooltip-icon:focus {
  outline: 2px solid #667eea;
  outline-offset: 1px;
}
.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  width: min(380px, 90vw);
  background: #1a2033;
  color: #e8ecf4;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  font-size: 0.74rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Courier New', monospace;
  text-transform: none;
  letter-spacing: normal;
  white-space: pre-line;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(102, 126, 234, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}
.tooltip-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 4px);
  border: 6px solid transparent;
  border-top-color: #1a2033;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}
.tooltip-icon:hover::after,
.tooltip-icon:hover::before,
.tooltip-icon:focus::after,
.tooltip-icon:focus::before,
.tooltip-icon:active::after,
.tooltip-icon:active::before {
  opacity: 1;
  visibility: visible;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.momentum-calc-note {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #4f6658;
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

/* ===== Geo Campaign Hub ===== */
.geo-campaign-hub {
  background: #f8f9ff; border: 1px solid #e0e4ff;
  border-radius: 14px; padding: 22px; margin-top: 20px;
}
.geo-campaign-hub h3 { margin: 0 0 6px 0; color: #1a1a2e; }
.geo-campaign-hub > p { color: #555; font-size: 0.9rem; margin-bottom: 18px; }
.geo-tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.geo-tier-card { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 16px; text-align: center; box-shadow: 0 3px 12px rgba(0,0,0,0.05); }
.geo-tier-icon { font-size: 1.8rem; margin-bottom: 6px; }
.geo-tier-label { font-weight: 700; color: #333; font-size: 0.9rem; margin-bottom: 4px; }
.geo-tier-value { color: #667eea; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.geo-tier-meta { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.35px; color: #999; margin-bottom: 4px; }
.geo-tier-count { color: #666; font-size: 0.8rem; margin-bottom: 10px; line-height: 1.4; }
.geo-tier-note {
  font-size: 0.73rem;
  color: #566173;
  line-height: 1.4;
  background: #f3f6ff;
  border: 1px solid #dfe6ff;
  border-radius: 7px;
  padding: 0.4rem 0.5rem;
  margin-bottom: 0.55rem;
}
.geo-join-btn {
  width: 100%; padding: 9px 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff; border: none; border-radius: 7px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: opacity 0.2s;
}
.geo-join-btn:hover { opacity: 0.9; }
.geo-join-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.geo-join-status { margin-top: 8px; font-size: 0.8rem; }
.geo-status-success { color: #28a745; }

@media (max-width: 800px) {
  .momentum-grid { grid-template-columns: 1fr; }
}

/* ===== Create Campaign Card ===== */
.mc-create-card {
  background: white;
  border: 1.5px solid #e0e4f0;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.mc-create-desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.mc-create-form { display: flex; flex-direction: column; gap: 0.75rem; }
.mc-create-row { display: flex; flex-direction: column; gap: 0.5rem; }
.mc-create-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mc-create-group { display: flex; flex-direction: column; gap: 0.3rem; }
.mc-create-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #333;
}
.mc-create-group input,
.mc-create-group select {
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1a1a2e;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: #fafafa;
  box-sizing: border-box;
  width: 100%;
}
.mc-create-group input:focus,
.mc-create-group select:focus {
  outline: none;
  border-color: #28a745;
  background: white;
}
.mc-create-status {
  font-size: 0.83rem;
  min-height: 1.2rem;
}
.mc-create-btn {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}
.mc-create-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.mc-create-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

@media (max-width: 600px) {
  .mc-create-row-2 { grid-template-columns: 1fr; }
}

/* ===== Create Campaign CTA Section (Homepage) ===== */
.create-campaign-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
}
.create-campaign-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.create-campaign-cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}
.create-campaign-cta-text p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.create-campaign-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.create-campaign-cta-list li {
  font-size: 0.92rem;
  opacity: 0.9;
}
.create-campaign-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.create-campaign-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(40,167,69,0.4);
}
.create-campaign-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(40,167,69,0.5);
}
.create-campaign-cta-note {
  font-size: 0.78rem;
  opacity: 0.65;
  text-align: center;
}
@media (max-width: 768px) {
  .create-campaign-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .create-campaign-cta-list { align-items: center; }
  .create-campaign-cta-action { width: 100%; }
  .create-campaign-cta-btn { width: 100%; text-align: center; }
}

/* ===== Simulation Personas (Age 65) ===== */
.simulation-personas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.simulation-persona {
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 0.6rem 0.35rem;
  text-align: center;
}

.simulation-persona .persona-emoji {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.simulation-persona .persona-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a7a4a;
  margin-bottom: 0.15rem;
}

.simulation-persona .persona-amount {
  font-size: 0.8rem;
  font-weight: 700;
  color: #667eea;
}

