*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0f1c2e;
  --navy-light: #162a45;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --teal: #0ea5a8;
  --teal-light: #14b8bb;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green: #10b981;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 6px 16px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-weight: 700; color: var(--gray-900); letter-spacing: 0.02em; }
.nav-logo-text span:last-child { font-size: 11px; font-weight: 500; color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-links a.active { color: var(--blue); background: rgba(37,99,235,0.08); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta svg { width: 16px; height: 16px; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--gray-50); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
  font-weight: 400;
}
.page-hero p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── HERO (homepage) ─── */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 520px;
}
.hero-company {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-company strong { color: var(--gray-800); font-weight: 600; }
.hero-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
}
.hero-features li svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-features li strong { color: var(--gray-800); font-weight: 600; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.hero-cta:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }

/* Hero cards */
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.hero-card:hover { border-color: var(--blue); box-shadow: var(--shadow-card), 0 0 0 1px rgba(37,99,235,0.1); transform: translateY(-2px); }
.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.hero-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.hero-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--gray-50); }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
}
.section-label-left {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 400;
}
.section-title-left {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 400;
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.section-subtitle-left {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { background: var(--blue); }
.service-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-badge.dot { background: rgba(37,99,235,0.1); color: var(--blue); }
.service-badge.rapid { background: rgba(14,165,168,0.1); color: var(--teal); }
.service-badge.certified { background: rgba(249,115,22,0.1); color: #ea580c; }
.service-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.service-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-card > p { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--gray-600);
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ─── PROGRAMS GRID ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.program-card:hover { border-color: var(--blue); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.program-icon { font-size: 28px; margin-bottom: 16px; }
.program-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.program-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

/* ─── AREA TAGS ─── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13.5px; font-weight: 500; color: var(--gray-700);
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--blue); color: var(--blue); }
.area-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e11d48;
}
.area-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.area-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}
.area-box h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.area-box p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.area-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  transition: all 0.2s;
}
.area-link:hover { border-color: var(--blue); color: var(--blue); }

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--gray-800);
  background: none; border: none;
  width: 100%; text-align: left;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q svg { width: 20px; height: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }

/* ─── CTA ─── */
.cta {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-note { font-size: 15px; color: var(--gray-400); margin-bottom: 24px; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}
.cta-phone a { color: var(--white); transition: color 0.2s; }
.cta-phone a:hover { color: var(--blue-light); }
.cta-avail { font-size: 15px; color: var(--gray-400); margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--white); color: var(--gray-900);
  font-size: 16px; font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-msg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: transparent; color: var(--white);
  font-size: 16px; font-weight: 600;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-msg:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ─── CONTENT BLOCKS ─── */
.content-block { padding: 60px 0; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 400;
}
.content-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  margin-top: 32px;
}
.content-block p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 720px;
}
.content-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 720px;
}
.content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.content-block ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; margin-top: 0; }
.info-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; margin-bottom: 0; }

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: 100px 0 0;
  font-size: 13px;
  color: var(--gray-400);
}
.breadcrumbs a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span { margin: 0 8px; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.contact-info-item a { color: var(--blue); font-weight: 600; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}
.footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-400); margin-bottom: 14px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gray-500); flex-shrink: 0; }
.footer-msg-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-top: 8px;
  transition: all 0.2s;
}
.footer-msg-link:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: var(--gray-500);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-500); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.45s; }
.stagger-7 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 110px 0 60px; }
  .page-hero { padding: 110px 0 40px; }
  .section, .section-alt { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .area-boxes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
