/* === Support Children - Soft & Emotional Design === */

:root {
  --wfc-primary: #60a5fa;
  --wfc-secondary: #fb923c;
  --wfc-accent: #f472b6;
  --wfc-success: #4ade80;
  --wfc-warning: #fbbf24;
  --wfc-text: #334155;
  --wfc-text-light: #64748b;
  --wfc-bg: #ffffff;
  --wfc-bg-secondary: #fef3c7;
  --wfc-bg-tertiary: #fce7f3;
  --wfc-bg-blue: #e0f2fe;
  --wfc-border: #e0e7ff;
  --wfc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --wfc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --wfc-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --wfc-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --wfc-gradient: linear-gradient(135deg, #60a5fa, #f472b6);
  --wfc-gradient-warm: linear-gradient(135deg, #fbbf24, #fb923c);
  --wfc-radius: 20px;
  --wfc-radius-lg: 28px;
  --wfc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-dark {
  --wfc-text: #f1f5f9;
  --wfc-text-light: #cbd5e1;
  --wfc-bg: #0f172a;
  --wfc-bg-secondary: #1e293b;
  --wfc-bg-tertiary: #334155;
  --wfc-bg-blue: #1e3a5f;
  --wfc-border: #334155;
  --wfc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --wfc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --wfc-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --wfc-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fef3c7 0%, #e0f2fe 50%, #fce7f3 100%);
  background-attachment: fixed;
  color: var(--wfc-text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.wfc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Background Pattern === */
.wfc-bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wfc-star,
.wfc-cloud,
.wfc-heart {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 15s ease-in-out infinite;
}

.wfc-star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; font-size: 2.5rem; }
.wfc-star:nth-child(2) { top: 30%; right: 20%; animation-delay: 3s; font-size: 2rem; }
.wfc-star:nth-child(3) { bottom: 20%; left: 25%; animation-delay: 6s; font-size: 3rem; }
.wfc-cloud:nth-child(4) { top: 15%; right: 10%; animation-delay: 2s; font-size: 3rem; }
.wfc-cloud:nth-child(5) { bottom: 30%; right: 30%; animation-delay: 8s; font-size: 2.5rem; }
.wfc-heart:nth-child(6) { top: 50%; left: 5%; animation-delay: 4s; font-size: 2rem; }
.wfc-heart:nth-child(7) { top: 70%; right: 15%; animation-delay: 7s; font-size: 2.5rem; }
.wfc-heart:nth-child(8) { bottom: 10%; left: 40%; animation-delay: 5s; font-size: 2rem; }

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
  75% {
    transform: translate(20px, 5px) rotate(3deg);
  }
}

/* === Header === */
.wfc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wfc-border);
  box-shadow: var(--wfc-shadow-sm);
}

.theme-dark .wfc-header {
  background: rgba(15, 23, 42, 0.9);
}

.wfc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--wfc-text);
  font-weight: 700;
  font-size: 1.25rem;
  transition: opacity 0.2s;
}
.wfc-brand:hover {
  opacity: 0.7;
}

.wfc-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--wfc-shadow-sm);
}

.wfc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wfc-nav a {
  text-decoration: none;
  color: var(--wfc-text-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.wfc-nav a:hover,
.wfc-nav a.active {
  color: var(--wfc-primary);
}

.wfc-theme-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--wfc-bg-blue);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wfc-transition);
}
.wfc-theme-btn:hover {
  background: var(--wfc-primary);
  transform: scale(1.1) rotate(15deg);
}

/* === Hero Section === */
.wfc-hero {
  position: relative;
  padding: 100px 0 80px;
  z-index: 1;
}

.wfc-hero .wfc-container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.wfc-hero-content {
  animation: fadeInLeft 0.8s ease;
}

.wfc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: var(--wfc-shadow-md);
  margin-bottom: 28px;
  border: 2px solid var(--wfc-warning);
}

.wfc-badge-icon {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.wfc-badge-text {
  font-weight: 700;
  color: var(--wfc-text);
  font-size: 0.95rem;
}

.wfc-hero-title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: var(--wfc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wfc-hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--wfc-text-light);
  margin-bottom: 40px;
}

.wfc-hero-description strong {
  color: var(--wfc-primary);
  font-weight: 800;
}

.wfc-hero-icons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.wfc-hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: var(--wfc-shadow-sm);
  transition: var(--wfc-transition);
}

.wfc-hero-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--wfc-shadow-lg);
}

.wfc-hero-icon .icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

.wfc-hero-icon .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wfc-text);
}

/* Hero Illustration */
.wfc-hero-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease;
}

.wfc-illustration-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--wfc-gradient);
  opacity: 0.15;
  animation: pulse 3s ease-in-out infinite;
}

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

.wfc-illustration-emoji {
  position: absolute;
  font-size: 8rem;
  animation: floatEmoji 4s ease-in-out infinite;
}

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

/* === Stats Section === */
.wfc-stats {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.wfc-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.wfc-stat-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 36px 28px;
  border-radius: var(--wfc-radius);
  box-shadow: var(--wfc-shadow-lg);
  border: 2px solid var(--wfc-border);
  text-align: center;
  transition: var(--wfc-transition);
}

.wfc-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--wfc-shadow-xl);
}

.wfc-stat-illustration {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: bounce 2s ease-in-out infinite;
}

.wfc-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--wfc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'Fredoka', sans-serif;
}

.wfc-stat-label {
  font-size: 1rem;
  color: var(--wfc-text-light);
  font-weight: 600;
}

/* === Section Header === */
.wfc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.wfc-section-title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wfc-text);
  margin-bottom: 12px;
}

.wfc-section-subtitle {
  font-size: 1.15rem;
  color: var(--wfc-text-light);
}

/* === Features Grid === */
.wfc-features {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.wfc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.wfc-feature-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: var(--wfc-radius);
  box-shadow: var(--wfc-shadow-md);
  border: 2px solid var(--wfc-border);
  transition: var(--wfc-transition);
  opacity: 0;
  transform: translateY(30px);
}

.wfc-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.wfc-feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--wfc-shadow-xl);
  border-color: var(--wfc-primary);
}

.wfc-feature-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.wfc-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wfc-text);
  margin-bottom: 12px;
  font-family: 'Fredoka', sans-serif;
}

.wfc-feature-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wfc-text-light);
}

/* === Impact Section === */
.wfc-impact {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.wfc-impact-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--wfc-radius-lg);
  box-shadow: var(--wfc-shadow-xl);
  border: 3px solid var(--wfc-border);
}

.wfc-impact-header {
  text-align: center;
  margin-bottom: 48px;
}

.wfc-impact-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wfc-text);
  margin-bottom: 12px;
}

.wfc-impact-subtitle {
  font-size: 1.05rem;
  color: var(--wfc-text-light);
}

.wfc-impact-bars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wfc-impact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wfc-impact-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wfc-impact-icon {
  font-size: 1.8rem;
  margin-right: 12px;
}

.wfc-impact-name {
  flex: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wfc-text);
}

.wfc-impact-percent {
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--wfc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wfc-progress-bar {
  height: 16px;
  background: rgba(226, 232, 240, 0.5);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.wfc-progress-fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 1.5s ease;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
}

/* === Stories Slider === */
.wfc-stories {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.wfc-story-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.wfc-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--wfc-gradient);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: var(--wfc-shadow-lg);
  transition: var(--wfc-transition);
  z-index: 10;
}

.wfc-slider-btn:hover {
  transform: translateY(-50%) scale(1.15);
}

.wfc-slider-prev {
  left: 0;
}

.wfc-slider-next {
  right: 0;
}

.wfc-story-track {
  display: flex;
  transition: transform 0.5s ease;
}

.wfc-story-card {
  min-width: 100%;
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  border-radius: var(--wfc-radius-lg);
  box-shadow: var(--wfc-shadow-xl);
  border: 3px solid var(--wfc-border);
}

.wfc-story-image {
  position: relative;
  flex-shrink: 0;
}

.wfc-story-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--wfc-shadow-lg);
  border: 4px solid var(--wfc-primary);
}

.wfc-story-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--wfc-gradient-warm);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--wfc-shadow-md);
}

.wfc-story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wfc-story-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wfc-text);
  margin-bottom: 16px;
  font-family: 'Fredoka', sans-serif;
}

.wfc-story-quote {
  font-size: 5rem;
  font-family: 'Fredoka', serif;
  line-height: 0.6;
  color: var(--wfc-primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.wfc-story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--wfc-text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.wfc-story-location {
  font-size: 1rem;
  color: var(--wfc-text);
  font-weight: 600;
}

/* === CTA Section === */
.wfc-cta {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.wfc-cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--wfc-gradient);
  border-radius: var(--wfc-radius-lg);
  box-shadow: var(--wfc-shadow-xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.wfc-cta-emoji {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.wfc-cta-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.wfc-cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.wfc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wfc-cta-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--wfc-transition);
  font-family: 'Nunito', sans-serif;
}

.wfc-cta-btn-primary {
  background: white;
  color: var(--wfc-primary);
}

.wfc-cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.wfc-cta-btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.wfc-cta-btn-secondary:hover {
  background: white;
  color: var(--wfc-primary);
  transform: translateY(-4px) scale(1.05);
}

/* === Modal === */
.wfc-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.wfc-modal.open {
  pointer-events: all;
  opacity: 1;
}

.wfc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.wfc-modal-content {
  position: relative;
  max-width: 600px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--wfc-bg);
  border-radius: var(--wfc-radius-lg);
  padding: 48px;
  box-shadow: var(--wfc-shadow-xl);
  transform: scale(0.9);
  transition: transform 0.3s;
  border: 3px solid var(--wfc-primary);
}

.wfc-modal.open .wfc-modal-content {
  transform: scale(1);
}

.wfc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--wfc-bg-blue);
  color: var(--wfc-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--wfc-transition);
}

.wfc-modal-close:hover {
  background: var(--wfc-primary);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.wfc-modal-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--wfc-text);
}

.wfc-modal-subtitle {
  font-size: 1.05rem;
  color: var(--wfc-text-light);
  margin-bottom: 32px;
}

.wfc-donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.wfc-amount-btn {
  padding: 18px;
  border: 3px solid var(--wfc-border);
  border-radius: 16px;
  background: var(--wfc-bg);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wfc-text);
  cursor: pointer;
  transition: var(--wfc-transition);
  font-family: 'Nunito', sans-serif;
}

.wfc-amount-btn:hover,
.wfc-amount-btn.selected {
  border-color: var(--wfc-primary);
  background: var(--wfc-gradient);
  color: white;
  transform: scale(1.05);
}

.wfc-custom-amount {
  margin-bottom: 24px;
}

.wfc-custom-amount label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--wfc-text);
}

.wfc-custom-amount input {
  width: 100%;
  padding: 16px;
  border: 3px solid var(--wfc-border);
  border-radius: 12px;
  font-size: 1.05rem;
  background: var(--wfc-bg);
  color: var(--wfc-text);
  font-family: 'Nunito', sans-serif;
}

.wfc-custom-amount input:focus {
  outline: none;
  border-color: var(--wfc-primary);
}

.wfc-payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.wfc-payment-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 3px solid var(--wfc-border);
  border-radius: 16px;
  background: var(--wfc-bg);
  cursor: pointer;
  transition: var(--wfc-transition);
}

.wfc-payment-btn:hover,
.wfc-payment-btn.selected {
  border-color: var(--wfc-primary);
  background: var(--wfc-bg-blue);
  transform: scale(1.05);
}

.wfc-payment-btn img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.wfc-payment-btn span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wfc-text);
}

.wfc-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--wfc-gradient);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--wfc-transition);
  font-family: 'Nunito', sans-serif;
}

.wfc-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--wfc-shadow-xl);
}

/* === Footer === */
.wfc-footer {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--wfc-text-light);
  border-top: 2px solid var(--wfc-border);
  position: relative;
  z-index: 1;
}

/* === Animations === */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .wfc-hero .wfc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wfc-hero-illustration {
    height: 300px;
  }

  .wfc-illustration-circle {
    width: 280px;
    height: 280px;
  }

  .wfc-illustration-emoji {
    font-size: 6rem;
  }

  .wfc-hero-title {
    font-size: 2.8rem;
  }

  .wfc-story-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wfc-story-image img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .wfc-header-inner {
    padding: 12px 16px;
  }

  .wfc-nav {
    gap: 16px;
  }

  .wfc-brand-text {
    display: none;
  }

  .wfc-hero {
    padding: 60px 0 40px;
  }

  .wfc-hero-title {
    font-size: 2.2rem;
  }

  .wfc-hero-description {
    font-size: 1.05rem;
  }

  .wfc-hero-icons {
    gap: 16px;
  }

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

  .wfc-features-grid {
    grid-template-columns: 1fr;
  }

  .wfc-impact-box {
    padding: 32px 24px;
  }

  .wfc-story-slider {
    padding: 0 50px;
  }

  .wfc-story-card {
    padding: 32px 24px;
  }

  .wfc-slider-btn {
    width: 44px;
    height: 44px;
  }

  .wfc-cta-box {
    padding: 48px 32px;
  }

  .wfc-cta-title {
    font-size: 2.2rem;
  }

  .wfc-modal-content {
    padding: 32px 24px;
  }

  .wfc-payment-methods {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .wfc-hero-title {
    font-size: 1.9rem;
  }

  .wfc-section-title {
    font-size: 2.2rem;
  }

  .wfc-stats-grid {
    grid-template-columns: 1fr;
  }

  .wfc-stat-number {
    font-size: 2.2rem;
  }

  .wfc-donation-amounts {
    grid-template-columns: 1fr;
  }

  .wfc-cta-buttons {
    flex-direction: column;
  }

  .wfc-cta-btn {
    width: 100%;
  }

  .wfc-illustration-emoji {
    font-size: 5rem;
  }
}
