/* =============================================================
   SJDEFI Senior High School - Modern Landing Page Stylesheet
   Base: 1rem = 10px (html { font-size: 62.5% })
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ── Reset legacy styles.css wrapper constraints ── */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

main.shs-page {
  max-width: none !important;
  margin: 0 !important;
  width: 100% !important;
}

.shs-page section {
  margin: 0 !important;
}

/* ── Design Tokens ── */
.shs-page {
  --primary-navy:      #0f2748;
  --primary-navy-light:#1a3a63;
  --accent-gold:       #c69b3f;
  --accent-gold-soft:  #e7cf9b;
  --accent-blue:       #1e40af;
  --accent-teal:       #0891b2;
  
  --bg-cream:          #fbf9f4;
  --bg-paper:          #ffffff;
  --bg-card:           #ffffff;
  
  --text-ink:          #0f2748;
  --text-muted:        #5a6b82;
  
  --line-color:        rgba(15, 39, 72, 0.12);
  --line-soft:         rgba(15, 39, 72, 0.06);
  --shadow-premium:    0 25px 60px -25px rgba(15, 39, 72, 0.25);
  --shadow-hover:      0 35px 70px -20px rgba(15, 39, 72, 0.35);
  
  --ff-display:        'Fraunces', Georgia, serif;
  --ff-body:           'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --max-w:             1200px;

  font-family: var(--ff-body);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--text-ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Neutralize legacy seniorhigh.css Playfair Display bleed */
.shs-page p,
.shs-page h1,
.shs-page h2,
.shs-page h3,
.shs-page h4,
.shs-page h5,
.shs-page li,
.shs-page span,
.shs-page table,
.shs-page td,
.shs-page th {
  font-family: inherit;
}

.shs-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3.2rem;
}

.shs-page a {
  color: inherit;
  text-decoration: none;
}

.shs-page strong {
  font-weight: 700;
  color: var(--primary-navy);
}

/* ── Fade-in Reveal Animation ── */
.shs-page .reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0s);
}
.shs-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Typographic Hierarchy ── */
.shs-kicker {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}
.shs-kicker::before {
  content: "";
  width: 3.5rem;
  height: 2px;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.shs-h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 4.5vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--primary-navy);
  margin: 0 0 2.4rem;
}

.shs-lead {
  color: var(--text-muted);
  font-size: 1.85rem;
  max-width: 68ch;
  margin-top: 1.8rem;
  line-height: 1.75;
}

.shs-pad {
  padding: 10rem 0;
}

.shs-text-gold {
  color: var(--accent-gold);
  font-style: normal;
}

/* ── Premium CTA Buttons ── */
.shs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  padding: 1.6rem 3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              background-color 0.2s ease,
              color 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.shs-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.shs-btn:active {
  transform: translateY(0);
}

.shs-btn--gold {
  background: var(--accent-gold);
  color: #161005;
  box-shadow: 0 10px 24px -10px rgba(198, 155, 63, 0.7);
}
.shs-btn--gold:hover {
  background: #dbaf48;
  color: #161005;
  box-shadow: 0 15px 30px -10px rgba(198, 155, 63, 0.85);
}

.shs-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: transparent;
}
.shs-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.shs-btn--block {
  display: flex;
  width: 100%;
}


/* =============================================================
   1. HERO SECTION (2-Column Premium Grid)
   ============================================================= */
.shs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 16rem 0 10rem;
  overflow: hidden;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  gap: 0 !important;
  animation: none !important;
}

.shs-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(110deg, rgba(15, 39, 72, 0.99) 0%, rgba(15, 39, 72, 0.9) 50%, rgba(15, 39, 72, 0.6) 100%),
    radial-gradient(110% 110% at 100% 0%, rgba(198, 155, 63, 0.3) 0%, transparent 60%);
  z-index: 0;
}

/* Subtle dot-grid overlay */
.shs-hero__grid-pattern {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 3.6rem 3.6rem;
  z-index: 1;
  pointer-events: none;
}

/* Floating animated glow orbs */
.shs-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10rem);
  pointer-events: none;
  z-index: 1;
}
.shs-hero__orb--1 {
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, rgba(198, 155, 63, 0.18) 0%, transparent 70%);
  top: -15rem;
  right: -10rem;
  animation: orbDrift1 15s ease-in-out infinite alternate;
}
.shs-hero__orb--2 {
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(26, 58, 99, 0.5) 0%, transparent 70%);
  bottom: -15rem;
  left: -10rem;
  animation: orbDrift2 18s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6rem, 4rem) scale(1.1); }
}
@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5rem, -5rem) scale(0.9); }
}

.shs-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 92rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Logo */
.shs-hero__logo {
  height: clamp(9rem, 15vw, 22rem) !important;
  width: auto !important;
  display: block;
  margin: 0 auto 3.5rem;
  filter: drop-shadow(0 8px 25px rgba(198, 155, 63, 0.35));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 8px 25px rgba(198, 155, 63, 0.35)); }
  50% { filter: drop-shadow(0 12px 35px rgba(198, 155, 63, 0.6)); }
}

/* Eyebrow badge */
.shs-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-gold-soft);
  margin-bottom: 2.2rem;
}
.shs-eyebrow::before,
.shs-eyebrow::after {
  content: "";
  width: 3.5rem;
  height: 1.5px;
  background: var(--accent-gold);
}

/* Headline */
.shs-hero h1 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 2.5rem;
  text-align: center;
}
.shs-hero__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem 2.4rem;
  font-size: clamp(1.8rem, 2.4vw, 3rem) !important;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-family: var(--ff-body) !important;
}
.shs-hero__tagline-part {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-style: normal;
}
.shs-hero__tagline-part strong {
  color: var(--accent-gold) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--ff-body) !important;
}
.shs-hero__tagline-divider {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.65;
}
.shs-hero__punch {
  font-size: clamp(3.8rem, 5.2vw, 6.4rem);
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.shs-hero__sub {
  font-size: clamp(1.6rem, 1.4vw, 1.9rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 68rem;
  margin: 0 auto 4rem;
  line-height: 1.7;
  text-align: center;
}
.shs-hero__sub strong {
  color: #ffffff;
}

.shs-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.5rem;
}

/* Trust list */
.shs-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.8rem;
  justify-content: center;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  width: 100%;
}
.shs-hero__trust span {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.shs-hero__trust i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

/* Glass Highlights Card */
.shs-highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 2.4rem;
  padding: 3.6rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.shs-highlight-card::before {
  content: "";
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 155, 63, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.shs-highlight-card__badge {
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 99rem;
  margin-bottom: 1.8rem;
}

.shs-highlight-card__title {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 2.8rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.shs-highlight-card__list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.shs-highlight-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.shs-highlight-item__icon {
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
  background: rgba(198, 155, 63, 0.12);
  border: 1px solid rgba(198, 155, 63, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.6rem;
}

.shs-highlight-item__content h4 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #ffffff;
}

.shs-highlight-item__content p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.5;
}
.shs-highlight-item__content strong {
  color: #ffffff;
}


/* =============================================================
   2. WHY CHOOSE SECTION (Premium Icon Grid)
   ============================================================= */
.shs-why {
  background: var(--bg-paper);
}

.shs-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 6rem;
}

.shs-why__card {
  background: var(--bg-cream);
  border: 1px solid var(--line-color);
  border-radius: 2rem;
  padding: 4rem 3.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease;
}
.shs-why__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shs-why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(198, 155, 63, 0.3);
}
.shs-why__card:hover::before {
  transform: scaleX(1);
}

.shs-why__icon-wrapper {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 2.6rem;
}
.shs-why__icon-wrapper--gold {
  background: rgba(198, 155, 63, 0.1);
  color: var(--accent-gold);
}
.shs-why__icon-wrapper--blue {
  background: rgba(30, 64, 175, 0.08);
  color: var(--accent-blue);
}

.shs-why__card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 2.1rem;
  margin: 0 0 1.2rem;
  line-height: 1.25;
  color: var(--primary-navy);
}

.shs-why__card p {
  color: var(--text-muted);
  font-size: 1.48rem;
  line-height: 1.7;
  margin: 0;
}
.shs-why__card strong {
  color: var(--primary-navy);
}


/* =============================================================
   3. CURRICULUM TRACKS SECTION (Interactive Cards)
   ============================================================= */
.shs-tracks {
  background: var(--primary-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  width: 100% !important;
  gap: 0 !important;
}
.shs-tracks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 0% 0%, rgba(198, 155, 63, 0.14), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.shs-tracks .shs-kicker { color: var(--accent-gold-soft); }
.shs-tracks .shs-kicker::before { background: var(--accent-gold-soft); }
.shs-tracks .shs-h2 { color: #ffffff; }
.shs-tracks .shs-lead { color: rgba(255, 255, 255, 0.75); }

.shs-tracks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
  margin-top: 6.4rem;
  position: relative;
  z-index: 1;
}

.shs-tracks__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.4rem;
  padding: 4.8rem 4.4rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease,
              background-color 0.35s ease,
              box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.shs-tracks__card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.shs-tracks__badge {
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.shs-tracks__card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 3rem;
  margin: 0 0 1.6rem;
  color: #ffffff;
  line-height: 1.2;
}

.shs-tracks__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.55rem;
  margin-bottom: 3.6rem;
  line-height: 1.7;
}

/* Custom list items for strands */
.shs-tracks__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shs-tracks__list li {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.shs-tracks__list i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.shs-tracks__list strong {
  display: block;
  font-size: 1.58rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.2rem;
}

.shs-tracks__list span {
  display: block;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
}

/* TechPro group box */
.shs-tracks__tech-group {
  margin-bottom: 4rem;
}
.shs-tracks__tech-group h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold-soft);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.shs-tracks__tech-group .shs-tracks__list {
  margin-bottom: 0;
}
.shs-tracks__tech-group .shs-tracks__list li i {
  color: var(--accent-gold-soft);
  font-size: 1.15rem;
  margin-top: 0.6rem;
}

.shs-tracks__footer {
  margin-top: auto;
  padding-top: 2rem;
}

/* Strand CTA link */
.shs-tracks__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: gap 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease;
}
.shs-tracks__link i {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shs-tracks__link:hover {
  color: var(--accent-gold-soft);
  gap: 1.4rem;
}
.shs-tracks__link:hover i {
  transform: translateX(2px);
}


/* =============================================================
   4. VINCENTIAN FORMATION (Character & Faith)
   ============================================================= */
.shs-formation {
  background: var(--bg-cream);
  text-align: center;
}
.shs-formation .shs-kicker {
  justify-content: center;
}
.shs-formation .shs-kicker::after {
  content: "";
  width: 3.5rem;
  height: 2px;
  background: var(--accent-gold);
  flex-shrink: 0;
}
.shs-formation .shs-h2 {
  margin: 0 auto 2rem;
  max-width: 24ch;
}
.shs-formation .shs-lead {
  margin: 0 auto;
}
.shs-formation .shs-lead em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--primary-navy);
}

.shs-formation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6.4rem;
  text-align: left;
}

.shs-formation__card {
  background: var(--bg-paper);
  border: 1px solid var(--line-color);
  border-radius: 2.2rem;
  padding: 4.4rem 3.6rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shs-formation__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.shs-formation__icon {
  width: 6rem;
  height: 6rem;
  background: var(--bg-cream);
  border: 1px solid var(--line-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--accent-gold);
  margin-bottom: 2.8rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.shs-formation__card:hover .shs-formation__icon {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

.shs-formation__card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 2.3rem;
  margin: 0 0 1.2rem;
  color: var(--primary-navy);
}

.shs-formation__card p {
  color: var(--text-muted);
  font-size: 1.48rem;
  margin: 0;
  line-height: 1.68;
}

.shs-formation__values {
  display: inline-block;
  margin-top: 6rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  color: var(--primary-navy);
  position: relative;
  padding: 0 4rem;
}
.shs-formation__values::before,
.shs-formation__values::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent-gold);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.shs-formation__values::before { left: 0; }
.shs-formation__values::after { right: 0; }


/* =============================================================
   5. ENROLLMENT & ADMISSIONS SECTION (Journey Layout)
   ============================================================= */
.shs-enroll {
  background: var(--bg-paper);
}

/* Horizontal Timeline Steps */
.shs-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 6.4rem 0 8.4rem;
  position: relative;
}
/* Connecting line between steps */
.shs-timeline::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  left: 8rem;
  right: 8rem;
  height: 2px;
  background: var(--line-color);
  z-index: 0;
}

.shs-timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shs-timeline__badge {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 0 0 8px var(--bg-paper);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.shs-timeline__step:hover .shs-timeline__badge {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

.shs-timeline__content h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 2.1rem;
  margin: 0 0 0.8rem;
  color: var(--primary-navy);
}

.shs-timeline__content p {
  color: var(--text-muted);
  font-size: 1.48rem;
  margin: 0;
  line-height: 1.6;
  max-width: 32rem;
}

/* Enrollment Info Split Grid */
.shs-enroll__info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

/* Voucher Subsidy Card */
.shs-subsidy {
  background: var(--bg-cream);
  border: 1px solid var(--line-color);
  border-radius: 2.4rem;
  padding: 4.8rem;
}

.shs-subsidy__header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
}
.shs-subsidy__header i {
  font-size: 2.4rem;
  color: var(--accent-gold);
}
.shs-subsidy__header h3 {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-navy);
}

.shs-subsidy p {
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.8rem;
}

.shs-subsidy__table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--line-color);
  border-radius: 1.4rem;
  background: var(--bg-paper);
  margin-bottom: 2.4rem;
}

.shs-subsidy__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.42rem;
  text-align: left;
}

.shs-subsidy__table th,
.shs-subsidy__table td {
  padding: 1.6rem 2rem;
  border-bottom: 1px solid var(--line-soft);
}

.shs-subsidy__table th {
  background: rgba(15, 39, 72, 0.03);
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.shs-subsidy__table td {
  color: var(--text-muted);
}
.shs-subsidy__table tr:last-child td {
  border-bottom: none;
}

.shs-badge-zero {
  display: inline-block;
  font-weight: 800;
  color: #166534;
  background: #dcfce7;
  padding: 0.3rem 1rem;
  border-radius: 99rem;
  font-size: 1.25rem;
}

.shs-subsidy__note {
  font-size: 1.3rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0;
  line-height: 1.5;
}
.shs-subsidy__note i {
  color: var(--accent-gold);
  margin-top: 0.2rem;
}

/* Requirements Checklist Card */
.shs-req {
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: 2.4rem;
  padding: 4.8rem 4.4rem;
  position: relative;
  overflow: hidden;
}
.shs-req::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 155, 63, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.shs-req__header {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.shs-req__header i {
  font-size: 2.2rem;
  color: var(--accent-gold);
}
.shs-req__header h3 {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.shs-req p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.55rem;
  line-height: 1.65;
  margin-bottom: 3.2rem;
  position: relative;
  z-index: 1;
}

.shs-req__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.8rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.shs-req__list li {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  font-size: 1.48rem;
  line-height: 1.5;
}

.shs-req__list i {
  color: var(--accent-gold-soft);
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.shs-req__list strong {
  display: block;
  font-size: 1.52rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.shs-req__list span {
  display: block;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
}

.shs-req__action {
  position: relative;
  z-index: 1;
}


/* =============================================================
   6. FINAL CALL TO ACTION (CTA)
   ============================================================= */
.shs-final {
  background: var(--primary-navy);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shs-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(198, 155, 63, 0.25), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.shs-final .shs-wrap {
  position: relative;
  z-index: 1;
  max-width: 80rem;
}

.shs-final h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 5vw, 5.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 2rem;
}

.shs-final p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.85rem;
  margin: 0 auto 4rem;
  max-width: 56ch;
  line-height: 1.7;
}

.shs-final__ctas {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =============================================================
   RESPONSIVE LAYOUTS — Tablet (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
  .shs-pad {
    padding: 8rem 0;
  }
  
  .shs-hero {
    padding: 14rem 0 8rem;
    min-height: auto;
  }



  .shs-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .shs-tracks__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  
  .shs-tracks__card {
    padding: 4rem;
  }

  .shs-formation__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
  
  .shs-formation__card {
    padding: 3.6rem 3rem;
  }

  .shs-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Remove timeline connection line */
  .shs-timeline::before {
    display: none;
  }

  .shs-timeline__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 2.4rem;
  }

  .shs-timeline__badge {
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: none;
  }
  
  .shs-timeline__content p {
    max-width: none;
  }

  .shs-enroll__info-grid {
    grid-template-columns: 1fr;
    gap: 3.6rem;
  }
  
  .shs-subsidy {
    padding: 4rem;
  }
  
  .shs-req {
    padding: 4rem;
  }
}


/* =============================================================
   RESPONSIVE LAYOUTS — Mobile (≤ 576px)
   ============================================================= */
@media (max-width: 576px) {
  .shs-wrap {
    padding: 0 2rem;
  }

  .shs-pad {
    padding: 6rem 0;
  }

  .shs-kicker {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
  }
  .shs-kicker::before {
    width: 2.5rem;
  }

  .shs-h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
  }

  .shs-lead {
    font-size: 1.65rem;
    line-height: 1.6;
  }

  .shs-hero {
    padding: 12rem 0 6rem;
  }
  
  .shs-hero__logo {
    margin-bottom: 2.6rem;
  }

  .shs-eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    margin-bottom: 1.8rem;
  }
  .shs-eyebrow::before,
  .shs-eyebrow::after {
    width: 2.5rem;
  }

  .shs-hero__tagline {
    font-size: 1.8rem !important;
    flex-direction: column;
    gap: 1rem;
  }
  .shs-hero__tagline-divider {
    display: none;
  }
  
  .shs-hero__punch {
    font-size: 3.4rem;
  }

  .shs-hero__sub {
    font-size: 1.55rem;
    margin: 0 auto 3.2rem;
  }

  .shs-btn {
    padding: 1.4rem 2.6rem;
    font-size: 1.45rem;
    width: 100%;
  }
  
  .shs-hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
  }
  
  .shs-hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .shs-highlight-card {
    padding: 2.6rem;
  }

  .shs-why__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .shs-why__card {
    padding: 3rem 2.4rem;
  }

  .shs-tracks__card {
    padding: 3.2rem 2.4rem;
  }
  
  .shs-tracks__card h3 {
    font-size: 2.4rem;
  }
  
  .shs-tracks__list {
    gap: 1.6rem;
  }

  .shs-formation__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .shs-formation__card {
    padding: 3rem 2.4rem;
  }
  
  .shs-formation__values {
    font-size: 1.65rem;
    padding: 0 2.2rem;
  }

  .shs-timeline__step {
    gap: 1.6rem;
  }
  
  .shs-timeline__badge {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 1.8rem;
  }

  .shs-timeline__content h3 {
    font-size: 1.85rem;
  }

  .shs-subsidy {
    padding: 3rem 2.2rem;
  }
  
  .shs-subsidy__header h3 {
    font-size: 1.95rem;
  }

  .shs-subsidy__table th,
  .shs-subsidy__table td {
    padding: 1.2rem 1.4rem;
  }
  
  .shs-subsidy__table {
    font-size: 1.3rem;
  }

  .shs-req {
    padding: 3rem 2.2rem;
  }
  
  .shs-req__header h3 {
    font-size: 1.95rem;
  }

  .shs-final h2 {
    font-size: 3.2rem;
  }
  
  .shs-final p {
    font-size: 1.6rem;
  }
  
  .shs-final__ctas {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ── Footer Overrides for Seamless Navy-to-Blue Transition ── */
.shs-page ~ .footer {
  margin-top: 0 !important;
}

.shs-page ~ .footer:after {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='65px' viewBox='0 0 1280 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230f2748'%3E%3Cpath d='M1280 3.4C1050.59 18 1019.4 84.89 734.42 84.89c-320 0-320-84.3-640-84.3C59.4.59 28.2 1.6 0 3.4V140h1280z' fill-opacity='.3'/%3E%3Cpath d='M0 24.31c43.46-5.69 94.56-9.25 158.42-9.25 320 0 320 89.24 640 89.24 256.13 0 307.28-57.16 481.58-80V140H0z' fill-opacity='.5'/%3E%3Cpath d='M1280 51.76c-201 12.49-242.43 53.4-513.58 53.4-320 0-320-57-640-57-48.85.01-90.21 1.35-126.42 3.6V140h1280z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

