/* ===== DESIGN TOKENS — Veltrix Clinical brand ===== */
:root {
  --navy:         #071828;    /* hero, footer, dark sections */
  --navy-mid:     #0d2a38;    /* alt dark sections */
  --navy-light:   #0f3347;    /* cards on dark bg */
  --teal:         #00c4c4;    /* primary brand accent */
  --teal-dark:    #009090;    /* hover / darker teal */
  --teal-dim:     #00a0a0;    /* mid teal */
  --teal-bg:      #e0f7f7;    /* very light teal for light sections */
  --text:         #1a2332;    /* dark text on light bg */
  --muted:        #64748b;    /* secondary text */
  --white:        #ffffff;
  --bg-gray:      #f5f8fa;    /* light section bg */
  --border:       #e2e8f0;    /* light borders */
  --border-dark:  rgba(0,196,196,.2);  /* borders on dark bg */
  --card-shadow:  0 4px 24px rgba(7,24,40,.10);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.25s ease;
  --max-w:        1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,196,196,.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,196,196,.35);
}
.btn-full { width: 100%; }
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ===== SECTION HEADER — light bg ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== SECTION HEADER — dark bg ===== */
.section-header-dark { text-align: center; margin-bottom: 3rem; }
.section-header-dark h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.section-header-dark p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.teal-word { color: var(--teal); }

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
}
.logo-icon svg { width: 28px; height: 20px; }
.logo-name { color: var(--navy); }
.logo-accent { color: var(--teal); }
.footer-logo .logo-name { color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(7,24,40,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal-dim); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal-dim); }
.nav-links a.active::after { width: 100%; }
.nav-cta-link {
  background: var(--teal) !important;
  color: var(--navy) !important;
  padding: .45rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta-link::after { display: none !important; }
.nav-cta-link:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO — dark navy ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,196,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,196,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: flex; flex-direction: column; gap: 3rem; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(0,196,196,.12);
  border: 1px solid rgba(0,196,196,.35);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
  color: var(--white);
}
.highlight { color: var(--teal); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: .75rem;
}
.hero-desc { color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 1.5rem; }
.hero-audience { margin-bottom: 2rem; }
.audience-label { font-weight: 600; margin-bottom: .4rem; color: rgba(255,255,255,.85); }
.hero-audience ul { display: flex; flex-direction: column; gap: .3rem; }
.hero-audience li { color: rgba(255,255,255,.75); padding-left: 1.25rem; position: relative; }
.hero-audience li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.limited-seats { margin-top: .75rem; font-size: .85rem; color: var(--teal); font-weight: 600; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(0,196,196,.07);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  width: fit-content;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: .2rem; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ===== ABOUT — white ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-text strong { color: var(--text); }
.about-mission {
  background: rgba(0,196,196,.06);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.25rem;
  color: var(--navy);
}
.about-card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.about-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.check-list { display: flex; flex-direction: column; gap: .5rem; }
.check-list li { padding-left: 1.75rem; position: relative; color: var(--text); font-size: .95rem; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  top: .15rem;
  text-align: center;
  line-height: 1.25rem;
}

/* ===== WHY CHOOSE US — light ===== */
.why-us { background: var(--bg-gray); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(7,24,40,.12); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
  border: 2px solid var(--border-dark);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .9rem; }

/* ===== PROGRAMS — white ===== */
.programs { background: var(--white); }
.program-promises {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--teal-dim);
  font-weight: 600;
}
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.program-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.program-card:hover { box-shadow: 0 8px 40px rgba(7,24,40,.10); border-color: rgba(0,196,196,.4); }
.program-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.program-card.featured .program-label { color: rgba(255,255,255,.5); }
.program-card.featured h3 { color: var(--white); }
.program-card.featured .program-tagline { color: rgba(255,255,255,.65); }
.program-card.featured .program-goal { color: var(--teal); }
.program-card.featured .program-section h4 { color: rgba(255,255,255,.5); }
.program-card.featured .program-section li { color: rgba(255,255,255,.8); }
.program-card.featured .program-section li::before { color: var(--teal); }
.program-card.featured .module strong { color: var(--teal); }
.program-card.featured .module li { color: rgba(255,255,255,.75); }
.program-card.featured .program-meta { background: rgba(0,196,196,.08); border-color: var(--border-dark); }
.program-card.featured .meta-label { color: rgba(255,255,255,.5); }
.program-card.featured .meta-val { color: var(--white); }
.program-card.featured .fee-highlight { color: var(--teal); }
.program-card.featured .career-roles h4 { color: rgba(255,255,255,.5); }
.program-card.featured .roles-tags span { background: rgba(0,196,196,.15); color: var(--teal); }
.program-card.featured .program-note { color: rgba(255,255,255,.5); }
.program-card.featured .recommended-note { color: var(--teal); }
.program-card.featured .btn-outline { color: var(--teal); border-color: var(--teal); }
.program-card.featured .btn-outline:hover { background: var(--teal); color: var(--navy); }

.program-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.recommended-label { color: var(--teal-dim) !important; }
.program-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.program-tagline { color: var(--muted); font-size: .95rem; }
.program-goal { font-size: .9rem; font-weight: 600; color: var(--teal-dim); }
.program-section h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .6rem;
}
.program-section ul { display: flex; flex-direction: column; gap: .4rem; }
.program-section li { padding-left: 1.25rem; position: relative; font-size: .92rem; color: var(--text); }
.program-section li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.modules { display: flex; flex-direction: column; gap: 1rem; }
.module strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: .35rem; }
.module ul { display: flex; flex-direction: column; gap: .3rem; padding-left: .75rem; }
.module li { font-size: .88rem; color: var(--text); }
.program-meta {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.meta-item { display: flex; flex-direction: column; gap: .2rem; }
.meta-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.meta-val { font-size: 1rem; font-weight: 700; color: var(--text); }
.fee-highlight { color: var(--teal-dim); font-size: 1.2rem; }
.career-roles h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem;
}
.roles-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.roles-tags span {
  background: rgba(0,196,196,.1);
  color: var(--teal-dim);
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}
.program-note { font-size: .85rem; color: var(--muted); font-style: italic; }
.recommended-note { color: var(--teal-dim); font-weight: 600; font-style: normal; }
.program-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: auto; }
.popular-ribbon {
  position: absolute;
  top: 1.4rem;
  right: -2.2rem;
  background: var(--teal);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem 2.75rem;
  transform: rotate(30deg);
  width: 130px;
  text-align: center;
}
.programs-bottom-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  color: var(--white);
}
.programs-bottom-cta h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.programs-bottom-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

/* ===== PLACEMENTS — dark navy ===== */
.placements {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.placements-intro {
  text-align: center;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.incubation-banner {
  background: rgba(0,196,196,.1);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.incubation-banner h3 { font-size: 1.3rem; font-weight: 700; color: var(--teal); margin-bottom: .5rem; }
.incubation-banner p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
.placement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.placement-card {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border-dark);
  transition: background var(--transition), border-color var(--transition);
}
.placement-card:hover { background: rgba(0,196,196,.08); border-color: rgba(0,196,196,.4); }
.placement-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,196,196,.2);
  line-height: 1;
  margin-bottom: .5rem;
}
.placement-card h3 { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: .75rem; }
.placement-card li { padding-left: 1.25rem; position: relative; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: .4rem; }
.placement-card li::before { content: '›'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.honest-note {
  background: rgba(0,196,196,.06);
  border: 1px solid rgba(0,196,196,.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.honest-note h3 { font-size: 1.1rem; font-weight: 700; color: var(--teal); margin-bottom: .5rem; }
.honest-note p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }

/* ===== FREE DEMO — dark teal-navy ===== */
.demo {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0a2030 100%);
  color: var(--white);
}
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.demo h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.demo-sub { color: rgba(255,255,255,.7); margin-bottom: 1.25rem; font-size: 1.05rem; }
.demo-points { display: flex; flex-direction: column; gap: .75rem; }
.demo-points li { padding-left: 2rem; position: relative; color: rgba(255,255,255,.82); font-size: 1rem; }
.demo-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  top: .2rem;
  text-align: center;
  line-height: 1.25rem;
}
.demo-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--text);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.demo-form-wrap h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1rem; }
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,196,196,.15);
}
select { cursor: pointer; }
textarea { resize: vertical; min-height: 100px; }

/* ===== CONTACT — white ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid var(--border-dark);
}
.contact-item h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contact-item p { color: var(--muted); font-size: .95rem; }
.contact-item a { color: var(--teal-dim); }
.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER — dark navy ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.25rem 2.5rem;
}
.footer-brand .footer-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: .9rem; max-width: 300px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-nav { display: flex; gap: 3rem; }
.footer-col h4 {
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(0,196,196,.15);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
}
.footer-bottom p { font-size: .85rem; }
.footer-tagline { color: var(--teal) !important; font-size: .82rem !important; font-style: italic; }
.footer-strip {
  background: rgba(0,196,196,.1);
  border-top: 1px solid var(--border-dark);
  padding: .75rem 1.25rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-strip span { display: flex; align-items: center; gap: .4rem; }
.footer-strip a { color: var(--teal); }

/* ===== HAMBURGER OPEN STATE ===== */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-card { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 66px 0 0 0;
    flex-direction: column;
    background: var(--white);
    padding: 2rem 1.25rem;
    gap: 1.25rem;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta-link { text-align: center; padding: .75rem !important; }
  .hamburger { display: flex; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 1.5rem; padding: 1.25rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .placement-grid { grid-template-columns: 1fr; }
  .demo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
  .about-aside { grid-template-columns: 1fr; }
  .program-actions { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .program-promises { flex-direction: column; gap: .5rem; }
  .footer-strip { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { flex-direction: column; gap: 1rem; width: 100%; }
  .incubation-banner { padding: 1.5rem; }
  .programs-bottom-cta { padding: 2rem 1.25rem; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .hero-buttons, .program-actions, .demo-form-wrap, .contact-form-wrap { display: none; }
  .hero, .placements, .demo { background: none !important; color: var(--text) !important; }
  .highlight, .teal-word { color: var(--navy) !important; }
}
