/* ============================================================
   WFH LAB ACADEMY — styles.css
   Brand: Hot Pink #FF4FA3 | Electric Blue #29B6FF | Lime #9DFF3F
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:   #FF4FA3;
  --pink-dark: #e0307f;
  --blue:   #29B6FF;
  --blue-dark: #0a9de6;
  --green:  #9DFF3F;
  --green-dark: #78d91a;
  --black:  #0e0e0e;
  --gray:   #555;
  --light:  #f7f7f7;
  --white:  #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { font-size: 1rem; color: #444; }
.text-sm { font-size: 0.875rem; }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-pink  { background: var(--pink);  color: var(--white); }
.btn-pink:hover  { background: var(--pink-dark); }
.btn-blue  { background: var(--blue);  color: var(--white); }
.btn-blue:hover  { background: var(--blue-dark); }
.btn-green { background: var(--green); color: var(--black); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-pink { background: transparent; border-color: var(--pink); color: var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }
.btn-outline-blue { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  padding: 0 24px;
  transition: box-shadow 0.2s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta { display: flex; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid #f0f0f0;
  padding: 16px 24px 24px;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  color: var(--black);
  display: block;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .btn { margin-top: 16px; width: 100%; text-align: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  padding: 90px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,79,163,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(41,182,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0f7;
  border: 1px solid rgba(255,79,163,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: '✦';
  font-size: 0.7rem;
}
#hero h1 {
  margin-bottom: 20px;
}
#hero h1 em {
  font-style: normal;
  color: var(--pink);
}
#hero p.hero-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

/* ── EMAIL CAPTURE ── */
#email-capture {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a2e 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#email-capture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(255,79,163,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(41,182,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.capture-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
#email-capture .section-label { color: var(--green); }
#email-capture h2 { color: var(--white); margin-bottom: 12px; }
#email-capture p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.capture-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.capture-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.capture-form input::placeholder { color: rgba(255,255,255,0.4); }
.capture-form input:focus { border-color: var(--pink); }
.capture-form .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.privacy-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ── ABOUT PREVIEW ── */
#about-preview { background: var(--white); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, #fff0f7 0%, #f0f9ff 100%);
  border-radius: 24px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,79,163,0.12);
}
.about-icon {
  font-size: 3.5rem;
}
.about-visual-label {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 24px; }
.feature-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}
.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── SERVICES PREVIEW ── */
#services-preview {
  background: var(--light);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: #666; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid #f0f0f0;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: #666; flex: 1; margin-bottom: 20px; }
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tag-pink   { background: #fff0f7; color: var(--pink); }
.tag-blue   { background: #f0f9ff; color: var(--blue-dark); }
.tag-green  { background: #f2fff0; color: #3d9900; }

/* ── COMMUNITY ── */
#community-section {
  background: var(--white);
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.community-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.community-card.pink-card {
  background: linear-gradient(135deg, #fff0f7 0%, #ffe8f4 100%);
  border: 1.5px solid rgba(255,79,163,0.2);
}
.community-card.blue-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e3f5ff 100%);
  border: 1.5px solid rgba(41,182,255,0.2);
}
.community-card-icon { font-size: 2.4rem; }
.community-card h3 { font-size: 1.3rem; }
.community-card p { font-size: 0.92rem; color: #555; }

/* ── PROOF / TESTIMONIALS ── */
#proof {
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid #f0f0f0;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 3.5rem;
  color: var(--pink);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}
.author-role {
  font-size: 0.78rem;
  color: #999;
}
.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 6px; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid #efefef;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--pink); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--pink);
  transition: background 0.15s, transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: var(--pink); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── FINAL CTA ── */
#final-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #d62f8b 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
#final-cta h2 { color: var(--white); margin-bottom: 12px; }
#final-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 36px; }
#final-cta .btn-group { justify-content: center; }
#final-cta .btn-green { background: var(--green); color: var(--black); }
.btn-white { background: var(--white); color: var(--pink); font-family: var(--font-head); font-weight: 600; }
.btn-white:hover { background: #ffe8f4; }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 70px 0 56px;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: #666; max-width: 600px; }

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.pillar-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--pink);
}
.pillar-card.blue   { border-left-color: var(--blue);  }
.pillar-card.green  { border-left-color: var(--green); }
.pillar-card h3 { font-size: 1rem; margin-bottom: 8px; }
.pillar-card p { font-size: 0.88rem; color: #666; }
.founder-box {
  background: linear-gradient(135deg, #fff0f7, #f0f9ff);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid rgba(255,79,163,0.15);
  margin-top: 52px;
}
.founder-box h3 { color: var(--pink); margin-bottom: 12px; }
.founder-box p { font-size: 0.92rem; color: #555; margin-bottom: 20px; }

/* ── SERVICES PAGE ── */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-full-card {
  background: var(--white);
  border: 1.5px solid #efefef;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-full-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.service-full-card .service-icon { font-size: 2.6rem; }
.service-full-card h3 { font-size: 1.25rem; }
.service-full-card .for-who {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-full-card p { font-size: 0.92rem; color: #555; flex: 1; }

/* ── FREE RESOURCES PAGE ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  background: var(--white);
  border: 1.5px solid #efefef;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.resource-icon { font-size: 2.2rem; }
.resource-card h3 { font-size: 1.05rem; }
.resource-card p { font-size: 0.88rem; color: #666; flex: 1; }

/* ── COMMUNITY PAGE ── */
.community-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.community-full-card {
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
}
.community-full-card.c-pink  { background: linear-gradient(135deg, #fff0f7, #ffe0ef); border: 1.5px solid rgba(255,79,163,0.2); }
.community-full-card.c-blue  { background: linear-gradient(135deg, #f0f9ff, #ddf2ff); border: 1.5px solid rgba(41,182,255,0.2); }
.community-full-card.c-green { background: linear-gradient(135deg, #f2fff0, #e5ffe0); border: 1.5px solid rgba(157,255,63,0.4); }
.community-full-card .comm-icon { font-size: 2.8rem; }
.community-full-card h3 { font-size: 1.2rem; }
.community-full-card p { font-size: 0.9rem; color: #555; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p  { font-size: 0.95rem; color: #555; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 14px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff0f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-card {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 36px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 520px;
  line-height: 1.6;
  text-align: right;
}

/* ── PAGE VISIBILITY ── */
.page { display: none; }
.page.active { display: block; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px;  }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.divider {
  height: 1px;
  background: #f0f0f0;
  margin: 40px 0;
}
.highlight-pink  { color: var(--pink); }
.highlight-blue  { color: var(--blue); }
.highlight-green { color: #3d9900; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 60px 0; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-visual { height: 240px; }
  .services-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .community-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
