:root {
  --navy: #0b2d67;
  --navy-deep: #081f4a;
  --blue: #1b4f9c;
  --blue-soft: #edf4ff;
  --gold: #d5a53b;
  --gold-soft: #f8efe0;
  --text: #1f2f46;
  --muted: #62708a;
  --line: #dbe3ef;
  --line-strong: #c9d5e8;
  --white: #ffffff;
  --surface: #f8fbff;
  --surface-2: #f2f6fc;
  --success: #0f7b57;
  --shadow-sm: 0 10px 30px rgba(8, 31, 74, 0.06);
  --shadow-md: 0 18px 50px rgba(8, 31, 74, 0.10);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(213,165,59,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(27,79,156,.45);
  box-shadow: 0 0 0 4px rgba(27,79,156,.10);
}
textarea { min-height: 132px; resize: vertical; }
label { display: grid; gap: 0.55rem; font-weight: 600; color: var(--navy); }
label span { font-weight: 500; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 0.85rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.centered { text-align: center; }
.narrow { max-width: 760px; }
.section { padding: 88px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2,
.split-grid h2,
.hero-copy h1,
.final-cta h2,
.privacy-card h1,
.transparency-card h2,
.business-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
}
.section-heading p,
.intro-copy p,
.hero-lead,
.contact-copy p,
.business-copy p,
.transparency-card p,
.final-cta p,
.use-copy p,
.panel-heading p {
  color: var(--muted);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(213,165,59,.20));
  border-radius: 999px;
}
.eyebrow-light { color: rgba(255,255,255,.86); }
.eyebrow-light::before { background: linear-gradient(90deg, #fff, rgba(255,255,255,.25)); }
.topbar {
  border-bottom: 1px solid rgba(11,45,103,.08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 42px;
  font-size: 0.9rem;
  color: var(--muted);
}
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a:hover { color: var(--navy); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,45,103,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}
.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--navy);
}
.main-nav > a:not(.button) {
  position: relative;
  padding-bottom: 6px;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transition: width .25s ease;
}
.main-nav > a:not(.button):hover::after { width: 100%; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 999px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.88rem 1.3rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.button-primary:hover { box-shadow: var(--shadow-md); }
.button-secondary {
  background: rgba(255,255,255,.92);
  border-color: var(--line-strong);
  color: var(--navy);
}
.button-gold {
  background: linear-gradient(135deg, var(--gold), #bb8b27);
  color: #fff;
  box-shadow: 0 14px 34px rgba(213,165,59,.30);
}
.button-light {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.button-tertiary {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--navy);
}
.button-disabled {
  background: #eff3f9;
  color: #8f99aa;
  cursor: not-allowed;
}
.button-small { min-height: 42px; padding: 0.7rem 1rem; border-radius: 14px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(27,79,156,.08), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(213,165,59,.14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.94) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 1.14rem;
  max-width: 620px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  border: 1px solid rgba(11,45,103,.08);
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.trust-pill span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(213,165,59,.15);
  color: var(--gold);
  font-size: 0.88rem;
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  height: min(640px, 62vw);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-md);
}
.hero-caption-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.hero-caption-card strong { display: block; color: var(--navy); margin-bottom: 6px; }
.hero-caption-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.quick-highlights { padding: 14px 0 18px; }
.quick-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.highlight-card,
.step-card,
.benefit-card,
.project-card,
.form-method-card,
.highlight-card,
.business-point,
.choice-block,
.donation-mode-card,
.contact-details,
.privacy-card,
.premium-form-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.highlight-card {
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover,
.step-card:hover,
.project-card:hover,
.form-method-card:hover,
.donation-mode-card:hover,
.benefit-card:hover,
.business-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,45,103,.12), rgba(213,165,59,.18));
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.highlight-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--navy);
}
.highlight-card p { margin: 0; color: var(--muted); }
.donation-panel-section { padding: 26px 0 20px; }
.premium-panel {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(243,248,255,.98));
  border: 1px solid rgba(11,45,103,.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.premium-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213,165,59,.16), transparent 65%);
}
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.panel-heading h2 { margin: 0 0 10px; font-size: clamp(2rem, 3vw, 2.8rem); }
.section-kicker {
  margin: 0 0 12px;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.mini-link { color: var(--navy); font-weight: 700; }
.donation-mode-grid,
.donation-choice-grid,
.forms-grid,
.steps-grid,
.benefit-grid,
.project-grid,
.business-points-grid {
  display: grid;
  gap: 20px;
}
.donation-mode-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 24px; }
.donation-mode-card { padding: 24px; }
.donation-mode-card-active {
  border-color: rgba(213,165,59,.45);
  background: linear-gradient(180deg, #fff, #fffaf0);
}
.mode-badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(11,45,103,.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.donation-mode-card h3,
.choice-block h3,
.amount-header h3,
.step-card h3,
.benefit-card h3,
.project-card h3,
.form-method-card h3,
.business-form h3,
.contact-form h3,
.donation-form h3,
.privacy-card h2,
.footer-grid h2 {
  margin: 0 0 10px;
  color: var(--navy);
}
.donation-mode-card p,
.choice-block p,
.benefit-card p,
.step-card p,
.form-method-card p,
.project-card p,
.business-point span,
.business-form p,
.contact-copy p,
.contact-details a,
.contact-details span,
.footer-brand p { color: var(--muted); }
.amount-selector-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), var(--shadow-sm);
}
.amount-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.amount-header span { color: var(--muted); font-weight: 500; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.amount-button {
  min-height: 58px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.amount-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.amount-button.is-selected {
  background: linear-gradient(135deg, var(--gold), #c28f28);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(213,165,59,.32);
}
.donation-choice-grid { grid-template-columns: 1fr 1fr; margin-top: 24px; }
.choice-block { padding: 24px; }
.choice-note { background: linear-gradient(180deg, #fff, #fbfcff); }
.donation-toggle {
  display: inline-flex;
  padding: 6px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  gap: 6px;
}
.toggle-button {
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}
.toggle-button.is-selected {
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.donation-panel-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.trust-strip {
  padding: 22px 0 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,250,255,.95));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.icon-wrap {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11,45,103,.10), rgba(213,165,59,.20));
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}
.trust-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.trust-item span:last-child { color: var(--muted); }
.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}
.split-grid h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.intro-copy { font-size: 1.06rem; }
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-card { padding: 28px; }
.benefit-number,
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(213,165,59,.20), rgba(11,45,103,.08));
  margin-bottom: 16px;
}
.benefit-card ul,
.form-method-card ul,
.check-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}
.benefit-card li,
.form-method-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 8px;
}
.benefit-card li::before,
.form-method-card li::before,
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.how-it-works-section { padding-top: 26px; }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step-card { padding: 26px; }
.project-grid { grid-template-columns: repeat(3, 1fr); }
.project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.project-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213,165,59,.10), transparent 70%);
}
.project-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
}
.project-logo,
.project-brand-text {
  min-width: 88px;
  max-width: 140px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.project-brand-text span {
  color: var(--navy);
  text-align: center;
  font-size: .83rem;
  line-height: 1.3;
  font-weight: 700;
}
.project-card h3 { font-size: 1.28rem; }
.project-card a {
  margin-top: auto;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: var(--navy);
}
.project-card-wide { grid-column: span 3; flex-direction: row; align-items: center; justify-content: space-between; }
.use-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.use-section::before {
  content: "";
  position: absolute;
  inset: auto -100px -140px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213,165,59,.18), transparent 65%);
}
.use-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.use-copy h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 16px; color: #fff; }
.use-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.use-list article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  gap: 14px;
}
.use-list span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(213,165,59,.22);
  color: #fff;
  font-weight: 800;
}
.use-list h3 { margin: 0 0 6px; color: #fff; }
.use-list p { margin: 0; color: rgba(255,255,255,.82); }
.forms-grid { grid-template-columns: repeat(4, 1fr); }
.form-method-card { padding: 24px; display: flex; flex-direction: column; }
.form-method-card.is-active { border-color: rgba(15,123,87,.24); background: linear-gradient(180deg, #fff, #f8fffc); }
.method-status {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.is-active .method-status { background: rgba(15,123,87,.11); color: var(--success); }
.is-pending .method-status { background: rgba(213,165,59,.15); color: #8f6614; }
.form-method-card .button { margin-top: auto; }
.transparency-section { padding-top: 42px; }
.transparency-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
}
.transparency-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.transparency-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--navy);
  font-weight: 600;
}
.transparency-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}
.business-section {
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(248,251,255,.95));
}
.business-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.business-points-grid { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
.business-point { padding: 20px; }
.business-point strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.premium-form-card { padding: 28px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-note, .form-feedback { color: var(--muted); font-size: 0.95rem; }
.faq-section { padding-top: 34px; }
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}
.faq-list details {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 28px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0.9rem 0 0; color: var(--muted); }
.contact-copy h2 { font-size: clamp(2rem, 3vw, 3.1rem); margin-bottom: 14px; }
.premium-contact-box {
  margin-top: 24px;
  padding: 24px;
  display: grid;
  gap: 10px;
}
.contact-details a, .contact-details span { font-weight: 600; }
.consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
}
.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.final-cta { padding: 34px 0 60px; }
.final-cta-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,246,255,.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.final-cta h2 { font-size: clamp(2rem, 3vw, 3rem); }
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.site-footer {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: rgba(255,255,255,.88);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr .9fr;
  gap: 28px;
}
.footer-brand img { width: 86px; height: 86px; object-fit: contain; margin-bottom: 14px; }
.footer-grid h2 { color: #fff; font-size: 1.05rem; }
.footer-grid a, .footer-grid span { display: block; color: rgba(255,255,255,.76); margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}
.footer-bottom a { color: #fff; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #0c9f4a);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(10,111,50,.28);
  z-index: 999;
}
.privacy-main { padding: 48px 0 80px; }
.privacy-card {
  padding: 34px;
  max-width: 900px;
  margin: 0 auto;
}
.privacy-card h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.privacy-card h2 { font-size: 1.25rem; margin: 1.8rem 0 .5rem; }
.privacy-card p { color: var(--muted); }

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .use-grid,
  .business-grid,
  .contact-grid,
  .transparency-card,
  .final-cta-inner { grid-template-columns: 1fr; }
  .quick-highlight-grid,
  .trust-grid,
  .benefit-grid,
  .steps-grid,
  .business-points-grid,
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card-wide { grid-column: span 2; }
  .donation-mode-grid,
  .donation-choice-grid { grid-template-columns: 1fr; }
  .transparency-actions { justify-items: start; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .header-inner { min-height: 82px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hero { padding-top: 34px; }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-media img { height: auto; }
  .amount-grid,
  .field-grid,
  .footer-grid,
  .quick-highlight-grid,
  .trust-grid,
  .benefit-grid,
  .steps-grid,
  .project-grid,
  .business-points-grid,
  .forms-grid { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; flex-direction: column; align-items: flex-start; }
  .use-list { grid-template-columns: 1fr; }
  .amount-header,
  .panel-heading,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions,
  .donation-panel-actions,
  .final-cta-actions { flex-direction: column; }
  .button, .button-small { width: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 68px 0; }
  .premium-panel,
  .transparency-card,
  .final-cta-inner,
  .privacy-card,
  .premium-form-card,
  .benefit-card,
  .step-card,
  .project-card,
  .form-method-card,
  .highlight-card,
  .choice-block,
  .donation-mode-card { padding: 22px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 74px; height: 74px; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-lead { font-size: 1rem; }
  .hero-trust-list { flex-direction: column; }
  .trust-pill { width: fit-content; }
  .hero-caption-card { position: static; max-width: none; margin-top: 14px; }
  .donation-toggle { width: 100%; flex-direction: column; }
  .toggle-button { width: 100%; }
  .floating-whatsapp { width: 54px; height: 54px; right: 12px; bottom: 12px; }
}
