:root {
  --sage: #8B9E7E;
  --sage-light: #B5C4AA;
  --sage-pale: #E8EDE4;
  --sage-deep: #5C6E52;
  --sage-dark: #3D4F35;
  --cream: #FAF8F4;
  --cream-warm: #F5F0E8;
  --terra: #C4957A;
  --terra-soft: #D4B5A0;
  --terra-deep: #A67A60;
  --charcoal: #2D2D2D;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --blush: #F0E0D6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ======================== SERVICE CATEGORIES (Apple-style) ======================== */
.service-categories {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.service-categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.service-categories-inner .section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.service-categories-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.service-categories-inner h2 em {
  font-style: italic;
  color: var(--sage-deep);
}

.service-categories-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(139,158,126,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  border-color: rgba(139,158,126,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card--women::before { background: linear-gradient(90deg, var(--terra-soft), var(--terra)); }
.category-card--men::before { background: linear-gradient(90deg, var(--sage-light), var(--sage-deep)); }
.category-card--birth::before { background: linear-gradient(90deg, var(--blush), var(--terra-soft)); }

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.category-card--women .category-icon { background: linear-gradient(135deg, rgba(196,149,122,0.12), rgba(212,181,160,0.2)); }
.category-card--men .category-icon { background: linear-gradient(135deg, rgba(139,158,126,0.12), rgba(181,196,170,0.2)); }
.category-card--birth .category-icon { background: linear-gradient(135deg, rgba(240,224,214,0.5), rgba(212,181,160,0.3)); }

.category-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.category-card--women .category-icon svg { color: var(--terra); }
.category-card--men .category-icon svg { color: var(--sage-deep); }
.category-card--birth .category-icon svg { color: var(--terra-deep); }

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.category-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.category-card:hover .category-link {
  gap: 0.6rem;
  color: var(--terra-deep);
}

.category-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-link svg {
  transform: translateX(2px);
}

/* Conditions SEO strip */
.conditions-strip {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(139,158,126,0.1);
}

.conditions-strip p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
}

.conditions-strip a {
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.conditions-strip a:hover {
  color: var(--terra);
  text-decoration: underline;
}

/* ======================== STICKY CTA BAR (Mobile) ======================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(139,158,126,0.15);
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--sage-deep);
  color: var(--white);
  padding: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.sticky-cta a:active { transform: scale(0.98); background: var(--sage-dark); }

.sticky-cta .sticky-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

/* ======================== NAVIGATION ======================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
  padding: 0.7rem 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sage-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--sage-deep); }

/* ======================== LEARN MEGA-MENU ======================== */
.has-dropdown { position: static; }

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.4rem;
  vertical-align: middle;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Invisible bridge that fills the gap between LEARN trigger and dropdown,
   keeping hover state when the mouse moves down into the panel.
   Must be >= the full vertical gap between trigger bottom and dropdown top. */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  height: 2.1rem;
  background: transparent;
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 1.5rem;
  left: auto;
  transform: translateY(-8px);
  width: 980px;
  max-width: calc(100vw - 3rem);
  background: rgba(250, 248, 244, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(139,158,126,0.15);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 110;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.mega-menu-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mega-menu-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(196,149,122,0.2);
}

.mega-menu-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mega-menu-col a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--charcoal) !important;
  line-height: 1.35;
  padding: 0.25rem 0;
  border-radius: 4px;
}

.mega-menu-col a:hover { color: var(--sage-deep) !important; }

.mega-menu-col a .desc {
  display: block;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 0.15rem;
  letter-spacing: 0;
}

.mega-menu-col a.see-all {
  margin-top: 0.4rem;
  color: var(--sage-deep) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  border-top: 1px dashed rgba(139,158,126,0.25);
  padding-top: 0.55rem;
}

/* Pricing badge for premium guides inline */
.mega-menu-col .badge-pro {
  display: inline-block;
  background: var(--terra);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.mega-menu-col .price-tag {
  font-size: 0.72rem;
  color: var(--terra-deep);
  font-weight: 600;
  white-space: nowrap;
}

/* Premium guides bottom strip */
.mega-menu-strip {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(139,158,126,0.18);
  background: linear-gradient(90deg, rgba(245,240,232,0.5), rgba(232,237,228,0.5));
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  margin-bottom: -1.75rem;
  padding: 1rem 1.75rem 1.25rem;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.mega-menu-strip a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--sage-deep) !important;
}

.mega-menu-strip a span.diamond {
  color: var(--terra);
  margin-right: 0.5rem;
  font-size: 0.95rem;
}

.mega-menu-strip a:hover { color: var(--sage-dark) !important; }

/* Mobile: dropdown items show as expanded list inside hamburger */
@media (max-width: 768px) {
  .has-dropdown > a::after { display: none; }
  .mega-menu {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.75rem 1rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    border-left: 2px solid var(--sage-pale);
    margin-top: 0.25rem;
    display: none;
  }
  .nav-links.open .mega-menu { display: block; }
  .mega-menu-cols { grid-template-columns: 1fr; gap: 1rem; }
  .mega-menu-col h4 { font-size: 0.65rem; margin-bottom: 0.5rem; padding-bottom: 0.3rem; }
  .mega-menu-col ul { gap: 0.35rem; }
  .mega-menu-col a { font-size: 0.85rem !important; padding: 0.2rem 0; }
  .mega-menu-col a.see-all { display: none; }
  .mega-menu-strip { margin: 0.75rem 0 0; padding: 0.75rem 0 0; border-radius: 0; background: none; border-top: 1px dashed rgba(139,158,126,0.25); }
}

/* Apple-style sub-nav */
.sub-nav {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,158,126,0.1);
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
}
.sub-nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 1rem;
}
.sub-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-light);
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.sub-nav a:hover {
  color: var(--sage-deep);
  background: rgba(139,158,126,0.08);
}
.sub-nav a.active {
  color: var(--sage-deep);
  font-weight: 600;
  background: rgba(139,158,126,0.1);
}

.mobile-only { display: none; }

.nav-cta-btn {
  background: var(--sage-deep) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 8px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.nav-cta-btn:hover { background: var(--sage-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sage-pale) 50%, var(--cream-warm) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 65%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(196,149,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8rem 1.5rem 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-visual { position: relative; animation: fadeUp 0.9s ease 0.1s both; }
.hero-visual-card { background: var(--white); border: 1px solid rgba(139,158,126,0.12); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.hero-visual-card .photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; display: block; background: var(--sage-pale); }
.hero-visual-card .card-body { padding: 1.4rem 1.5rem 1.6rem; }
.hero-visual-card .name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--sage-deep); line-height: 1.1; margin-bottom: 0.2rem; }
.hero-visual-card .credential { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.9rem; }
.hero-visual-card .badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.hero-visual-card .badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sage-deep); background: var(--sage-pale); padding: 0.3rem 0.65rem; border-radius: 6px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 6.5rem 1.25rem 2.5rem; }
  .hero-visual-card { max-width: 380px; margin: 0 auto; }
  .hero-visual-card .photo { aspect-ratio: 4 / 3; }
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(196,149,122,0.12);
  border: 1px solid rgba(196,149,122,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-urgency .pulse {
  width: 7px;
  height: 7px;
  background: var(--terra);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: var(--white);
  border: 1px solid rgba(92,110,82,0.15);
  border-radius: 100px;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  animation: fadeUp 0.8s ease 0.12s both;
  vertical-align: middle;
}

.hero-rating:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(92,110,82,0.28);
}

.hero-google-g {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-rating-stars {
  color: #F5B400;
  letter-spacing: 1px;
  font-size: 0.82rem;
  line-height: 1;
}

.hero-rating-text strong {
  font-weight: 700;
  color: var(--charcoal);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 400;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 1.95rem;
  background: var(--sage-deep);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 22px rgba(92,110,82,0.32);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92,110,82,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.05rem 1.75rem;
  background: var(--white);
  color: var(--sage-deep);
  border: 2px solid var(--sage-deep);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
}

.hero-proof {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: fadeUp 0.8s ease 0.65s both;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

.hero-proof-item svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}

/* ======================== TRUST BAR ======================== */
.trust-bar {
  background: var(--sage-deep);
  padding: 1rem 1.5rem;
  overflow: hidden;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* ======================== PROBLEM/AGITATION ======================== */
.problem {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.problem h2 em { font-style: italic; color: var(--sage-deep); }

.problem-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  text-align: left;
}

.pain-point {
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139,158,126,0.1);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.pain-point:hover {
  border-color: rgba(139,158,126,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.pain-icon {
  width: 32px;
  height: 32px;
  background: var(--blush);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.pain-point p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}

.pain-point strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* ======================== ABOUT/AUTHORITY ======================== */
.about {
  padding: 5rem 1.5rem;
  background: var(--sage-pale);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(139,158,126,0.1), transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-photo {
  width: 280px;
  height: 340px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sage-light), var(--terra-soft));
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.about-content h2 em { font-style: italic; color: var(--sage-deep); }

.about-title-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.credential {
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(139,158,126,0.15);
}

/* ======================== HOW IT WORKS ======================== */
.how-it-works {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.how-inner h2 em { font-style: italic; color: var(--sage-deep); }

.how-sub {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.how-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(139,158,126,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.65;
}

.why-membership {
  background: var(--sage-pale);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.why-membership h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.why-lead {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(139,158,126,0.1);
}

.why-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
}

/* ======================== SERVICES ======================== */
.services {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.services h2 em { font-style: italic; color: var(--sage-deep); }

.services-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(139,158,126,0.08);
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: rgba(139,158,126,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-emoji {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card .learn-more:hover {
  color: var(--terracotta);
}

.service-card .learn-more::after {
  content: ' →';
}

/* ======================== LEAD MAGNET ======================== */
.lead-magnet {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #e8f0e3 0%, #f5f0e8 100%);
  position: relative;
}
.lead-magnet-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-magnet-badge {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.lead-magnet-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.lead-magnet-content p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.lead-magnet-list {
  list-style: none;
  padding: 0;
}
.lead-magnet-list li {
  padding: 0.35rem 0;
  color: var(--text-body);
  font-size: 0.9rem;
}
.lead-magnet-list li::before {
  content: '✓ ';
  color: var(--forest);
  font-weight: 700;
  margin-right: 0.25rem;
}
.lead-magnet-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(45,80,22,0.1);
}
.lead-magnet-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
  text-align: center;
}
.kit-input {
  display: block !important;
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  border: 1.5px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.75rem !important;
  transition: border-color 0.2s !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  background: #fff !important;
  color: #333 !important;
}
.kit-input:focus {
  outline: none;
  border-color: #2d5016 !important;
}
.kit-submit {
  display: block !important;
  width: 100% !important;
  padding: 0.9rem !important;
  background-color: #2d5016 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.3s, transform 0.2s !important;
  font-family: inherit !important;
}
.kit-submit:hover {
  background: #1e3a0e !important;
  transform: translateY(-1px);
}
.lead-magnet-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .lead-magnet-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .lead-magnet-content h2 { font-size: 1.6rem; }
  .lead-magnet-list { display: inline-block; text-align: left; }
}

/* ======================== PACKAGES ======================== */
.packages {
  padding: 5rem 1.5rem;
  background: var(--cream-warm);
}

.packages-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.packages-header {
  text-align: center;
  margin-bottom: 3rem;
}

.packages h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.packages h2 em { font-style: italic; color: var(--sage-deep); }

.packages-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(139,158,126,0.08);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: rgba(139,158,126,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.package-featured {
  border-color: var(--terra-soft);
  box-shadow: 0 4px 20px rgba(196,149,122,0.12);
}

.package-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--sage-pale);
  color: var(--sage-deep);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.package-featured .package-tag {
  background: var(--terra);
  color: var(--white);
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.package-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
}

.package-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features li {
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.4;
}

.package-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.package-cta-group {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.3s;
}

.package-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92,110,82,0.2);
}

.package-featured .package-cta {
  background: var(--terra);
  color: var(--white);
}

.package-featured .package-cta:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,149,122,0.2);
}

.package-question {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage-pale);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem;
  transition: all 0.3s;
}

.package-question:hover {
  background: var(--sage-pale);
  color: var(--sage-deep);
}

.package-featured .package-question {
  color: var(--terra);
  border-color: rgba(196,149,122,0.3);
}

.package-featured .package-question:hover {
  background: rgba(196,149,122,0.1);
}

/* ======================== MEMBERSHIP — OPTION A: SINGLE FEATURED ======================== */
.membership {
  padding: 5rem 1.5rem;
  background: var(--sage-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.membership-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.membership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.membership .section-label { color: var(--terra-soft); }

.membership h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.membership h2 em { font-style: italic; color: var(--terra-soft); }

.membership-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto;
}

/* Toggle between layouts */
/* Care Plans Section */
.membership-single {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.featured-plan {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 2rem;
  background: var(--terra);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-plan h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.featured-plan .plan-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
}

.plan-price .period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-features li:last-child { border: none; }

.plan-features .check {
  color: var(--sage-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  background: var(--terra);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-body);
}

.plan-cta:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
}

.plan-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.plan-cta-secondary {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--font-body);
}

.plan-cta-secondary:hover {
  color: var(--terra);
  text-decoration: underline;
}

.featured-plan .plan-cta-secondary {
  color: rgba(255,255,255,0.55);
}

.featured-plan .plan-cta-secondary:hover {
  color: rgba(255,255,255,0.85);
}

.upsell-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}

.upsell-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.upsell-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.upsell-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.upsell-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.upsell-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.upsell-option-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.upsell-option-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.upsell-option-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--terra-soft);
}

/* Option B: All 3 tiers */
/* ======================== TESTIMONIALS ======================== */
.testimonials {
  padding: 5rem 1.5rem;
  background: var(--cream-warm);
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(139,158,126,0.08);
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #FBBC04;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.testimonial-detail {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
}

/* Google rating bar */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.google-g-icon { width: 20px; height: 20px; flex-shrink: 0; }
.google-rating-number { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.google-rating-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.google-rating-count { font-size: 0.82rem; color: var(--text-light); }
.google-rating-count a { color: var(--sage-deep); text-decoration: none; font-weight: 500; }
.google-rating-count a:hover { text-decoration: underline; }

/* Google G badge on cards */
.google-g-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.testimonial-card:hover .google-g-badge { opacity: 0.8; }

/* Reviewer avatar + author row */
.review-author-row { display: flex; align-items: center; gap: 0.6rem; }
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-avatar.color-1 { background: var(--sage-deep); }
.review-avatar.color-2 { background: var(--terra); }
.review-avatar.color-3 { background: #7B8FA1; }
.review-avatar.color-4 { background: #9B7EA4; }
.review-avatar.color-5 { background: var(--terra-deep); }
.review-avatar.color-6 { background: var(--sage); }

/* More reviews toggle */
.more-reviews-wrap { text-align: center; margin-top: 1.5rem; }
.more-reviews-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.more-reviews-toggle:hover { background: var(--sage-pale); }
.more-reviews-toggle svg { transition: transform 0.3s ease; }
.more-reviews-toggle.expanded svg { transform: rotate(180deg); }

/* Expandable reviews grid */
.more-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}
.more-reviews-grid.show { max-height: 600px; opacity: 1; margin-top: 1.25rem; }

/* See all reviews link */
.review-link-wrap { text-align: center; margin-top: 2rem; }
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sage-deep);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.review-link:hover { background: var(--sage-pale); }

/* ======================== FINAL CTA ======================== */
.final-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(160deg, var(--sage-pale), var(--cream-warm));
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.final-cta h2 em { font-style: italic; color: var(--sage-deep); }

.final-cta p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.final-cta .btn-primary {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.final-cta-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ======================== RESOURCES ======================== */
.resources {
  padding: 5rem 1.5rem;
  background: var(--cream-warm);
}

.resources-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.resources-header {
  text-align: center;
  margin-bottom: 3rem;
}

.resources-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.resources-header p {
  color: var(--sage);
  font-size: 1.1rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-warm) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sage-deep);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin-bottom: 0.75rem;
}

.resource-card p {
  color: var(--sage);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.resource-link {
  color: var(--terra);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.resource-card:hover .resource-link {
  color: var(--terra-deep);
}

@media (max-width: 768px) {
  .resources-header h2 { font-size: 1.8rem; }
  .resources-grid { grid-template-columns: 1fr; }
}

/* ======================== MID-PAGE CTA + PROOF ======================== */
.mid-cta {
  padding: 4.5rem 1.5rem;
  background: var(--sage-deep);
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage-dark) 100%);
  color: var(--white);
}

.mid-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mid-cta-proof {
  color: var(--white);
}

.mid-cta-stars {
  color: #FFC94A;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.mid-cta-rating {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.mid-cta-rating strong {
  font-weight: 700;
  color: var(--white);
}

.mid-cta-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.mid-cta-author {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.mid-cta-action h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.mid-cta-action p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.mid-cta-action .btn-primary {
  background: var(--terra);
  color: var(--white);
  border: none;
}

.mid-cta-action .btn-primary:hover {
  background: var(--terra-deep);
}

.mid-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

/* ======================== WHAT'S INCLUDED ======================== */
.whats-included {
  padding: 5rem 1.5rem;
  background: var(--cream-warm);
}

.whats-included-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.whats-included-inner .section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 0.85rem;
}

.whats-included h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.whats-included h2 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}

.whats-included-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2.75rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.included-card {
  background: var(--white);
  border: 1px solid rgba(139,158,126,0.14);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.included-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(92,110,82,0.09);
  border-color: rgba(92,110,82,0.25);
}

.included-card--featured {
  border: 2px solid var(--sage-deep);
  background: var(--white);
}

.included-badge {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--terra);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

.included-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
}

.included-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.included-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
}

.included-freq {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.included-save {
  font-size: 0.78rem;
  color: var(--terra-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139,158,126,0.12);
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.included-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.95rem;
}

.included-cta {
  display: inline-block;
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(139,158,126,0.12);
  transition: color 0.2s;
}

.included-cta:hover {
  color: var(--terra-deep);
}

.included-card--featured .included-cta {
  color: var(--terra-deep);
}

.whats-included-note {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* ======================== COMPARISON TABLE ======================== */
.comparison {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.comparison-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.comparison-inner .section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 0.85rem;
}

.comparison h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.3rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.comparison h2 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 500;
}

.comparison-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.compare-table {
  background: var(--white);
  border: 1px solid rgba(139,158,126,0.14);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 20px rgba(92,110,82,0.04);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid rgba(139,158,126,0.1);
}

.compare-row:last-child { border-bottom: none; }

.compare-head {
  background: var(--cream-warm);
}

.compare-label {
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
}

.compare-col {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(139,158,126,0.08);
}

.compare-col--other {
  color: var(--text-light);
  background: rgba(0,0,0,0.015);
}

.compare-col--us {
  background: rgba(139,158,126,0.07);
  color: var(--charcoal);
  font-weight: 500;
}

.compare-head .compare-col {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.compare-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-display);
}

.compare-col--us .compare-col-title {
  color: var(--sage-deep);
}

.compare-col-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--sage-deep);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.65rem;
  flex-shrink: 0;
}

.compare-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(166,122,96,0.15);
  color: var(--terra-deep);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 0.65rem;
  flex-shrink: 0;
}

.compare-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ======================== FAQ ======================== */
.faq {
  padding: 4rem 1.5rem;
  background: var(--cream);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--charcoal);
}

.faq-item {
  border-bottom: 1px solid rgba(139,158,126,0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--sage-deep); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--sage);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 1rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======================== FOOTER ======================== */
.footer {
  padding: 2.5rem 1.5rem;
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-logo em { font-style: italic; color: var(--terra-soft); }

.footer p {
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover { color: var(--terra-soft); }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Scroll-triggered reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Category card staggered animations */
.category-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0s; }
.category-card:nth-child(2) { animation-delay: 0.15s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }

.service-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }

.package-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.package-card:nth-child(1) { animation-delay: 0s; }
.package-card:nth-child(2) { animation-delay: 0.1s; }
.package-card:nth-child(3) { animation-delay: 0.2s; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .membership-single {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }
  .credentials { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .sub-nav { display: none; }
  .mobile-only { display: list-item; }

  .sticky-cta { display: block; }

  body { padding-bottom: 80px; }

  .hero-inner { padding: 6rem 1.25rem 2.5rem; }

  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .hero-rating {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
  }
  .hero-rating-stars { font-size: 0.78rem; }

  .hero-proof { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }

  .category-grid { grid-template-columns: 1fr; gap: 1rem; }
  .category-card { padding: 2rem 1.5rem 1.75rem; }
  .category-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
  .category-icon svg { width: 28px; height: 28px; }
  .service-categories { padding: 3.5rem 1.25rem; }

  .how-steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .how-it-works { padding: 3.5rem 1.25rem; }
  .why-membership { padding: 2rem 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  
  .trust-inner { gap: 1.5rem; }
  
  .testimonial-grid, .more-reviews-grid { grid-template-columns: 1fr; }

  .service-categories, .services, .about, .testimonials, .faq, .final-cta, .membership {
    padding: 3.5rem 1.25rem;
  }

  /* Mid-page CTA — stack on mobile */
  .mid-cta { padding: 3rem 1.25rem; }
  .mid-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mid-cta-quote { font-size: 1.15rem; }

  /* What's Included — stack cards */
  .whats-included { padding: 3.5rem 1.25rem; }
  .included-grid { grid-template-columns: 1fr; gap: 1rem; }
  .included-card { padding: 1.75rem 1.5rem; }
  .included-card--featured { margin-top: 0.75rem; }

  /* Comparison — collapse to two columns (skip label col) */
  .comparison { padding: 3.5rem 1.25rem; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-label { display: none; }
  .compare-col { padding: 0.85rem 1rem; font-size: 0.82rem; }
  .compare-col--other, .compare-col--us {
    flex-direction: row;
    align-items: flex-start;
  }
  .compare-col-title { font-size: 0.85rem; }
  .compare-col-sub { font-size: 0.68rem; }
  /* Labels collapse into data rows on mobile via ::before */
  .compare-row:not(.compare-head) .compare-col::before {
    content: attr(data-label);
    display: none;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .trust-item { font-size: 0.68rem; }
}