

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 6vw 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(38, 92, 80, 0.55), transparent 65%),
    linear-gradient(180deg, #16413a 0%, #10312b 55%, #0d1b2a 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  color: var(--sfa-white);
  max-width: 880px;
}
.page-hero .hero-sub {
  margin-top: 24px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

section.band { padding: 100px 6vw; }
.band-alt { background: var(--sfa-ink); }
.band-deep { background: #0b1622; }

h2.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.16;
  color: var(--sfa-white);
}

.prose { max-width: 850px; margin: 0 auto; }
.prose h2 { margin-bottom: 30px; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--sfa-white);
  margin: 34px 0 12px;
}
.prose p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}
.prose ul { margin: 0 0 18px 20px; }
.prose li {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.two-col .copy p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  max-width: 560px;
}
.two-col h2 { margin-bottom: 28px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--sfa-white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 40px;
  padding: 14px 30px;
  transition: background 0.3s ease, color 0.3s ease;
  background: none;
  cursor: pointer;
}
.btn-outline:hover { background: var(--sfa-white); color: #123830; }
.btn-outline .arr { transition: transform 0.3s ease; }
.btn-outline:hover .arr { transform: translateX(4px); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
/* Four across, centred, and still centred if a card is added or removed */
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); max-width: 1340px; gap: 26px; }
.card-grid.cols-4 > .info-card { display: flex; flex-direction: column; }
.card-grid.cols-4 > .info-card .btn-outline { margin-top: auto; align-self: flex-start; }
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background: rgba(255, 255, 255, 0.015);
}
.info-card:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-4px); }
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--sfa-white);
  margin-bottom: 14px;
}
.info-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}
.info-card .card-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.cta-band-teal {
  background: var(--sfa-teal-deep);
  text-align: center;
  padding: 90px 6vw;
}
.cta-band-teal h2 { margin-bottom: 16px; }
.cta-band-teal p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 0.98rem;
  line-height: 1.85;
}

.center { text-align: center; }
.center .eyebrow { margin-left: auto; margin-right: auto; }

.apply-choice {
  border: 1px dashed rgba(255, 200, 100, 0.35);
  background: rgba(255, 200, 100, 0.05);
  color: rgba(255, 220, 160, 0.8);
  font-size: 0.8rem;
  line-height: 1.7;
  padding: 14px 18px;
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; }
  section.band { padding: 70px 6vw; }
}

/* Centred prose measure used under a centred section header */
.prose-centred { max-width: 760px; text-align: center; }
.prose-centred p { margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .prose-centred { text-align: left; } }
