/* ============================================
   FUNDRAISING PAGE STYLES
   ============================================ */

.fundraising-page {
  background: var(--paper);
}

/* ========================= HERO ========================= */
.fund-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 5% 70px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.fund-hero-content {
  flex: 1;
  max-width: 560px;
}

.fund-hero-kicker {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 18px;
  text-transform: capitalize;
}

.fund-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.fund-hero-content h1 em {
  color: var(--teal);
  font-style: normal;
}

.fund-hero-content > p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 28px;
}

.fund-hero-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fund-hero-pills li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  padding: 14px 22px;
  background: var(--paper-deep);
  border-radius: 40px;
  border-left: 5px solid var(--teal);
}

.fund-hero-pills li:nth-child(2) { border-left-color: var(--lime); }
.fund-hero-pills li:nth-child(3) { border-left-color: var(--pink); }

.fund-hero-image {
  flex: 1;
  max-width: 600px;
}

.fund-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================= WHY SCHOOLS LOVE ========================= */
.fund-why {
  padding: 70px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.fund-why h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.fund-why h2 em {
  color: var(--lime);
  font-style: normal;
}

.fund-why-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.fund-why-text {
  flex: 1;
}

.fund-why-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fund-why-text p.highlight {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
  font-style: italic;
  padding: 22px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
}

.fund-why-image {
  flex: 1;
  max-width: 550px;
}

.fund-why-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ========================= STEPS / HOW IT WORKS ========================= */
.fund-steps {
  padding: 70px 5%;
  background: var(--paper-deep);
}

.fund-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.fund-steps h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.fund-steps h2 em {
  color: var(--teal);
  font-style: normal;
}

.fund-steps-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 50px;
}

.fund-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.fund-step {
  background: var(--paper);
  border-radius: 20px;
  padding: 34px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fund-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.fund-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 18px;
}

.fund-step:nth-child(2) .fund-step-num { background: linear-gradient(135deg, var(--lime), var(--orange)); }
.fund-step:nth-child(3) .fund-step-num { background: linear-gradient(135deg, var(--pink), var(--teal)); }
.fund-step:nth-child(4) .fund-step-num { background: linear-gradient(135deg, var(--orange), var(--pink)); }

.fund-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.fund-step p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* ========================= RECEIVE CHECKLIST ========================= */
.fund-receive {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.fund-receive-image {
  flex: 1;
  max-width: 520px;
}

.fund-receive-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.fund-receive-content {
  flex: 1;
}

.fund-receive-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 30px;
  text-transform: capitalize;
}

.fund-receive-content h2 em {
  color: var(--lime);
  font-style: normal;
}

.fund-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fund-check-list li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fund-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: var(--paper);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
}

/* ========================= RESULTS / RIPPLE ========================= */
.fund-results {
  padding: 80px 5%;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(196, 216, 46, 0.08));
}

.fund-results-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fund-results h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.fund-results h2 em {
  color: var(--teal);
  font-style: normal;
}

.fund-results-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.fund-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fund-result-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 40px 34px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.fund-result-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 24px;
}

.fund-result-card h3 span {
  color: var(--teal);
}

.fund-result-card:nth-child(2) h3 span {
  color: var(--pink);
}

.fund-result-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fund-result-card li {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--graphite);
  line-height: 1.5;
  padding: 12px 0 12px 28px;
  position: relative;
}

.fund-result-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

.fund-result-card:nth-child(2) li::before {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

/* ========================= TESTIMONIALS ========================= */
.fund-testimonials {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.fund-testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 50px;
  text-transform: capitalize;
}

.fund-testimonials h2 em {
  color: var(--lime);
  font-style: normal;
}

.fund-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fund-quote-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fund-quote-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--teal);
}

.fund-quote-card:nth-child(2) .quote-mark { color: var(--pink); }
.fund-quote-card:nth-child(3) .quote-mark { color: var(--orange); }

.fund-quote-card blockquote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.fund-quote-card cite {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--graphite);
  font-style: normal;
}

/* ========================= CLOSING CTA ========================= */
.fund-cta {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.fund-cta-content {
  flex: 1;
}

.fund-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.fund-cta-content h2 em {
  color: var(--teal);
  font-style: normal;
}

.fund-cta-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 30px;
}

.fund-cta-image {
  flex: 1;
  max-width: 460px;
}

.fund-cta-image img {
  width: 100%;
  height: auto;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .fund-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .fund-hero,
  .fund-why-content,
  .fund-receive,
  .fund-cta {
    flex-direction: column;
    text-align: left;
  }

  .fund-hero {
    padding: 120px 5% 50px;
  }

  .fund-hero-content,
  .fund-why-image,
  .fund-receive-image,
  .fund-cta-image {
    max-width: 100%;
  }

  .fund-results-grid,
  .fund-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .fund-receive {
    flex-direction: column-reverse;
  }
}

@media (max-width: 560px) {
  .fund-steps-grid {
    grid-template-columns: 1fr;
  }
}
