/* ==========================================================================
   FRD Accel — Consolidated Stylesheet
   Design system per project handoff (June 2026)
   ========================================================================== */

:root {
  --navy-900: #0D1F33;
  --navy-800: #142C46;
  --navy-700: #1B3A5C;
  --navy-600: #224A72;
  --navy-500: #2E6B9C;
  --blue-300: #5AADCF;
  --blue-50:  #E8F4F8;
  --border:   #E9ECEF;
  --text:     #33414E;
  --text-light: #5C6B78;
  --white:    #FFFFFF;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(13, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 31, 51, 0.10);
  --shadow-lg: 0 16px 40px rgba(13, 31, 51, 0.14);
}

/* ---- Reset & base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-500); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--navy-700); }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); color: var(--navy-700); font-weight: 600; line-height: 1.25; }
h4, h5 { font-family: var(--font-body); color: var(--navy-700); font-weight: 600; }
h1 { font-size: 44px; }
h2 { font-size: 34px; }
h3 { font-size: 22px; }

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

/* ---- Section label / header pattern ---- */
.section { padding: 88px 0; }
.section-alt { background: #F7FAFC; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header p { color: var(--text-light); margin-top: 14px; font-size: 16px; }
.accent-bar {
  display: block;
  width: 64px; height: 3px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, var(--blue-300), var(--navy-500));
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 13px 30px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn i { margin-right: 7px; }
.btn-primary { background: var(--navy-700); color: var(--white); }
.btn-primary:hover { background: var(--navy-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy-700); border-color: var(--navy-700); }
.btn-outline:hover { background: var(--navy-700); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy-700); }
.btn-light:hover { background: var(--blue-50); color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-light:hover { background: var(--white); color: var(--navy-700); }

/* ---- Top bar ---- */
.top-bar { background: var(--navy-900); color: rgba(255,255,255,0.85); font-size: 13px; padding: 9px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-right { display: flex; gap: 22px; }
.top-bar-item { color: rgba(255,255,255,0.85); }
.top-bar-item:hover { color: var(--blue-300); }
.top-bar-item i { color: var(--blue-300); margin-right: 7px; font-size: 12px; }

/* ---- Header / nav ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--navy-700);
  position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--blue-300);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy-500); }
.btn-nav { padding: 11px 26px; }

/* Mobile toggle */
.mobile-toggle { display: none; background: none; border: none; width: 30px; height: 24px; position: relative; }
.mobile-toggle span {
  display: block; width: 100%; height: 2.5px; background: var(--navy-700);
  border-radius: 2px; margin: 5px 0; transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  position: sticky; top: 73px; z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 12px; text-align: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: var(--white);
  text-align: center;
  padding: 110px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(90,173,207,0.18) 0%, transparent 70%);
}
.hero-glow-1 { width: 600px; height: 600px; top: -200px; right: -120px; }
.hero-glow-2 { width: 500px; height: 500px; bottom: -220px; left: -100px; }
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-label {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--blue-300);
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); font-size: 48px; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--blue-300); }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 660px; margin: 0 auto; }
.hero-cta { margin-top: 34px; }

/* ---- Cards (generic) ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-300), var(--navy-500));
  opacity: 0; transition: opacity 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

/* ---- Pillars (homepage) ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card img { width: 100%; height: 220px; object-fit: cover; }
.pillar-body { padding: 26px 26px 30px; }
.pillar-body h3 { margin-bottom: 10px; }
.pillar-body p { color: var(--text-light); }

/* ---- Product sections (BabyStrong / TRRP) ---- */
.product-section {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 96px 0;
}
.product-section + .product-section { border-top: 1px solid rgba(90,173,207,0.18); }
.product-intro { display: grid; grid-template-columns: 460px 1fr; gap: 56px; align-items: center; margin-bottom: 60px; }
.product-media { text-align: center; }
.product-media img { border-radius: var(--radius); margin: 0 auto; }
.product-media .product-logo { background: transparent; max-width: 360px; }
.product-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-300); border: 1px solid rgba(90,173,207,0.45);
  border-radius: 30px; padding: 7px 18px; margin-bottom: 18px;
}
.product-content h2 { color: var(--white); font-size: 38px; margin-bottom: 6px; }
.product-tagline { font-size: 18px; color: var(--blue-300); font-weight: 500; margin-bottom: 18px; }
.product-content > p { color: rgba(255,255,255,0.82); margin-bottom: 14px; }
.product-attribution { font-size: 13.5px; color: rgba(255,255,255,0.6); font-style: italic; }
.product-attribution strong { color: rgba(255,255,255,0.8); }

/* Tabs */
.tabs { margin-bottom: 44px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 10px; border-bottom: 1px solid rgba(90,173,207,0.25); padding-bottom: 0; margin-bottom: 34px; }
.tab-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  color: rgba(255,255,255,0.6); padding: 12px 22px;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: all 0.25s ease;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--blue-300); border-bottom-color: var(--blue-300); }
.tab-panel { display: none; animation: fadeUp 0.45s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Tab content cards (dark) */
.tab-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(90,173,207,0.22);
  border-radius: var(--radius);
  padding: 30px;
}
.dark-card h4 { color: var(--blue-300); font-size: 17px; margin-bottom: 12px; }
.dark-card p { color: rgba(255,255,255,0.8); font-size: 14.5px; }

/* Feature / benefit check-lists */
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(255,255,255,0.85); font-size: 14.5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,173,207,0.16);
  border-radius: 10px; padding: 16px 18px;
}
.check-list li i { color: var(--blue-300); margin-top: 4px; }
.check-list li strong { color: var(--white); }

/* Numbered applications list */
.numbered-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; counter-reset: apps; }
.numbered-list li {
  display: flex; gap: 16px; align-items: flex-start;
  color: rgba(255,255,255,0.85); font-size: 14.5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,173,207,0.16);
  border-radius: 10px; padding: 16px 18px;
}
.numbered-list li .num {
  flex: 0 0 30px; height: 30px; border-radius: 50%;
  background: var(--navy-600); color: var(--blue-300);
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.numbered-list li strong { color: var(--white); }

/* Stat boxes */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 46px; }
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(90,173,207,0.25);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-box:hover { transform: translateY(-4px); border-color: var(--blue-300); }
.stat-box .stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-300); margin-bottom: 8px;
}
.stat-box .stat-value { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.45; }
.product-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---- Journey / image-text split ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-section h2 { margin-bottom: 18px; }
.split-section p { color: var(--text-light); margin-bottom: 14px; }

/* ---- Mission & Vision cards ---- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; margin: 0 auto; }
.mv-card { padding: 38px 34px; }
.mv-card .mv-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-50); color: var(--navy-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.mv-card h3 { margin-bottom: 12px; }
.mv-card p { color: var(--text-light); }

/* ---- CTA section ---- */
.cta-section {
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white); text-align: center; padding: 84px 0;
  position: relative; overflow: hidden;
}
.cta-section h2 { color: var(--white); font-size: 36px; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 640px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- About page ---- */
.about-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-split h2 { margin-bottom: 20px; }
.about-split .narrative p { color: var(--text-light); margin-bottom: 16px; }
.info-block {
  background: var(--navy-700); color: var(--white);
  border-radius: var(--radius); padding: 36px 32px;
}
.info-block dl div { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.info-block dl div:last-child { border-bottom: none; }
.info-block dt { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-300); margin-bottom: 4px; }
.info-block dd { font-size: 15px; font-weight: 500; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.approach-card { padding: 36px 30px; }
.approach-card .num-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-700); color: var(--white);
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.approach-card h3 { margin-bottom: 12px; }
.approach-card p { color: var(--text-light); font-size: 14.5px; }

.affiliation-section {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white); padding: 88px 0;
}
.affiliation-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.affiliation-inner .logos { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.affiliation-inner .logos img { max-height: 80px; width: auto; max-width: 280px; }
.affiliation-inner h2 { color: var(--white); margin-bottom: 18px; }
.affiliation-inner p { color: rgba(255,255,255,0.82); margin-bottom: 14px; }

/* ---- Team page ---- */
.team-featured-row { display: flex; justify-content: center; margin-bottom: 28px; }
.team-featured-row .team-card { width: 100%; max-width: 348px; }
.team-featured-row .avatar { width: 96px; height: 96px; font-size: 28px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
.team-card { text-align: center; padding: 38px 28px; }
.team-card.featured { border-color: var(--navy-500); }
.avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-500));
  color: var(--white); font-weight: 600; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-card .role { color: var(--navy-500); font-size: 13.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-card {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 24px;
}
.contact-card .cc-icon {
  flex: 0 0 48px; height: 48px; border-radius: 10px;
  background: var(--blue-50); color: var(--navy-500);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.contact-card h4 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.contact-card p, .contact-card a.cc-value { font-size: 15.5px; font-weight: 600; color: var(--navy-700); }
.hours-box { background: var(--navy-700); color: var(--white); border-radius: var(--radius); padding: 28px 30px; }
.hours-box h4 { color: var(--blue-300); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.hours-box p { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hours-box p:last-child { border-bottom: none; }

.contact-form-wrap { padding: 40px 38px; }
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); font-size: 14.5px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-700); margin-bottom: 7px; }
.form-group label .req { color: #C0392B; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body); font-size: 14.5px; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 14px; background: #FBFCFD;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-300); box-shadow: 0 0 0 3px rgba(90,173,207,0.15); background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }
.form-status { margin-top: 16px; font-size: 14.5px; font-weight: 600; display: none; }
.form-status.success { display: block; color: #1E7B45; }
.form-status.error { display: block; color: #C0392B; }

.map-section iframe { width: 100%; height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Newsletter strip */
.newsletter-strip { background: var(--blue-50); padding: 52px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-inner h3 { margin-bottom: 4px; }
.newsletter-inner p { color: var(--text-light); font-size: 14.5px; }
.newsletter-form { display: flex; gap: 12px; flex: 0 0 auto; }
.newsletter-form input {
  font-family: var(--font-body); font-size: 14.5px;
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; width: 280px; background: var(--white);
}
.newsletter-form input:focus { outline: none; border-color: var(--blue-300); }

/* ---- Footer ---- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); font-size: 14px; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 0.9fr; gap: 44px; padding-bottom: 48px; }
.footer-logo { width: 180px; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 14px; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.75); }
.footer-links a:hover, .footer-contact a:hover { color: var(--blue-300); }
.footer-contact i { color: var(--blue-300); margin-right: 9px; width: 14px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--blue-300); border-color: var(--blue-300); color: var(--navy-900); }
.footer-affiliation {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 36px 0; text-align: center;
}
.affiliation-logos { display: flex; gap: 36px; justify-content: center; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.affiliation-logos img { width: auto; max-height: 52px; }
.footer-affiliation p { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 820px; margin: 0 auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.65); }
.footer-bottom-links a:hover { color: var(--blue-300); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-intro { grid-template-columns: 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .affiliation-inner, .about-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  h1, .hero h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 64px 0; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .pillars-grid, .approach-grid, .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tab-cards, .check-list, .numbered-list, .mv-grid { grid-template-columns: 1fr; }
  .contact-grid, .split-section { grid-template-columns: 1fr; gap: 40px; }
  .top-bar-right span.top-bar-item { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 76px 0 70px; }
  .hero h1 { font-size: 30px; }
  .stat-grid { grid-template-columns: 1fr; }
  .for