/* ============================================================
   Hi Brooklyn Maritime Academy — Oceanic stylesheet
   ============================================================ */

:root {
  --ocean-deep:    #031C42;
  --ocean-mid:     #052A5A;
  --ocean-dark:    #040F24;
  --ocean-surface: #0A4B8C;
  --seafoam:       #40B4DC;
  --seafoam-light: #7FD4EC;
  --seafoam-dim:   #2889A8;
  --brine:         #C8F0F8;
  --sand:          #F4F1E8;
  --sand-2:        #EAE6D8;
  --kelp:          #1E6B5C;
  --pearl:         #FAFCFF;
  --text:          #0E2540;
  --text-muted:    #4A6882;
  --white:         #FFFFFF;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius:    8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(4,30,80,0.10);
  --shadow-lg: 0 16px 56px rgba(4,30,80,0.18);
  --transition: 0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}
ul { list-style: none; }
a { color: var(--seafoam-dim); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--seafoam); }

/* ---- OCEAN CANVAS ---- */
#ocean-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* ---- CONTAINER ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
em { font-style: italic; color: var(--seafoam); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.5rem;
  display: block;
}
.section-intro {
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--seafoam) 0%, #2AADCE 100%);
  color: var(--ocean-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(64,180,220,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--seafoam-light) 0%, var(--seafoam) 100%);
  color: var(--ocean-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64,180,220,0.45);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--seafoam-dim);
  border-color: var(--seafoam-dim);
  border-radius: 50px;
}
.btn-outline:hover {
  background: var(--seafoam);
  color: var(--ocean-dark);
  border-color: var(--seafoam);
}
.btn-nav {
  background: linear-gradient(135deg, var(--seafoam) 0%, #2AADCE 100%);
  color: var(--ocean-dark);
  padding: 10px 22px;
  font-size: 0.75rem;
  border-radius: 50px;
}
.btn-nav:hover { box-shadow: 0 4px 16px rgba(64,180,220,0.4); color: var(--ocean-dark); transform: translateY(-1px); }
.btn-lg { padding: 16px 44px; font-size: 0.9rem; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(3,28,66,0.94);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.logo-mark { color: var(--seafoam); font-size: 1.3rem; }
.main-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--seafoam); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
  max-width: 740px;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-content h1 em { color: var(--seafoam-light); font-style: italic; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Wave SVG at hero bottom */
.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  z-index: 3;
}
.hero-waves svg { display: block; width: 100%; height: 140px; }
.wave { animation: waveAnim 8s ease-in-out infinite; transform-origin: center; }
.wave-1 { fill: rgba(200,240,248,0.06); animation-duration: 7s; }
.wave-2 { fill: rgba(10,75,140,0.4); animation-duration: 9s; animation-direction: reverse; }
.wave-3 { fill: var(--sand); }
@keyframes waveAnim {
  0%, 100% { d: path("M0,80 C240,140 480,20 720,80 C960,140 1200,20 1440,80 L1440,160 L0,160 Z"); }
  50% { d: path("M0,100 C200,40 500,120 720,80 C940,40 1240,120 1440,90 L1440,160 L0,160 Z"); }
}

/* ---- PILLARS ---- */
.pillars {
  background: var(--ocean-dark);
  border-bottom: 1px solid rgba(64,180,220,0.12);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(64,180,220,0.1);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}
.pillar:last-child { border-right: none; }
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--seafoam);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pillar-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---- ABOUT ---- */
.section-about {
  padding: 120px 0;
  background: var(--sand);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.5rem; color: var(--ocean-deep); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.01rem; }
.about-text .btn-outline { margin-top: 1rem; }
.quote-card {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  border-left: 4px solid var(--seafoam);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(64,180,220,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--brine);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.quote-card cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--seafoam);
  font-style: normal;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.quote-card cite em { font-style: italic; color: rgba(64,180,220,0.7); text-transform: none; letter-spacing: 0; }
.about-pills { display: flex; flex-direction: column; gap: 12px; }
.pill {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64,180,220,0.12);
  opacity: 0;
  transform: translateX(16px);
  transition: all 0.5s ease;
}
.pill.visible { opacity: 1; transform: translateX(0); }
.pill-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pill strong { font-family: var(--font-display); font-size: 0.88rem; color: var(--ocean-deep); display: block; margin-bottom: 2px; }
.pill p { font-size: 0.82rem; color: var(--text-muted); }

/* ---- DISCIPLINES ---- */
.section-disciplines {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ocean-dark) 0%, var(--ocean-mid) 100%);
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.section-disciplines h2,
.section-disciplines .section-intro { color: var(--pearl); }
.section-disciplines .section-intro { color: rgba(200,240,248,0.6); }
.bubbles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(64,180,220,0.15), rgba(64,180,220,0.03));
  border: 1px solid rgba(64,180,220,0.1);
  animation: rise linear infinite;
}
.bubble:nth-child(1) { width:60px; height:60px; left:10%; bottom:-60px; animation-duration:12s; animation-delay:0s; }
.bubble:nth-child(2) { width:30px; height:30px; left:25%; bottom:-30px; animation-duration:9s; animation-delay:2s; }
.bubble:nth-child(3) { width:80px; height:80px; left:50%; bottom:-80px; animation-duration:15s; animation-delay:4s; }
.bubble:nth-child(4) { width:20px; height:20px; left:70%; bottom:-20px; animation-duration:8s; animation-delay:1s; }
.bubble:nth-child(5) { width:50px; height:50px; left:85%; bottom:-50px; animation-duration:11s; animation-delay:3s; }
.bubble:nth-child(6) { width:35px; height:35px; left:40%; bottom:-35px; animation-duration:10s; animation-delay:6s; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
/* 7 cards: last row center it */
.disc-card:nth-child(7) { grid-column: 2; }
.disc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(64,180,220,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
  backdrop-filter: blur(4px);
}
.disc-card.visible { opacity: 1; transform: translateY(0); }
.disc-card:hover {
  background: rgba(64,180,220,0.08);
  border-color: rgba(64,180,220,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(64,180,220,0.2);
}
.disc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.disc-card h3 { color: var(--brine); font-size: 1.05rem; margin-bottom: 0.7rem; }
.disc-card p { font-size: 0.87rem; color: rgba(200,240,248,0.6); line-height: 1.8; margin-bottom: 1rem; }
.disc-topics {
  border-top: 1px solid rgba(64,180,220,0.12);
  padding-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.disc-topics li {
  font-size: 0.78rem;
  color: rgba(64,180,220,0.65);
  font-family: var(--font-display);
  padding-left: 14px;
  position: relative;
}
.disc-topics li::before { content: '~'; position: absolute; left: 0; color: var(--seafoam-dim); }

/* ---- CURRICULUM ---- */
.section-curriculum {
  padding: 120px 0;
  background: var(--sand-2);
}
.section-curriculum h2 { color: var(--ocean-deep); }
.grade-timeline {
  border-left: 2px solid var(--seafoam-dim);
  padding-left: 36px;
  margin-bottom: 64px;
}
.grade-group {
  padding: 32px 0;
  border-bottom: 1px solid rgba(64,180,220,0.18);
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.5s ease;
}
.grade-group.visible { opacity: 1; transform: translateX(0); }
.grade-group::before {
  content: '';
  position: absolute;
  left: -43px;
  top: 40px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--seafoam);
  border: 3px solid var(--sand-2);
  box-shadow: 0 0 0 2px var(--seafoam-dim);
}
.grade-group:last-child { border-bottom: none; }
.grade-group-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--seafoam-dim);
  margin-bottom: 0.75rem;
}
.grade-group p { color: var(--text-muted); max-width: 680px; font-size: 0.97rem; }
.curriculum-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cf-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(64,180,220,0.14);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
  text-align: center;
}
.cf-item.visible { opacity: 1; transform: translateY(0); }
.cf-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(64,180,220,0.3); }
.cf-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.cf-item strong {
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--ocean-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.cf-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ---- QUOTE BREAK ---- */
.section-quote-break {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-quote-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(64,180,220,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(64,180,220,0.06) 0%, transparent 60%);
}
.quote-wrap { position: relative; }
.deco-wave {
  font-size: 1.5rem;
  color: rgba(64,180,220,0.3);
  letter-spacing: 0.5em;
  margin: 0 auto 1.5rem;
  display: block;
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--brine);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.big-quote cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  font-style: normal;
  margin-top: 1.2rem;
}

/* ---- FACULTY ---- */
.section-faculty {
  padding: 120px 0;
  background: var(--sand);
}
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(64,180,220,0.14);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.faculty-card.visible { opacity: 1; transform: translateY(0); }
.faculty-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(64,180,220,0.35);
  transform: translateY(-6px);
}
.faculty-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  border: 3px solid rgba(64,180,220,0.25);
  box-shadow: 0 4px 16px rgba(4,30,80,0.2);
}
.faculty-card h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--ocean-deep); }
.faculty-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam-dim);
  margin-bottom: 0.75rem;
  display: block;
}
.faculty-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }
.faculty-card em { font-style: italic; color: var(--seafoam-dim); }

/* ---- ENROLL ---- */
.section-enroll {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ocean-dark) 0%, var(--ocean-deep) 100%);
  color: var(--pearl);
  position: relative;
}
.section-enroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(64,180,220,0.1) 0%, transparent 60%);
}
.section-enroll .section-label { color: var(--seafoam); }
.section-enroll h2 { color: var(--pearl); margin-bottom: 0.75rem; }
.enroll-lead { color: rgba(200,240,248,0.65); max-width: 540px; margin-bottom: 3rem; }
.enroll-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(64,180,220,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 740px;
  position: relative;
  backdrop-filter: blur(6px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
.form-row .form-group { margin-bottom: 0; }
label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
}
input, select, textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(64,180,220,0.22);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(200,240,248,0.3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--seafoam);
  background: rgba(64,180,220,0.06);
}
select option { background: var(--ocean-mid); color: var(--pearl); }
textarea { resize: vertical; }
.enroll-form .btn-primary { margin-top: 24px; }
.enroll-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(64,180,220,0.1);
  border: 1px solid rgba(64,180,220,0.4);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  font-family: var(--font-display);
  color: var(--seafoam-light);
  font-size: 1rem;
  max-width: 740px;
}
.enroll-success span:first-child { font-size: 1.8rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ocean-dark);
  color: rgba(200,240,248,0.5);
  position: relative;
}
.footer-wave {
  color: var(--ocean-mid);
  margin-bottom: -2px;
  line-height: 0;
}
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(64,180,220,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.8rem; color: rgba(200,240,248,0.35); font-style: italic; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.87rem; color: rgba(200,240,248,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--seafoam); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 5px; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(200,240,248,0.2);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .disc-card:nth-child(7) { grid-column: auto; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .disciplines-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .curriculum-features { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .enroll-form { padding: 28px 20px; }
  .main-nav { display: none; }
  .hero-content { padding-top: 120px; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
