*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #0F6E56; --green-mid: #1D9E75; --green-dark: #085041;
  --green-light: #E8F5F0; --green-pale: #F2FAF7;
  --white: #FFFFFF; --off-white: #FAFAF8; --black: #111111;
  --gray-1: #F5F5F3; --gray-2: #E8E8E4; --gray-3: #9A9A94; --gray-4: #555550;
  --nav-blur: rgba(255,255,255,0.88);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max: 900px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--off-white); color: var(--black); -webkit-font-smoothing: antialiased; }
.secondary-bar {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  height: 36px; background: white; border-bottom: 0.5px solid var(--gray-2);
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.secondary-bar a {
  font-size: 12px; font-weight: 500; color: var(--green-dark);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.secondary-bar a:hover { color: var(--green); }
.secondary-bar .sep { width: 1px; height: 14px; background: var(--gray-2); }
.bar-arrow {
  font-size: 13px; font-weight: 900; color: var(--green);
  line-height: 1; display: inline-flex; flex-shrink: 0;
  transform: scaleX(1.1);
}
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 56px; background: var(--nav-blur); backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--gray-2); display: flex; align-items: center; justify-content: space-between; padding: 0 44px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo span { font-size: 15px; font-weight: 600; color: var(--black); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-4); text-decoration: none; }
.nav-cta { background: var(--green); color: white; padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; text-decoration: none; }
.nav-reorder {
  border: 1px solid var(--gray-2); color: var(--gray-4);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nav-reorder:hover { border-color: var(--green); color: var(--green); }
.page-wrap { padding-top: 92px; }

.hero { background: white; border-bottom: 0.5px solid var(--gray-2); padding: 80px 44px 64px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--green); }
.hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.1; color: var(--black); margin-bottom: 16px; }
.hero h1 em { color: var(--green); font-style: italic; }
.hero p { font-size: 17px; font-weight: 300; color: var(--gray-4); max-width: 500px; margin: 0 auto; line-height: 1.7; }

.body-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 44px 100px; }

/* CATEGORY FILTER */
.faq-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.faq-cat { padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--gray-2); font-size: 13px; font-weight: 500; color: var(--gray-3); cursor: pointer; background: white; transition: all 0.15s; }
.faq-cat:hover { border-color: var(--green); color: var(--green); }
.faq-cat.active { background: var(--green); border-color: var(--green); color: white; }

/* FAQ GROUPS */
.faq-group { margin-bottom: 48px; }
.faq-group h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--black); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--green-light); }
.faq-item { border-bottom: 0.5px solid var(--gray-2); }
.faq-q { padding: 18px 0; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.15s; user-select: none; }
.faq-q:hover { color: var(--green); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gray-2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gray-3); flex-shrink: 0; transition: all 0.15s; }
.faq-toggle::before { content: '+'; }
.faq-item.open .faq-toggle { background: var(--green); color: white; border-color: var(--green); }
.faq-item.open .faq-toggle::before { content: '-'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 14px; color: var(--gray-4); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a a { color: var(--green); text-decoration: none; font-weight: 500; }
.faq-learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; font-weight: 600 !important;
  color: var(--green-dark) !important;
}
.faq-learn-more span { font-size: 15px; font-weight: 900; line-height: 1; }
.faq-a strong { color: var(--black); font-weight: 500; }

/* STILL HAVE QUESTIONS */
.still-questions { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: 20px; padding: 40px; text-align: center; margin-top: 16px; }
.still-questions h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 10px; }
.still-questions p { font-size: 15px; color: var(--gray-4); line-height: 1.7; max-width: 480px; margin: 0 auto 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-green { background: var(--green); color: white; padding: 13px 24px; border-radius: 50px; font-size: 14px; font-weight: 500; text-decoration: none; }
.btn-green:hover { background: var(--green-mid); }
.btn-outl { border: 1.5px solid var(--gray-2); color: var(--black); padding: 13px 24px; border-radius: 50px; font-size: 14px; font-weight: 400; text-decoration: none; }

footer { background: var(--black); color: white; padding: 48px 44px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.2); display: flex; justify-content: space-between; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }

@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 48px; }
  .body-wrap { padding: 48px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
