.hero {
  background: linear-gradient(150deg, var(--blue-pale) 0%, #e8f0fe 60%, #dceeff 100%);
  border-bottom: 1px solid var(--blue-border);
}

.hero .inner {
  padding: 20px 40px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--amber-badge); color: var(--amber-text);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 36px; font-weight: 800; color: var(--blue-dark);
  line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.7px;
}

.hero-text h1 span { color: var(--amber-text); }

.hero-text p {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; margin-bottom: 14px;
}

.hero-text p:last-of-type { margin-bottom: 32px; }

.coffee-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFDD00; color: #000;
  border: none; border-radius: var(--radius-sm);
  padding: 14px 28px; font-size: 15px; font-weight: 800;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}

.coffee-btn:hover { background: #f5d000; text-decoration: none; color: #000; }
.coffee-btn:active { transform: scale(0.98); }

.coffee-btn-icon { font-size: 20px; line-height: 1; }

.hero-stats {
  background: var(--white);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(138, 90, 0, 0.08);
}

.hero-stats-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--amber-text);
  margin-bottom: 20px;
}

.stat-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--blue-border);
}

.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-of-type { padding-top: 0; }

.stat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}

.stat-icon svg { width: 20px; height: 20px; }

.stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; text-align: left;}
.stat-value { font-size: 18px; font-weight: 800; color: var(--blue-dark); letter-spacing: -0.3px; }

.supports-section { background: var(--white); border-bottom: 1px solid var(--blue-border); }
.supports-section .inner { padding: 64px 40px; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px; }

.supports-section h2 { font-size: 26px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; letter-spacing: -0.4px; }
.supports-section .sub { font-size: 15px; color: var(--text-body); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }

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

.support-card {
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.support-card-icon {
  width: 44px; height: 44px; background: var(--blue-light);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.support-card-icon svg { width: 22px; height: 22px; }
.support-card h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 7px; }
.support-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }

.giving-section { background: var(--blue-pale); border-bottom: 1px solid var(--blue-border); }
.giving-section .inner { padding: 64px 40px; }

.giving-section h2 { font-size: 26px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; letter-spacing: -0.4px; }
.giving-section .sub { font-size: 15px; color: var(--text-body); margin-bottom: 40px; }

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

.giving-card {
  background: var(--white);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.giving-card:hover {
  box-shadow: 0 8px 28px rgba(19,84,163,0.10);
  transform: translateY(-3px);
}

.giving-card.featured {
  border-color: #FFDD00;
  border-width: 2px;
  position: relative;
}

.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #FFDD00; color: #7a5800;
  font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

.giving-amount {
  font-size: 36px; font-weight: 800; color: var(--blue-dark);
  letter-spacing: -1px; margin: 16px 0 4px; line-height: 1;
}

.giving-amount sup { font-size: 18px; vertical-align: super; }

.giving-label {
  font-size: 13px; color: var(--text-muted); margin-bottom: 16px;
}

.giving-perks {
  list-style: none; margin-bottom: 24px; text-align: left; width: 100%;
}

.giving-perks li {
  font-size: 13px; color: var(--text-body);
  padding: 5px 0; display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid var(--blue-border);
}

.giving-perks li:last-child { border-bottom: none; }

.perk-check {
  width: 16px; height: 16px; flex-shrink: 0;
  background: #edfbf3; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.perk-check svg { width: 9px; height: 9px; }

.give-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--blue-brand); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 11px 20px; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.give-btn:hover { background: #1060c0; text-decoration: none; color: var(--white); }
.give-btn:active { transform: scale(0.98); }

.give-btn.coffee {
  background: #FFDD00; color: #000;
}

.give-btn.coffee:hover { background: #f5d000; color: #000; }

.other-section { background: var(--white); border-bottom: 1px solid var(--blue-border); }
.other-section .inner { padding: 64px 40px; }
.other-section h2 { font-size: 26px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; letter-spacing: -0.4px; }
.other-section .sub { font-size: 15px; color: var(--text-body); margin-bottom: 40px; }

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

.other-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--blue-pale); border: 1px solid var(--blue-border);
  border-radius: var(--radius-md); padding: 22px 20px;
}

.other-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}

.other-icon svg { width: 22px; height: 22px; }
.other-card h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.other-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }
.other-card a { font-weight: 600; }

.thankyou-section { background: var(--blue-dark); }
.thankyou-section .inner {
  padding: 56px 40px;
  text-align: center;
}

.thankyou-section h2 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.4px; }
.thankyou-section p { font-size: 15px; color: #8ab0d8; line-height: 1.75; max-width: 560px; margin: 0 auto 28px; }

.thankyou-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue-brand);
  border-radius: var(--radius-sm); padding: 13px 28px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background 0.15s;
}

.thankyou-btn:hover { background: var(--blue-pale); text-decoration: none; }

@media (max-width: 900px) {
  .hero .inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 820px) {
  .hero-text h1 { font-size: 28px; }
  .supports-grid { grid-template-columns: 1fr; }
  .giving-grid { grid-template-columns: 1fr; max-width: 380px; }
  .other-grid { grid-template-columns: 1fr; }
  .supports-section .inner,
  .giving-section .inner,
  .other-section .inner,
  .thankyou-section .inner { padding: 44px 20px; }
}

@media (max-width: 480px) {
  .giving-grid { max-width: 100%; }
}