/* ============================================================
   BOARDBUDDY — SHARED STYLESHEET
   ============================================================
   HOW TO CHANGE COLORS:
   Edit the values in :root below. Every color on the site
   comes from these variables — change once, updates everywhere.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  /* --- BRAND COLORS --- */
  --green:       #25D366;   /* WhatsApp green — primary accent */
  --green-dark:  #1AAE54;   /* Hover state */
  --orange:      #FF6B2B;   /* Secondary accent / highlights */
  --navy:        #0D1B2A;   /* Dark backgrounds */
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --text-dark:   #0D1B2A;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #E2E8F0;

  /* --- TYPOGRAPHY --- */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* --- SPACING --- */
  --max-width: 1140px;
  --section-pad: 80px 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ---- CONTAINER ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- NAVBAR ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-dark); text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 100px;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.16); }
.btn-green  { background: var(--green);  color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.btn-green:hover { background: var(--green-dark); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white  { background: var(--white);  color: var(--navy); }

/* ---- SECTION LABELS ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(255,107,43,0.1);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 14px;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(37,211,102,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(255,107,43,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3);
  color: var(--green); padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 22px; position: relative;
}
.hero h1 .accent { color: var(--green); }
.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,0.78);
  max-width: 580px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wa-icon { font-size: 1.2rem; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800; color: var(--green);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* ---- HOW IT WORKS ---- */
.how { padding: var(--section-pad); background: var(--off-white); }
.how h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 48px; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step {
  background: var(--white); border-radius: 20px;
  padding: 28px 24px; position: relative;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-mid); }

/* ---- FEATURES GRID ---- */
.features { padding: var(--section-pad); }
.features h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.features .sub { color: var(--text-mid); margin-bottom: 48px; font-size: 1.05rem; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feat-card {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.09); transform: translateY(-4px); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 16px;
}
.feat-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.9rem; color: var(--text-mid); }
.feat-card--highlight {
  border-color: var(--green);
  background: rgba(37,211,102,0.05);
  position: relative;
}
.feat-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); background: var(--green);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy); color: var(--white);
  padding: 70px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,211,102,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: var(--section-pad); background: var(--off-white); }
.testimonials h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 40px; text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: 20px;
  padding: 28px 24px; border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.testi-stars { color: #F6C90E; font-size: 1rem; margin-bottom: 12px; }
.testi-text { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(37,211,102,0.35);
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.8rem; color: var(--text-light); }

/* ---- FAQ ---- */
.faq-section { padding: var(--section-pad); }
.faq-section h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.faq-section .sub { color: var(--text-mid); margin-bottom: 40px; }
.faq-list { max-width: 720px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; font-family: var(--font-body);
  font-size: 0.97rem; font-weight: 600; color: var(--text-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow { font-size: 1.1rem; transition: transform 0.25s; color: var(--green); }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--white); text-decoration: none; display: block; margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--green); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center; font-size: 0.82rem;
}

/* ---- ABOUT ---- */
.about-hero { background: var(--navy); color: var(--white); padding: 80px 24px; text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.mission { padding: var(--section-pad); }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.mission h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.mission p { color: var(--text-mid); margin-bottom: 16px; }
.mission-visual {
  background: var(--off-white); border-radius: 20px;
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.m-stat { display: flex; align-items: center; gap: 16px; }
.m-stat-icon { font-size: 2rem; }
.m-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--green); }
.m-stat-label { font-size: 0.85rem; color: var(--text-mid); }
.team-section { padding: var(--section-pad); background: var(--off-white); }
.team-section h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 40px; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.team-card { background: var(--white); border-radius: 16px; padding: 28px 20px; text-align: center; border: 1px solid var(--border); }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--text-mid); }

/* ---- CONTACT ---- */
.contact-hero { background: var(--navy); color: var(--white); padding: 80px 24px; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto; }
.contact-body { padding: var(--section-pad); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--max-width); margin: 0 auto; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 28px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link { display: flex; align-items: center; gap: 14px; color: var(--text-dark); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.contact-link:hover { color: var(--green); }
.contact-link-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-form { background: var(--off-white); border-radius: 20px; padding: 36px; }
.contact-form h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: var(--font-body);
  font-size: 0.95rem; background: var(--white); color: var(--text-dark);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; background: var(--green); color: var(--white); border: none; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--green-dark); }

/* ---- BLOG ---- */
.blog-hero { background: var(--navy); color: var(--white); padding: 80px 24px; text-align: center; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.blog-hero p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto; }
.blog-grid-section { padding: var(--section-pad); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: var(--max-width); margin: 0 auto; }
.blog-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); background: rgba(37,211,102,0.1); border-radius: 6px; padding: 3px 10px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; }
.blog-meta { font-size: 0.8rem; color: var(--text-light); }
.blog-read { font-size: 0.88rem; font-weight: 600; color: var(--green); text-decoration: none; }
.blog-read:hover { text-decoration: underline; }

/* ---- PRESS ---- */
.press-hero { background: var(--navy); color: var(--white); padding: 80px 24px; text-align: center; }
.press-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.press-hero p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto; }
.press-section { padding: var(--section-pad); }
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.press-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; }
.press-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-light); margin-bottom: 14px; }
.press-quote { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.press-date { font-size: 0.8rem; color: var(--text-light); }
.press-link { font-size: 0.85rem; font-weight: 600; color: var(--green); text-decoration: none; }
.press-link:hover { text-decoration: underline; }
.press-contact { background: var(--off-white); padding: var(--section-pad); text-align: center; }
.press-contact h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.press-contact p { color: var(--text-mid); margin-bottom: 24px; }

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 12px 24px; }
.breadcrumb { max-width: var(--max-width); margin: 0 auto; font-size: 0.82rem; color: var(--text-light); }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- BLOG POST / ARTICLE ---- */
.post-hero { background: var(--navy); color: var(--white); padding: 56px 24px 48px; }
.post-hero .container { max-width: 760px; }
.post-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 2.5rem); font-weight: 800; line-height: 1.22; letter-spacing: -0.01em; margin-bottom: 16px; }
.post-meta { color: rgba(255,255,255,0.62); font-size: 0.85rem; }
.post-body { padding: var(--section-pad); }
.post-body .container { max-width: 760px; }
.post-body h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin: 40px 0 16px; letter-spacing: -0.01em; }
.post-body > .container > h2:first-child { margin-top: 0; }
.post-body h3 { font-size: 1.12rem; font-weight: 700; margin: 26px 0 10px; }
.post-body p { color: var(--text-mid); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }
.post-body ul, .post-body ol { color: var(--text-mid); margin: 0 0 16px 22px; font-size: 1.02rem; line-height: 1.75; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--text-dark); }
.post-lede { font-size: 1.12rem !important; color: var(--text-dark) !important; }
.post-cta { background: var(--off-white); border-radius: 20px; padding: 32px; text-align: center; margin-top: 32px; }
.post-cta h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.post-cta p { color: var(--text-mid); margin-bottom: 20px; }
.related-posts { padding: 0 24px 80px; }
.related-posts .container { max-width: 760px; }
.related-posts h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.related-posts ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related-posts a { color: var(--green); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.related-posts a:hover { text-decoration: underline; }

/* ---- SCROLL NUDGE ---- */
.scroll-nudge {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  padding: 20px; width: 280px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  transform: translateY(140%); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.scroll-nudge.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.scroll-nudge-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; font-size: 1.2rem; line-height: 1;
  color: var(--text-light); cursor: pointer; padding: 4px;
}
.scroll-nudge-icon { font-size: 1.6rem; }
.scroll-nudge h4 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.scroll-nudge p { font-size: 0.85rem; color: var(--text-mid); margin: 0 0 4px; }
.scroll-nudge .btn { align-self: stretch; text-align: center; padding: 10px 16px; font-size: 0.9rem; }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .stats-inner { gap: 24px; }
  .scroll-nudge { left: 16px; right: 16px; bottom: 16px; width: auto; }
}
