/* BEWS Scholarship — Premium page styles (self-contained) */

.scholarship-page {
  --sch-navy: #001a40;
  --sch-navy-mid: #002855;
  --sch-blue: #2b59ff;
  --sch-blue-dark: #0047ab;
  --sch-gold: #ff9900;
  --sch-gold-dark: #e68600;
  --sch-gold-glow: rgba(255, 153, 0, 0.35);
  --sch-white: #ffffff;
  --sch-muted: #8fa3bf;
  --sch-text: #2d2d2d;
  --sch-border: #e2e8f4;
  --sch-radius: 16px;
  --sch-font-head: 'Libre Baskerville', Georgia, serif;
  --sch-font-body: 'Source Sans 3', system-ui, sans-serif;
  --sch-shadow-form: 0 32px 80px rgba(0, 26, 64, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow-x: clip;
  max-width: 100%;
}

/* ── Top bar ── */
.sch-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, var(--sch-gold-dark), var(--sch-gold));
  color: #fff;
  font-family: var(--sch-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  overflow-x: clip;
}

.sch-bar strong { font-weight: 800; }
.sch-bar em { font-style: normal; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.sch-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: sch-pulse 1.8s ease infinite;
}

@keyframes sch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Hero ── */
.sch-hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--sch-navy) 0%, var(--sch-navy-mid) 45%, #0a3270 100%);
  overflow: hidden;
}

.sch-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(43, 89, 255, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 153, 0, 0.15) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

.sch-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

/* Left content */
.sch-hero-chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: 999px;
  font-family: var(--sch-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd699;
}

.sch-hero-left h1 {
  font-family: var(--sch-font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.sch-hero-gold {
  display: block;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, #ffd54f 0%, var(--sch-gold) 50%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px var(--sch-gold-glow));
  margin: 0.15rem 0;
}

.sch-hero-desc {
  font-family: var(--sch-font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  margin-bottom: 2rem;
}

.sch-hero-desc strong { color: #fff; }

.sch-stats {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.sch-stat {
  flex: 1;
  min-width: 110px;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.sch-stat-num {
  display: block;
  font-family: var(--sch-font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sch-stat-label {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--sch-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sch-muted);
}

.sch-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.sch-pill {
  text-align: center;
  padding: 0.875rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.sch-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.sch-pill b {
  display: block;
  font-family: var(--sch-font-head);
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1;
}

.sch-pill small {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--sch-font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sch-muted);
}

.sch-pill--featured {
  background: linear-gradient(160deg, rgba(255, 153, 0, 0.25), rgba(255, 107, 0, 0.15));
  border-color: rgba(255, 153, 0, 0.5);
}

.sch-pill--featured b { color: #ffc966; }

.sch-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  max-width: 440px;
}

.sch-checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--sch-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.sch-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sch-gold);
  box-shadow: 0 0 8px var(--sch-gold-glow);
}

/* ── Form card ── */
.sch-form-shell {
  position: sticky;
  top: calc(88px + 1rem);
}

.sch-form {
  background: var(--sch-white);
  border-radius: var(--sch-radius);
  box-shadow: var(--sch-shadow-form);
  overflow: hidden;
}

.sch-form-head {
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, #f8faff 0%, #eef3ff 100%);
  border-bottom: 1px solid var(--sch-border);
}

.sch-form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.875rem;
  background: linear-gradient(135deg, var(--sch-blue), var(--sch-blue-dark));
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(43, 89, 255, 0.35);
}

.sch-form-label {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.625rem;
  background: #e8f5e9;
  color: #1b5e20;
  font-family: var(--sch-font-body);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

.sch-form-head h2 {
  font-family: var(--sch-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sch-navy-mid);
  margin-bottom: 0.35rem;
}

.sch-form-head p {
  font-family: var(--sch-font-body);
  font-size: 0.875rem;
  color: #6b7c93;
  margin: 0;
}

.sch-form-fields {
  padding: 1.5rem 1.75rem 1.75rem;
}

.sch-field {
  margin-bottom: 1rem;
}

.sch-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--sch-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sch-text);
}

.sch-field input,
.sch-field select,
.sch-field textarea {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--sch-font-body);
  font-size: 0.9375rem;
  color: var(--sch-text);
  background: #f4f7fc;
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
}

.sch-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5c5c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.sch-field textarea { resize: vertical; min-height: 72px; }

.sch-field input::placeholder,
.sch-field textarea::placeholder { color: #9aa8bc; }

.sch-field input:hover,
.sch-field select:hover,
.sch-field textarea:hover {
  background: #fff;
  border-color: var(--sch-border);
}

.sch-field input:focus,
.sch-field select:focus,
.sch-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--sch-blue);
  box-shadow: 0 0 0 4px rgba(43, 89, 255, 0.12);
}

.sch-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.sch-field-row .sch-field { margin-bottom: 1rem; }

.sch-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.125rem;
  padding: 0.875rem 1rem;
  background: #f8faff;
  border: 1px solid var(--sch-border);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sch-font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #5c6b80;
}

.sch-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--sch-blue);
}

.sch-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--sch-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--sch-gold) 0%, var(--sch-gold-dark) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--sch-gold-glow);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.sch-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 153, 0, 0.45);
  filter: brightness(1.05);
}

.sch-btn-submit:active { transform: translateY(0); }

.sch-btn-submit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none;
}

.sch-form-safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 1rem 0 0;
  font-family: var(--sch-font-body);
  font-size: 0.8125rem;
  color: #8a96a8;
}

.sch-form-safe svg { color: #00875a; flex-shrink: 0; }
.sch-form-safe a { color: var(--sch-blue); font-weight: 600; text-decoration: none; }
.sch-form-safe a:hover { text-decoration: underline; }

.scholarship-form-error,
.sch-form-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--sch-font-body);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* ── Steps section ── */
.sch-steps {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.sch-steps-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sch-steps-tag {
  display: inline-block;
  margin-bottom: 0.625rem;
  font-family: var(--sch-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sch-blue);
}

.sch-steps-head h2 {
  font-family: var(--sch-font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sch-navy-mid);
}

.sch-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.sch-step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--sch-border);
  border-radius: var(--sch-radius);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 40, 85, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.sch-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 40, 85, 0.1);
}

.sch-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.125rem;
  font-family: var(--sch-font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sch-blue);
  background: #eef3ff;
  border: 2px solid rgba(43, 89, 255, 0.2);
  border-radius: 50%;
}

.sch-step-card h3 {
  font-family: var(--sch-font-head);
  font-size: 1.0625rem;
  color: var(--sch-navy-mid);
  margin-bottom: 0.5rem;
}

.sch-step-card p {
  font-family: var(--sch-font-body);
  font-size: 0.875rem;
  color: #6b7c93;
  line-height: 1.6;
  margin: 0;
}

.sch-steps-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.sch-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-family: var(--sch-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sch-blue);
  background: #fff;
  border: 2px solid var(--sch-blue);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sch-btn-outline:hover {
  background: var(--sch-blue);
  color: #fff;
}

/* ── Mobile sticky CTA ── */
.sch-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem 1.25rem;
  font-family: var(--sch-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--sch-gold), var(--sch-gold-dark));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sch-mobile-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sch-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sch-form-shell {
    order: -1;
    position: static;
  }

  .sch-hero-left { text-align: center; }

  .sch-hero-desc,
  .sch-pills,
  .sch-checklist {
    margin-left: auto;
    margin-right: auto;
  }

  .sch-stats { justify-content: center; }
  .sch-stat { flex: 1 1 calc(33% - 0.6rem); min-width: 95px; }
  .sch-checklist { text-align: left; }

  .sch-steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .sch-mobile-cta { display: block; }

  .scholarship-page .whatsapp-bubble { bottom: 4.75rem !important; }
  .scholarship-page .contact-float { bottom: 5.25rem !important; }
  .scholarship-page .site-footer {
    padding-bottom: 5rem;
  }
}

@media (max-width: 520px) {
  .sch-hero { padding: 2rem 0 3rem; }
  .sch-pills { grid-template-columns: repeat(2, 1fr); }
  .sch-checklist { grid-template-columns: 1fr; }
  .sch-field-row { grid-template-columns: 1fr; }
  .sch-form-fields { padding: 1.25rem; }
  .sch-form-head { padding: 1.5rem 1.25rem 1.25rem; }
  .sch-stat { flex: 1 1 100%; }
}

/* ── CCC Registration page overrides ── */
.ccc-registration-page .sch-hero--ccc {
  padding: 2.5rem 0 3.5rem;
}

.ccc-registration-page .sch-hero-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.ccc-registration-page .sch-hero-desc--center {
  margin-left: auto;
  margin-right: auto;
}

.ccc-registration-page .sch-stats--center {
  justify-content: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ccc-registration-page .sch-checklist--center {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.ccc-registration-page .sch-form-shell--wide {
  position: static;
  max-width: 920px;
  margin: 0 auto;
}

.sch-form-section {
  border: 0;
  margin: 0 0 1.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--sch-border);
}

.sch-form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.sch-form-section legend {
  font-family: var(--sch-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sch-navy-mid);
  padding: 0 0 0.75rem;
  width: 100%;
}

.sch-field--short {
  max-width: 280px;
}

.sch-field--file input[type="file"] {
  padding: 0.65rem;
  font-size: 0.8125rem;
  background: #fff;
  border: 1.5px dashed var(--sch-border);
  border-radius: 10px;
  cursor: pointer;
}

.sch-field--file input[type="file"]:hover {
  border-color: var(--sch-blue);
  background: #f8faff;
}

.sch-field input[readonly] {
  background: #eef2f8;
  color: var(--sch-text);
  cursor: not-allowed;
}

.sch-success-banner {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 1px solid #81c784;
  color: #1b5e20;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .ccc-registration-page .sch-form-shell--wide {
    order: unset;
  }
}

/* ── CCC page — improved layout (v7) ── */
.scholarship-page.ccc-registration-page h1,
.scholarship-page.ccc-registration-page .sch-hero-banner h1 {
  color: #ffffff;
}

.scholarship-page.ccc-registration-page .sch-hero-banner h2,
.scholarship-page.ccc-registration-page .sch-form-head h2 {
  color: var(--sch-navy-mid);
}

.sch-hero-banner {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: linear-gradient(135deg, #001433 0%, var(--sch-navy-mid) 50%, #0d3a8c 100%);
  overflow: hidden;
  text-align: center;
}

.sch-hero-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.sch-hero-banner h1 {
  font-family: var(--sch-font-head);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.sch-hero-lead {
  font-family: var(--sch-font-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.sch-hero-address {
  font-size: 0.9375rem;
  color: var(--sch-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sch-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

.sch-stat-pill {
  flex: 1 1 auto;
  min-width: min(140px, 100%);
  max-width: 200px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.sch-stat-pill strong {
  display: block;
  font-family: var(--sch-font-head);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.2;
}

.sch-stat-pill span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sch-muted);
}

.sch-stat-pill--accent {
  background: rgba(255, 153, 0, 0.15);
  border-color: rgba(255, 153, 0, 0.4);
}

.sch-stat-pill--accent strong {
  color: #ffc966;
}

.sch-offer-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.28), rgba(255, 107, 0, 0.2));
  border: 2px solid var(--sch-gold);
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(255, 153, 0, 0.3);
  animation: sch-offer-glow 2.5s ease-in-out infinite;
}

.sch-offer-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--sch-gold);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

.sch-offer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  font-family: var(--sch-font-body);
  line-height: 1.3;
}

.sch-offer-text strong {
  font-family: var(--sch-font-head);
  font-size: clamp(1.125rem, 3.5vw, 1.375rem);
  font-weight: 700;
  color: #fff;
}

.sch-offer-sub {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.sch-offer-text em {
  font-style: normal;
  font-family: var(--sch-font-head);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.75rem);
  color: #ffd54f;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(255, 153, 0, 0.5);
  letter-spacing: -0.02em;
}

@keyframes sch-offer-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 153, 0, 0.2); }
  50% { box-shadow: 0 0 32px rgba(255, 153, 0, 0.4); }
}

.sch-form-band {
  padding: 0 0 4rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #eef3fb 0%, #f4f7fc 40%, #fff 100%);
}

.sch-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sch-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--sch-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 40, 85, 0.06);
}

.sch-info-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sch-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
}

.sch-info-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.5;
}

.sch-form--elevated {
  box-shadow: 0 20px 60px rgba(0, 40, 85, 0.12), 0 0 0 1px rgba(0, 40, 85, 0.06);
}

.sch-form-head--light {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  border-bottom: 1px solid var(--sch-border);
  padding: 2rem 2rem 1.5rem;
}

.sch-form-head--light h2 {
  font-family: var(--sch-font-head);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.sch-form-head--light p {
  color: #6b7c93;
  font-size: 0.9375rem;
  margin: 0;
}

.sch-form--elevated .sch-form-fields {
  padding: 1.75rem 2rem 2rem;
}

.scholarship-page .footer-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .sch-info-cards {
    grid-template-columns: 1fr;
  }

  .sch-form-band {
    margin-top: -1rem;
    padding-bottom: 3rem;
  }

  .sch-form-head--light,
  .sch-form--elevated .sch-form-fields {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sch-stats-row {
    flex-direction: column;
    align-items: center;
  }

  .sch-stat-pill {
    max-width: 100%;
    width: 100%;
  }
}
