/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary-h: 210;
  --primary-s: 100%;
  --primary-l: 40%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  --primary-fg: 0 0% 100%;
  --bg: 210 17% 98%;
  --fg: 0 0% 10%;
  --muted: 210 17% 95%;
  --muted-fg: 215 16% 47%;
  --card: 0 0% 100%;
  --border: 214 32% 91%;
  --success: 142 71% 45%;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
svg { display: inline-block; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: 1.5rem; line-height: 1.3; font-weight: 700; }
h4 { font-size: 1.125rem; line-height: 1.4; font-weight: 600; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.btn-primary { background: hsl(var(--primary)); color: white; }
.btn-primary:hover { background: hsl(210 100% 35%); }
.btn-outline { background: transparent; border: 1.5px solid hsl(var(--border)); color: hsl(var(--fg)); }
.btn-outline:hover { background: hsl(var(--muted)); }
.btn-outline-primary { background: transparent; border: 1.5px solid hsl(var(--primary) / 0.3); color: hsl(var(--primary)); }
.btn-outline-primary:hover { background: hsl(var(--primary) / 0.05); }
.btn-outline-white { background: hsl(0 0% 100% / 0.1); border: 1.5px solid hsl(0 0% 100% / 0.2); color: white; }
.btn-outline-white:hover { background: hsl(0 0% 100% / 0.2); }
.btn-white { background: white; color: hsl(var(--fg)); }
.btn-white:hover { background: hsl(var(--muted)); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--bg) / 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: hsl(var(--fg));
  font-weight: 700;
  font-size: 1.0625rem;
}
.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-fg));
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: hsl(var(--primary)); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: hsl(var(--fg));
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-nav {
  display: none;
  border-top: 1px solid hsl(var(--border));
  padding: 1rem 1.5rem 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.mobile-nav-links .nav-link { font-size: 0.9375rem; }
.mobile-nav-links .btn { margin-top: 0.25rem; text-align: center; }

/* ===== FOOTER ===== */
.site-footer {
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-fg));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
.footer-brand p { font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.6; }
.footer-col h3 {
  font-weight: 600;
  color: hsl(var(--fg));
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: hsl(var(--primary)); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: hsl(var(--primary)); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { transition: color 0.2s; }
.footer-social a:hover { color: hsl(var(--primary)); }
.footer-social svg { width: 1.25rem; height: 1.25rem; }
.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: hsl(var(--primary)); }

/* ===== CARDS ===== */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-borderless { border: none; box-shadow: 0 2px 12px hsl(0 0% 0% / 0.08); }
.card-shadow { box-shadow: 0 4px 20px hsl(0 0% 0% / 0.1); }
.card-h-full { height: 100%; }
.card-header { padding: 1.5rem 1.5rem 0; }
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; color: hsl(var(--fg)); }
.card-desc { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.card-hover { transition: box-shadow 0.3s; }
.card-hover:hover { box-shadow: 0 6px 24px hsl(0 0% 0% / 0.12); }

/* ===== ICON BOX ===== */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }
.icon-box-xl { width: 3.5rem; height: 3.5rem; }
.icon-box-xl svg { width: 1.75rem; height: 1.75rem; }
.icon-box-round { border-radius: 9999px; }
.icon-box-lg { width: 4rem; height: 4rem; }
.icon-box-lg svg { width: 2rem; height: 2rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 6rem 0; }
.bg-muted { background: hsl(var(--muted)); }
.bg-white { background: hsl(var(--card)); }
.bg-primary-solid { background: hsl(var(--primary)); color: white; }
.bg-subtle { background: hsl(var(--muted) / 0.5); border-top: 1px solid hsl(var(--border)); }
.bg-gradient-hero-page {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--bg)), hsl(180 100% 33% / 0.05));
}

/* ===== SECTION HEADER ===== */
.section-header { max-width: 48rem; margin: 0 auto 4rem; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: hsl(var(--muted-fg)); }
.section-header-left { text-align: left; max-width: 100%; margin: 0 0 3rem; }
.section-header-left p { color: hsl(var(--muted-fg)); font-size: 1.125rem; margin-top: 0.5rem; }

/* ===== GRID ===== */
.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(0 0% 4% / 0.95), hsl(0 0% 4% / 0.85), hsl(0 0% 4% / 0.7));
}
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 48rem; }
.hero-content h1 { color: white; margin-bottom: 1.5rem; }
.hero-content p { color: hsl(0 0% 88%); font-size: 1.125rem; max-width: 40rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 5rem 0; text-align: center; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero-sub { font-size: 1.125rem; color: hsl(var(--muted-fg)); max-width: 42rem; margin: 0 auto; line-height: 1.7; }

/* ===== STATS STRIP ===== */
.stats-strip { padding: 4.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label { font-size: 0.9375rem; opacity: 0.85; font-weight: 500; }

/* ===== QUOTE ===== */
.quote-icon { color: hsl(var(--primary) / 0.2); margin-bottom: 1.5rem; }
.quote-icon svg { width: 3rem; height: 3rem; }
blockquote { font-size: clamp(1.125rem, 2.5vw, 1.875rem); font-weight: 500; line-height: 1.5; margin-bottom: 1.5rem; }
cite { font-style: normal; font-weight: 600; font-size: 1.0625rem; display: block; }
cite span { display: block; color: hsl(var(--muted-fg)); font-weight: 400; font-size: 0.9375rem; margin-top: 0.25rem; }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.checklist-item { display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.6; }
.checklist-item svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.1rem; }

/* ===== PROGRAM CARD ===== */
.program-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 6px hsl(0 0% 0% / 0.06);
  transition: box-shadow 0.3s;
  margin-bottom: 2rem;
}
.program-card:hover { box-shadow: 0 4px 24px hsl(0 0% 0% / 0.1); }
.program-card-inner { display: grid; grid-template-columns: 1fr; }
.program-info {
  padding: 2rem;
  background: hsl(var(--muted) / 0.3);
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
}
.program-icon-title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.program-icon { font-size: 2rem; line-height: 1; }
.program-title { font-size: 1.5rem; font-weight: 700; }
.program-desc { color: hsl(var(--muted-fg)); margin-bottom: 1.5rem; line-height: 1.7; flex: 1; }
.program-meta { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.program-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.program-meta-item svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); flex-shrink: 0; }
.program-curriculum { padding: 2rem; background: hsl(var(--card)); }
.curriculum-heading { font-size: 1.0625rem; font-weight: 600; margin-bottom: 1rem; color: hsl(var(--fg)); }

/* ===== TABLE ===== */
.table-wrap { border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; }
.curriculum-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.curriculum-table th {
  background: hsl(var(--muted) / 0.5);
  padding: 0.625rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--fg));
}
.curriculum-table th:first-child { width: 7rem; }
.curriculum-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  vertical-align: top;
  line-height: 1.6;
  color: hsl(var(--fg));
}
.curriculum-table tr:last-child td { border-bottom: none; }
.curriculum-table td:first-child { color: hsl(var(--muted-fg)); font-weight: 500; white-space: nowrap; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-avatar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.avatar-initials {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  background: hsl(var(--primary));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9375rem; color: hsl(var(--fg)); }
.testimonial-role { font-size: 0.8125rem; color: hsl(var(--muted-fg)); }
.testimonial-text { font-size: 0.875rem; color: hsl(var(--muted-fg)); font-style: italic; line-height: 1.7; }

/* ===== SUCCESS STORY CARD ===== */
.story-img { aspect-ratio: 16/9; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.story-img:hover img { transform: scale(1.05); }
.story-body { padding: 1.5rem; }
.story-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; color: hsl(var(--fg)); }
.story-section-label { font-size: 0.8125rem; font-weight: 500; color: hsl(var(--muted-fg)); margin-bottom: 0.25rem; }
.story-section-label-success { color: hsl(var(--success)); }
.story-section-value { font-size: 0.875rem; color: hsl(var(--fg)); }
.story-section-value-bold { font-weight: 600; }
.story-arrow { text-align: center; padding: 0.625rem 0; color: hsl(var(--primary)); }
.story-arrow svg { width: 1.25rem; height: 1.25rem; }
.story-achievement { font-size: 0.875rem; color: hsl(var(--muted-fg)); font-style: italic; padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border)); }

/* ===== FEATURED QUOTE ===== */
.featured-quote {
  background: hsl(var(--primary));
  color: white;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px hsl(var(--primary) / 0.35);
}
.featured-quote-bg {
  position: absolute; top: -1rem; right: -1rem;
  opacity: 0.1; pointer-events: none;
}
.featured-quote-bg svg { width: 7.5rem; height: 7.5rem; }
.featured-quote blockquote { position: relative; z-index: 1; }
.featured-quote cite span { color: hsl(0 0% 100% / 0.8); }

/* ===== CTA BOX ===== */
.cta-box {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.08);
  max-width: 48rem;
  margin: 0 auto;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { font-size: 1.125rem; color: hsl(var(--muted-fg)); margin-bottom: 2rem; }
.cta-box-primary {
  background: hsl(var(--primary) / 0.05);
  border-color: hsl(var(--primary) / 0.1);
}

/* ===== BENTO GRID ===== */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.bento-span2 { grid-column: span 1; }

/* ===== PRIMARY BANNER ===== */
.primary-banner {
  background: hsl(var(--primary));
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.primary-banner-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.primary-banner h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.primary-banner p { opacity: 0.9; line-height: 1.7; }
.primary-banner svg { opacity: 0.8; }
.primary-banner .btn-white { align-self: flex-start; }

/* ===== CONTACT INFO ===== */
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-circle {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon-circle svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }
.contact-info-text h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.375rem; color: hsl(var(--fg)); }
.contact-info-text p,
.contact-info-text a { font-size: 0.9375rem; color: hsl(var(--muted-fg)); line-height: 1.7; }
.contact-info-text a:hover { color: hsl(var(--primary)); }
.contact-note { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 500; color: hsl(var(--primary)); margin-top: 0.5rem; }
.contact-note svg { width: 1rem; height: 1rem; }
.office-hours { display: flex; flex-direction: column; gap: 0.2rem; }

/* ===== INSTRUCTOR CARD ===== */
.instructor-card { display: flex; flex-direction: column; }
.instructor-avatar-wrap {
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem;
}
.instructor-avatar {
  width: 8rem; height: 8rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  color: white;
  font-size: 2.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.instructor-info { padding: 2rem; }
.instructor-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.instructor-role { color: hsl(var(--primary)); font-weight: 500; margin-bottom: 1.5rem; }
.instructor-bio { display: flex; flex-direction: column; gap: 1rem; }
.instructor-bio p { color: hsl(var(--muted-fg)); line-height: 1.7; font-size: 0.9375rem; }

/* ===== WHY CARD ===== */
.why-card {
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: background 0.3s;
}
.why-card:hover { background: hsl(var(--primary) / 0.1); }
.why-card svg { width: 2.5rem; height: 2.5rem; color: hsl(var(--primary)); margin-bottom: 1rem; display: block; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-card p { color: hsl(var(--muted-fg)); line-height: 1.7; }

/* ===== WHAT YOU GET CARD ===== */
.get-card { height: 100%; }
.get-card .icon-box { margin-bottom: 0.75rem; }
.get-card h4 { margin-bottom: 0.5rem; }
.get-card p { font-size: 0.875rem; color: hsl(var(--muted-fg)); line-height: 1.7; }

/* ===== BY THE NUMBERS ===== */
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.number-card {
  background: hsl(var(--card));
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 6px hsl(0 0% 0% / 0.06);
}
.number-value {
  font-size: 2.5rem; font-weight: 700;
  color: hsl(var(--primary));
  font-variant-numeric: tabular-nums;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.number-label { font-size: 0.8125rem; color: hsl(var(--muted-fg)); }

/* ===== LOCATION BOX ===== */
.location-icon { color: hsl(var(--primary)); margin-bottom: 1.5rem; }
.location-icon svg { width: 3rem; height: 3rem; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: hsl(var(--muted-fg)); }
.text-primary { color: hsl(var(--primary)); }
.text-success { color: hsl(var(--success)); }
.text-large { font-size: 1.125rem; line-height: 1.7; }
.text-xl { font-size: 1.25rem; font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.flex-row { display: flex; align-items: center; gap: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.page-layout { min-height: 100dvh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

/* ===== SPLIT LAYOUT (image + content) ===== */
.split-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 8px 24px hsl(0 0% 0% / 0.1); }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== MINI CARDS (expectation grid) ===== */
.mini-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.mini-card {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 1rem;
}
.mini-card h4 { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.mini-card p { font-size: 0.875rem; color: hsl(var(--muted-fg)); line-height: 1.6; margin: 0; }

/* ===== STEP CARDS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.step-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: hsl(var(--muted));
  border-radius: var(--radius-lg);
}
.step-number {
  width: 2.5rem; height: 2.5rem;
  background: hsl(var(--primary));
  color: white;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.step-body h3 { font-size: 1.125rem; margin-bottom: 0.375rem; }
.step-body p { font-size: 0.9375rem; color: hsl(var(--muted-fg)); line-height: 1.6; margin: 0; }

/* ===== FORMAT CARDS ===== */
.format-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.format-card {
  padding: 1.5rem;
  background: hsl(var(--muted));
  border-radius: var(--radius-lg);
}
.format-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.format-card ul { display: flex; flex-direction: column; gap: 0.375rem; padding-left: 1.25rem; list-style: disc; }
.format-card li { font-size: 0.9375rem; color: hsl(var(--muted-fg)); line-height: 1.6; }

/* ===== WHY HIGHLIGHT BANNER ===== */
.highlight-banner {
  background: hsl(var(--primary));
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ===== DIFFERENTIATOR CARDS ===== */
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.diff-card { text-align: center; padding: 1.5rem; }
.diff-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.diff-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.875rem; color: hsl(var(--muted-fg)); line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .primary-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .primary-banner .btn-white { align-self: auto; flex-shrink: 0; }
}

@media (min-width: 768px) {
  .split-layout { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .program-card-inner { grid-template-columns: 1fr 2fr; }
  .program-info { border-bottom: none; border-right: 1px solid hsl(var(--border)); }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-span2 { grid-column: span 2; }
  .instructor-card { flex-direction: row; }
  .instructor-avatar-wrap { min-width: 13rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none !important; }
  .mobile-nav { display: none !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex !important; }
}

@media (max-width: 767px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .number-value { font-size: 1.75rem; }
  .featured-quote { padding: 2rem 1.5rem; }
}
