@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #eef8f2;
  --bg-soft: #f8fbf9;
  --text: #15322a;
  --text-soft: #4a6159;
  --text-muted: #73877d;
  --text-faint: #a8b9b3;
  --line: #dceee7;
  --line-soft: #eff8f3;
  --green-900: #15322a;
  --green-800: #1a4538;
  --green-700: #275946;
  --green-600: #2f6b55;
  --green-500: #78b49a;
  --green-400: #9ecfb9;
  --green-100: #d8eee4;
  --mint: #eafcf2;
  --cream: #fffdf7;
  --cream-2: #f6f4ea;
  --sage: #ddece2;
  --text-white: #fffefb;
  --shadow: rgba(40, 84, 51, 0.12);
  --shadow-soft: rgba(25, 55, 42, 0.06);
}

body {
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(185, 220, 200, 0.6);
}

.nav-wrapper {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.brand-icon span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--text-white);
  display: inline-block;
}

.brand-text {
  font-size: 27px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.05em;
}

.brand-text span {
  color: var(--green-600);
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover:after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--text-white);
  border-color: var(--green-700);
  box-shadow: 0 10px 24px var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--green-700);
}

.btn-light-border {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-900);
}

.btn-large {
  font-size: 15px;
  padding: 15px 28px;
}

.btn-block {
  width: 100%;
}

.compact {
  font-size: 13px;
  padding-inline: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s ease;
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.lang-selector:hover {
  border-color: var(--green-400);
  background: var(--mint);
}

.lang-selector:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(120, 180, 154, 0.34);
}

.hero-donation {
  background:
    linear-gradient(rgba(239, 248, 242, 0.82), rgba(247, 251, 248, 0.92)),
    url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&q=80') center/cover;
  padding-top: 92px;
  padding-bottom: 96px;
  position: relative;
}

.hero-donation:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 0%, rgba(255,255,255,.15) 100%),
    radial-gradient(circle at 72% 46%, rgba(120,180,154,.30) 0%, transparent 34%);
  pointer-events: none;
}

.hero-donation-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.icon-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green-500);
  border: 2px solid #eefcf5;
  display: inline-block;
}

.hero-copy h1 {
  margin-top: 24px;
  max-width: 620px;
  font-size: clamp(50px, 6.4vw, 82px);
  line-height: 0.89;
  letter-spacing: -0.08em;
  color: var(--green-900);
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}

.hero-text {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
}

.hero-copy .hero-text {
  position: relative;
}

.hero-copy .hero-text:before {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.donation-proof {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.donation-proof > div {
  position: relative;
}

.proof-number {
  display: block;
  line-height: 1;
  font-size: 30px;
  font-weight: 800;
  color: var(--green-900);
}

.proof-label {
  display: block;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-card-wrap {
  position: relative;
}

.hero-card-wrap:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid #d3ece5;
  background: transparent;
  left: -44px;
  top: -36px;
}

.hero-donation-card {
  background: linear-gradient(180deg, #173b32, #244b3b);
  border-radius: 34px;
  padding: 34px;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 36px 90px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-donation-card:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  right: -88px;
  top: -96px;
}

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

.top-card-row h2 {
  font-size: 30px;
  line-height: 1;
  margin-top: 8px;
}

.mini-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9ded2;
}

.status-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.3);
  color: #b7f3ca;
}

.donation-total {
  margin-top: 76px;
}

.total-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7d6ca;
}

.total-amount {
  display: block;
  margin-top: 12px;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.currency-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green-700);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

.total-caption {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #a5ccb8;
}

.donation-bars {
  margin-top: 50px;
}

.bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #d6ece2;
}

.bar-title {
  color: #d6ece2;
}

.bar-value {
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8f4cc;
  border: 1px solid rgba(255,255,255,.9);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(184, 244, 204, 0.52);
  animation: livePulse 2.6s infinite;
}

.bar-track {
  margin-top: 11px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #b9ecd9);
}

@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 7px transparent;
  }
}

.donation-features {
  margin-top: 36px;
}

.donation-features > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #eefbf4;
}

.donation-features > div + div {
  margin-top: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  color: #a2f4b8;
}

.hero-donation-card .donation-cta {
  margin-top: 42px;
  position: relative;
  min-height: 52px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #d1f2df 100%);
  color: var(--green-900);
  border-color: #fff;
  border-width: 2px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255,255,255,.65);
}

.hero-donation-card .donation-cta:after {
  content: "→";
  margin-left: 10px;
  font-size: 25px;
  line-height: 1;
}

.hero-donation-card .donation-cta:hover {
  background: linear-gradient(135deg, #fff, #b7ecd5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30), 0 0 0 4px rgba(255,255,255,.20);
}

.section-pad {
  padding: 88px 0;
}

.section-head.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head.centered h2,
.cause-section h2,
.donation-section h2,
.faq h2 {
  margin-top: 20px;
  color: var(--green-900);
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.section-copy {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.78;
}

.compact-eyebrow {
  font-size: 11px;
}

.cause-section {
  background: var(--bg-soft);
}

.cause-layout {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.cause-list {
  margin-top: 34px;
}

.cause-list article {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cause-list article + article {
  margin-top: 26px;
}

.list-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.cause-list h3 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--green-900);
}

.cause-list p {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.75;
}

.emergency-callout {
  margin-top: 34px;
  background: linear-gradient(160deg, #1b4335, #244d3b);
  color: var(--text-white);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.emergency-callout .callout-title {
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b6efd7;
}

.emergency-callout p {
  margin-top: 12px;
  font-size: 20px;
  color: var(--text-white);
}

.emergency-callout p strong {
  font-size: 30px;
}

.allocation-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.allocation-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
}

.allocation-list b {
  color: #baf0ce;
}

.impact-photo {
  min-height: 420px;
}

.photo-frame {
  min-height: 440px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 59, 50, 0.76), rgba(23, 59, 50, 0.36)),
    url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&q=80') center/cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 28px 90px var(--shadow-soft);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .65;
}

.photo-overlay {
  padding: 34px;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.photo-overlay .small-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-overlay h3 {
  font-size: 34px;
  line-height: 1.04;
  margin-top: 14px;
}

.photo-frame .photo-overlay h3:after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 16px;
  border-radius: 3px;
  background: var(--green-500);
}

.photo-overlay p {
  margin-top: 14px;
  color: #dcf3e9;
}

.impact-section {
  background: linear-gradient(180deg, #eefaf6, #fbfdfb);
}

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

.impact-card {
  background: var(--text-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 12px 34px var(--shadow-soft);
}

.impact-card.highlighted {
  background: var(--green-900);
  border-color: var(--green-700);
  color: var(--text-white);
}

.impact-card .icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 30px;
  font-weight: 900;
}

.impact-card.highlighted .icon-wrap {
  background: rgba(255,255,255,.12);
  color: var(--text-white);
}

.impact-card h3 {
  margin-top: 24px;
  font-size: 25px;
  line-height: 1.2;
}

.impact-card p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.impact-card.highlighted p {
  color: #c7ebe1;
}

.donation-section {
  background: var(--cream);
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(300px, 0.75fr);
  gap: 40px;
  align-items: center;
}

.donation-panel {
  background: var(--text-white);
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: 42px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.amount-options {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.amount-option {
  appearance: none;
  -webkit-appearance: none;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--line-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: var(--green-900);
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: all .2s ease;
}

.amount-option:hover,
.amount-option:focus,
.amount-option:focus-visible {
  border-color: var(--green-700);
  color: var(--green-900);
  outline: none;
  transform: none;
}

.amount-option.active {
  background: var(--green-900);
  color: var(--text-white);
}

.amount-option.active:focus,
.amount-option.active:focus-visible {
  box-shadow: 0 0 0 3px rgba(120, 180, 154, 0.34);
}

.wompi-box {
  margin-top: 38px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #edf8f1, #fff);
}

.wompi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-900);
}

.secure-tag {
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 99px;
  background: #d9f4e3;
  color: var(--green-900);
}

.wompi-button {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.wompi-button:before {
  content: "";
  position: absolute;
  inset: -120%;
  transform: rotate(10deg);
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.30), transparent 55%);
  transition: transform .6s ease;
}

.wompi-button:hover:before {
  transform: translateX(70%) rotate(10deg);
}

.wompi-box .btn {
  margin-top: 24px;
}

.payment-method-selector {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.payment-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s ease;
}

.payment-method-btn:hover {
  border-color: var(--green-400);
  background: var(--mint);
}

.payment-method-btn.active {
  border-color: var(--green-600);
  background: linear-gradient(180deg, #eafcf2, #f0fdf6);
  color: var(--green-900);
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.payment-icon {
  font-size: 20px;
}

.payment-currency {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green-700);
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 6px;
  text-transform: uppercase;
}

.payment-content {
  animation: fadeIn 0.3s ease;
}

.payment-content.hidden {
  display: none;
}

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

.paypal-box {
  margin-top: 38px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #edf8f1, #fff);
}

.paypal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-900);
  margin-bottom: 20px;
}

.paypal-iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cream-2);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
}

.donation-context {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff0e8 0%, #fff9f4 100%);
  border: 2px solid #ffb8a0;
  box-shadow: 0 8px 24px rgba(255, 184, 160, 0.25), 0 2px 8px rgba(255, 184, 160, 0.15);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.donation-context::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 184, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.context-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(255, 184, 160, 0.3));
  animation: pulse 3s ease-in-out infinite;
}

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

.context-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.context-content h4 {
  font-size: 16px;
  font-weight: 900;
  color: #c04a2e;
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.context-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 14px;
  margin-top: 0;
  font-weight: 500;
}

.context-link {
  font-size: 13px;
  font-weight: 800;
  color: #c04a2e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 184, 160, 0.15);
}

.context-link:hover {
  color: #a03820;
  background: rgba(255, 184, 160, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
}

.micro-copy {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.donation-summary {
  display: flex;
  align-items: center;
}

.summary-card {
  width: 100%;
  background: var(--green-900);
  color: var(--text-white);
  border-radius: 30px;
  padding: 38px;
  border: 1px solid var(--green-600);
}

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

.summary-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7d6ca;
}

.status-pill.small {
  padding: 6px 12px;
  font-size: 10px;
}

.summary-card h3 {
  margin-top: 28px;
  font-size: 34px;
  line-height: 1.1;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 13px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: #d8eeea;
}

.summary-row:first-of-type {
  margin-top: 26px;
}

.summary-row span:last-child {
  font-weight: 800;
  color: var(--text-white);
}

.divider {
  height: 1px;
  background: rgba(255,255,255,.24);
  margin: 26px 0 24px;
}

.summary-card .btn {
  color: var(--text-white);
  border-color: var(--text-white);
}

.summary-card .summary-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-white);
  color: var(--green-900);
  border-color: var(--text-white);
  min-height: 44px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(21, 50, 42, 0.40);
}

.summary-card .summary-continue:hover {
  background: #dff8e9;
  color: var(--green-900);
}

.faq {
  background: var(--bg-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(500px, 1fr);
  gap: 48px;
}

.faq h2 {
  font-size: clamp(34px, 3.7vw, 52px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-list details {
  background: var(--text-white);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  color: var(--green-900);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.footer {
  background: #102a22;
  color: #d7e6e0;
  padding: 88px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(210px, .6fr) minmax(260px, .78fr);
  gap: 72px;
}

.footer-brand .brand-text {
  color: var(--text-white);
}

.footer-text {
  max-width: 330px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.88;
  color: #afded1;
}

.footer h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: #afded1;
}

.footer-bottom {
  margin-top: 60px;
  font-size: 12px;
  color: #91b7a8;
}

@media (max-width: 900px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .nav-wrapper {
    min-height: auto;
    padding: 20px 0;
  }

  .main-nav {
    display: none;
  }

  .hero-donation-grid,
  .cause-layout,
  .faq-layout,
  .footer-grid,
  .impact-grid,
  .donation-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 12vw, 74px);
  }

  .hero-text {
    font-size: 20px;
  }

  .donation-proof {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-donation {
    padding-top: 60px;
  }

  .hero-card-wrap:before {
    display: none;
  }

  .section-pad {
    padding: 60px 0;
  }
}
