/* =====================================================
   CONSCIOUS HEALTH CONNECTIONS — SERVICE PAGES CSS
   Apple-level elegance: black + white + lime green
   ===================================================== */

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

:root {
  --black:       #0d0d0d;
  --black-soft:  #111111;
  --black-card:  #161616;
  --green:       #8DC63F;
  --green-dark:  #75a832;
  --green-light: #a3d952;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --light-gray:  #efefef;
  --text-dark:   #0d0d0d;
  --text-body:   #444444;
  --text-muted:  #888888;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --container-w: 1140px;
  --radius:      6px;
  --radius-lg:   14px;
  --transition:  all 0.3s ease;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 2rem;
}
.site-header.scrolled { background: rgba(13,13,13,0.97); backdrop-filter: blur(12px); }
.site-header.scrolled .header-inner { height: 64px; }

.logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.site-logo {
  height: 52px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}
.site-header.scrolled .site-logo { height: 42px; }

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-link {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color 0.25s ease;
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ── Dropdown ── */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.nav-dropdown a i {
  color: var(--green);
  width: 16px;
  font-size: 0.8rem;
}
.nav-dropdown a:hover {
  background: rgba(141,198,63,0.08);
  color: #fff;
}
.nav-dropdown a.active-page {
  color: var(--green);
  background: rgba(141,198,63,0.06);
}
.nav-caret {
  font-size: 0.55rem;
  margin-left: 3px;
  opacity: 0.6;
  transition: transform 0.25s;
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 90vw);
    height: 100dvh;
    background: #0a0a0a;
    padding: 2rem 0;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .main-nav.is-open { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 1rem 0; }
  .nav-link { font-size: 0.9rem; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.03); border-radius: 0; display: none; }
  .nav-item.mob-open .nav-dropdown { display: block; }
}
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.nav-overlay.visible { display: block; }

/* ════════════════════════════════════════
   SERVICE PAGE HERO
════════════════════════════════════════ */
.svc-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 140px 2rem 100px;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.svc-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(141,198,63,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(141,198,63,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(141,198,63,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
}
.svc-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.svc-hero-title span { color: var(--green); }
.svc-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.svc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn--green {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(141,198,63,0.35);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   SECTION LABELS + HEADINGS
════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-h2--white { color: #fff; }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}
.section-lead--white { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════
   WHAT WE DO — 3-COLUMN ICON GRID
════════════════════════════════════════ */
.pillars-section {
  padding: 6rem 0;
  background: var(--white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pillar-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: #fff;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(141,198,63,0.3);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(141,198,63,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.pillar-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.pillar-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   PROCESS — NUMBERED STEPS (BLACK BG)
════════════════════════════════════════ */
.process-section {
  padding: 6rem 0;
  background: var(--black);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.process-step {
  background: #111;
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.process-step:hover { background: #161616; }
.process-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(141,198,63,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.process-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.process-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   RESULTS / STATS STRIP
════════════════════════════════════════ */
.results-strip {
  background: var(--green);
  padding: 4rem 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.result-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.result-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   DEEP DIVE — ALTERNATING ROWS
════════════════════════════════════════ */
.deep-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.deep-row:last-child { margin-bottom: 0; }
.deep-row--flip .deep-text { order: 2; }
.deep-row--flip .deep-visual { order: 1; }
.deep-text .section-h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.deep-text p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.deep-text p:last-child { margin-bottom: 0; }
.deep-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: #ddd;
}
.deep-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-body);
}
.check-list li i {
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════ */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-trigger:hover,
.faq-item.is-open .faq-trigger { background: #fafafa; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(141,198,63,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.65rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: #000;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.is-open .faq-panel { max-height: 300px; }
.faq-body {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: var(--black);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(141,198,63,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-banner h2 span { color: var(--green); }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #080808;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .deep-row { grid-template-columns: 1fr; gap: 3rem; }
  .deep-row--flip .deep-text { order: 1; }
  .deep-row--flip .deep-visual { order: 2; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-hero { padding: 120px 1.5rem 80px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
