/* ===== FONTS ===== */
/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== CSS VARIABLES ===== */
:root {
  --green-deep: #1B3D2F;
  --green-mid: #2D5A3F;
  --green-light: #3D7A55;
  --cream: #FDF6EC;
  --cream-dark: #F5EBD8;
  --amber: #D4932A;
  --amber-light: #E8B04A;
  --amber-dark: #A87220;
  --text-dark: #1A1A18;
  --text-mid: #3D3D38;
  --text-muted: #6B6B60;
  --white: #FFFFFF;
  --border-light: rgba(27, 61, 47, 0.12);
  --border-mid: rgba(27, 61, 47, 0.25);
}

/* ===== BASE ===== */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(61, 122, 85, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 100%, rgba(212, 147, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-content {}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 42ch;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.stat {
  padding: 1.5rem 1.75rem;
}

.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ===== SHARED SECTION STYLES ===== */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 56ch;
  line-height: 1.75;
}

/* ===== IMPACT ===== */
.impact {
  background: var(--cream);
  padding: 6rem 2rem;
}

.impact-header {
  max-width: 1140px;
  margin: 0 auto 4rem;
}

.pillars {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,61,47,0.08);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber);
}

.pillar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== SUPPORT ===== */
.support {
  background: var(--green-deep);
  color: var(--white);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.support::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212, 147, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(61, 122, 85, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.support-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.support-text .section-eyebrow { color: var(--amber); }
.support-text .section-heading { color: var(--white); }
.support-text p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75; }

.support-checklist {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.support-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.support-card {
  position: sticky;
  top: 2rem;
}

.support-card-inner {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.card-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.card-footer-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== LOCAL ===== */
.local {
  background: var(--cream-dark);
  padding: 6rem 2rem;
}

.local-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.local-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 52ch;
}

.partner-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 120px;
}

.flow-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
}

.flow-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.4;
}

.flow-arrow { color: var(--green-mid); flex-shrink: 0; }

.partners-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.partner-orgs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.org-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.org-item:last-child { border-bottom: none; }

.org-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}

.org-stat {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== TRACKER ===== */
.tracker {
  background: var(--cream);
  padding: 5rem 2rem;
}

.tracker-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.tracker-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tracker-header .section-eyebrow { margin-bottom: 0.75rem; }
.tracker-header .section-heading { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.tracker-header .section-sub { margin: 0 auto; text-align: center; }

.tracker-stats {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(27,61,47,0.06);
}

.tracker-stat {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}

.tracker-divider {
  width: 1px;
  background: var(--border-light);
  flex-shrink: 0;
}

.tracker-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.tracker-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.tracker-src {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tracker-ctas {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.tracker-dash-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.tracker-dash-link:hover { color: var(--green-deep); }

.tracker-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .tracker-stats { flex-direction: column; }
  .tracker-divider { width: auto; height: 1px; }
  .tracker-stat { padding: 1.75rem 1.5rem; }
}

/* ===== CLOSING ===== */
.closing {
  background: var(--green-deep);
  color: var(--white);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212, 147, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.closing-attribution {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
}

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 2.5rem;
  opacity: 0.7;
}

.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 58ch;
  margin: 0 auto 1.5rem;
}

.closing-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
  background: #0F2A1E;
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 36ch;
}

.footer-meta { text-align: right; }
.footer-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .support-inner,
  .local-inner { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; }
  .stat-divider { width: 1px; height: auto; margin: 0; }
  .footer-inner { flex-direction: column; text-align: left; }
  .footer-meta { text-align: left; }
  .support-card { position: static; }
  .partner-flow { flex-direction: column; align-items: flex-start; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .hero { padding: 0; }
  .hero-inner { padding: 4rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }
  .impact, .support, .tracker, .local, .closing { padding: 4rem 1.5rem; }
  .support-card-inner { padding: 1.75rem; }
}

/* ===== CHECKOUT MODAL ===== */
.btn-donate-open {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.btn-donate-open:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-donate-open:active {
  transform: translateY(0);
}

.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 30, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.checkout-modal {
  position: relative;
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: var(--text-dark);
  background: var(--cream-dark);
}

.modal-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.25s;
}

.progress-step.active .step-circle {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
}

.progress-step.completed .step-circle {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: var(--white);
}

.step-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: var(--green-deep);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  margin: 0 0.5rem;
  margin-bottom: 1.2rem;
  transition: background 0.25s;
}

.progress-line.filled {
  background: var(--green-mid);
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.checkout-step { width: 100%; }
.checkout-step.hidden { display: none; }

.step-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: 1.1rem 0.75rem;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  transition: all 0.2s;
}

.amount-btn small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

.amount-btn:hover {
  border-color: var(--green-mid);
  background: var(--cream);
}

.amount-btn.selected {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
}

.amount-btn.selected small {
  color: rgba(255,255,255,0.7);
}

/* Custom amount */
.custom-amount-wrap {
  margin-bottom: 1.25rem;
}

.custom-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.custom-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.custom-input-wrap:focus-within {
  border-color: var(--green-mid);
}

.currency-symbol {
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.custom-amount-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
}

.per-mo {
  padding: 0.75rem 1rem 0.75rem 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Impact preview */
.impact-preview {
  display: flex;
  gap: 1.5rem;
  background: var(--green-deep);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.impact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.impact-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.impact-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Buttons */
.btn-next,
.btn-paypal-redirect {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-next:hover:not(:disabled),
.btn-paypal-redirect:hover:not(:disabled) {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-next:disabled,
.btn-paypal-redirect:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-back {
  padding: 0.9rem 1.5rem;
  background: none;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-back:hover {
  border-color: var(--border-mid);
  color: var(--text-dark);
}

.step-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.step-actions .btn-next {
  flex: 1;
}

/* Form fields */
.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--green-mid);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Confirm summary */
.confirm-summary {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

.confirm-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.confirm-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.confirm-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}

.confirm-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.75rem 0;
}

.confirm-impact {
  background: var(--cream);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 0;
}

.pay-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.btn-paypal-redirect svg {
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Loading spinner */
.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border-light);
  border-top-color: var(--green-deep);
  border-radius: 50%;
  margin: 2rem auto 1rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  background: var(--cream);
  padding: 6rem 2rem;
  min-height: 80vh;
}

.success-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  margin: 0 auto 1.5rem;
  width: 64px;
  height: 64px;
}

.success-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.success-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.success-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2rem;
}

.subscription-box {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.subscription-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.subscription-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.btn-setup-subscription {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--amber);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-setup-subscription:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.subscription-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.85rem;
  line-height: 1.6;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 2.5rem;
  text-align: left;
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.next-step-item:last-child { border-bottom: none; }

.next-step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.next-step-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.success-link {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}

.success-link:hover { text-decoration: underline; }

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-back-home,
.btn-view-impact {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-back-home {
  background: none;
  border: 2px solid var(--border-mid);
  color: var(--text-mid);
}

.btn-back-home:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
}

.btn-view-impact {
  background: var(--green-deep);
  color: var(--white);
}

.btn-view-impact:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ===== DONATE COMPLETE ===== */
.dc-section {
  background: var(--cream);
  padding: 6rem 2rem;
  min-height: 80vh;
}

.dc-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.dc-icon {
  margin: 0 auto 1.5rem;
  width: 72px;
  height: 72px;
}

.dc-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.dc-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.dc-amount-card {
  display: inline-block;
  background: var(--green-deep);
  border-radius: 20px;
  padding: 1.75rem 2.5rem;
  margin-bottom: 2rem;
  min-width: 200px;
}

.dc-amount-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.dc-amount-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.dc-type-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.dc-impact-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.dc-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.dc-impact-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}

.dc-impact-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dc-email-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.dc-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}

.dc-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dc-btn-home,
.dc-btn-impact {
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.dc-btn-home {
  background: none;
  border: 2px solid var(--border-mid);
  color: var(--text-mid);
}

.dc-btn-home:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
}

.dc-btn-impact {
  background: var(--green-deep);
  color: var(--white);
}

.dc-btn-impact:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.dc-tx-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .checkout-modal { padding: 2rem 1.25rem; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .step-actions { flex-wrap: wrap; }
  .success-actions { flex-direction: column; }
  .dc-impact-row { gap: 2rem; }
  .dc-actions { flex-direction: column; }
}