:root {
  --navy-950: #041a33;
  --navy-900: #062b55;
  --navy-800: #063f82;
  --blue-700: #0757a8;
  --blue-600: #0c72c8;
  --cyan-500: #24a8e6;
  --cyan-300: #71d2f5;
  --teal-500: #1eb5a5;
  --purple-500: #6767d9;
  --coral-500: #f26b5b;
  --yellow-400: #f5c451;
  --green-500: #31ad75;

  --ink: #142033;
  --muted: #68778c;
  --line: #e5ebf2;
  --surface: #f5f8fc;
  --surface-blue: #eef7ff;
  --white: #ffffff;

  --shadow-sm: 0 10px 28px rgba(8, 38, 73, .08);
  --shadow-md: 0 20px 55px rgba(8, 38, 73, .14);
  --shadow-lg: 0 34px 90px rgba(5, 29, 58, .21);

  --radius-sm: 13px;
  --radius-md: 21px;
  --radius-lg: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 9px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1500;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-700), var(--teal-500));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(8, 33, 64, .12);
}

.topbar {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  background: var(--navy-950);
  font-size: .76rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar i {
  margin-right: 7px;
  color: var(--cyan-300);
}

.topbar a {
  transition: color .2s ease;
}

.topbar a:hover {
  color: var(--cyan-300);
}

.navbar {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(7, 63, 130, .07);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand img {
  width: 285px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  padding-block: 26px;
  color: #35445a;
  font-size: .87rem;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500));
  transform: translateX(-50%);
  transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 22px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border-radius: 11px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 5px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  min-height: 49px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

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

.button-donate {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 12px 28px rgba(7, 87, 168, .22);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 15px 34px rgba(7, 87, 168, .28);
}

.button-primary:hover,
.button-donate:hover {
  box-shadow: 0 19px 42px rgba(7, 87, 168, .35);
}

.button-ghost {
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(8, 38, 73, .06);
}

.button-ghost:hover {
  color: var(--blue-700);
  border-color: rgba(7, 87, 168, .28);
}

.button-white {
  flex-shrink: 0;
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(5, 27, 52, .14);
}

.button-bank {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: 188px 0 108px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 26%, rgba(36, 168, 230, .17), transparent 27%),
    radial-gradient(circle at 86% 78%, rgba(30, 181, 165, .13), transparent 25%),
    linear-gradient(135deg, #fbfdff 0%, #f1f8ff 52%, #f4fbfc 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(255, 255, 255, .85), transparent);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(7, 87, 168, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 87, 168, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 340px;
  height: 340px;
  top: 90px;
  right: -150px;
  border: 56px solid rgba(36, 168, 230, .06);
}

.hero-orb-two {
  width: 210px;
  height: 210px;
  left: -110px;
  bottom: 50px;
  border: 36px solid rgba(7, 87, 168, .06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 19px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}

.eyebrow-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(7, 87, 168, .17);
}

.hero h1 {
  max-width: 720px;
  color: var(--navy-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 5.3vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue-700);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 1%;
  bottom: -7px;
  z-index: -1;
  width: 64%;
  height: 9px;
  background: linear-gradient(90deg, var(--cyan-500), var(--teal-500));
  border-radius: 99px;
  opacity: .85;
  transform: rotate(-1.3deg);
}

.hero-lead {
  max-width: 630px;
  margin: 29px 0 32px;
  color: #596a80;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-trust > div {
  min-width: 225px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 87, 168, .09);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.hero-trust i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-700);
  background: var(--surface-blue);
  border-radius: 10px;
}

.hero-trust small,
.hero-trust strong {
  display: block;
}

.hero-trust small {
  color: var(--muted);
  font-size: .63rem;
}

.hero-trust strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: .73rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-image-main {
  position: absolute;
  inset: 10px 26px 38px 24px;
  overflow: hidden;
  background: var(--surface-blue);
  border-radius: 55px 20px 55px 20px;
  box-shadow: var(--shadow-lg);
}

.hero-image-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: inherit;
}

.hero-image-main img {
  height: 100%;
  object-fit: cover;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 28, 57, .36));
}

.hero-image-small {
  position: absolute;
  z-index: 4;
  right: -12px;
  top: -4px;
  width: 170px;
  height: 170px;
  padding: 7px;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
}

.hero-image-small img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.floating-impact-card {
  position: absolute;
  z-index: 5;
  left: -8px;
  bottom: 12px;
  min-width: 245px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(13px);
  animation: float 5s ease-in-out infinite;
}

.impact-card-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border-radius: 13px;
}

.floating-impact-card small,
.floating-impact-card strong {
  display: block;
}

.floating-impact-card small {
  color: var(--muted);
  font-size: .66rem;
}

.floating-impact-card strong {
  color: var(--ink);
  font-size: .82rem;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 55px;
  width: 119px;
  height: 119px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(30, 181, 165, .26);
  transform: rotate(5deg);
}

.hero-stamp i {
  margin-bottom: 3px;
  font-size: 1.25rem;
}

.hero-stamp strong {
  font-size: .84rem;
  line-height: 1.15;
}

.hero-stamp span {
  font-size: .58rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.hero-scroll i {
  color: var(--blue-700);
  animation: bob 1.8s ease-in-out infinite;
}

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

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 6;
  background: var(--white);
}

.trust-grid {
  margin-top: -31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.trust-item {
  position: relative;
  min-height: 120px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 25px;
  width: 1px;
  background: var(--line);
}

.trust-number {
  color: var(--cyan-500);
  font-size: .74rem;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: .91rem;
}

.trust-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
}

/* Shared */
.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  margin-inline: auto;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  font-weight: 800;
}

.section-kicker > span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--teal-500));
  border-radius: 99px;
}

.light-kicker {
  color: var(--cyan-300);
}

.section-heading h2,
.about-copy h2,
.alliances-copy h2,
.donation-copy h2,
.faq-intro h2,
.contact-copy h2 {
  color: var(--navy-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 3.45vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading p,
.alliances-copy > p,
.faq-intro > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: .96rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 540px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  background: var(--surface-blue);
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
}

.about-photo-main {
  inset: 0 78px 56px 0;
  border-radius: 30px 30px 30px 8px;
}

.about-photo-secondary {
  right: 0;
  bottom: 0;
  width: 220px;
  height: 230px;
  padding: 7px;
  background: var(--white);
  border-radius: 25px;
  transform: rotate(3deg);
}

.about-photo-secondary img {
  border-radius: 19px;
}

.about-badge {
  position: absolute;
  left: 27px;
  bottom: 14px;
  min-width: 205px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about-badge img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.about-badge small,
.about-badge strong {
  display: block;
}

.about-badge small {
  color: var(--muted);
  font-size: .64rem;
}

.about-badge strong {
  color: var(--blue-700);
  font-size: .78rem;
}

.about-copy > p {
  margin-top: 21px;
  color: var(--muted);
  font-size: .95rem;
}

.about-values {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.about-values article {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.about-values i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-700);
  background: var(--surface-blue);
  border-radius: 11px;
}

.about-values article:nth-child(2) i {
  color: var(--teal-500);
  background: #ebfbf8;
}

.about-values article:nth-child(3) i {
  color: var(--green-500);
  background: #eefaf4;
}

.about-values article:nth-child(4) i {
  color: var(--purple-500);
  background: #f0f0ff;
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  color: var(--ink);
  font-size: .82rem;
}

.about-values span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.45;
}

.about-legal {
  margin-top: 31px;
  padding-top: 24px;
  display: flex;
  gap: 45px;
  border-top: 1px solid var(--line);
}

.about-legal small,
.about-legal strong {
  display: block;
}

.about-legal small {
  color: var(--muted);
  font-size: .64rem;
}

.about-legal strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: .76rem;
}

/* Action lines */
.action-lines {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(36, 168, 230, .16), transparent 22%),
    radial-gradient(circle at 92% 80%, rgba(30, 181, 165, .13), transparent 25%),
    linear-gradient(140deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
}

.section-blob {
  position: absolute;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, .03);
}

.section-blob-left {
  width: 330px;
  height: 330px;
  left: -170px;
  top: 30px;
}

.section-blob-right {
  width: 430px;
  height: 430px;
  right: -220px;
  bottom: -180px;
}

.action-lines .container {
  position: relative;
  z-index: 2;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, .67);
}

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

.action-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(2, 18, 38, .26);
  transition: transform .25s ease, box-shadow .25s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(2, 18, 38, .35);
}

.action-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.action-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(3, 25, 51, .35));
}

.action-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.action-card:hover .action-image img {
  transform: scale(1.06);
}

.action-index {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: var(--white);
  font-size: .69rem;
  font-weight: 800;
}

.action-body {
  position: relative;
  padding: 28px 24px 26px;
}

.action-icon {
  position: absolute;
  left: 24px;
  top: -30px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border: 6px solid var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(7, 87, 168, .18);
}

.action-icon.cyan {
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
}

.action-icon.purple {
  background: linear-gradient(135deg, var(--purple-500), var(--blue-600));
}

.action-card h3 {
  margin-top: 16px;
  color: var(--navy-900);
  font-size: 1.09rem;
}

.action-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.62;
}

.action-note {
  margin-top: 22px;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  font-size: .79rem;
}

.action-note i {
  color: var(--cyan-300);
}

/* Help */
.how-help {
  background: var(--surface);
}

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

.help-card {
  position: relative;
  min-height: 340px;
  padding: 30px 27px 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.help-card::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  right: -62px;
  bottom: -68px;
  border: 22px solid rgba(7, 87, 168, .045);
  border-radius: 50%;
}

.help-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.help-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(113, 210, 245, .24), transparent 31%),
    linear-gradient(145deg, var(--navy-900), var(--blue-700));
  border-color: transparent;
}

.help-card.featured::before {
  border-color: rgba(255, 255, 255, .05);
}

.help-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(7, 87, 168, .19);
}

.help-card.featured .help-icon {
  color: var(--blue-700);
  background: var(--white);
}

.help-step {
  margin-top: 25px;
  color: var(--cyan-500);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .63rem;
  font-weight: 800;
}

.help-card.featured .help-step {
  color: var(--cyan-300);
}

.help-card h3 {
  margin-top: 7px;
  color: var(--navy-900);
  font-size: 1.17rem;
}

.help-card.featured h3 {
  color: var(--white);
}

.help-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: .79rem;
}

.help-card.featured p {
  color: rgba(255, 255, 255, .69);
}

.help-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: .73rem;
  font-weight: 800;
}

.help-card.featured a {
  color: var(--cyan-300);
}

.help-card a i {
  transition: transform .2s ease;
}

.help-card a:hover i {
  transform: translateX(4px);
}

/* Alliances */
.alliances {
  background: var(--white);
}

.alliances-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 78px;
  align-items: center;
}

.alliances-quote {
  margin-top: 31px;
  padding: 23px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--surface-blue);
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 15px 15px 0;
}

.alliances-quote i {
  color: var(--cyan-500);
  font-size: 1.2rem;
}

.alliances-quote p {
  color: #51667e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: .97rem;
  line-height: 1.55;
}

.partner-list {
  display: grid;
  gap: 17px;
}

.partner-card {
  min-height: 190px;
  padding: 23px;
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.partner-logo {
  height: 130px;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, #0c121b, #1c2734);
  border-radius: 16px;
}

.partner-logo img {
  max-height: 100%;
  object-fit: contain;
}

.sitec-logo-box {
  background: #f9fbfe;
  border: 1px solid var(--line);
}

.partner-label {
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .59rem;
  font-weight: 800;
}

.partner-content h3 {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.partner-content p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .77rem;
}

.partner-content a {
  width: fit-content;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: .69rem;
  font-weight: 800;
}

/* Donations */
.donation-section {
  position: relative;
  padding: 112px 0;
  color: var(--white);
  background:
    url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=1800&q=84") center/cover;
  overflow: hidden;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(36, 168, 230, .20), transparent 24%),
    linear-gradient(115deg, rgba(4, 26, 51, .97), rgba(6, 63, 130, .91));
}

.donation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.donation-copy h2 {
  color: var(--white);
}

.donation-copy > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .93rem;
}

.donation-security {
  margin-top: 29px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.donation-security > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.donation-security strong,
.donation-security span {
  display: block;
}

.donation-security strong {
  font-size: .83rem;
}

.donation-security span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .6);
  font-size: .71rem;
}

.bank-card {
  padding: 31px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 13, 35, .35);
  backdrop-filter: blur(15px);
}

.bank-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bank-card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bank-card-brand img {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.bank-card-brand small,
.bank-card-brand strong {
  display: block;
}

.bank-card-brand small {
  color: var(--muted);
  font-size: .62rem;
}

.bank-card-brand strong {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: .82rem;
}

.bank-card-top > i {
  color: var(--blue-700);
  font-size: 1.38rem;
}

.bank-fields {
  margin: 25px 0 21px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.bank-field {
  position: relative;
  min-height: 69px;
  padding: 13px 54px 13px 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.bank-field:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.bank-field span {
  color: var(--muted);
  font-size: .61rem;
}

.bank-field strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: .75rem;
  word-break: break-word;
}

.copy-button {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--surface-blue);
  border-radius: 9px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
}

.copy-button:hover {
  color: var(--white);
  background: var(--blue-700);
}

/* Transparency */
.transparency {
  background: var(--surface);
}

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

.info-card {
  min-height: 205px;
  padding: 25px 22px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border-radius: 14px;
}

.info-icon.cyan {
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
}

.info-icon.purple {
  background: linear-gradient(135deg, var(--purple-500), var(--blue-600));
}

.info-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
}

.info-card > span {
  margin-top: 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .58rem;
  font-weight: 800;
}

.info-card > strong {
  margin-top: 8px;
  color: var(--navy-900);
  font-size: .8rem;
  line-height: 1.45;
  word-break: break-word;
}

.legal-banner {
  margin-top: 20px;
  padding: 21px 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 25px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
}

.legal-banner > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-banner > div > i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-700);
  background: var(--surface-blue);
  border-radius: 10px;
}

.legal-banner small,
.legal-banner strong {
  display: block;
}

.legal-banner small {
  color: var(--muted);
  font-size: .61rem;
}

.legal-banner strong {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: .73rem;
}

.legal-banner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: .71rem;
  font-weight: 800;
}

/* CTA */
.impact-cta {
  padding: 0 0 112px;
  background: var(--surface);
}

.impact-cta-inner {
  min-height: 235px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 27px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(113, 210, 245, .22), transparent 28%),
    linear-gradient(130deg, var(--navy-950), var(--blue-700));
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.impact-cta-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 20px;
  font-size: 1.45rem;
}

.impact-cta span {
  color: var(--cyan-300);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
  font-weight: 800;
}

.impact-cta h2 {
  max-width: 690px;
  margin-top: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.12;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq-contact-link {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: .75rem;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 11px;
}

.accordion-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.accordion-button {
  width: 100%;
  min-height: 71px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-900);
  background: transparent;
  text-align: left;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.accordion-button i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 9px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.accordion-item.open .accordion-button i {
  color: var(--white);
  background: var(--blue-700);
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.accordion-panel p {
  overflow: hidden;
  padding-inline: 20px;
  color: var(--muted);
  font-size: .79rem;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel p {
  padding-bottom: 20px;
}

/* Contact */
.contact {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  opacity: .15;
  background:
    linear-gradient(90deg, rgba(4, 26, 51, .95), rgba(4, 26, 51, .25)),
    url("https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.contact::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -170px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(36, 168, 230, .05);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 76px;
  align-items: center;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  margin-top: 19px;
  color: rgba(255, 255, 255, .67);
  font-size: .92rem;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.contact-list > * {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list > * > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: rgba(255, 255, 255, .52);
  font-size: .62rem;
}

.contact-list strong {
  margin-top: 2px;
  color: var(--white);
  font-size: .76rem;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  box-shadow: 0 28px 78px rgba(0, 11, 31, .35);
  backdrop-filter: blur(15px);
}

.form-heading {
  margin-bottom: 23px;
}

.form-heading > span {
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .63rem;
  font-weight: 800;
}

.form-heading > strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 1.37rem;
}

.form-heading > p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .7rem;
}

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

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #3c4b60;
  font-size: .71rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #e1e8f0;
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(7, 87, 168, .52);
  box-shadow: 0 0 0 4px rgba(7, 87, 168, .08);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 12px;
  color: #8794a5;
  text-align: center;
  font-size: .61rem;
}

.form-note i {
  margin-right: 5px;
}

/* Footer */
.footer {
  padding: 72px 0 25px;
  color: rgba(255, 255, 255, .64);
  background: #031427;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .95fr 1fr;
  gap: 48px;
}

.footer-logo-box {
  width: 290px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 13px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
  font-size: .76rem;
}

.footer-email {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-300);
  font-size: .7rem;
  font-weight: 700;
}

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

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: .83rem;
}

.footer-column a,
.footer-column span {
  font-size: .7rem;
}

.footer-column a {
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: var(--cyan-300);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 47px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .65rem;
}

/* Floating controls */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.floating-email {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  font-size: .65rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-email:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.floating-donate {
  position: relative;
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral-500), #ff8b78);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(242, 107, 91, .34);
  font-size: 1.45rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-donate:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 21px 48px rgba(242, 107, 91, .42);
}

.floating-tooltip {
  position: absolute;
  right: 72px;
  min-width: 162px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-size: .68rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.floating-donate:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(242, 107, 91, .55);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(.9); opacity: .8; }
  75%, 100% { transform: scale(1.35); opacity: 0; }
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 2000;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: .72rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.toast i {
  color: var(--cyan-300);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .12s;
}

/* Responsive */
@media (max-width: 1120px) {
  .brand img {
    width: 245px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: .8rem;
  }

  .button-donate {
    padding-inline: 16px;
  }

  .hero-grid {
    gap: 42px;
  }

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

@media (max-width: 940px) {
  .topbar-inner > span {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand img {
    width: 232px;
    height: 57px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 106px 0 auto;
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 38px rgba(7, 31, 60, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    display: none;
  }

  .button-donate {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding: 168px 0 89px;
  }

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

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

  .eyebrow {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(650px, 100%);
    min-height: 510px;
    margin-inline: auto;
  }

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

  .trust-item:not(:last-child)::after {
    top: auto;
    right: 25px;
    bottom: 0;
    left: 25px;
    width: auto;
    height: 1px;
  }

  .about-grid,
  .alliances-grid,
  .donation-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .alliances-grid,
  .donation-grid,
  .contact-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 39px;
  }

  .faq-intro {
    position: static;
  }

  .about-visual {
    width: min(670px, 100%);
    margin-inline: auto;
  }

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

  .action-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .partner-list {
    width: min(760px, 100%);
  }

  .impact-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .impact-cta-inner .button {
    grid-column: 1 / -1;
    width: fit-content;
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 155px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.3rem);
  }

  .hero-trust {
    gap: 11px;
  }

  .hero-trust > div {
    min-width: min(100%, 260px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-main {
    inset: 15px 10px 35px;
  }

  .hero-image-small {
    right: 0;
    width: 145px;
    height: 145px;
  }

  .floating-impact-card {
    left: 0;
    min-width: 205px;
  }

  .hero-stamp {
    width: 102px;
    height: 102px;
    right: -1px;
    bottom: 48px;
  }

  .about-values,
  .action-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .action-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    height: 160px;
  }

  .legal-banner {
    grid-template-columns: 1fr;
  }

  .impact-cta-inner {
    padding: 39px 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .impact-cta-icon {
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 205px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-small {
    width: 125px;
    height: 125px;
  }

  .floating-impact-card {
    min-width: 186px;
    padding: 11px 13px;
  }

  .hero-stamp {
    width: 92px;
    height: 92px;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-photo-main {
    inset-right: 28px;
  }

  .about-photo-secondary {
    width: 165px;
    height: 180px;
  }

  .about-badge {
    left: 10px;
    min-width: 180px;
  }

  .about-legal {
    flex-direction: column;
    gap: 15px;
  }

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

  .bank-card,
  .contact-form {
    padding: 25px 19px;
  }

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

  .footer-logo-box {
    width: 100%;
    max-width: 300px;
  }

  .floating-actions {
    right: 15px;
    bottom: 15px;
  }

  .floating-email {
    display: none;
  }

  .floating-donate {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
