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

:root {
  --navy: #1d3d72;
  --navy-dark: #152d54;
  --navy-light: #2a5099;
  --green: #3aaa35;
  --green-dark: #2d8729;
  --green-light: #4dc747;
  --orange: #f7941d;
  --orange-dark: #d97d10;
  --blue-mid: #2e78c7;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); line-height: 1.6; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md); transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.card-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.icon-navy { background: #e8eef7; color: var(--navy); }
.icon-green { background: #e8f5e9; color: var(--green); }
.icon-orange { background: #fef3e2; color: var(--orange); }
.icon-blue { background: #e3f0fb; color: var(--blue-mid); }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition);
  overflow: hidden;
}
.site-header .container { height: 150px; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; justify-content: flex-start; height: 150px; }
.site-logo-img { height: 126px; width: auto; flex-shrink: 0; object-fit: contain; }
.logo-mark {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.logo-text .line1 { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; }
.logo-text .line2 { display: block; font-size: 1rem; font-weight: 800; color: var(--green); line-height: 1.15; letter-spacing: -0.02em; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.6rem 1.1rem; border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 700; color: var(--gray-700); transition: var(--transition);
}
.site-nav a:hover { color: var(--navy); background: var(--gray-100); }
.site-nav a.active { color: var(--green); font-weight: 700; background: #e8f5e9; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; top: 150px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 2rem 1.5rem;
  flex-direction: column; gap: 0.5rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 0.875rem 1rem; border-radius: var(--radius-md);
  font-size: 1.1rem; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a.active { color: var(--green); background: #e8f5e9; }
.mobile-nav .btn { margin-top: 1rem; justify-content: center; }

/* ── Hero (Homepage) ── */
.hero {
  padding-top: 150px; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4f9e 60%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(58,170,53,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding-top: 1.5rem; padding-bottom: 2rem;
}
.hero-eyebrow {
  display: inline-block; background: rgba(58,170,53,0.2); color: #7dd97a;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  border: 1px solid rgba(58,170,53,0.35);
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 800; }
.hero-content h1 .highlight { color: var(--green); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 460px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; }
.stats-glass {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-xl);
  padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.sg-item { text-align: center; }
.sg-num { display: block; font-size: 2.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.sg-num em { color: var(--orange); font-style: normal; }
.sg-label { font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 0.35rem; display: block; }
.sg-divider {
  grid-column: 1 / -1; height: 1px; background: rgba(255,255,255,0.12); margin: 0.25rem 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 150px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding-bottom: 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 120px; background: var(--white); border-radius: 50%;
}
.page-hero .container { padding-top: 1.5rem; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--orange); }

/* ── Stats Bar ── */
.stats-bar { background: var(--navy); padding: 2.5rem 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.sb-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); }
.sb-num em { color: var(--orange); font-style: normal; }
.sb-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 0.2rem; display: block; }

/* ── Service Cards ── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .sc-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; }
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  margin-top: 1rem; transition: var(--transition);
}
.service-card .sc-link:hover { gap: 0.5rem; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.quote-mark { font-size: 3rem; line-height: 1; color: var(--green); margin-bottom: 0.5rem; }
.testimonial-card p { font-style: italic; font-size: 0.95rem; color: var(--gray-700); margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.t-info strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 600; }
.t-info span { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 0.75rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Why Us ── */
.why-us { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-us-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl); padding: 3rem; position: relative; overflow: hidden;
}
.why-us-visual::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,170,53,0.2) 0%, transparent 70%); border-radius: 50%;
}
.check-list { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 1; }
.check-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.check-icon {
  width: 28px; height: 28px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--white); font-size: 0.85rem; margin-top: 0.1rem;
}
.check-text strong { display: block; font-size: 0.95rem; color: var(--white); font-weight: 600; margin-bottom: 0.2rem; }
.check-text span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.why-content h2 { margin-bottom: 1.25rem; }
.why-content p { margin-bottom: 1.5rem; }
.why-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.why-feature { display: flex; align-items: center; gap: 0.75rem; }
.why-feature .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.why-feature span { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 34px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--gray-200); z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.ps-num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--navy);
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; }

/* ── Values (About) ── */
.value-card {
  text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

/* ── Team ── */
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 800; color: var(--white);
  border: 4px solid var(--white); box-shadow: var(--shadow-lg);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.team-card p { font-size: 0.85rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
.contact-info-panel {
  background: var(--navy); border-radius: var(--radius-xl); padding: 2.5rem; color: var(--white);
}
.contact-info-panel h2 { color: var(--white); margin-bottom: 0.75rem; }
.contact-info-panel > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.ci-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 0.25rem; }
.ci-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.social-row { display: flex; gap: 0.625rem; margin-top: 2rem; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: 0.9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--green); }

.contact-form-panel {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.contact-form-panel h2 { margin-bottom: 0.5rem; }
.contact-form-panel > p { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md); font-size: 0.9rem; font-family: var(--font-sans);
  color: var(--text); background: var(--white); transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(29,61,114,0.08); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0.75rem; }
.faq-btn {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: var(--white);
  border: none; cursor: pointer; font-size: 0.92rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); transition: var(--transition);
}
.faq-btn:hover { background: var(--gray-50); }
.faq-icon { font-size: 1.25rem; color: var(--green); transition: var(--transition); flex-shrink: 0; }
.faq-body { display: none; padding: 0 1.5rem 1.25rem; background: var(--gray-50); }
.faq-body p { font-size: 0.9rem; }
.faq-item.open .faq-body { display: block; }
.faq-item.open .faq-btn { background: var(--gray-50); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Resources ── */
.resource-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); transition: var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.rc-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.rc-body { padding: 1.5rem; }
.rc-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 50px; margin-bottom: 0.75rem;
}
.tag-green { background: #e8f5e9; color: var(--green-dark); }
.tag-navy { background: #e8eef7; color: var(--navy); }
.tag-orange { background: #fef3e2; color: var(--orange-dark); }
.rc-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.rc-body p { font-size: 0.85rem; margin-bottom: 1rem; }
.rc-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.82rem; font-weight: 600; color: var(--green); transition: var(--transition);
}
.rc-link:hover { gap: 0.5rem; }
.rc-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Featured Resource ── */
.featured-resource {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200); overflow: hidden;
}
.fr-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem; min-height: 280px;
}
.fr-body { padding: 2.5rem; }
.fr-body .rc-tag { font-size: 0.7rem; }
.fr-body h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.fr-body p { margin-bottom: 1.5rem; }

/* ── Newsletter ── */
.newsletter-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.newsletter-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter-form { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.newsletter-form .form-control { flex: 1; }
.newsletter-disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Footer ── */
.site-footer { background: var(--gray-900); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img { height: 80px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand .logo-text .line1 { color: var(--white); }
.footer-brand .logo-text .line2 { color: var(--green); }
.footer-brand p { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green); }

/* ── Mission / Story (About) ── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card {
  border-radius: var(--radius-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
}
.mission-card.navy-card { background: var(--navy); }
.mission-card.green-card { background: var(--green); }
.mission-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.mission-card p { color: rgba(255,255,255,0.8); }
.mission-card .mc-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  min-height: 400px; display: flex; align-items: center; justify-content: center; font-size: 6rem;
  position: relative;
}
.story-visual::after {
  content: ''; position: absolute; bottom: -2px; right: -2px;
  width: 80px; height: 80px; background: var(--orange); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.story-content h2 { margin-bottom: 1.25rem; }
.story-content p { margin-bottom: 1rem; }
.story-content .btn { margin-top: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .why-us { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-resource { grid-template-columns: 1fr; }
  .fr-visual { min-height: 180px; }
  .story-section { grid-template-columns: 1fr; gap: 3rem; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .site-nav, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .site-header .container { height: 84px; }
  .hero { padding-top: 104px; min-height: auto; }
  .hero .container { padding-top: 1.5rem; padding-bottom: 2rem; }
  .page-hero { padding-top: 104px; padding-bottom: 2rem; }
  .page-hero .container { padding-top: 1rem; }
  .nav-logo { height: 84px; padding: 8px 0; }
  .site-logo-img { height: 68px; }
  .mobile-nav { top: 84px; }
  .newsletter-form { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .grid-4 { grid-template-columns: 1fr; }
}
