/* Student Ambassador Program — content hero & page sections */

.sap-page {
  --sap-accent: #ffb347;
  --sap-green: #368420;
  --sap-green-dark: #2a6a18;
  --sap-cream: #f7f5f0;
  --sap-cream-deep: #efece4;
  --sap-ink: #1a1a1a;
  --sap-muted: #5c5c5c;
  --sap-btn-primary-bg: #ffffff;
  --sap-btn-primary-text: #0a2a4a;
  --sap-btn-primary-hover: #fff8ee;
}

/* ── LaunchGood-inspired layout (Daily Givers style) ── */
.sap-page--lg {
  background: #fff;
  font-family: Outfit, sans-serif;
}

.sap-lg-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sap-green);
  margin-bottom: 12px;
}

.sap-lg-eyebrow--on-dark {
  color: var(--sap-accent);
}

.sap-lg-hero {
  position: relative;
  margin-top: 0;
  padding-top: 100px;
  background: linear-gradient(180deg, var(--sap-cream) 0%, #fff 100%);
  padding-bottom: 56px;
  overflow: hidden;
}

.sap-lg-hero > .nav-section {
  background: transparent !important;
}

.sap-lg-hero > .nav-section.dark-menu {
  background: transparent !important;
}

.sap-lg-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
}

.sap-lg-hero__title {
  font-size: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--sap-ink);
  margin: 0 0 20px;
  text-wrap: balance;
}

.sap-lg-hero__title span {
  color: var(--sap-green);
}

.sap-lg-hero__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--sap-muted);
  margin: 0 0 20px;
  max-width: 520px;
}

.sap-lg-hero__duties {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.sap-lg-hero__duties li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #3d4f3d;
}

.sap-lg-hero__duties li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sap-green);
}

.sap-lg-hero__duties a {
  color: var(--sap-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sap-lg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sap-lg-hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sap-lg-hero__showcase {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(54, 132, 32, 0.14);
  border-radius: 20px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 48px rgba(31, 61, 24, 0.08);
}

.sap-lg-hero__showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sap-lg-hero__showcase-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sap-muted);
}

.sap-lg-hero__showcase-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(54, 132, 32, 0.1);
  border: 1px solid rgba(54, 132, 32, 0.22);
  color: var(--sap-green);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.sap-lg-hero__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sap-cream);
  margin-bottom: 14px;
  text-align: center;
}

.sap-lg-hero__photo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 200px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.sap-lg-chips--hero {
  margin-bottom: 12px;
}

.sap-lg-chip--hero {
  background: rgba(54, 132, 32, 0.08);
  border: 1px solid rgba(54, 132, 32, 0.16);
  color: var(--sap-green-dark);
  font-size: 0.75rem;
  padding: 6px 10px;
}

.sap-lg-hero__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sap-lg-hero__points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #4a5a4a;
}

.sap-lg-hero__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sap-green);
}

.sap-lg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--sap-green);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(54, 132, 32, 0.25);
}

.sap-lg-cta:hover {
  background: var(--sap-green-dark);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.sap-lg-cta--light {
  background: #fff;
  color: var(--sap-green) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.sap-lg-cta--light:hover {
  background: #f4f9f2;
  color: var(--sap-green-dark) !important;
}

.sap-lg-cta--sm {
  padding: 13px 28px;
  font-size: 0.9375rem;
}

.sap-lg-cta--ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.sap-lg-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.sap-lg-cta--outline {
  background: transparent;
  color: var(--sap-green) !important;
  border: 2px solid var(--sap-green);
  box-shadow: none;
}

.sap-lg-cta--outline:hover {
  background: rgba(54, 132, 32, 0.06);
}

.sap-lg-stats-bar {
  background: var(--sap-green);
  padding: 28px 0;
}

.sap-lg-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sap-lg-stats-bar__item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sap-lg-stats-bar__item:last-child {
  border-right: none;
}

.sap-lg-stats-bar__num {
  display: block;
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.sap-lg-stats-bar__label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  margin-top: 4px;
}

.sap-lg-section {
  padding: 72px 0;
}

.sap-lg-section--cream {
  background: var(--sap-cream);
}

.sap-lg-section--duties {
  background: linear-gradient(180deg, #fff 0%, #f4f9f2 100%);
  border-top: 1px solid #e8efe4;
  border-bottom: 1px solid #e8efe4;
}

.sap-lg-section--duties .sap-lg-chip {
  background: var(--sap-green-dark);
}

.sap-lg-section--duties .sap-task-card {
  background: #fff;
  border: 1px solid #e5efe0;
  box-shadow: 0 4px 18px rgba(54, 132, 32, 0.07);
}

.sap-lg-section--duties .sap-task-card__icon {
  background: rgba(54, 132, 32, 0.12);
  color: var(--sap-green);
}

.sap-lg-section--duties .sap-task-card a {
  color: var(--sap-green-dark);
}

.sap-lg-section--green {
  background: linear-gradient(135deg, #1d4d0e 0%, var(--sap-green) 100%);
  color: #fff;
}

.sap-lg-section--trust {
  background: #f4f9f2;
  border-top: 1px solid #e5efe0;
  border-bottom: 1px solid #e5efe0;
}

.sap-lg-section--narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sap-lg-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.sap-lg-section-head--light .sap-lg-section__title,
.sap-lg-section-head--light .sap-lg-section__text {
  color: #fff;
}

.sap-lg-section__title {
  font-size: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem);
  font-weight: 800;
  color: var(--sap-ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

.sap-lg-section__title--light {
  color: #fff;
}

.sap-lg-section__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--sap-muted);
  margin: 0 0 12px;
}

.sap-lg-section__text--light {
  color: rgba(255, 255, 255, 0.88);
}

.sap-lg-section__text a,
.sap-scholarship-panel__copy a,
.sap-task-card a,
.sap-support-card a,
.sap-feature-card a,
.sap-apply-checklist a {
  color: var(--sap-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sap-lg-quote {
  background: var(--sap-cream-deep);
  padding: 48px 0;
  text-align: center;
}

.sap-lg-quote__inner {
  max-width: 680px;
  margin-inline: auto;
}

.sap-lg-quote__text {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  font-weight: 700;
  font-style: italic;
  color: var(--sap-ink);
  line-height: 1.5;
  margin: 0 0 12px;
}

.sap-lg-quote__sub {
  font-size: 1rem;
  color: var(--sap-muted);
  line-height: 1.7;
  margin: 0;
}

.sap-lg-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-lg-compare-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sap-lg-compare-card__or {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sap-muted);
  margin-bottom: 8px;
}

.sap-lg-compare-card__small {
  font-size: 0.9375rem;
  color: #888;
  margin: 0 0 12px;
  line-height: 1.5;
}

.sap-lg-compare-card__arrow {
  display: block;
  font-size: 1.25rem;
  color: var(--sap-green);
  margin-bottom: 12px;
}

.sap-lg-compare-card__big {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sap-ink);
  margin: 0;
  line-height: 1.5;
}

.sap-lg-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sap-lg-chips--wrap {
  flex-wrap: wrap;
  overflow-x: visible;
  justify-content: center;
}

.sap-lg-chip {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sap-green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.sap-lg-chip--outline {
  background: #fff;
  color: var(--sap-green);
  border: 1.5px solid #c8e0bc;
}

.sap-lg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.sap-lg-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
}

.sap-lg-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--sap-green);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.sap-lg-step h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}

.sap-lg-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.sap-lg-steps-cta {
  text-align: center;
}

.sap-lg-community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-lg-community-card {
  background: #fff;
  border: 1px solid #e5efe0;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(54, 132, 32, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sap-lg-community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(54, 132, 32, 0.1);
}

.sap-lg-community-card__emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.sap-lg-community-card__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--sap-green);
  line-height: 1.1;
}

.sap-lg-community-card__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--sap-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.sap-lg-trust-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin-inline: auto;
}

.sap-lg-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.975rem;
  color: var(--sap-ink);
}

.sap-lg-trust-list .fa {
  color: var(--sap-green);
}

.sap-task-grid--lg {
  grid-template-columns: repeat(3, 1fr);
}

.sap-donate-panel--lg {
  background: linear-gradient(135deg, #1d4d0e 0%, #2d7a18 55%, var(--sap-green) 100%);
  border-radius: 24px;
}

.sap-donate-panel--lg .sap-donate-panel__copy p {
  color: rgba(255, 255, 255, 0.9);
}

.sap-apply-layout--lg {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}

.sap-apply-checklist--lg {
  margin-bottom: 24px;
}

/* Apply section — spacious contact-style layout */
.sap-lg-apply {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #f7f5f0 0%, #fff 40%);
  border-top: 1px solid #e8e4dc;
}

.sap-lg-apply__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.sap-lg-apply__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.sap-lg-apply-card {
  padding: 44px 40px 48px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.sap-lg-apply-card__title {
  margin: 0 0 6px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--sap-ink);
}

.sap-lg-apply-card__sub {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--sap-muted);
}

.sap-lg-form__legend {
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8efe4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sap-green);
}

.sap-lg-apply-form .sap-lg-form__legend:first-of-type {
  margin-top: 0;
}

.sap-lg-apply-form .cu-form__row {
  gap: 20px;
  margin-bottom: 20px;
}

.sap-lg-apply-form .cu-form__group--full {
  margin-bottom: 20px;
}

.sap-lg-apply-form .cu-form__input {
  padding: 14px 18px;
  font-size: 0.975rem;
}

.sap-lg-apply-form .cu-form__textarea {
  min-height: 130px;
  line-height: 1.6;
}

.sap-lg-apply-form .cu-form__file-label {
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.sap-lg-apply-submit {
  margin-top: 12px;
  width: auto !important;
  align-self: flex-start;
  padding: 15px 40px !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
}

.sap-lg-apply__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sap-lg-apply-aside__card {
  background: #fff;
  border: 1px solid #e5efe0;
  border-radius: 16px;
  padding: 24px 22px;
}

.sap-lg-apply-aside__card--steps {
  background: #f4f9f2;
  border-color: #ddefd6;
}

.sap-lg-apply-aside__card--tip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0f8ec 0%, #fff 100%);
  border-color: #c8e0bc;
}

.sap-lg-apply-aside__card--tip .fa {
  flex-shrink: 0;
  font-size: 1.375rem;
  color: var(--sap-green);
  margin-top: 2px;
}

.sap-lg-apply-aside__card--tip p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #4a5a4a;
}

.sap-lg-apply-aside__card--tip a {
  color: var(--sap-green);
  font-weight: 600;
}

.sap-lg-apply-aside__title {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sap-ink);
}

.sap-lg-apply-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-lg-apply-aside__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4a5a4a;
}

.sap-lg-apply-aside__list li:last-child {
  margin-bottom: 0;
}

.sap-lg-apply-aside__list .fa {
  color: var(--sap-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.sap-lg-apply-aside__steps {
  margin: 0;
  padding: 0 0 0 1.15rem;
}

.sap-lg-apply-aside__steps li {
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5a4a;
}

.sap-lg-apply-aside__steps li:last-child {
  margin-bottom: 0;
}

.sap-lg-apply-aside__steps strong {
  color: var(--sap-ink);
}

.sap-section--apply {
  background: #f4f8f3;
}

@media (max-width: 991.98px) {
  .sap-lg-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sap-lg-hero__lead,
  .sap-lg-hero__duties {
    margin-inline: auto;
  }

  .sap-lg-hero__duties li {
    text-align: left;
  }

  .sap-lg-hero__cta {
    justify-content: center;
  }

  .sap-lg-hero__visual {
    order: -1;
  }

  .sap-lg-hero__showcase {
    margin-inline: auto;
  }

  .sap-lg-hero__photo img {
    max-height: 220px;
  }
  }

  .sap-task-grid--lg {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .sap-lg-section {
    padding: 48px 0;
  }

  .sap-lg-stats-bar {
    padding: 20px 0;
  }

  .sap-lg-stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .sap-lg-stats-bar__item {
    padding: 6px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
  }

  .sap-lg-stats-bar__item:last-child {
    border-right: none;
  }

  .sap-lg-stats-bar__num {
    font-size: 1.25rem;
  }

  .sap-lg-stats-bar__label {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  .sap-lg-community-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .sap-lg-community-card {
    padding: 16px 8px;
    border-radius: 14px;
  }

  .sap-lg-community-card__emoji {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }

  .sap-lg-community-card__num {
    font-size: 1.25rem;
  }

  .sap-lg-community-card__label {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  .sap-lg-compare-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .sap-lg-compare-card {
    padding: 16px 10px;
    border-radius: 14px;
  }

  .sap-lg-compare-card__or {
    font-size: 0.625rem;
    margin-bottom: 4px;
  }

  .sap-lg-compare-card__small {
    font-size: 0.6875rem;
    margin-bottom: 6px;
  }

  .sap-lg-compare-card__arrow {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .sap-lg-compare-card__big {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .sap-lg-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }

  .sap-lg-step {
    padding: 16px 10px;
    border-radius: 14px;
  }

  .sap-lg-step__num {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .sap-lg-step h3 {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .sap-lg-step p {
    font-size: 0.625rem;
    line-height: 1.4;
  }

  .sap-lg-apply__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sap-lg-apply__aside {
    position: static;
  }

  .sap-lg-apply-card {
    padding: 28px 22px 32px;
  }

  .sap-lg-apply-form .cu-form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .sap-lg-apply-form .cu-form__group {
    margin-bottom: 14px;
  }
}

.sap-hero {
  --sap-bg-start: #0a2a4a;
  --sap-bg-mid: #1a5f9e;
  --sap-bg-end: #2d7eb8;
  --sap-accent: #ffb347;
  --sap-accent-soft: rgba(255, 179, 71, 0.2);
  --sap-cool-glow: rgba(125, 211, 252, 0.14);
  --sap-text: #ffffff;
  --sap-text-muted: rgba(255, 255, 255, 0.84);
  --sap-btn-primary-bg: #ffffff;
  --sap-btn-primary-text: #0a2a4a;
  --sap-btn-primary-hover: #fff8ee;
  --sap-glass-bg: rgba(255, 255, 255, 0.1);
  --sap-glass-border: rgba(255, 255, 255, 0.22);
  --sap-green: #368420;

  background: linear-gradient(135deg, var(--sap-bg-start) 0%, var(--sap-bg-mid) 52%, var(--sap-bg-end) 100%);
  padding-bottom: 48px;
  position: relative;
  margin-top: 0;
}

.sap-hero > .nav-section {
  margin-top: 0;
  top: 0;
}

.sap-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 35%, var(--sap-accent-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 90%, var(--sap-cool-glow) 0%, transparent 50%);
  pointer-events: none;
}

.sap-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 41px;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
}

.sap-hero__eyebrow {
  display: inline-block;
  font-family: Outfit, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sap-accent);
  margin-bottom: 8px;
}

.sap-hero__heading {
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  color: var(--sap-text);
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}

.sap-hero__heading span {
  color: var(--sap-accent);
}

.sap-hero__lead {
  font-family: Outfit, sans-serif;
  font-size: 1.0625rem;
  color: var(--sap-text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 520px;
}

.sap-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sap-btn-primary {
  background: var(--sap-btn-primary-bg);
  color: var(--sap-btn-primary-text) !important;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.sap-btn-primary:hover {
  background: var(--sap-btn-primary-hover);
  color: var(--sap-btn-primary-text) !important;
  text-decoration: none;
}

.sap-btn-outline {
  background: transparent;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.sap-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  text-decoration: none;
}

.sap-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sap-hero__showcase {
  background: var(--sap-glass-bg);
  border: 1px solid var(--sap-glass-border);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sap-hero__showcase-title {
  margin: 0 0 14px;
  font-family: Outfit, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.sap-hero__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sap-hero__points li {
  position: relative;
  padding-left: 18px;
  font-family: Outfit, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.sap-hero__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sap-accent);
}

.sap-hero__stat-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sap-hero__stat {
  background: var(--sap-glass-bg);
  border: 1px solid var(--sap-glass-border);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sap-hero__stat-num {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
  font-weight: 900;
  color: var(--sap-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.sap-hero__stat-label {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

/* Page sections */
.sap-page {
  font-family: Outfit, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sap-section {
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}

.sap-section--alt {
  background: #f3f6f1;
}

.sap-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 1.25rem + 2vw, 3rem);
}

.sap-section-eyebrow {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sap-green);
}

.sap-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.125rem);
  font-weight: 800;
  color: #1a2e1a;
  line-height: 1.2;
  text-wrap: balance;
}

.sap-section-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5a4a;
}

.sap-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-task-card {
  background: #fff;
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(26, 46, 26, 0.05);
}

.sap-task-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(54, 132, 32, 0.12);
  color: var(--sap-green);
  font-size: 1rem;
  margin-bottom: 12px;
}

.sap-task-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3d4a3d;
}

.sap-visual-panel {
  margin-top: clamp(1.5rem, 1rem + 2vw, 2rem);
  margin-inline: auto;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 46, 26, 0.08);
  box-shadow: 0 4px 24px rgba(26, 46, 26, 0.06);
}

.sap-visual-panel img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.sap-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.sap-skill-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(54, 132, 32, 0.15);
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3b2d;
  line-height: 1.4;
}

.sap-skill-pill .fa {
  flex-shrink: 0;
  color: var(--sap-green);
  font-size: 1rem;
}

/* Growth / benefits section */
.sap-growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.sap-growth-card {
  background: #fff;
  border: 1px solid #e2ebe0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(10, 42, 74, 0.05);
}

.sap-growth-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(26, 95, 158, 0.1);
  color: #1a5f9e;
  font-size: 1.0625rem;
  margin-bottom: 12px;
}

.sap-growth-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2e1a;
}

.sap-growth-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4a5a4a;
}

.sap-outcomes-panel {
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5f9e 100%);
  border-radius: 20px;
  padding: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  color: #fff;
}

.sap-outcomes-panel__head {
  margin-bottom: 24px;
  max-width: 640px;
}

.sap-outcomes-panel__title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.625rem);
  font-weight: 800;
  color: #fff;
}

.sap-outcomes-panel__lead {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.sap-outcomes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-outcomes-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px 16px;
}

.sap-outcomes-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 179, 71, 0.2);
  color: var(--sap-accent);
  font-size: 1.0625rem;
}

.sap-outcomes-item__body h4 {
  margin: 0 0 6px;
  font-size: 0.975rem;
  font-weight: 700;
  color: #fff;
}

.sap-outcomes-item__body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.sap-outcomes-item__body a {
  color: var(--sap-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sap-benefits-copy {
  max-width: 800px;
  margin: 0 auto;
}

.sap-benefits-copy p,
.sap-benefits-copy ul {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5a4a;
}

.sap-benefits-copy ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.sap-benefits-copy li {
  margin-bottom: 8px;
}

.sap-apply-band {
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5f9e 100%);
  border-radius: 20px;
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  color: #fff;
  text-align: center;
}

.sap-apply-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.375rem, 1.1rem + 0.8vw, 1.875rem);
  font-weight: 800;
}

.sap-apply-band p {
  margin: 0 auto 20px;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.sap-apply-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.sap-apply-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.875rem;
  font-weight: 600;
}

.sap-apply-list .fa {
  color: var(--sap-accent);
}

.sap-apply-band .sap-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Support cards */
.sap-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-support-card {
  background: #fff;
  border: 1px solid #e2ebe0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(10, 42, 74, 0.06);
}

.sap-support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(54, 132, 32, 0.1);
  color: var(--sap-green);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.sap-support-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2e1a;
}

.sap-support-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #4a5a4a;
}

.sap-support-card--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0f8ec 0%, #fff 100%);
  border-color: #c8e0bc;
}

.sap-support-card--highlight a,
.sap-feature-card a,
.sap-benefits-copy a,
.sap-apply-checklist a,
.sap-scholarship-panel__copy a {
  color: #368420;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Scholarship panel */
.sap-section--scholarship {
  padding-top: 0;
}

.sap-scholarship-panel {
  display: block;
  background: linear-gradient(135deg, #f4f9f2 0%, #e8f3e4 100%);
  border: 1px solid #ddefd6;
  border-radius: 24px;
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
}

.sap-section-eyebrow--scholarship {
  color: #368420;
}

.sap-scholarship-panel__copy p {
  color: #4a5a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sap-scholarship-points {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.sap-scholarship-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: #3a4a3a;
  line-height: 1.6;
}

.sap-scholarship-points .fa {
  color: #368420;
  margin-top: 3px;
  flex-shrink: 0;
}

.sap-scholarship-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sap-btn-outline--green {
  border: 2px solid #368420 !important;
  color: #368420 !important;
  background: transparent !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.sap-btn-outline--green:hover {
  background: rgba(54, 132, 32, 0.08) !important;
  color: #2a6a18 !important;
}

.sap-scholarship-panel__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #ddefd6;
  border-radius: 14px;
  padding: 20px;
}

.sap-scholarship-panel__note .fa {
  color: #368420;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sap-scholarship-panel__note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #4a5a4a;
}

.sap-benefits-copy__scholarship {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2ebe0;
}

/* Feature talking points */
.sap-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sap-feature-card {
  background: linear-gradient(160deg, #f8fbf7 0%, #fff 100%);
  border: 1px solid #e2ebe0;
  border-radius: 16px;
  padding: 22px;
}

.sap-feature-card__num {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a5f9e;
  margin-bottom: 8px;
}

.sap-feature-card__num .fa {
  font-size: 1.25rem;
}

.sap-feature-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e1a;
}

.sap-feature-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5a4a;
}

/* Donate panel */
.sap-section--donate {
  padding-top: 0;
}

.sap-donate-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5f9e 100%);
  border-radius: 20px;
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  color: #fff;
}

.sap-section-eyebrow--dark {
  color: var(--sap-accent);
}

.sap-section-title--dark {
  color: #fff;
}

.sap-donate-panel__copy p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sap-donate-points {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.sap-donate-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.sap-donate-points .fa {
  color: var(--sap-accent);
  margin-top: 3px;
}

.sap-donate-steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: sap-step;
}

.sap-donate-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.sap-donate-steps__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sap-accent);
  color: #0a2a4a;
  font-size: 0.8125rem;
  font-weight: 800;
}

.sap-donate-steps a,
.sap-donate-panel__copy a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sap-donate-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.sap-btn-outline--light {
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  background: transparent !important;
}

.sap-btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.sap-donate-panel__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sap-donate-panel__tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.35);
  border-radius: 14px;
  padding: 16px;
}

.sap-donate-panel__tip .fa {
  color: var(--sap-accent);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sap-donate-panel__tip p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.sap-btn-primary--green {
  background: #368420 !important;
  color: #fff !important;
  border: none;
}

.sap-btn-primary--green:hover {
  background: #2d6b1a !important;
  color: #fff !important;
}

.sap-donate-panel__url {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 20px;
}

.sap-donate-panel__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sap-accent);
  margin-bottom: 10px;
}

.sap-donate-panel__code {
  display: block;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.8125rem;
  color: #fff;
  word-break: break-all;
  white-space: normal;
}

/* Application form */
.sap-section--apply {
  background: #f4f8f3;
}

.sap-apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.sap-apply-checklist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sap-apply-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: #4a5a4a;
}

.sap-apply-checklist .fa {
  color: var(--sap-green);
  margin-top: 2px;
}

.sap-apply-form-card {
  margin: 0;
}

.sap-apply-form-card .cu-form__submit {
  width: 100%;
  align-self: stretch;
  text-align: center;
}

.sap-task-card a {
  color: var(--sap-green);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .sap-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .sap-hero__lead {
    max-width: 100%;
  }

  .sap-task-grid {
    grid-template-columns: 1fr;
  }

  .sap-support-grid,
  .sap-features-grid {
    grid-template-columns: 1fr;
  }

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

  .sap-outcomes-list {
    grid-template-columns: 1fr;
  }

  .sap-donate-panel {
    grid-template-columns: 1fr;
  }

  .sap-scholarship-panel {
    grid-template-columns: 1fr;
  }

  .sap-scholarship-panel__actions {
    flex-direction: column;
  }

  .sap-scholarship-panel__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sap-donate-panel__actions {
    flex-direction: column;
  }

  .sap-donate-panel__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sap-apply-layout {
    grid-template-columns: 1fr;
  }

  .sap-skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .sap-hero__cta {
    flex-direction: column;
  }

  .sap-hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .sap-visual-panel {
    max-width: 100%;
    padding: 8px;
  }

  .sap-visual-panel img {
    max-height: 240px;
  }

  .sap-growth-grid {
    grid-template-columns: 1fr;
  }

  .sap-skills-grid {
    grid-template-columns: 1fr;
  }
}
