:root {
  --cream: #ffffff;
  --cream-dark: #f5f5f5;
  --orange: #ff6b35;
  --orange-hover: #e55a2b;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --border: rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 20px 48px 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  justify-self: start;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.icon-btn:hover {
  background: rgba(0,0,0,0.05);
}

.icon-btn svg {
  color: var(--text-dark);
}

.btn-donate {
  padding: 12px 28px;
  background: var(--blue);
  border: none;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 150px);
  padding: 20px 20px 40px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.85;
  margin-top: -20px;
}

.text-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.letter {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(180px, 26vw, 380px);
  font-weight: 700;
  text-transform: uppercase;
  background-size: 600% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 0.85;
  letter-spacing: -8px;
}

/* Position charity.png differently for each letter to show different parts */
.letter.v { background-position: 0% 0%; }
.letter.o { background-position: 20% 0%; }
.letter.i { background-position: 40% 0%; }
.letter.c { background-position: 60% 0%; }
.letter.e { background-position: 80% 0%; }
.letter.s { background-position: 100% 0%; }
.letter.u { background-position: 0% 100%; }
.letter.n { background-position: 20% 100%; }
.letter.i2 { background-position: 40% 100%; }
.letter.t { background-position: 60% 100%; }
.letter.e2 { background-position: 80% 100%; }
.letter.d { background-position: 100% 100%; }

.voices-row {
  margin-bottom: -10px;
}

.united-row {
  margin-top: -10px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  border: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.btn-secondary {
  padding: 16px 40px;
  background: transparent;
  border: 1.5px solid var(--text-dark);
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header {
    padding: 20px 24px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .letter {
    font-size: clamp(60px, 12vw, 140px);
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 12px;
  }
  
  .letter {
    font-size: clamp(50px, 14vw, 100px);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 16px;
  }
  
  .logo-text {
    display: none;
  }
  
  .main-nav {
    gap: 12px;
  }
  
  .main-nav a {
    font-size: 11px;
  }
  
  .letter {
    font-size: clamp(40px, 13vw, 80px);
  }
}

/* General Section Styles */
.section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #f0f7ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #dbeafe;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* Our Story Section */
.story-section {
  background: url('public/image.png') center center / cover no-repeat fixed;
  padding: 0;
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.story-overlay {
  background: rgba(0, 0, 0, 0.55);
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding: 100px 80px;
}

.story-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.story-content {
  max-width: 700px;
  text-align: left;
  padding-left: 40px;
  border-left: 4px solid var(--orange);
}

.section-tag.light,
.section-title.light,
.section-text.light {
  color: white;
}

.section-tag.light {
  background: var(--orange);
  border: none;
  font-size: 12px;
  padding: 8px 20px;
  display: inline-block;
  margin-bottom: 30px;
}

.section-title.light {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 40px;
  line-height: 1.1;
}

.section-text.light {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* Music Section — full-bleed edge to edge (overrides .section max-width) */
.music-section {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  padding: 100px 48px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.music-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.music-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.music-section .section-container {
  max-width: 1100px;
}

.music-section .section-tag {
  background: var(--blue);
  color: white;
  border: none;
}

.music-section .section-title {
  color: var(--text-dark);
  font-size: clamp(42px, 5vw, 64px);
}

.music-header {
  text-align: center;
  margin-bottom: 60px;
}

.music-intro {
  font-size: 20px;
  line-height: 1.8;
  color: #000000;
  font-weight: 500;
  max-width: 700px;
  margin: 30px auto 0;
}

.spotify-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.spotify-tracks iframe {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  width: 100%;
  height: 80px;
}

.spotify-tracks iframe:hover {
  transform: translateY(-3px);
}

.streaming-links {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.streaming-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
}

.platform-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  background: transparent;
  border: none;
}

.platform-link svg {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}

.platform-link:hover svg {
  transform: scale(1.08);
}

.platform-link.spotify {
  color: #1DB954;
}

.platform-link.spotify:hover {
  color: #1DB954;
  transform: translateY(-4px);
}

.platform-link.apple {
  color: #FA2D48;
}

.platform-link.apple:hover {
  color: #FA2D48;
  transform: translateY(-4px);
}

.platform-link.youtube {
  color: #FF0000;
}

.platform-link.youtube:hover {
  color: #FF0000;
  transform: translateY(-4px);
}

/* Donate Section */
.donate-section {
  background: #ffffff;
  text-align: center;
}

.donate-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 20px;
}

.donate-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.donate-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
}

.donate-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.donate-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.donate-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.donate-details .status {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* Support Section */
.support-section .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.support-visual img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.support-list {
  list-style: none;
  margin-top: 30px;
}

.support-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-gray);
}

.support-list li:last-child {
  border-bottom: none;
}

.support-list strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Join Us Section */
.join-section {
  background: #ffffff;
  text-align: center;
}

.join-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  margin-top: 20px;
}

.join-item {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.join-item:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
}

.join-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
  margin-bottom: 20px;
}

.join-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
}

.join-item p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Section */
.contact-section .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--text-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: white;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.contact-form button {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 80px 48px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 18px;
  opacity: 0.8;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.6;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 8px 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 8px;
}

/* Section Responsive */
@media (max-width: 1024px) {
  .section {
    padding: 80px 24px;
  }
  
  .story-section .section-container,
  .support-section .section-container,
  .contact-section .section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-image img,
  .support-visual img {
    max-width: 100%;
  }
  
  .donate-grid,
  .join-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  
  .donate-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form button {
    align-self: stretch;
  }
}

 body.payment-page {
   background:
     radial-gradient(circle at top left, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0) 30%),
     linear-gradient(135deg, #baff43 0%, #b3f034 50%, #c9ff66 100%);
   color: var(--text-dark);
 }

 .donation-page {
   min-height: 100vh;
   padding: clamp(16px, 2.2vw, 28px);
   position: relative;
   overflow: hidden;
 }

 .donation-page::before {
   content: '';
   position: absolute;
   width: 480px;
   height: 480px;
   top: -180px;
   right: -120px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 68%);
   pointer-events: none;
 }

 .donation-page::after {
   content: '';
   position: absolute;
   width: 360px;
   height: 360px;
   bottom: -160px;
   left: -80px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 72%);
   pointer-events: none;
 }

 .donation-shell {
   position: relative;
   z-index: 1;
   max-width: 1200px;
   margin: 0 auto;
   padding-top: 8px;
 }

 .donation-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 18px;
  min-height: 220px;
  flex-wrap: wrap;
}

.payment-brand-panel {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 10px;
  text-align: right;
}

.payment-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.payment-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.payment-nav a:hover {
  color: #111827;
}

 .payment-logo {
   position: absolute;
   top: 8px;
   left: 8px;
   width: 230px;
   overflow: visible;
   display: block;
   text-decoration: none;
   color: var(--text-dark);
   z-index: 3;
   margin: 0;
 }

 .payment-logo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transform: none;
}

 .payment-brand-copy {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }

 .payment-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

 .payment-brand-subtitle {
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: rgba(26, 26, 26, 0.7);
 }

 .secure-chip {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 18px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.58);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.55);
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 0.04em;
 }

 .secure-chip-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #22c55e;
   flex-shrink: 0;
 }

 .donation-layout {
   display: grid;
   grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
   gap: 18px;
   align-items: start;
 }

 .impact-panel,
 .checkout-panel {
   background: rgba(255, 255, 255, 0.95);
   border-radius: 24px;
   border: 1px solid rgba(17, 24, 39, 0.08);
   box-shadow: 0 18px 56px rgba(0, 0, 0, 0.1);
 }

 .impact-panel {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: linear-gradient(180deg, #ffffff 0%, #fafaf5 100%);
 }

 .impact-image-frame {
   position: relative;
   overflow: hidden;
   border-radius: 18px;
   aspect-ratio: 7 / 5;
   background: #e5e7eb;
 }

 .impact-image-frame::after {
   content: '';
   position: absolute;
   inset: auto 0 0 0;
   height: 38%;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
   pointer-events: none;
 }

 .impact-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 30%;
   display: block;
 }

 .impact-copy {
   display: grid;
   gap: 10px;
 }

 .impact-eyebrow {
   font-size: 10px;
   font-weight: 500;
   letter-spacing: 0.05em;
   text-transform: uppercase;
   color: #6b7280;
 }

 .impact-title {
   font-family: 'Inter', sans-serif;
   font-size: 21px;
   line-height: 1.25;
   font-weight: 600;
   letter-spacing: -0.01em;
 }

 .impact-description {
   font-size: 13px;
   line-height: 1.55;
   color: #4b5563;
 }

 .impact-points {
   display: grid;
   gap: 10px;
 }

 .impact-point {
   display: grid;
   gap: 6px;
   padding: 12px 14px;
   border-radius: 14px;
   border: 1px solid rgba(17, 24, 39, 0.08);
   background: rgba(248, 250, 252, 0.92);
 }

 .impact-point strong {
   font-size: 12px;
   font-weight: 600;
 }

 .impact-point span {
   font-size: 11px;
   line-height: 1.45;
   color: #6b7280;
 }

 .checkout-panel {
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .checkout-header {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 14px;
 }

 .panel-kicker {
   font-size: 11px;
   font-weight: 500;
   letter-spacing: 0.05em;
   color: #6b7280;
   margin-bottom: 4px;
 }

 .checkout-title {
   font-family: 'Inter', sans-serif;
   font-size: 18px;
   line-height: 1.15;
   font-weight: 600;
   letter-spacing: -0.01em;
 }

.amount-custom input,
 .payment-method,
 .amount-card,
 .frequency-option,
 .checkout-button {
   font-family: 'Inter', sans-serif;
 }

 .frequency-switch {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px;
   width: fit-content;
   border-radius: 999px;
   background: #f2f4ef;
   border: 1px solid rgba(17, 24, 39, 0.06);
 }

 .frequency-option {
   border: none;
   background: transparent;
   color: #4b5563;
   padding: 7px 12px;
   font-size: 11px;
   font-weight: 500;
   border-radius: 999px;
   cursor: pointer;
   transition: all 0.25s ease;
 }

 .frequency-option.is-active {
   background: #111827;
   color: #ffffff;
 }

 .amount-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 10px;
 }

 .amount-card,
 .amount-custom {
   min-height: 58px;
   border-radius: 16px;
   border: 1px solid rgba(17, 24, 39, 0.12);
   background: #ffffff;
   box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
 }

 .amount-card {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   font-weight: 500;
   color: #111827;
   cursor: pointer;
   transition: all 0.25s ease;
 }

 .amount-card.is-active {
   background: #111827;
   color: #ffffff;
   border-color: transparent;
 }

 .amount-custom {
   grid-column: span 2;
   display: grid;
   grid-template-columns: 46px 1fr;
   align-items: center;
   overflow: hidden;
 }

 .amount-custom span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 100%;
   font-size: 16px;
   font-weight: 600;
   color: #4b5563;
   background: #f8fafc;
   border-right: 1px solid rgba(17, 24, 39, 0.08);
 }

 .amount-custom input {
   border: none;
   height: 100%;
   width: 100%;
   padding: 0 14px;
   font-size: 14px;
   background: transparent;
 }

 .amount-custom input:focus {
   outline: none;
 }

 .payment-block {
   padding: 16px;
   border-radius: 18px;
   border: 1px solid rgba(17, 24, 39, 0.08);
   background: linear-gradient(180deg, #fbfbf9 0%, #f4f5ef 100%);
 }

 .block-heading {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 14px;
 }

 .block-heading h3 {
   font-size: 16px;
   font-weight: 600;
   letter-spacing: -0.01em;
 }

 .secure-inline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 5px 10px;
   border-radius: 999px;
   background: #ecfdf3;
   color: #15803d;
   font-size: 10px;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
 }

 .method-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 10px;
 }

.bank-details {
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #ffffff;
  padding: 14px 16px;
}

.bank-details h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bank-list {
  display: grid;
  gap: 8px;
}

.bank-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  font-size: 13px;
}

.bank-list dt {
  color: #6b7280;
}

.bank-list dd {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

 .payment-method {
   min-height: 44px;
   border-radius: 10px;
   border: 1px solid rgba(17, 24, 39, 0.12);
   background: #ffffff;
   font-size: 13px;
   font-weight: 500;
   color: #111827;
   cursor: pointer;
   transition: all 0.25s ease;
 }

 .payment-method.is-active {
   border-color: #111827;
   background: #111827;
   color: #ffffff;
 }

 .checkout-grid {
   display: grid;
   grid-template-columns: minmax(0, 1fr);
   gap: 12px;
 }

 .summary-card,
 .trust-card {
   min-height: 224px;
   border-radius: 18px;
   padding: 18px;
   background: #f6f7f2;
   border: 1px solid rgba(17, 24, 39, 0.08);
 }

 .summary-card {
   display: flex;
   flex-direction: column;
   width: 100%;
 }

 .summary-label {
   font-size: 11px;
   font-weight: 500;
   text-align: center;
   color: #6b7280;
   margin-bottom: 6px;
 }

 .summary-amount {
   font-size: 34px;
   font-weight: 600;
   line-height: 1;
   margin-bottom: 12px;
   letter-spacing: -0.02em;
   text-align: center;
 }

 .summary-caption {
   font-size: 10px;
   line-height: 1.5;
   text-align: center;
   color: #6b7280;
   margin-bottom: 12px;
 }

 .campaign-progress {
   display: grid;
   gap: 8px;
 }

 .campaign-progress-track {
   position: relative;
   height: 10px;
   border-radius: 999px;
   background: rgba(17, 24, 39, 0.12);
   overflow: hidden;
 }

 .campaign-progress-fill {
   display: block;
   height: 100%;
   width: 3.8%;
   border-radius: inherit;
   background: linear-gradient(90deg, #111827 0%, #c7ff4c 100%);
   transition: width 0.25s ease;
 }

 .campaign-progress-meta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
 }

 .campaign-progress-meta span {
   font-size: 10px;
   color: #6b7280;
 }

 .campaign-progress-meta strong {
   font-size: 11px;
   font-weight: 600;
   color: #111827;
 }

 .summary-breakdown {
   list-style: none;
   display: grid;
   gap: 8px;
   margin-top: 12px;
 }

 .summary-breakdown li {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 8px 10px;
   border-radius: 8px;
   background: #111827;
   color: #ffffff;
   font-size: 11px;
 }

 .summary-breakdown span {
   font-size: 10px;
   color: rgba(255, 255, 255, 0.7);
 }

 .summary-breakdown strong {
   font-size: 10px;
   font-weight: 600;
 }

 .trust-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   gap: 16px;
 }

 .trust-icon {
   width: 72px;
   height: 72px;
   border-radius: 20px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #ffffff;
   color: #111827;
   box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
 }

 .trust-icon svg {
   width: 34px;
   height: 34px;
 }

 .trust-card p {
   max-width: 260px;
   font-size: 14px;
   line-height: 1.8;
   color: #4b5563;
 }

 .payment-notes {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 10px;
 }

 .payment-note {
   display: grid;
   gap: 8px;
   padding: 14px 16px;
   border-radius: 14px;
   background: #ffffff;
   border: 1px solid rgba(17, 24, 39, 0.09);
 }

 .payment-note.is-highlight {
   background: #f3ffe3;
   border-color: rgba(163, 230, 53, 0.7);
 }

 .payment-note strong {
   font-size: 12px;
   font-weight: 600;
 }

 .payment-note span {
   font-size: 11px;
   line-height: 1.45;
   color: #6b7280;
 }

 .paypal-embed {
   margin: 8px 0 4px;
 }

 .paypal-embed-label {
   font-size: 12px;
   font-weight: 600;
   color: #0f172a;
   margin: 0 0 10px;
 }

 .paypal-button-container {
   min-height: 45px;
 }

 .checkout-button {
   min-height: 44px;
   border: none;
   border-radius: 12px;
   background: #c7ff4c;
   color: #111827;
   font-size: 13px;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.2s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
 }

 .checkout-button::after {
   content: '›';
   font-size: 14px;
   font-weight: 400;
 }

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

 body.thank-you-open {
   overflow: hidden;
 }

 .thank-you-overlay {
   position: fixed;
   inset: 0;
   z-index: 30;
   align-items: center;
   justify-content: center;
   padding: 24px;
   background: rgba(17, 24, 39, 0.44);
   backdrop-filter: blur(8px);
 }

 .thank-you-overlay[hidden] {
   display: none;
 }

 .thank-you-overlay:not([hidden]) {
   display: flex;
 }

 .thank-you-card {
   position: relative;
   width: min(100%, 540px);
   gap: 16px;
   padding: 30px 24px 22px;
   border-radius: 28px;
   background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 45%, #ecfccb 100%);
   border: 1px solid rgba(187, 247, 208, 0.92);
   box-shadow: 0 28px 90px rgba(17, 24, 39, 0.22);
   text-align: center;
   overflow: hidden;
 }

 .thank-you-card[hidden] {
   display: none;
 }

 .thank-you-card:not([hidden]) {
   display: grid;
   animation: thank-you-pop 0.32s ease;
 }

 .thank-you-close {
   position: absolute;
   top: 16px;
   right: 16px;
   width: 36px;
   height: 36px;
   border: none;
   border-radius: 999px;
   background: rgba(17, 24, 39, 0.08);
   color: #111827;
   font-size: 24px;
   line-height: 1;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }

 .thank-you-close:hover {
   transform: scale(1.04);
   background: rgba(17, 24, 39, 0.12);
 }

 .thank-you-stickers {
   position: absolute;
   inset: 0;
   pointer-events: none;
 }

 .thank-you-sticker {
   position: absolute;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 48px;
   height: 48px;
   border-radius: 16px;
   background: rgba(255, 255, 255, 0.7);
   box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
   font-size: 24px;
   animation: thank-you-float 3.6s ease-in-out infinite;
 }

 .thank-you-sticker--one {
   top: 18px;
   left: 18px;
 }

 .thank-you-sticker--two {
   top: 34px;
   right: 72px;
   animation-delay: 0.4s;
 }

 .thank-you-sticker--three {
   bottom: 28px;
   left: 28px;
   animation-delay: 0.8s;
 }

 .thank-you-sticker--four {
   bottom: 24px;
   right: 26px;
   animation-delay: 1.2s;
 }

 .thank-you-card-head {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 12px;
   align-items: start;
 }

 .thank-you-icon {
   width: 38px;
   height: 38px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: #16a34a;
   color: #ffffff;
   font-size: 18px;
   font-weight: 700;
   line-height: 1;
 }

 .thank-you-kicker {
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: #15803d;
   margin-bottom: 4px;
 }

 .thank-you-title {
   font-size: 18px;
   line-height: 1.3;
   font-weight: 600;
   color: #14532d;
 }

 .thank-you-amount {
   width: fit-content;
   margin: 0 auto;
   padding: 10px 16px;
   border-radius: 999px;
   background: #166534;
   color: #ffffff;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.01em;
 }

 .thank-you-message {
   font-size: 13px;
   line-height: 1.7;
   color: #166534;
 }

 .thank-you-reference {
   font-size: 12px;
   line-height: 1.6;
   color: #4b5563;
 }

 .thank-you-reference[hidden] {
   display: none;
 }

 .thank-you-action {
   min-height: 46px;
   border: none;
   border-radius: 999px;
   background: linear-gradient(135deg, #16a34a 0%, #84cc16 100%);
   color: #ffffff;
   font-size: 14px;
   font-weight: 700;
   cursor: pointer;
   box-shadow: 0 14px 28px rgba(34, 197, 94, 0.24);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .thank-you-action:hover {
   transform: translateY(-1px);
   box-shadow: 0 18px 32px rgba(34, 197, 94, 0.28);
 }

 @keyframes thank-you-pop {
   0% {
     opacity: 0;
     transform: translateY(14px) scale(0.96);
   }

   100% {
     opacity: 1;
     transform: translateY(0) scale(1);
   }
 }

 @keyframes thank-you-float {
   0%,
   100% {
     transform: translateY(0) rotate(0deg);
   }

   50% {
     transform: translateY(-8px) rotate(6deg);
   }
 }

 .checkout-note {
   font-size: 11px;
   line-height: 1.6;
   color: #6b7280;
 }

 .donation-footer {
  max-width: 1360px;
  margin: 48px auto 0;
  padding: 0 24px 32px;
  text-align: center;
}

.footer-content {
  padding: 32px 0 16px;
  font-size: 13px;
  color: #4b5563;
}

.courtesy-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #374151;
  transform: translateY(-2px);
}

.footer-content > p {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #111827;
}

.footer-links span {
  color: #d1d5db;
}

.contact-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(8px);
}

.contact-popup-overlay[hidden] {
  display: none;
}

.contact-popup-overlay:not([hidden]) {
  display: flex;
}

body.contact-popup-open {
  overflow: hidden;
}

.contact-popup {
  position: relative;
  width: min(100%, 500px);
  display: grid;
  gap: 14px;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-popup-close:hover {
  background: rgba(17, 24, 39, 0.1);
  transform: scale(1.03);
}

.contact-popup-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.contact-popup-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111827;
  max-width: 11ch;
}

.contact-popup-message {
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}

.contact-popup-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  border-radius: 16px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-popup-email:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.contact-popup-action {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-popup-action:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

 @media (max-width: 1120px) {
   .donation-layout {
     grid-template-columns: 1fr;
   }

   .checkout-panel {
     order: 1;
   }

   .impact-panel {
     order: 2;
   }
 }

 @media (max-width: 820px) {
   .donation-brand,
   .checkout-header {
     flex-direction: column;
     align-items: flex-start;
   }

   .donation-brand {
     justify-content: flex-start;
     min-height: 190px;
     margin-bottom: 14px;
   }

   .payment-brand-panel {
     margin-left: 0;
     align-items: flex-start;
     gap: 10px;
     padding-top: 126px;
     text-align: left;
   }

   .payment-nav {
     justify-content: flex-start;
     gap: 16px;
   }

   .checkout-panel,
   .impact-panel {
     padding: 18px;
   }

   .amount-grid,
   .payment-notes,
   .checkout-grid,
   .method-grid {
     grid-template-columns: 1fr;
   }

   .amount-custom {
     grid-column: auto;
   }

   .payment-logo {
     top: 6px;
     left: 6px;
     width: 180px;
   }

   .payment-logo-img {
     width: 100%;
     height: auto;
     transform: none;
   }
 }

 @media (max-width: 560px) {
   .donation-page {
     padding: 14px;
   }

   .donation-brand {
     min-height: 148px;
     margin-bottom: 10px;
   }

   .payment-logo {
     top: 6px;
     left: 6px;
     width: 132px;
   }

   .payment-brand-panel {
     gap: 8px;
     padding-top: 94px;
   }

   .payment-brand-name {
     font-size: 24px;
     white-space: normal;
   }

   .payment-logo-img {
     width: 100%;
     height: auto;
     transform: none;
   }

   .impact-title,
   .checkout-title {
     font-size: 20px;
   }

   .amount-card,
   .amount-custom {
     min-height: 54px;
   }
 }
