:root {
  --color-primary: #28a745;
  --color-primary-dark: #1f8536;
  --color-bg: #f4f7f5;
  --color-white: #ffffff;
  --color-text: #1d2a22;
  --color-muted: #5d6b63;
  --color-border: #d8e2dc;
  --shadow-soft: 0 18px 42px rgba(17, 46, 29, 0.15);
  --shadow-card: 0 12px 28px rgba(17, 46, 29, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fcf9 0%, #eef4ef 100%);
  line-height: 1.6;
}

body.page-loading {
  overflow: hidden;
}

body.page-loading .site-header,
body.page-loading main,
body.page-loading #site-footer {
  opacity: 0;
  transform: translateY(8px);
}

body.page-ready .site-header,
body.page-ready main,
body.page-ready #site-footer {
  animation: page-handoff-enter 0.62s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(110, 209, 148, 0.26) 0%, rgba(110, 209, 148, 0) 42%),
    radial-gradient(circle at 84% 24%, rgba(60, 172, 107, 0.22) 0%, rgba(60, 172, 107, 0) 44%),
    linear-gradient(145deg, rgba(10, 40, 24, 0.94) 0%, rgba(16, 61, 36, 0.9) 52%, rgba(26, 86, 50, 0.9) 100%);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: loader-blob 11s ease-in-out infinite alternate;
}

.page-loader::before {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  left: -8%;
  top: -8%;
  background: radial-gradient(circle, rgba(134, 233, 168, 0.3) 0%, rgba(134, 233, 168, 0.02) 72%);
}

.page-loader::after {
  width: min(38vw, 300px);
  height: min(38vw, 300px);
  right: -7%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(83, 201, 130, 0.22) 0%, rgba(83, 201, 130, 0.02) 72%);
  animation-direction: alternate-reverse;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-card {
  position: relative;
  width: min(94vw, 420px);
  border-radius: 26px;
  padding: 1.35rem 1.1rem 1.2rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(216, 255, 229, 0.32);
  box-shadow: 0 22px 60px rgba(2, 17, 9, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #effff5;
  transform: translateY(0) scale(1);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
  animation: loader-card-enter 0.7s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.page-loader.is-hidden .page-loader-card {
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
}

.loader-orbit {
  width: 86px;
  height: 86px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}

.loader-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(198, 255, 219, 0.4);
  animation: loader-spin 2.7s linear infinite;
}

.loader-orbit span:nth-child(2) {
  inset: 9px;
  border-color: rgba(165, 244, 193, 0.62);
  animation-duration: 1.9s;
  animation-direction: reverse;
}

.loader-core {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #9af2bc 0%, #40b56c 58%, #24884d 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(120, 232, 160, 0.46);
  animation: loader-pulse 1.9s ease-in-out infinite;
}

.loader-core i {
  color: #f4fff7;
  font-size: 1.1rem;
}

.loader-title {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.loader-subtitle {
  margin: 0.24rem 0 0.92rem;
  color: rgba(235, 255, 243, 0.88);
  font-size: 0.9rem;
}

.loader-status {
  margin: 0;
  color: rgba(216, 255, 230, 0.94);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.loader-fact {
  margin: 0.2rem 0 0.8rem;
  color: rgba(221, 255, 234, 0.86);
  font-size: 0.79rem;
}

.loader-hint {
  margin: 0.52rem 0 0;
  color: rgba(229, 255, 238, 0.9);
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.loader-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loader-retry {
  margin-top: 0.45rem;
  border: 1px solid rgba(198, 255, 219, 0.58);
  background: rgba(240, 255, 246, 0.12);
  color: #e9ffef;
  border-radius: 999px;
  padding: 0.38rem 0.86rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.24s ease;
}

.loader-retry.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loader-retry:hover {
  background: rgba(240, 255, 246, 0.24);
}

.loader-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(210, 255, 225, 0.22);
  border: 1px solid rgba(210, 255, 225, 0.34);
  overflow: hidden;
}

.loader-track span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, #80e9a9 0%, #b9ffd3 52%, #7adfa1 100%);
  box-shadow: 0 0 14px rgba(136, 242, 173, 0.6);
  animation: loader-progress 1.45s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loader-card-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(120, 232, 160, 0.44);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(120, 232, 160, 0);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(285%);
  }
}

@keyframes loader-blob {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes page-handoff-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.tagline {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-ghost,
.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
}

.btn-light {
  border: 1px solid var(--color-border);
}

.btn-large {
  padding: 0.85rem 1.5rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.85rem;
}

.site-header {
  position: relative;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 0.8rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(14, 49, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(0);
  animation: nav-enter 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) both;
  transition: margin-top 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  margin-top: 0.35rem;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 14px 34px rgba(14, 49, 32, 0.15);
  border-color: rgba(201, 223, 208, 0.8);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f8ec;
  color: var(--color-primary);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-12deg) scale(1.05);
  box-shadow: 0 8px 18px rgba(22, 96, 51, 0.2);
}

.nav-toggle {
  border: 1px solid #d4e4d9;
  background: #f8fcf9;
  color: var(--color-text);
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle-box {
  width: 16px;
  height: 13px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.25, 1), opacity 0.22s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 16px rgba(20, 63, 39, 0.18);
}

.nav-toggle[aria-expanded="true"] {
  background: #1f7d35;
  color: #fff;
  border-color: #1f7d35;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta {
  display: none;
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.9rem;
  list-style: none;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(15, 40, 27, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top center;
  filter: blur(1px);
  clip-path: inset(0 0 100% 0 round 14px);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.34s cubic-bezier(0.2, 0.9, 0.2, 1), clip-path 0.34s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.nav-links.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 14px);
  pointer-events: auto;
}

.nav-links.is-closing {
  opacity: 0;
  visibility: visible;
  transform: translateY(-10px) scale(0.98);
  filter: blur(1px);
  clip-path: inset(0 0 100% 0 round 14px);
  pointer-events: none;
}

.nav-links li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-links.show li {
  opacity: 1;
  transform: translateY(0);
}

.nav-links.is-closing li {
  opacity: 0;
  transform: translateY(-6px);
}

.nav-links.show li:nth-child(1) {
  transition-delay: 0.03s;
}

.nav-links.show li:nth-child(2) {
  transition-delay: 0.06s;
}

.nav-links.show li:nth-child(3) {
  transition-delay: 0.09s;
}

.nav-links.show li:nth-child(4) {
  transition-delay: 0.12s;
}

.nav-links.show li:nth-child(5) {
  transition-delay: 0.15s;
}

.nav-links a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-weight: 500;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.nav-links a:hover {
  background: #eaf7ed;
  color: var(--color-primary-dark);
  transform: translateX(2px);
}

.nav-links a.active {
  background: #e7f9ec;
  color: #1f7d35;
  font-weight: 600;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(4, 14, 9, 0.35);
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.nav-backdrop.is-closing {
  opacity: 0;
  visibility: visible;
}

@keyframes nav-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: clamp(620px, 90vh, 840px);
  margin-top: -2.4rem;
  padding-top: 7rem;
  background-image: url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(106deg, rgba(8, 34, 20, 0.85) 20%, rgba(13, 56, 32, 0.45) 60%, rgba(15, 68, 39, 0.15) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 3rem;
}

.hero-copy {
  color: #f5fff8;
  max-width: 560px;
  animation: slide-up 0.9s ease both;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero-copy p {
  color: rgba(241, 248, 244, 0.92);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.donation-card {
  justify-self: stretch;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.85);
  animation: float-card 3.8s ease-in-out infinite;
}

.card-tag {
  display: inline-block;
  background: #e7f9ec;
  color: #1b7f34;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.donation-card h3,
.cause-card h3 {
  margin: 0.75rem 0 0.45rem;
  line-height: 1.3;
}

.progress-wrap,
.progress-meta {
  margin-top: 0.8rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e6eee8;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #33c85b, #1f8f3a);
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.impact {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.trust-proof {
  position: relative;
  z-index: 6;
  margin-top: -1.5rem;
  padding-bottom: 1.2rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.trust-band {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid #e7efe9;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.trust-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.trust-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a7f34;
  background: #e7f7eb;
}

.trust-item h3 {
  margin: 0;
  font-size: 1rem;
}

.trust-item p {
  margin: 0.2rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.transparency-card {
  background: linear-gradient(150deg, #f8fff9 0%, #e9f8ed 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #d6ecd9;
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.transparency-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.transparency-card p {
  color: #4f6057;
}

.donation-ticker {
  margin-top: 0.9rem;
  background: #11271a;
  color: #e9f5ed;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  box-shadow: 0 10px 24px rgba(10, 30, 19, 0.2);
}

.donation-ticker i {
  color: #7ce09a;
}

.donation-ticker p {
  margin: 0;
  font-size: 0.92rem;
}

.impact-grid {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.impact-item {
  padding: 0.9rem;
  border: 1px solid #e7efe9;
  border-radius: var(--radius-md);
  text-align: center;
}

.impact-item i {
  color: var(--color-primary);
  font-size: 1.15rem;
}

.impact-item h3 {
  margin: 0.35rem 0;
  font-size: 1.45rem;
}

.impact-item p {
  margin: 0;
  color: var(--color-muted);
}

.about-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  position: relative;
}

.about-collage img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-height: 170px;
}

.about-stamp {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 39, 26, 0.86);
  color: #eaf5ee;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.about-stamp i {
  color: #7ce09a;
}

.img-large {
  grid-column: span 2;
  min-height: 260px;
}

.about-content h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.about-content p {
  color: var(--color-muted);
}

.about-mission-note {
  margin: 1rem 0 0.6rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid #d8e9dd;
  background: #f6faf7;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.about-mission-note i {
  color: var(--color-primary);
  margin-top: 0.1rem;
}

.about-mission-note p {
  margin: 0;
  color: #355245;
  font-weight: 500;
}

.about-content ul {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.about-content li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.about-content li i {
  color: var(--color-primary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.about-stats article {
  background: #ffffff;
  border: 1px solid #dfebe2;
  border-radius: 14px;
  padding: 0.55rem 0.65rem;
  text-align: center;
}

.about-stats h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #195f2f;
}

.about-stats p {
  margin: 0.12rem 0 0;
  font-size: 0.8rem;
  color: #5a6c61;
}

.about-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.4rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.45rem);
}

.section-head p {
  margin: 0.6rem auto 0;
  max-width: 680px;
  color: var(--color-muted);
}

.causes-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cause-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #e9f6ed;
  border: 1px solid #cde8d4;
  color: #265f3a;
  font-size: 0.84rem;
  font-weight: 600;
}

.causes-grid {
  display: grid;
  gap: 1rem;
}

.cause-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #e8efe9;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cause-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(25, 63, 42, 0.2);
}

.cause-card img {
  height: 210px;
}

.cause-body {
  padding: 1rem;
}

body[data-page="causes"] .cause-body {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

body[data-page="causes"] .cause-body p {
  margin: 0;
}

body[data-page="causes"] .cause-foot {
  margin-bottom: 0.2rem;
}

body[data-page="causes"] .cause-body .btn {
  margin-top: auto;
}

body[data-page="causes"] .cause-card {
  display: flex;
  flex-direction: column;
}

body[data-page="causes"] .cause-card img {
  height: 200px;
}

body[data-page="causes"] .progress-meta {
  margin: 0.1rem 0 0;
}

body[data-page="causes"] .progress-legend {
  margin: 0.2rem 0;
  font-size: 0.87rem;
}

.cause-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  background: #eef3ff;
  color: #3c57a8;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.urgency-pill.urgency-high {
  background: #fff2ea;
  color: #a64d1e;
}

.progress-legend {
  margin: 0.55rem 0 0.7rem;
  color: #4f6057;
  font-size: 0.9rem;
}

.cause-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #4d5f54;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.cause-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cause-foot i {
  color: #1f8d3b;
}

.featured-cause {
  border: 1px solid #c8e7d0;
  box-shadow: 0 20px 36px rgba(23, 66, 42, 0.2);
}

.featured-cause .cause-body {
  padding: 1.15rem;
}

.causes-bottom-cta {
  margin-top: 1.2rem;
  background: linear-gradient(130deg, #e9f7ec 0%, #f8fcf9 100%);
  border: 1px solid #d4ebda;
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.causes-bottom-cta p {
  margin: 0;
  color: #355245;
  max-width: 620px;
}

.how-it-works,
.stories-section,
.faq-section {
  padding-top: 0;
}

.steps-grid,
.stories-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.step-card,
.story-card {
  background: #fff;
  border: 1px solid #e1ede4;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e8f8ec;
  color: #1f7d35;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.step-card h3,
.story-card h3 {
  margin: 0 0 0.45rem;
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
}

.story-quote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: #2a4435;
}

.story-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  color: #54655c;
}

.story-meta strong {
  color: #173a25;
}

.faq-grid {
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #deebe1;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #183d27;
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--color-muted);
}

.faq-item[open] {
  border-color: #b9dcc3;
}

.inner-page .site-header {
  padding-bottom: 1rem;
}

.inner-page .page-section {
  padding: 1.9rem 0;
}

.inner-page .page-section > h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.8vw, 1.95rem);
  line-height: 1.2;
}

.inner-page .content-grid {
  align-items: start;
}

.inner-page .panel {
  padding: 0.9rem;
}

.inner-page .panel h2 {
  margin: 0 0 0.42rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.inner-page .panel h3 {
  margin: 0 0 0.16rem;
  font-size: 0.99rem;
}

.inner-page .panel p {
  margin: 0.32rem 0 0;
}

.inner-page .mini-cards article {
  padding: 0.78rem;
}

.inner-page .stat-strip article {
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.12rem;
}

.inner-page .utility-cta {
  margin-top: 0.85rem;
}

.page-hero {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  color: #f1fbf3;
  background:
    linear-gradient(120deg, rgba(13, 47, 29, 0.88), rgba(26, 90, 51, 0.72)),
    url("https://images.unsplash.com/photo-1469571486292-b53601020c0f?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow-card);
}

.page-hero h1 {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(1.7rem, 4.8vw, 2.8rem);
  line-height: 1.2;
}

.page-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(236, 248, 239, 0.92);
}

.crumbs {
  font-size: 0.9rem;
  color: rgba(235, 249, 241, 0.86);
}

.page-section {
  padding: 2.2rem 0;
}

.page-section h2 {
  margin-top: 0;
  line-height: 1.2;
}

.content-grid {
  display: grid;
  gap: 1rem;
}

.panel {
  background: #fff;
  border: 1px solid #deece2;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.panel p {
  color: #55665d;
}

.mini-cards {
  display: grid;
  gap: 0.8rem;
}

.mini-cards article {
  background: #fff;
  border: 1px solid #dfebe2;
  border-radius: 14px;
  padding: 0.85rem;
}

.mini-cards h3 {
  margin: 0 0 0.2rem;
}

body[data-page="about"] .about-card-grid {
  display: grid;
  gap: 0.68rem;
}

body[data-page="about"] .about-content-grid {
  align-items: start;
}

body[data-page="about"] .about-card {
  background: #fff;
  border: 1px solid #dce9df;
  border-radius: 14px;
  padding: 0.78rem 0.82rem;
  box-shadow: 0 8px 20px rgba(19, 52, 34, 0.08);
  display: grid;
  gap: 0.28rem;
  align-content: start;
}

body[data-page="about"] .about-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f7ed;
  border: 1px solid #cce4d2;
  color: #1f7d35;
  font-size: 0.78rem;
  margin-bottom: 0.06rem;
}

body[data-page="about"] .about-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  color: #1d3f2a;
}

body[data-page="about"] .about-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #52645a;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.value-list i {
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-strip article {
  background: linear-gradient(140deg, #e7f7eb 0%, #f8fcf9 100%);
  border: 1px solid #cfe8d6;
  border-radius: 14px;
  padding: 0.85rem;
  text-align: center;
}

.stat-strip h3 {
  margin: 0;
  color: #16622f;
}

.stat-strip p {
  margin: 0.1rem 0 0;
  color: #53645b;
}

.timeline {
  border-left: 2px solid #cfe7d6;
  padding-left: 1rem;
  display: grid;
  gap: 0.85rem;
}

.timeline article h3 {
  margin: 0;
  font-size: 1.02rem;
}

.timeline article p {
  margin: 0.2rem 0 0;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-form {
  background: #fff;
  border: 1px solid #deece2;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  margin-bottom: 0.6rem;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  margin-bottom: 0.6rem;
  background: #fff;
}

body[data-page="contact"] .contact-route-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="contact"] .contact-route-card {
  background: #fff;
  border: 1px solid #dceadf;
  border-radius: 15px;
  padding: 0.86rem;
  box-shadow: 0 10px 22px rgba(18, 53, 34, 0.08);
  display: grid;
  gap: 0.35rem;
}

body[data-page="contact"] .contact-route-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cee6d4;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="contact"] .contact-route-card h3 {
  margin: 0;
  color: #1d3f2a;
  font-size: 1rem;
}

body[data-page="contact"] .contact-route-card p {
  margin: 0;
  color: #57695f;
  font-size: 0.89rem;
}

body[data-page="contact"] .contact-route-card a {
  color: #146633;
  font-weight: 600;
  font-size: 0.9rem;
}

body[data-page="contact"] .contact-form-enhanced .consent-row {
  margin-bottom: 0.7rem;
}

body[data-page="contact"] .contact-desks {
  margin-top: 0.9rem;
}

body[data-page="contact"] .contact-faq-grid {
  gap: 0.7rem;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #deece2;
  border-radius: 16px;
  overflow: hidden;
}

.report-table th,
.report-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #ecf3ee;
  text-align: left;
}

.report-table th {
  background: #f1f8f3;
  color: #234a33;
}

body[data-page="reports"] .reports-summary-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="reports"] .reports-summary-card {
  background: #fff;
  border: 1px solid #dbe9de;
  border-radius: 15px;
  padding: 0.9rem;
  box-shadow: 0 10px 24px rgba(18, 53, 34, 0.08);
  display: grid;
  gap: 0.32rem;
}

body[data-page="reports"] .reports-summary-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde5d3;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="reports"] .reports-summary-card h3 {
  margin: 0;
  color: #1c4029;
}

body[data-page="reports"] .reports-summary-card p {
  margin: 0;
  color: #55685d;
  font-size: 0.9rem;
}

body[data-page="reports"] .reports-note-grid {
  margin-top: 0.8rem;
}

body[data-page="reports"] .reports-steps {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

body[data-page="reports"] .reports-steps article {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="reports"] .reports-steps h3 {
  margin: 0;
  font-size: 0.97rem;
  color: #1f3f2b;
}

body[data-page="reports"] .reports-steps p {
  margin: 0.22rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="reports"] .reports-contact-box {
  margin-top: 0.8rem;
  background: #f8fcf9;
  border: 1px solid #dae9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="reports"] .reports-contact-box h3 {
  margin: 0 0 0.45rem;
  color: #1f3f2c;
  font-size: 0.98rem;
}

body[data-page="thank-you"] .thank-you-note {
  margin: 0.8rem 0;
  display: grid;
  gap: 0.45rem;
}

body[data-page="thank-you"] .thank-you-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f4faf6;
  border: 1px solid #d6e9dc;
  border-radius: 10px;
  padding: 0.5rem 0.62rem;
  color: #355548;
  font-size: 0.87rem;
}

body[data-page="thank-you"] .thank-you-note i {
  color: #1f7d35;
}

body[data-page="thank-you"] .thank-you-steps {
  display: grid;
  gap: 0.55rem;
}

body[data-page="thank-you"] .thank-you-step-card {
  background: #fff;
  border: 1px solid #dceadf;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="thank-you"] .thank-you-step-card h3 {
  margin: 0;
  color: #1f402c;
  font-size: 0.96rem;
}

body[data-page="thank-you"] .thank-you-step-card p {
  margin: 0.2rem 0 0;
  color: #596b61;
  font-size: 0.88rem;
}

body[data-page="thank-you"] .thank-you-actions {
  display: grid;
  gap: 0.8rem;
}

body[data-page="thank-you"] .thank-you-action-card {
  background: #fff;
  border: 1px solid #d9e8dd;
  border-radius: 15px;
  padding: 0.85rem;
  display: grid;
  gap: 0.32rem;
  box-shadow: 0 10px 22px rgba(19, 51, 33, 0.08);
}

body[data-page="thank-you"] .thank-you-action-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde5d3;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="thank-you"] .thank-you-action-card h3 {
  margin: 0;
  color: #1e402c;
  font-size: 1rem;
}

body[data-page="thank-you"] .thank-you-action-card p {
  margin: 0;
  color: #58695f;
  font-size: 0.89rem;
}

body[data-page="thank-you"] .thank-you-action-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  border: 1px solid #cfe4d5;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  width: fit-content;
  color: #146633;
  font-weight: 600;
  font-size: 0.9rem;
}

body[data-page="thank-you"] .thank-you-step-card,
body[data-page="thank-you"] .thank-you-action-card {
  min-height: 100%;
}

body[data-page="privacy"] .privacy-summary-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="privacy"] .privacy-summary-card {
  background: #fff;
  border: 1px solid #dbe9de;
  border-radius: 15px;
  padding: 0.9rem;
  box-shadow: 0 10px 22px rgba(18, 53, 34, 0.08);
  display: grid;
  gap: 0.34rem;
}

body[data-page="privacy"] .privacy-summary-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde5d3;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="privacy"] .privacy-summary-card h3 {
  margin: 0;
  color: #1f3f2b;
}

body[data-page="privacy"] .privacy-summary-card p {
  margin: 0;
  color: #586a60;
  font-size: 0.9rem;
}

body[data-page="privacy"] .privacy-steps {
  margin: 0.8rem 0;
  display: grid;
  gap: 0.55rem;
}

body[data-page="privacy"] .privacy-steps article {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="privacy"] .privacy-steps h3 {
  margin: 0;
  font-size: 0.97rem;
  color: #1f402c;
}

body[data-page="privacy"] .privacy-steps p {
  margin: 0.2rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="terms"] .terms-summary-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="terms"] .terms-summary-card {
  background: #fff;
  border: 1px solid #dbe9de;
  border-radius: 15px;
  padding: 0.9rem;
  box-shadow: 0 10px 22px rgba(18, 53, 34, 0.08);
  display: grid;
  gap: 0.34rem;
}

body[data-page="terms"] .terms-summary-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde5d3;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="terms"] .terms-summary-card h3 {
  margin: 0;
  color: #1f3f2b;
}

body[data-page="terms"] .terms-summary-card p {
  margin: 0;
  color: #586a60;
  font-size: 0.9rem;
}

body[data-page="terms"] .terms-cards-grid {
  display: grid;
  gap: 0.55rem;
}

body[data-page="terms"] .terms-mini-card {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="terms"] .terms-mini-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #1f402c;
}

body[data-page="terms"] .terms-mini-card p {
  margin: 0.2rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="terms"] .terms-steps {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

body[data-page="terms"] .terms-steps article {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="terms"] .terms-steps h3 {
  margin: 0;
  font-size: 0.97rem;
  color: #1f402c;
}

body[data-page="terms"] .terms-steps p {
  margin: 0.2rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="refund"] .refund-summary-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="refund"] .refund-summary-card {
  background: #fff;
  border: 1px solid #dbe9de;
  border-radius: 15px;
  padding: 0.9rem;
  box-shadow: 0 10px 22px rgba(18, 53, 34, 0.08);
  display: grid;
  gap: 0.34rem;
}

body[data-page="refund"] .refund-summary-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde5d3;
  background: #eaf8ee;
  color: #1f7d35;
  font-size: 0.82rem;
}

body[data-page="refund"] .refund-summary-card h3 {
  margin: 0;
  color: #1f3f2b;
}

body[data-page="refund"] .refund-summary-card p {
  margin: 0;
  color: #586a60;
  font-size: 0.9rem;
}

body[data-page="refund"] .refund-required-grid {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.55rem;
}

body[data-page="refund"] .refund-required-card {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="refund"] .refund-required-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #1f402c;
}

body[data-page="refund"] .refund-required-card p {
  margin: 0.2rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="refund"] .refund-steps {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

body[data-page="refund"] .refund-step-card {
  background: #f7fbf8;
  border: 1px solid #dce9df;
  border-radius: 12px;
  padding: 0.72rem;
}

body[data-page="refund"] .refund-step-card h3 {
  margin: 0;
  font-size: 0.97rem;
  color: #1f402c;
}

body[data-page="refund"] .refund-step-card p {
  margin: 0.2rem 0 0;
  color: #5a6d62;
  font-size: 0.88rem;
}

body[data-page="refund"] .refund-case-cards {
  margin-top: 0.8rem;
}

.utility-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #e7f8ec 0%, #f8fcf9 100%);
  border: 1px solid #cee7d5;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.utility-cta p {
  margin: 0;
  color: #355245;
}

.footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(72, 168, 96, 0.24), transparent 38%),
    radial-gradient(circle at 92% 78%, rgba(58, 132, 80, 0.22), transparent 32%),
    #11271a;
  color: #e9f5ed;
  margin-top: 4rem;
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer h3,
.footer h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.footer p,
.footer li,
.footer a {
  color: rgba(237, 246, 240, 0.88);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 237, 222, 0.15);
  border-radius: 16px;
  padding: 1rem;
}

.footer-logo {
  margin-bottom: 0.7rem;
}

.footer-brand p {
  margin: 0;
}

.footer-badges {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(198, 230, 209, 0.22);
  background: rgba(126, 187, 145, 0.13);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  color: #e5f7ea;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #9de6b3;
  transform: translateX(2px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-contact li i {
  color: #86db9f;
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.socials a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-newsletter p {
  margin: 0 0 0.75rem;
}

.newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(190, 228, 202, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ecf9f0;
  border-radius: 12px;
  padding: 0.66rem 0.78rem;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(231, 247, 237, 0.75);
}

.newsletter-form .btn {
  width: 100%;
}

.footer-bottom {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  color: rgba(237, 246, 240, 0.74);
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal a {
  color: rgba(237, 246, 240, 0.84);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: #9de6b3;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-donate-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.82rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
  font-weight: 700;
}

.donation-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 12, 0.65);
  display: none;
  place-items: center;
  z-index: 100;
  padding: 1rem;
}

.donation-modal.show {
  display: grid;
}

.modal-card {
  width: min(96vw, 460px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.modal-card-enhanced {
  width: min(94vw, 560px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.05rem;
  border: 1px solid #e0ebe3;
  background:
    radial-gradient(circle at top right, rgba(40, 167, 69, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfefc 100%);
  scrollbar-width: thin;
}

.modal-card-enhanced::-webkit-scrollbar {
  width: 8px;
}

.modal-card-enhanced::-webkit-scrollbar-thumb {
  background: #c8ddcd;
  border-radius: 999px;
}

.modal-intro {
  padding-right: 2rem;
}

.modal-body {
  display: grid;
  gap: 0.95rem;
  padding-bottom: 0.85rem;
}

.modal-intro h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
}

.donation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.donation-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: #edf8f0;
  color: #245a35;
  border: 1px solid #d3ead9;
  font-size: 0.82rem;
  font-weight: 600;
}

.donation-highlights i {
  color: #1f7d35;
}

.impact-summary {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf9f0 0%, #f8fdf9 100%);
  border: 1px solid #d7eadc;
}

.impact-label {
  margin: 0 0 0.25rem;
  color: #1c6f35;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.impact-summary .impact-note {
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.98rem;
  color: #234637;
}

.impact-tip {
  margin: 0;
  color: #5a6c61;
  font-size: 0.86rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: #f0f4f1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-cause {
  color: var(--color-muted);
  margin-top: 0;
}

.frequency-toggle {
  margin: 0.9rem 0 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #edf3ee;
  border-radius: 999px;
  padding: 0.25rem;
}

.frequency-btn {
  border: none;
  background: transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  color: #486055;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.frequency-btn.active {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(25, 58, 40, 0.14);
  color: #1a5f2f;
}

.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 0.55rem;
}

.field-group {
  margin-bottom: 0.75rem;
}

.field-label {
  margin-bottom: 0.45rem;
  color: #244735;
}

.field-grid {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.25rem;
}

.amount-chip {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.amount-chip.active {
  background: #e7f9ec;
  border-color: #90d9a4;
  color: #12622a;
}

.impact-note {
  margin: 0 0 0.8rem;
  background: #f3f8f4;
  border: 1px dashed #bfd8c5;
  border-radius: 12px;
  color: #365545;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

input[type="number"] {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  margin-bottom: 0.55rem;
}

input[type="number"] {
  margin-bottom: 0.55rem;
}

input:focus {
  outline: 2px solid rgba(40, 167, 69, 0.35);
  outline-offset: 1px;
}

.consent-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.3rem 0 0.6rem;
  font-size: 0.9rem;
  color: #4e5f55;
}

.consent-row input {
  margin-top: 0.25rem;
}

.safe-note {
  color: #5f6e64;
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.modal-actions {
  position: sticky;
  bottom: -1.05rem;
  margin: 0 -1.05rem -1.05rem;
  padding: 0.85rem 1.05rem 0.95rem;
  background: linear-gradient(180deg, rgba(251, 254, 252, 0.82), #ffffff 32%);
  border-top: 1px solid #e3eee5;
  backdrop-filter: blur(10px);
}

.modal-actions .btn {
  margin-top: 0;
}

.modal-actions .safe-note {
  margin-top: 0.6rem;
}

@media (max-width: 520px) {
  .donation-modal {
    padding: 0.55rem;
  }

  .modal-card-enhanced {
    width: min(100%, 440px);
    max-height: calc(100vh - 1.1rem);
    padding: 0.85rem;
    border-radius: 20px;
  }

  .modal-intro {
    padding-right: 1.6rem;
  }

  .donation-highlights span {
    font-size: 0.78rem;
    padding: 0.38rem 0.58rem;
  }

  .impact-summary {
    padding: 0.85rem 0.9rem;
  }

  .frequency-toggle {
    margin-top: 0.8rem;
  }

  .amount-chip {
    padding: 0.46rem 0.74rem;
  }

  .modal-actions {
    bottom: -0.85rem;
    margin: 0 -0.85rem -0.85rem;
    padding: 0.75rem 0.85rem 0.85rem;
  }

  body.inner-page .utility-cta {
    padding: 0.8rem;
    align-items: flex-start;
  }

  body.inner-page .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="about"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="about"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="about"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="about"] .page-section {
    padding: 1.45rem 0;
  }

  body[data-page="about"] .about-card-grid {
    gap: 0.55rem;
  }

  body[data-page="about"] .about-card {
    padding: 0.66rem 0.7rem;
    border-radius: 12px;
  }

  body[data-page="about"] .about-card-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  body[data-page="about"] .about-card h3 {
    font-size: 0.95rem;
  }

  body[data-page="about"] .about-card p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  body[data-page="about"] .stat-strip {
    gap: 0.55rem;
  }

  body[data-page="about"] .stat-strip article {
    min-height: 74px;
    padding: 0.62rem;
  }

  body[data-page="about"] .timeline {
    border-left: 0;
    padding-left: 0;
    gap: 0.55rem;
  }

  body[data-page="about"] .timeline article {
    background: #f7fbf8;
    border: 1px solid #dce9df;
    border-radius: 12px;
    padding: 0.64rem 0.7rem;
  }

  body[data-page="about"] .timeline article h3 {
    font-size: 0.95rem;
  }

  body[data-page="about"] .timeline article p {
    font-size: 0.84rem;
  }

  body[data-page="causes"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="causes"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="causes"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="causes"] .section-head {
    margin-bottom: 0.95rem;
  }

  body[data-page="causes"] .section-head h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.7rem);
  }

  body[data-page="causes"] .causes-topbar {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  body[data-page="causes"] .cause-pill {
    font-size: 0.77rem;
    padding: 0.34rem 0.58rem;
  }

  body[data-page="causes"] .cause-card img {
    height: 170px;
  }

  body[data-page="causes"] .cause-body {
    gap: 0.42rem;
    padding: 0.82rem;
  }

  body[data-page="causes"] .cause-meta-line {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  body[data-page="causes"] .progress-meta {
    font-size: 0.82rem;
    gap: 0.35rem;
  }

  body[data-page="causes"] .progress-legend {
    font-size: 0.82rem;
  }

  body[data-page="causes"] .cause-foot {
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8rem;
  }

  body[data-page="causes"] .cause-body .btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 0.9rem;
  }

  body[data-page="causes"] .page-section .content-grid {
    gap: 0.7rem;
  }

  body[data-page="contact"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="contact"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="contact"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="contact"] .contact-route-grid {
    gap: 0.6rem;
  }

  body[data-page="contact"] .contact-route-card {
    padding: 0.72rem;
    border-radius: 12px;
  }

  body[data-page="contact"] .contact-route-card a {
    font-size: 0.84rem;
    overflow-wrap: anywhere;
  }

  body[data-page="contact"] .contact-form {
    padding: 0.8rem;
  }

  body[data-page="contact"] .contact-form label {
    font-size: 0.9rem;
  }

  body[data-page="contact"] .contact-form input,
  body[data-page="contact"] .contact-form select,
  body[data-page="contact"] .contact-form textarea {
    padding: 0.58rem 0.66rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
  }

  body[data-page="contact"] .contact-form textarea {
    min-height: 110px;
  }

  body[data-page="contact"] .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="contact"] .contact-desks {
    margin-top: 0.7rem;
  }

  body[data-page="contact"] .contact-faq-grid {
    gap: 0.55rem;
  }

  body[data-page="contact"] .faq-item {
    padding: 0.8rem;
  }

  body[data-page="reports"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="reports"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="reports"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="reports"] .reports-summary-grid {
    gap: 0.6rem;
  }

  body[data-page="reports"] .reports-summary-card {
    padding: 0.74rem;
    border-radius: 12px;
  }

  body[data-page="reports"] .reports-summary-icon {
    width: 30px;
    height: 30px;
    font-size: 0.76rem;
  }

  body[data-page="reports"] .report-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  body[data-page="reports"] .report-table th,
  body[data-page="reports"] .report-table td {
    white-space: nowrap;
    padding: 0.58rem 0.62rem;
    font-size: 0.85rem;
  }

  body[data-page="reports"] .reports-note-grid {
    margin-top: 0.65rem;
  }

  body[data-page="reports"] .reports-steps {
    gap: 0.5rem;
  }

  body[data-page="reports"] .reports-steps article,
  body[data-page="reports"] .reports-contact-box {
    padding: 0.66rem;
    border-radius: 10px;
  }

  body[data-page="reports"] .reports-steps h3,
  body[data-page="reports"] .reports-contact-box h3 {
    font-size: 0.93rem;
  }

  body[data-page="reports"] .reports-steps p,
  body[data-page="reports"] .reports-contact-box p,
  body[data-page="reports"] .reports-contact-box li {
    font-size: 0.84rem;
  }

  body[data-page="privacy"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="privacy"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="privacy"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="privacy"] .privacy-summary-grid {
    gap: 0.6rem;
  }

  body[data-page="privacy"] .privacy-summary-card {
    padding: 0.74rem;
    border-radius: 12px;
  }

  body[data-page="privacy"] .privacy-summary-icon {
    width: 30px;
    height: 30px;
    font-size: 0.76rem;
  }

  body[data-page="privacy"] .privacy-summary-card p {
    font-size: 0.84rem;
  }

  body[data-page="privacy"] .privacy-steps {
    gap: 0.48rem;
  }

  body[data-page="privacy"] .privacy-steps article {
    padding: 0.66rem;
    border-radius: 10px;
  }

  body[data-page="privacy"] .privacy-steps h3 {
    font-size: 0.93rem;
  }

  body[data-page="privacy"] .privacy-steps p {
    font-size: 0.84rem;
  }

  body[data-page="privacy"] .panel .value-list li {
    gap: 0.42rem;
  }

  body[data-page="privacy"] .panel .value-list span {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  body[data-page="terms"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="terms"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="terms"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="terms"] .terms-summary-grid {
    gap: 0.6rem;
  }

  body[data-page="terms"] .terms-summary-card {
    padding: 0.74rem;
    border-radius: 12px;
  }

  body[data-page="terms"] .terms-summary-icon {
    width: 30px;
    height: 30px;
    font-size: 0.76rem;
  }

  body[data-page="terms"] .terms-summary-card p {
    font-size: 0.84rem;
  }

  body[data-page="terms"] .terms-cards-grid {
    gap: 0.48rem;
  }

  body[data-page="terms"] .terms-mini-card {
    padding: 0.66rem;
    border-radius: 10px;
  }

  body[data-page="terms"] .terms-mini-card h3,
  body[data-page="terms"] .terms-steps h3 {
    font-size: 0.93rem;
  }

  body[data-page="terms"] .terms-mini-card p,
  body[data-page="terms"] .terms-steps p {
    font-size: 0.84rem;
  }

  body[data-page="terms"] .terms-steps {
    gap: 0.48rem;
  }

  body[data-page="terms"] .terms-steps article {
    padding: 0.66rem;
    border-radius: 10px;
  }

  body[data-page="terms"] .panel .value-list li {
    gap: 0.42rem;
  }

  body[data-page="terms"] .panel .value-list span {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  body[data-page="refund"] .page-hero {
    padding: 1.1rem;
  }

  body[data-page="refund"] .page-hero .utility-cta {
    padding: 0.76rem;
    align-items: flex-start;
  }

  body[data-page="refund"] .page-hero .utility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="refund"] .refund-summary-grid {
    gap: 0.6rem;
  }

  body[data-page="refund"] .refund-summary-card {
    padding: 0.74rem;
    border-radius: 12px;
  }

  body[data-page="refund"] .refund-summary-icon {
    width: 30px;
    height: 30px;
    font-size: 0.76rem;
  }

  body[data-page="refund"] .refund-summary-card p {
    font-size: 0.84rem;
  }

  body[data-page="refund"] .refund-required-grid {
    gap: 0.48rem;
  }

  body[data-page="refund"] .refund-required-card,
  body[data-page="refund"] .refund-step-card,
  body[data-page="refund"] .refund-case-cards article {
    padding: 0.66rem;
    border-radius: 10px;
  }

  body[data-page="refund"] .refund-required-card h3,
  body[data-page="refund"] .refund-step-card h3,
  body[data-page="refund"] .refund-case-cards h3 {
    font-size: 0.93rem;
  }

  body[data-page="refund"] .refund-required-card p,
  body[data-page="refund"] .refund-step-card p,
  body[data-page="refund"] .refund-case-cards p {
    font-size: 0.84rem;
  }

  body[data-page="refund"] .refund-steps,
  body[data-page="refund"] .refund-case-cards {
    gap: 0.48rem;
  }

  body[data-page="refund"] .panel .value-list li {
    gap: 0.42rem;
  }

  body[data-page="refund"] .panel .value-list span {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  body[data-page="thank-you"] .page-hero .utility-cta {
    padding: 0.8rem;
    align-items: flex-start;
  }

  body[data-page="thank-you"] .stat-strip {
    gap: 0.55rem;
  }

  body[data-page="thank-you"] .stat-strip article {
    min-height: 76px;
    padding: 0.62rem;
  }

  body[data-page="thank-you"] .thank-you-note {
    gap: 0.35rem;
  }

  body[data-page="thank-you"] .thank-you-note span {
    font-size: 0.84rem;
    padding: 0.45rem 0.55rem;
  }

  body[data-page="thank-you"] .thank-you-step-card,
  body[data-page="thank-you"] .thank-you-action-card {
    padding: 0.72rem;
  }

  body[data-page="thank-you"] .thank-you-action-card a {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.72rem;
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 0.25rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    clip-path: none;
    pointer-events: auto;
  }

  .nav-links.is-closing {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .nav-links li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    position: relative;
  }

  .nav-links a:hover {
    transform: translateY(-1px);
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 999px;
    background: #2aa948;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }

  .nav-links a.active {
    background: transparent;
    color: #1f7d35;
  }

  .nav-backdrop {
    display: none;
  }

  .inner-page .page-section {
    padding: 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.18fr 0.82fr;
    gap: 2rem;
    min-height: 70vh;
  }

  .content-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .mini-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="about"] .about-card-grid-1 {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  body[data-page="contact"] .contact-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="reports"] .reports-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="reports"] .reports-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="reports"] .reports-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="thank-you"] .thank-you-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="privacy"] .privacy-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="terms"] .terms-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="terms"] .terms-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="refund"] .refund-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="refund"] .refund-required-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="refund"] .refund-steps {
    grid-template-columns: 1fr;
  }

  body[data-page="privacy"] .privacy-steps {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-content {
    padding-right: 0.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }

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

  .steps-grid,
  .stories-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-cause {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
  }

  .footer-newsletter {
    grid-column: span 2;
  }
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(3px);
  transition: opacity 0.78s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.78s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.78s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-28px, 20px, 0) scale(0.985);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(28px, 20px, 0) scale(0.985);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .nav-toggle,
  .nav-toggle-line,
  .logo-icon,
  .nav-links,
  .nav-links.is-closing,
  .nav-links li,
  .nav-links a,
  .nav-backdrop,
  .nav-backdrop.is-closing,
  .reveal-on-scroll,
  .reveal-on-scroll.reveal-left,
  .reveal-on-scroll.reveal-right,
  .page-loader,
  .page-loader::before,
  .page-loader::after,
  .page-loader-card,
  .loader-orbit span,
  .loader-core,
  .loader-track span,
  .loader-hint,
  .loader-retry,
  .site-header,
  main,
  #site-footer {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
  }
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .causes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-cause {
    grid-column: span 1;
  }

  .mobile-donate-fab {
    display: none;
  }

  .footer-newsletter {
    grid-column: span 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
