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

:root {
  --green: #3DB854;
  --green-dark: #2e9c44;
  --green-light: #e8f8ec;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e0e0e0;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #f5f5f5;
}

/* ── NAV ── */
nav {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.3px;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  padding: 8px 0;
}
.mobile-menu a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-menu.open { display: flex; }

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO (Home) ── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #27874a 100%);
  color: #fff;
  text-align: center;
  padding: 90px 20px 80px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: clamp(1rem, 2.5vw, 1.2rem); opacity: .88; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-white { background: #fff; color: var(--green); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }

/* ── STATS ── */
.stats-strip { background: #fff; border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 32px 20px;
  gap: 16px;
}
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--green); }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* ── SECTIONS ── */
section { background: #fff; }
.section-wrap { max-width: 1000px; margin: 0 auto; padding: 64px 20px; }
.section-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--muted); line-height: 1.7; margin-bottom: 48px; font-size: 1rem; }
.section-alt { background: var(--green-light); }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(61,184,84,.12); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── VISION QUOTE ── */
.vision-quote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  background: var(--green-light);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
  margin: 24px 0;
}

/* ── INSTAGRAM LINK ── */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 16px;
  transition: background .2s;
}
.ig-link:hover { background: #d0f0d8; }
.ig-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}

/* ── ABOUT HERO ── */
.about-hero {
  background: linear-gradient(135deg, var(--green) 0%, #27874a 100%);
  color: #fff;
  padding: 60px 20px 48px;
  text-align: center;
}
.about-role {
  font-size: .85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: .8;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 16px;
}

/* ── DOC PAGES (T&C, Privacy) ── */
.doc-hero {
  background: var(--green);
  color: #fff;
  padding: 50px 20px 40px;
  text-align: center;
}
.doc-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; }
.doc-body { max-width: 800px; margin: 0 auto; padding: 48px 20px; background: #fff; }
.doc-section { margin-bottom: 36px; }
.doc-section h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.doc-section p, .doc-section li { font-size: .95rem; color: var(--muted); line-height: 1.75; }
.doc-section ul { list-style: none; }
.doc-section ul li { display: flex; gap: 10px; margin-bottom: 6px; }
.doc-section ul li::before {
  content: '';
  display: block; width: 10px; height: 10px;
  background: var(--muted); border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: var(--green);
  color: #fff;
  padding: 50px 20px 40px;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; }
.contact-hero p { opacity: .85; margin-top: 8px; }

.contact-wrap { max-width: 700px; margin: 0 auto; padding: 48px 20px; background: #fff; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
}
.contact-card:hover { box-shadow: 0 8px 24px rgba(61,184,84,.12); transform: translateY(-3px); }
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.contact-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.contact-card p { font-size: .85rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.contact-link {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s;
}
.contact-link:hover { color: var(--green-dark); text-decoration: underline; }

.support-box h3 { font-weight: 800; margin-bottom: 12px; font-size: 1rem; }
.support-box ul { list-style: none; }
.support-box ul li {
  display: flex; gap: 10px;
  margin-bottom: 8px;
  font-size: .93rem; color: var(--muted);
}
.support-box ul li::before {
  content: '';
  display: block; width: 10px; height: 10px;
  background: var(--muted); border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 32px 20px;
  font-size: .85rem;
}
.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--green); }
.version { margin-top: 8px; font-size: .8rem; opacity: .5; }
