/* Modern White-Based UI/UX Design */

/* Base Reset & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafbfc;
  --bg-tertiary: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-light: #dbeafe;
  --accent: #8b5cf6;
  --accent-light: #ede9fe;
  --success: #10b981;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-sm: 12px;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-purple: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Modern Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.logo-type {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-list a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.nav-list a.btn {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
  padding: 10px 20px;
}

.nav-list a.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-blue);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--bg-tertiary);
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background: var(--border-light);
}

.nav-toggle .bar {
  display: block;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.full {
  width: 100%;
}

/* Modern Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy p {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin: 0 0 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi {
  font-weight: 800;
  font-size: 32px;
  color: var(--text-primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.trust-label {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}

.card.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.card.metric .label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card.metric .value {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.card.hero-image {
  padding: 0;
  overflow: hidden;
  grid-column: 1 / -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
  transition: transform 0.5s ease;
}

.card.hero-image:hover .hero-img {
  transform: scale(1.05);
}

.card.schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.card.schedule .label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card.schedule .value {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.orb {
  position: absolute;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 87, 108, 0.3) 0%, rgba(240, 147, 251, 0.3) 100%);
  bottom: -80px;
  right: 10%;
}

.orb-3 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
  top: 40%;
  right: -50px;
}

/* Modern Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: 48px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 24px;
}

/* Modern Programs */
.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}

.program-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-soft);
  border-radius: 16px;
  margin-bottom: 20px;
}

.program-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.program-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.program-card p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
}

.pill-list li {
  padding: 8px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.link:hover {
  gap: 10px;
  color: var(--primary-hover);
}

.link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.link:hover::after {
  transform: translateX(4px);
}

/* Modern Partners */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.partner-logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* Modern Why Cards */
.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.why-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Modern Help Section */
.help .section-head p { max-width: 680px; margin-left: auto; margin-right: auto; }
.help-grid { grid-template-columns: repeat(4, 1fr); }
.help-card { display: flex; flex-direction: column; gap: 12px; padding: 28px; }
.help-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--gradient-soft); font-size: 28px; }
.help-card h3 { margin: 6px 0 6px; font-size: 20px; }
.help-card p { margin: 0 0 8px; color: var(--text-secondary); }
.help-meta { margin-top: auto; }
.badge { display: inline-block; padding: 8px 12px; border-radius: 999px; background: var(--bg-tertiary); border: 1px solid var(--border-light); color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; }

/* Modern Stories Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story {
  padding: 48px;
  margin: 0;
  display: grid;
  gap: 20px;
}

.story blockquote {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
  font-style: italic;
}

.story figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story .name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.story .role {
  color: var(--text-muted);
  font-size: 14px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-primary);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--bg-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Modern How It Works */
.how .section-head p { max-width: 680px; margin-left: auto; margin-right: auto; }
.how-grid { counter-reset: step; grid-template-columns: repeat(5, 1fr); }
.how-step { position: relative; padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.how-step h3 { margin: 6px 0 4px; font-size: 18px; font-weight: 700; color: var(--text-primary); }
.how-step p { margin: 0; color: var(--text-secondary); }
.how-step::after { content: ""; position: absolute; top: 56px; right: -12px; width: 24px; height: 2px; background: var(--border); }
.how-step:last-child::after { display: none; }
.step-num { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: var(--text-primary); background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.how-cta { margin-top: 36px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 24px 28px; }
.how-cta-copy h3 { margin: 0 0 6px; font-size: 22px; }
.how-cta-copy p { margin: 0; color: var(--text-secondary); }
.how-cta-btn { padding-left: 24px; padding-right: 24px; }

/* Modern Admissions */
.admissions {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
}

.admissions-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.admissions-copy h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text-primary);
}

.admissions-copy p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 18px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 6px;
}

.form {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-light);
}

.form .field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form input,
.form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-primary);
  font: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form .error {
  color: #ef4444;
  font-size: 13px;
  min-height: 18px;
}

.form-note {
  color: var(--text-muted);
  margin: 16px 0 0;
  font-size: 13px;
  text-align: center;
}

/* Modern Contact */
.office-grid { grid-template-columns: repeat(4, 1fr); }
.office-card h3 { margin: 0 0 8px; font-size: 18px; }
.office-card p { margin: 0 0 10px; color: var(--text-secondary); }

/* Modern Footer */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.footer-inner {
  display: grid;
  gap: 32px;
  justify-items: center;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.legal {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

/* Utils */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .section-head h2 {
    font-size: 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-media {
    order: -1;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(3, 1fr); }

  .admissions-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr; }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-list {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .section {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .section-head p {
    font-size: 16px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .help-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }

  .partner-logos {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story {
    padding: 32px 24px;
  }

  .story blockquote {
    font-size: 20px;
  }

  .form {
    padding: 32px 24px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .carousel-btn.prev {
    left: 12px;
  }

  .carousel-btn.next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 24px;
  }

  .trust-item {
    text-align: center;
  }
}
