/* ==========================================================================
   NDIS WEBSITE DESIGNS — Global Stylesheet
   Single source of truth. Edit here, updates everywhere.
   --------------------------------------------------------------------------
   Table of contents:
   1.  Design tokens (colours, radii, shadows, fonts)
   2.  Resets & base
   3.  Typography primitives
   4.  Buttons
   5.  Icons
   6.  Header (sticky nav, pill nav, dropdowns)
   7.  Mobile drawer
   8.  Breadcrumb
   9.  Hero variants
   10. Section scaffolding (eyebrows, headings, containers)
   11. Service cards + feature card
   12. Client logo wall
   13. Package cards
   14. Audience cards
   15. Process steps
   16. Portfolio / work cards
   17. Case study highlight cards
   18. Testimonial band
   19. FAQ accordion
   20. Commitment / pledges
   21. Blog teaser carousel
   22. Contact page (form, info cards, map placeholder)
   23. Internal page hero
   24. Footer (CTA band, 5-column grid, trust strip, legal bar)
   25. Responsive breakpoints
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand colours */
  --purple:       #702671;
  --purple-900:   #4E1A50;
  --purple-800:   #5C1F5E;
  --purple-700:   #7E3280;
  --purple-50:    #F6EEF7;
  --purple-100:   #EBDCEC;
  --purple-200:   #DFC7E1;

  --green:        #80BD42;
  --green-700:    #6BA332;
  --green-600:    #74AE39;
  --green-50:     #F1F9E8;

  --ink:          #1B1420;
  --body:         #44394A;
  --muted:        #7B6F82;
  --line:         #EAE1EC;
  --line-soft:    #F3EDF4;
  --cream:        #FAF6F5;
  --white:        #FFFFFF;
  --bg-soft:      #FBF8FC;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-2xl: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(27,20,32,.04);
  --shadow-md: 0 4px 12px rgba(27,20,32,.06), 0 1px 3px rgba(27,20,32,.04);
  --shadow-lg: 0 12px 32px rgba(27,20,32,.10), 0 4px 8px rgba(27,20,32,.04);
  --shadow-dd: 0 16px 40px rgba(27,20,32,.12), 0 2px 6px rgba(27,20,32,.06);

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-ui: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 880px;
  --page-pad-x: 32px;
}

/* ==========================================================================
   2. RESETS & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--purple);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-pad-x); }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 var(--page-pad-x); }

/* ==========================================================================
   3. TYPOGRAPHY PRIMITIVES
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow.purple { color: var(--purple); background: var(--purple-50); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em;
  line-height: 1.1;
}
.section-head h2 em { font-style: normal; color: var(--purple); }
.section-head h2 span { color: var(--green-700); }
.section-head p {
  font-size: 17px; color: var(--body);
  margin-top: 14px; line-height: 1.55;
}

.highlight-word {
  position: relative; display: inline-block; color: var(--ink);
}
.highlight-word::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 13px;
  background: var(--green);
  opacity: 0.35;
  z-index: -1;
  border-radius: 3px;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  transition: all 180ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn .arrow { transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.5; fill: none; }

.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 6px 16px rgba(128,189,66,.3);
}
.btn-primary:hover {
  background: var(--green-700); color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(128,189,66,.4);
}

.btn-secondary {
  background: var(--purple); color: var(--white);
}
.btn-secondary:hover { background: var(--purple-800); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }

.btn-soft {
  background: var(--purple-50); color: var(--purple);
}
.btn-soft:hover { background: var(--purple); color: var(--white); }

.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ==========================================================================
   5. ICONS
   ========================================================================== */
.icon { stroke: currentColor; stroke-width: 2; fill: none; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 22px; height: 22px; }

/* ==========================================================================
   6. HEADER — Sticky + Pill Nav + Dropdowns
   ========================================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 8px rgba(27,20,32,.04);
}
.main-nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--page-pad-x);
  display: flex; align-items: center; gap: 28px;
}

.brand-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  position: relative;
  background: var(--purple);
  display: grid; place-items: center;
  overflow: visible;
  flex-shrink: 0;
}
.brand-mark::before {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
}
.brand-mark .initial {
  color: var(--white); font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.brand-mark::after {
  content: ""; position: absolute;
  top: 0; right: 0;
  width: 13px; height: 13px;
  background: var(--green); border-radius: 50%;
  border: 2.5px solid var(--white);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px; color: var(--ink);
  font-weight: 800; letter-spacing: -0.025em;
}
.brand-name span { color: var(--green-700); font-weight: 800; }
.brand-sub {
  font-family: var(--font-ui);
  font-size: 10.5px; color: var(--muted);
  font-weight: 500; margin-top: 2px;
}

.nav-list {
  display: flex; align-items: center; gap: 2px;
  margin: 0 auto;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: var(--radius-pill);
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 18px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all 180ms ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--purple); }
.nav-link.active {
  background: var(--white); color: var(--purple);
  box-shadow: 0 2px 6px rgba(27,20,32,.06);
}
.nav-link .caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px);
  opacity: 0.55;
  transition: transform 180ms ease;
  margin-left: 3px;
}
.nav-item:hover .nav-link .caret,
.nav-item:focus-within .nav-link .caret { transform: rotate(225deg) translate(-1px,-1px); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-dd);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 60;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; flex-direction: column; gap: 1px;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background 140ms ease, color 140ms ease;
}
.dropdown a:hover { background: var(--purple-50); color: var(--purple); }
.dropdown a .sub {
  font-size: 11.5px; color: var(--muted);
  font-weight: 400; margin-top: 1px;
}
.dropdown a:hover .sub { color: var(--purple-700); }

.right-cluster {
  display: flex; align-items: center;
  gap: 10px; flex-shrink: 0;
}
.phone-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  color: var(--ink);
}
.phone-chip:hover { color: var(--purple); }
.phone-chip .icon { width: 15px; height: 15px; stroke: var(--green-700); stroke-width: 2.2; fill: none; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ==========================================================================
   7. MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 100;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--page-pad-x);
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-close {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
}
.mobile-drawer-close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.mobile-drawer-body {
  flex: 1;
  padding: 16px var(--page-pad-x);
}

/* ---- Accordion sections (mobile nav) ---- */
.mobile-drawer .md-accordion {
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.mobile-drawer .md-accordion:first-child {
  border-top: 1px solid var(--line);
}
.mobile-drawer .md-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-drawer .md-accordion-head::-webkit-details-marker { display: none; }
.mobile-drawer .md-accordion-head::marker { content: ""; display: none; }

/* Plus/minus icon */
.mobile-drawer .md-accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 220ms ease;
}
.mobile-drawer .md-accordion-icon::before,
.mobile-drawer .md-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--purple);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
  border-radius: 1px;
}
.mobile-drawer .md-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mobile-drawer .md-accordion[open] .md-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* Accordion body */
.mobile-drawer .md-accordion-body {
  padding: 0 4px 12px;
  animation: mdAccordionFadeIn 240ms ease;
}
@keyframes mdAccordionFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-drawer .md-accordion-body a {
  display: block;
  padding: 11px 12px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--body);
  border-bottom: none;
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: color 180ms ease, border-left-color 180ms ease, background 180ms ease;
  border-radius: 4px;
}
.mobile-drawer .md-accordion-body a:hover,
.mobile-drawer .md-accordion-body a:active {
  color: var(--purple);
  border-left-color: var(--purple);
  background: var(--purple-50);
}

/* ---- Fallback: keep old .md-group styles working if any legacy header is cached ---- */
.mobile-drawer .md-group { margin-bottom: 24px; }
.mobile-drawer .md-group-title {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-700);
  padding: 8px 0; margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .md-group a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-ui);
  font-size: 15px; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}

.mobile-drawer .md-group a:hover { color: var(--purple); }

/* ---- Drawer footer — fix button overflow ---- */
.mobile-drawer-foot {
  padding: 16px var(--page-pad-x) 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}
.mobile-drawer-foot .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  font-size: 14.5px;
  white-space: nowrap;
  min-width: 0;
}
.mobile-drawer-foot .btn svg { flex-shrink: 0; }

/* ==========================================================================
   8. BREADCRUMB
   ========================================================================== */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb ol li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.breadcrumb ol li::before,
.breadcrumb ol li::marker { content: none; display: none; }
.breadcrumb ol li + li::before {
  content: "›";
  opacity: 0.4;
  display: inline;
}
.breadcrumb ol li [aria-current="page"] {
  color: var(--purple);
  font-weight: 600;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--purple); font-weight: 600; }

/* ==========================================================================
   9. HERO — Homepage variant
   ========================================================================== */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,38,113,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .text-col .tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero .text-col .tag .badge {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 62px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--purple); }
.hero .lead {
  font-size: 19px; color: var(--body);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero .lead strong { color: var(--ink); font-weight: 700; }
.hero .cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero .trust-row {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; gap: 36px;
}
.hero .trust-row .num {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  color: var(--purple); letter-spacing: -0.025em;
  line-height: 1;
}
.hero .trust-row .num em { font-style: normal; color: var(--green-700); }
.hero .trust-row .lbl {
  font-family: var(--font-ui);
  font-size: 12.5px; color: var(--muted);
  margin-top: 6px; font-weight: 500;
}

/* Hero visual side (browser mockup card) */
.hero .visual-col { position: relative; }
.hero .hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(112,38,113,0.12), 0 2px 8px rgba(27,20,32,.04);
  position: relative; z-index: 2;
}
.hero .hero-card .card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hero .hero-card .browser-dots { display: flex; gap: 6px; }
.hero .hero-card .browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.hero .hero-card .browser-dots span:first-child { background: #FF6057; }
.hero .hero-card .browser-dots span:nth-child(2) { background: #FFBD2E; }
.hero .hero-card .browser-dots span:nth-child(3) { background: var(--green); }
.hero .hero-card .url-bar {
  flex: 1; margin-left: 14px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 11.5px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.hero .hero-card .url-bar svg {
  width: 11px; height: 11px;
  stroke: var(--green-700); stroke-width: 2; fill: none;
}
.hero .hero-card .img-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--green-50) 100%);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  color: var(--purple);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  border: 1px dashed var(--purple-100);
  margin-bottom: 16px;
  text-align: center; padding: 10px;
}
.hero .hero-card .stats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.hero .hero-card .mini-stat {
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  text-align: center;
}
.hero .hero-card .mini-stat .v {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--purple); letter-spacing: -0.02em;
}
.hero .hero-card .mini-stat .k {
  font-family: var(--font-ui);
  font-size: 10.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 2px; font-weight: 500;
}
.hero .float-badge {
  position: absolute; z-index: 3;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(27,20,32,.1);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.hero .float-badge.tl { top: -14px; left: -20px; }
.hero .float-badge.br { bottom: -16px; right: -10px; }
.hero .float-badge .icon-wrap {
  width: 28px; height: 28px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 50%;
  display: grid; place-items: center;
}
.hero .float-badge.tl .icon-wrap { background: var(--purple-50); color: var(--purple); }
.hero .float-badge svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none; }

/* ==========================================================================
   11. SERVICE CARDS + FEATURE CARD
   ========================================================================== */
.services { padding: 100px 0; background: var(--bg-soft); position: relative; }
.services .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 32px;
  position: relative;
  transition: all 260ms ease;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(112,38,113,0.1);
  border-color: var(--purple-100);
}
.service-card .s-icon {
  width: 54px; height: 54px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all 260ms ease;
}
.service-card:hover .s-icon { background: var(--purple); color: var(--white); transform: rotate(-4deg); }
.service-card .s-icon svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px; color: var(--body);
  line-height: 1.55; margin-bottom: 18px; flex: 1;
}
.service-card .s-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  color: var(--green-700);
  transition: gap 180ms ease;
}
.service-card .s-link:hover { gap: 10px; color: var(--purple); }
.service-card .s-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.service-card.feature {
  grid-row: span 2;
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple-800) 100%);
  color: var(--white);
  border: none;
  padding: 40px;
}
.service-card.feature::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(128,189,66,0.22) 0%, transparent 70%);
}
.service-card.feature .s-icon { background: rgba(255,255,255,0.12); color: var(--green); }
.service-card.feature:hover .s-icon { background: var(--green); color: var(--white); }
.service-card.feature h3 { color: var(--white); font-size: 30px; }
.service-card.feature p { color: rgba(255,255,255,0.82); font-size: 15.5px; }
.service-card.feature .feature-list {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.service-card.feature .feature-list li {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 10px;
}
.service-card.feature .feature-list li svg {
  width: 14px; height: 14px;
  padding: 2px; box-sizing: border-box;
  background: var(--green);
  border-radius: 50%;
  stroke: var(--white); stroke-width: 3;
  fill: none; flex-shrink: 0;
}
.service-card.feature .s-link { color: var(--green); font-size: 14.5px; }
.service-card.feature .s-link:hover { color: var(--white); }

/* ==========================================================================
   12. CLIENT LOGO WALL
   ========================================================================== */
.clients {
  padding: 80px 0 90px;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.clients .clients-head {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  gap: 24px; margin-bottom: 40px;
  flex-wrap: wrap;
}
.clients .clients-head h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 640px;
}
.clients .clients-head h2 em { font-style: normal; color: var(--purple); }
.clients .clients-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13.5px; font-weight: 600;
  transition: all 180ms ease;
  flex-shrink: 0;
}
.clients .clients-cta:hover { background: var(--purple); color: var(--white); }
.clients .clients-cta svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  transition: all 220ms ease;
}
.logo-card:hover {
  border-color: var(--purple-100);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(112,38,113,.08);
}
.logo-placeholder {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--green-50) 100%);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  color: var(--purple);
  font-family: var(--font-ui);
  font-size: 10.5px; font-weight: 600;
  border: 1px dashed var(--purple-100);
  margin-bottom: 12px;
  padding: 8px; text-align: center;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.logo-role {
  font-family: var(--font-ui);
  font-size: 11px; color: var(--muted);
  margin-top: 4px; line-height: 1.3;
}

/* ==========================================================================
   13. PACKAGES — Website / SEO / Growth System
   ========================================================================== */
.packages { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.packages::before {
  content: "";
  position: absolute;
  top: 10%; right: -200px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,38,113,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 56px;
  position: relative;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  position: relative;
  transition: all 280ms ease;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-100);
  box-shadow: 0 20px 44px rgba(112,38,113,0.1);
}
.pkg-card.pkg-featured {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-800) 100%);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 20px 44px rgba(112,38,113,0.25);
  transform: translateY(-8px);
}
.pkg-card.pkg-featured:hover { transform: translateY(-12px); box-shadow: 0 28px 56px rgba(112,38,113,0.32); }
.pkg-card.pkg-featured::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-ribbon {
  position: absolute;
  top: 20px; right: 24px;
  padding: 5px 12px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}
.pkg-head { position: relative; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.pkg-card.pkg-featured .pkg-head { border-bottom-color: rgba(255,255,255,0.12); }
.pkg-icon {
  width: 56px; height: 56px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pkg-card.pkg-featured .pkg-icon { background: rgba(255,255,255,0.12); color: var(--green); }
.pkg-icon svg { width: 26px; height: 26px; }
.pkg-label {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 6px;
}
.pkg-card.pkg-featured .pkg-label { color: var(--green); }
.pkg-name {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pkg-card.pkg-featured .pkg-name { color: var(--white); }
.pkg-tagline {
  font-size: 14px; color: var(--body);
  line-height: 1.5;
}
.pkg-card.pkg-featured .pkg-tagline { color: rgba(255,255,255,0.82); }
.pkg-list {
  list-style: none; padding: 0;
  margin: 0 0 28px;
  position: relative; flex: 1;
}
.pkg-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}
.pkg-card.pkg-featured .pkg-list li { color: rgba(255,255,255,0.88); }
.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--green-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236BA332' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.pkg-card.pkg-featured .pkg-list li::before {
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.pkg-foot {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.pkg-foot .pkg-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.pkg-foot .pkg-btn-primary {
  padding: 12px 22px;
  font-size: 13.5px;
}
.pkg-card.pkg-featured .pkg-foot { border-top-color: rgba(255,255,255,0.12); }
.pkg-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 18px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  transition: all 180ms ease;
}
.pkg-btn:hover { background: var(--purple); color: var(--white); }
.pkg-btn svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 180ms ease; }
.pkg-btn:hover svg { transform: translateX(3px); }
.pkg-btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 6px 16px rgba(128,189,66,0.3);
}
.pkg-btn-primary:hover { background: var(--green-700); color: var(--white); }
.pkg-btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 16px;
  color: var(--purple);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.pkg-btn-secondary:hover {
  border-bottom-color: var(--purple);
  color: var(--purple-700);
}
.pkg-card.pkg-featured .pkg-btn-secondary {
  color: rgba(255,255,255,0.8);
}
.pkg-card.pkg-featured .pkg-btn-secondary:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}
.pkg-price-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.pkg-card.pkg-featured .pkg-price-note { color: rgba(255,255,255,0.6); }
.pkg-cta {
  text-align: center;
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  max-width: 760px;
  margin: 0 auto;
}
.pkg-cta p {
  font-size: 15.5px;
  color: var(--body);
  margin-bottom: 18px;
}
.pkg-cta-buttons {
  display: inline-flex; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}

/* ==========================================================================
   14. AUDIENCE CARDS
   ========================================================================== */
.audience {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.audience::before {
  content: "";
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.15) 0%, transparent 70%);
}
.audience .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 260ms ease;
}
.aud-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(128,189,66,0.12);
}
.aud-card .a-icon {
  width: 50px; height: 50px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: all 260ms ease;
}
.aud-card:hover .a-icon { background: var(--green); color: var(--white); }
.aud-card .a-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.aud-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 8px;
}
.aud-card p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.5;
}

/* ==========================================================================
   15. PROCESS STEPS
   ========================================================================== */
.process { padding: 100px 0; background: var(--white); }
.process .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  transition: all 260ms ease;
}
.step-card:hover { border-color: var(--purple-100); box-shadow: 0 12px 28px rgba(112,38,113,0.08); }
.step-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800; font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  border: 4px solid var(--purple-50);
}
.step-card:hover .num { background: var(--green); border-color: var(--green-50); }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.25; margin-bottom: 8px;
}
.step-card p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.55;
}

/* ==========================================================================
   16. PORTFOLIO / WORK CARDS
   ========================================================================== */
.portfolio { padding: 100px 0; background: var(--bg-soft); }
.portfolio .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px; margin-bottom: 38px;
}
.work-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 280ms ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(27,20,32,.1);
}
.work-card .thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--green-50) 100%);
  display: grid; place-items: center;
  color: var(--purple);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  border-bottom: 1px dashed var(--purple-100);
  position: relative; text-align: center; padding: 10px;
}
.work-card:first-child .thumb {
  background: linear-gradient(135deg, #702671 0%, #A84AAB 100%);
  color: var(--white);
}
.work-card .thumb .tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.work-card .body { padding: 22px; }
.work-card .meta {
  font-family: var(--font-ui);
  font-size: 11.5px; color: var(--muted);
  font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 8px;
}
.work-card p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.5;
}
.work-card .outcome {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--green-700);
  font-weight: 600;
}
.work-card .outcome svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.portfolio-cta { text-align: center; }
.portfolio-cta .portfolio-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.portfolio-cta .portfolio-links a {
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: all 180ms ease;
}
.portfolio-cta .portfolio-links a:hover { background: var(--purple); color: var(--white); }
.portfolio-cta .portfolio-links a.primary { background: var(--purple); color: var(--white); }

/* ==========================================================================
   17. CASE STUDY HIGHLIGHT CARDS
   ========================================================================== */
.case-highlights { padding: 100px 0; background: var(--white); }
.case-highlights .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  transition: all 260ms ease;
  position: relative; overflow: hidden;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-100);
}
.case-card .c-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-50);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.case-card .c-tag.seo { color: var(--green-700); background: var(--green-50); }
.case-card .c-tag.ads { color: #B34300; background: #FFF4E6; }
.case-card .big-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em; line-height: 1;
  margin-bottom: 8px;
}
.case-card .big-num em { font-style: normal; color: var(--green-700); }
.case-card .big-num .small {
  font-size: 20px; font-weight: 700; color: var(--muted);
  letter-spacing: -0.02em; margin-left: 4px;
}
.case-card .metric-lbl {
  font-size: 15.5px; color: var(--body);
  line-height: 1.4;
  margin-bottom: 16px;
}
.case-card .metric-lbl strong { color: var(--ink); font-weight: 700; }
.case-card .client {
  font-family: var(--font-ui);
  font-size: 13px; color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: 18px;
  display: flex; align-items: center; gap: 10px;
}
.case-card .client .c-avatar {
  width: 28px; height: 28px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 11px;
}

/* ==========================================================================
   18. TESTIMONIAL BAND
   ========================================================================== */
.testimonial {
  padding: 100px 0;
  background: var(--purple-900);
  color: var(--white);
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: -200px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.18) 0%, transparent 70%);
}
.testimonial::after {
  content: "";
  position: absolute;
  bottom: -240px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,50,128,0.38) 0%, transparent 70%);
}
.testimonial .inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .mark {
  font-family: var(--font-display);
  font-size: 100px; font-weight: 800;
  color: var(--green);
  line-height: 0.8;
  margin-bottom: 0;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 32px;
}
.testimonial blockquote em { font-style: normal; color: var(--green); }
.testimonial .attrib {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px 12px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
}
.testimonial .attrib .a-avatar {
  width: 42px; height: 42px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
}
.testimonial .attrib .a-info { text-align: left; }
.testimonial .attrib .a-name { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; }
.testimonial .attrib .a-role { font-family: var(--font-ui); font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.testimonial .stars { margin-top: 30px; display: inline-flex; gap: 2px; }
.testimonial .stars svg { width: 18px; height: 18px; fill: var(--green); }

/* ==========================================================================
   19. FAQ ACCORDION
   ========================================================================== */
.faq { padding: 100px 0; background: var(--white); }
.faq .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.faq h2 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 18px;
}
.faq h2 em { font-style: normal; color: var(--purple); }
.faq .faq-intro p {
  font-size: 17px; color: var(--body);
  line-height: 1.55; margin-bottom: 22px;
}
.faq .faq-intro .contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
  margin-top: 26px;
}
.faq .faq-intro .contact-card .k {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.faq .faq-intro .contact-card .v {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
}
.faq .faq-intro .contact-card .v a { color: inherit; }
.faq .faq-intro .contact-card .v a:hover { color: var(--purple); }
.faq .faq-intro .contact-card .v:last-of-type { font-size: 15px; margin-top: 8px; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 10px;
  transition: border-color 160ms ease;
}
.faq details:hover { border-color: var(--purple-100); }
.faq details[open] { border-color: var(--purple); background: var(--cream); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .marker {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 180ms ease;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 16px; line-height: 1;
}
.faq details[open] summary .marker { background: var(--purple); color: var(--white); transform: rotate(45deg); }
.faq details .answer {
  margin-top: 12px;
  font-size: 14.5px; color: var(--body);
  line-height: 1.6;
}

/* ==========================================================================
   20. COMMITMENT / PLEDGES
   ========================================================================== */
.commitment {
  padding: 100px 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.commitment::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.16) 0%, transparent 70%);
}
.commitment::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,38,113,0.1) 0%, transparent 70%);
}
.commitment-inner { position: relative; }
.commit-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.commit-head h2 {
  font-family: var(--font-display);
  font-size: 46px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 18px;
}
.commit-head h2 em { font-style: normal; color: var(--purple); }
.commit-head p {
  font-size: 17px; color: var(--body);
  line-height: 1.6;
}
.pledge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
}
.pledge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  transition: all 260ms ease;
}
.pledge:hover {
  border-color: var(--purple-100);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(112,38,113,0.08);
}
.pledge .p-icon {
  width: 48px; height: 48px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: all 260ms ease;
}
.pledge:hover .p-icon { background: var(--green); color: var(--white); }
.pledge .p-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }
.pledge h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 10px;
}
.pledge p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.55;
}

/* ==========================================================================
   21. BLOG TEASER CAROUSEL
   ========================================================================== */
.blog-teaser { padding: 100px 0; background: var(--white); }
.blog-teaser .head-row {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  gap: 24px; margin-bottom: 44px;
  flex-wrap: wrap;
}
.blog-teaser .head-row h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 12px;
  max-width: 620px;
}
.blog-teaser .head-row h2 em { font-style: normal; color: var(--purple); }
.blog-teaser .hub-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--purple); color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  transition: all 180ms ease;
  flex-shrink: 0;
}
.blog-teaser .hub-link:hover { background: var(--purple-800); transform: translateY(-1px); }
.blog-teaser .hub-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 180ms ease; }
.blog-teaser .hub-link:hover svg { transform: translateX(3px); }

.blog-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.blog-post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 280ms ease;
  display: flex; flex-direction: column;
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(27,20,32,0.1);
  border-color: var(--purple-100);
}
.blog-post-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--green-50) 100%);
  display: grid; place-items: center;
  color: var(--purple);
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  border-bottom: 1px dashed var(--purple-100);
  position: relative; text-align: center; padding: 10px;
}
.blog-post-card:first-child .blog-post-thumb {
  background: linear-gradient(135deg, #702671 0%, #A84AAB 100%);
  color: rgba(255,255,255,0.85);
}
.blog-post-card:nth-child(2) .blog-post-thumb {
  background: linear-gradient(135deg, #80BD42 0%, #A6D974 100%);
  color: rgba(255,255,255,0.9);
}
.blog-post-thumb .cat-chip {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.blog-post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-post-meta {
  font-family: var(--font-ui);
  font-size: 11.5px; color: var(--muted);
  font-weight: 500; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.blog-post-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.25; margin-bottom: 10px;
}
.blog-post-body p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.55; margin-bottom: 18px; flex: 1;
}
.blog-post-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
  color: var(--purple);
  transition: gap 180ms ease;
}
.blog-post-link:hover { gap: 10px; color: var(--green-700); }
.blog-post-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.2; fill: none; }

/* ==========================================================================
   22. CONTACT PAGE — form, info cards, map
   ========================================================================== */
.contact-top {
  padding: 64px 0 44px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.contact-top::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.16) 0%, transparent 70%);
}
.contact-top .inner {
  position: relative;
  max-width: 820px;
  text-align: left;
}
.contact-top h1 {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.contact-top h1 em { font-style: normal; color: var(--purple); }
.contact-top .lead {
  font-size: 18px; color: var(--body);
  line-height: 1.55;
  max-width: 640px;
}
.contact-top .quick-stats {
  margin-top: 32px;
  display: flex; gap: 26px;
  flex-wrap: wrap;
}
.contact-top .quick-stat {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 18px 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-ui);
  font-size: 13.5px;
}
.contact-top .quick-stat svg { width: 16px; height: 16px; color: var(--green-700); stroke: currentColor; stroke-width: 2.2; fill: none; }
.contact-top .quick-stat strong { color: var(--purple); font-weight: 700; font-family: var(--font-display); }

.contact-main {
  padding: 60px 0 100px;
  background: var(--white);
}
.contact-main .layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-form-card h2 em { font-style: normal; color: var(--purple); }
.contact-form-card .form-intro {
  font-size: 14.5px; color: var(--body);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field label .req { color: var(--purple); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-50);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 8px 0 20px;
  font-size: 13px; color: var(--body);
  line-height: 1.5;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--purple);
  flex-shrink: 0;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(128,189,66,0.3);
  transition: all 180ms ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--green-700); transform: translateY(-1px); }
.form-submit svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 180ms ease; }
.form-submit:hover svg { transform: translateX(3px); }

.form-consent {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}
.form-consent a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }

/* Contact info column */
.contact-info {
  display: flex; flex-direction: column;
  gap: 14px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 260ms ease;
  display: flex; gap: 16px;
}
.info-card:hover {
  border-color: var(--purple-100);
  box-shadow: 0 12px 28px rgba(112,38,113,0.08);
}
.info-card .i-icon {
  width: 46px; height: 46px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card .i-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }
.info-card .i-body { flex: 1; }
.info-card .i-label {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 4px;
}
.info-card .i-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.info-card .i-title a:hover { color: var(--purple); }
.info-card .i-detail {
  font-size: 13.5px; color: var(--body);
  margin-top: 6px;
  line-height: 1.5;
}
.info-card .i-secondary {
  font-size: 13px; color: var(--muted);
  margin-top: 2px;
}
.info-card .i-secondary a:hover { color: var(--purple); }

.hours-card {
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple-800) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative; overflow: hidden;
}
.hours-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.22) 0%, transparent 70%);
}
.hours-card .i-label { color: var(--green); }
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  position: relative;
}
.hours-list {
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-ui);
  font-size: 13.5px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.82); }
.hours-row .time { color: var(--white); font-weight: 600; }
.hours-row.closed .time { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   23. INTERNAL PAGE HERO
   ========================================================================== */
.page-hero {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -140px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.14) 0%, transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,38,113,0.08) 0%, transparent 70%);
}
.page-hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 54px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--purple); }
.page-hero .lead {
  font-size: 18px; color: var(--body);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 28px;
}
.page-hero .lead strong { color: var(--ink); font-weight: 700; }

.page-hero .visual {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px rgba(112,38,113,0.12);
}
.page-hero .visual .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.page-hero .ba-col { position: relative; }
.page-hero .ba-label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero .ba-label.after { background: var(--green-50); color: var(--green-700); }
.page-hero .ba-frame {
  aspect-ratio: 9 / 11;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #F3E6F4 0%, #E4D5E5 100%);
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border: 1px dashed var(--purple-100);
}
.page-hero .ba-col.after .ba-frame {
  background: linear-gradient(135deg, var(--green-50) 0%, #D4EABA 100%);
  border-color: #B9D988;
  color: var(--green-700);
}
.page-hero .ba-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green-700);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(128,189,66,0.3);
}
.page-hero .ba-arrow svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* Internal content sections */
.page-section {
  padding: 90px 0;
  background: var(--white);
}
.page-section.alt { background: var(--bg-soft); }
.page-section.purple-band {
  background: var(--purple-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-section.purple-band::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.18) 0%, transparent 70%);
}
.page-section.purple-band h2 { color: var(--white); }
.page-section.purple-band h2 em { color: var(--green); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1.1fr 1fr; }
.two-col h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.two-col h2 em { font-style: normal; color: var(--purple); }
.two-col p {
  font-size: 16px; color: var(--body);
  line-height: 1.65;
  margin-bottom: 14px;
}
.two-col p strong { color: var(--ink); font-weight: 700; }
.two-col .feature-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 20px;
}
.two-col .feature-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600;
}
.two-col .feature-chip svg {
  width: 14px; height: 14px;
  stroke: var(--green-700);
  stroke-width: 2.2; fill: none;
}

.two-col .visual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(27,20,32,0.08);
}
.two-col .stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.two-col .stat-block .sb {
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}
.two-col .stat-block .sb .v {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--purple); letter-spacing: -0.025em;
  line-height: 1;
}
.two-col .stat-block .sb .v em { color: var(--green-700); font-style: normal; }
.two-col .stat-block .sb .k {
  font-family: var(--font-ui);
  font-size: 11.5px; color: var(--muted);
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Problem-Solution comparison grid */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.compare-card {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
}
.compare-card.bad {
  background: #FDEFED;
  border: 1px solid #F7D4CE;
}
.compare-card.good {
  background: var(--green-50);
  border: 1px solid #C6E3A0;
}
.compare-card .cc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.compare-card.bad .cc-tag { background: rgba(200,50,60,0.12); color: #C8323C; }
.compare-card.good .cc-tag { background: rgba(128,189,66,0.18); color: var(--green-700); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li::before {
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.compare-card.bad li::before {
  content: "✕";
  background: #C8323C;
  color: var(--white);
}
.compare-card.good li::before {
  content: "✓";
  background: var(--green);
  color: var(--white);
}

/* Bullet benefits list */
.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 40px 0 0;
}
.benefit-item {
  display: flex; gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: all 240ms ease;
}
.benefit-item:hover {
  border-color: var(--purple-100);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(112,38,113,0.07);
}
.benefit-item .b-icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.benefit-item .b-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.benefit-item h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 13px; color: var(--body);
  line-height: 1.5;
  margin: 0;
}

/* Redesign timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.timeline-step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}
.timeline-step .ts-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  margin-bottom: 14px;
  border: 4px solid var(--green-50);
}
.timeline-step h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 6px;
}
.timeline-step .ts-time {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 13.5px; color: var(--body);
  line-height: 1.5;
  margin: 0;
}

/* Inline CTA band */
.cta-band {
  padding: 64px 0;
  background: var(--white);
}
.cta-band .box {
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple-800) 100%);
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 50px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-band .box::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.28) 0%, transparent 70%);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  position: relative;
}
.cta-band h2 em { font-style: normal; color: var(--green); }
.cta-band p {
  font-size: 15px; color: rgba(255,255,255,0.78);
  margin-top: 12px;
  line-height: 1.55;
  position: relative;
}
.cta-band .actions {
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.cta-band .actions .btn { width: 100%; justify-content: center; }
.cta-band .secondary-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 14px;
}
.cta-band .secondary-link:hover { background: rgba(255,255,255,0.12); }
.cta-band .secondary-link strong { color: var(--green); font-weight: 700; font-family: var(--font-display); }
.cta-band .secondary-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

/* ==========================================================================
   SVG SAFETY NET — constrains any bare SVG inside links/buttons to icon size.
   Prevents the "massive icon" bug when markup omits an inline size attribute
   or a wrapping classed container. Only applies to inline/button contexts —
   never affects SVG deliberately sized large (hero art, logos, etc.).
   ========================================================================== */
a > svg:not([width]):not([class*="logo"]):not([class*="hero"]):not(.arrow),
button > svg:not([width]):not([class*="logo"]):not([class*="hero"]):not(.arrow),
.secondary-link > svg,
.btn > svg:not(.arrow) {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}
/* .arrow is a known class for the small arrow inside primary buttons —
   it already has explicit sizing elsewhere, so don't double-constrain. */

/* ==========================================================================
   24. FOOTER — CTA band + 5-Column Dark
   ========================================================================== */
.site-footer {
  background: var(--purple-900);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(128,189,66,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -240px; left: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(126,50,128,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer .cta-band-footer {
  position: relative;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .cta-band-footer .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.site-footer .cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.site-footer .cta-headline {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--white);
  line-height: 1.1; letter-spacing: -0.025em;
  max-width: 720px;
}
.site-footer .cta-headline span { color: var(--green); }
.site-footer .cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.7);
  margin-top: 12px; max-width: 560px;
}
.site-footer .cta-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.site-footer .cta-btns .btn-primary {
  padding: 14px 26px; font-size: 15px;
}
.site-footer .cta-btns .call-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.site-footer .cta-btns .call-line strong { color: var(--white); font-weight: 600; }
.site-footer .cta-btns .call-line svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; }

.site-footer .grid-footer {
  position: relative;
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer .brand-col .brand-logo {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.site-footer .brand-col .brand-mark {
  width: 50px; height: 50px;
  border-radius: 50%;
  position: relative;
  background: var(--purple);
  display: grid; place-items: center;
  border: 2px solid var(--green);
}
.site-footer .brand-col .brand-mark::before {
  content: ""; position: absolute;
  inset: 5px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.35);
}
.site-footer .brand-col .brand-mark .initial {
  color: var(--white); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.site-footer .brand-col .brand-mark::after { display: none; }
.site-footer .brand-col .brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.025em; line-height: 1.1;
}
.site-footer .brand-col .brand-name span { color: var(--green); }
.site-footer .brand-col .brand-sub {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-top: 2px;
}
.site-footer .brand-col .brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.72);
  line-height: 1.55; margin-bottom: 22px;
}
.site-footer .stat-row {
  display: flex; gap: 24px;
  padding: 16px 0; margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .stat { flex: 1; }
.site-footer .stat .num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: var(--green); letter-spacing: -0.02em;
  line-height: 1;
}
.site-footer .stat .lbl {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.site-footer .contact-mini {
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-ui); font-size: 13.5px;
}
.site-footer .contact-mini a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  transition: color 160ms ease;
}
.site-footer .contact-mini a:hover { color: var(--green); }
.site-footer .contact-mini .icon {
  width: 14px; height: 14px;
  stroke: var(--green);
  stroke-width: 2; fill: none;
  flex-shrink: 0;
}
.site-footer .col-head {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.site-footer .link-list { display: flex; flex-direction: column; gap: 9px; }
.site-footer .link-list a {
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: color 160ms ease;
  line-height: 1.4;
}
.site-footer .link-list a:hover { color: var(--green); }
.site-footer .trust-strip {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.site-footer .trust-strip .lbl {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.site-footer .trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
}
.site-footer .trust-pill .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.site-footer .legal-bar {
  position: relative;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.site-footer .legal-bar .links { display: flex; gap: 22px; }
.site-footer .legal-bar a:hover { color: var(--white); }

/* ==========================================================================
   25. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-list { display: none; }
  .right-cluster .phone-chip { display: none; }
  .hamburger { display: inline-flex; }

  .hero h1 { font-size: 46px; }
  .hero .inner { grid-template-columns: 1fr; gap: 40px; }

  .services .grid,
  .audience .grid,
  .process .steps,
  .case-highlights .grid { grid-template-columns: 1fr 1fr; }
  .service-card.feature { grid-row: auto; }

  .faq .wrap,
  .two-col,
  .two-col.reverse,
  .page-hero .inner,
  .contact-main .layout { grid-template-columns: 1fr; gap: 40px; }

  .portfolio .grid,
  .compare-grid,
  .benefit-list { grid-template-columns: 1fr 1fr; }

  .timeline { grid-template-columns: 1fr 1fr; }

  .logo-wall { grid-template-columns: repeat(3, 1fr); }

  .pkg-grid { grid-template-columns: 1fr; gap: 18px; }
  .pkg-card.pkg-featured { transform: none; }
  .pkg-card.pkg-featured:hover { transform: translateY(-4px); }

  .pledge-grid { grid-template-columns: 1fr 1fr; }

  .blog-carousel { grid-template-columns: 1fr 1fr; }

  .site-footer .grid-footer { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .cta-band-footer .inner { grid-template-columns: 1fr; }
  .site-footer .cta-btns { align-items: flex-start; }
  .site-footer .cta-headline { font-size: 30px; }
  .cta-band .box { grid-template-columns: 1fr; padding: 40px 32px; }
}

@media (max-width: 720px) {
  .main-nav .inner { padding: 14px 20px; gap: 12px; }
  .brand-sub { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero h1,
  .page-hero h1,
  .contact-top h1 { font-size: 36px; }

  .section-head h2,
  .faq h2,
  .commit-head h2,
  .blog-teaser .head-row h2,
  .two-col h2,
  .clients .clients-head h2 { font-size: 28px; }

  .services,
  .packages,
  .audience,
  .process,
  .portfolio,
  .case-highlights,
  .testimonial,
  .faq,
  .commitment,
  .blog-teaser,
  .contact-main,
  .page-section { padding: 64px 0; }

  .services .grid,
  .audience .grid,
  .process .steps,
  .case-highlights .grid,
  .portfolio .grid,
  .compare-grid,
  .benefit-list,
  .timeline,
  .pledge-grid,
  .blog-carousel { grid-template-columns: 1fr; }

  .logo-wall { grid-template-columns: repeat(2, 1fr); }

  .testimonial blockquote { font-size: 22px; }
  .hero .trust-row { flex-wrap: wrap; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }

  .page-hero .visual { padding: 18px; }
}

/* ==========================================================================
   26. BLOG ARTICLE STYLES (added for blog posts)
   ========================================================================== */
.blog-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-meta-top .b-date,
.blog-meta-top .b-time {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.blog-meta-top .b-date::before,
.blog-meta-top .b-time::before {
  content: "·";
  margin-right: 10px;
  color: var(--muted);
}

.blog-article {
  padding: 50px 0 72px;
  background: var(--white);
}
.blog-body {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.blog-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 44px 0 18px;
  font-family: var(--font-display);
}
.blog-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
  font-family: var(--font-display);
}
.blog-body p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-body ul,
.blog-body ol {
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  margin: 0 0 22px;
  padding-left: 26px;
}
.blog-body li {
  margin-bottom: 10px;
}
.blog-body strong {
  color: var(--ink);
  font-weight: 700;
}
.blog-body a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.blog-body a:hover {
  color: var(--green-700);
}

@media (max-width: 768px) {
  .blog-body h2 { font-size: 23px; }
  .blog-body h3 { font-size: 19px; }
  .blog-body p, .blog-body ul, .blog-body ol { font-size: 16px; }
}

/* ==========================================================================
   SECTION 26 — SHARED PAGE UTILITY CLASSES (used by page_builder.py)
   Centralised so all generated pages stay visually identical.
   ========================================================================== */

/* Hero H1 */
.hero-h1 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--purple);
}
@media (max-width: 768px) {
  .hero-h1 { font-size: 36px; line-height: 1.08; }
}

/* Hero CTAs row */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Hero stats row */
.hero-stats {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-stats .stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Inline CTA band */
.inline-cta {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%);
  border-radius: var(--radius-xxl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}
.inline-cta-head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.inline-cta-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.inline-cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.inline-cta .btn-primary {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.inline-cta .btn-primary:hover {
  background: var(--cream);
  color: var(--purple);
}
.cta-phone {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
.cta-phone a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.cta-phone a:hover {
  border-bottom-color: var(--white);
}
@media (max-width: 768px) {
  .inline-cta { padding: 32px 24px; }
  .inline-cta-head h2 { font-size: 24px; }
}

/* FAQ accordion */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 240ms ease;
}
.faq-item[open] {
  border-color: var(--purple-200);
  box-shadow: 0 4px 20px rgba(112, 38, 113, 0.06);
}

/* Every <summary> inside a .faq-item becomes the flex row, regardless of
   whether .faq-q sits ON the <summary> or as a <span> INSIDE it. */
.faq-item > summary {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: color 200ms ease;
}
.faq-item > summary:hover { color: var(--purple); }

/* Kill every browser's default disclosure marker */
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; display: none; }
.faq-item > summary { list-style: none; }

/* .faq-q applied directly on <summary> still gets the full treatment */
summary.faq-q {
  /* Inherits from .faq-item > summary above — nothing extra needed */
}
/* .faq-q as a child span is just a text label inside summary */
.faq-item > summary > .faq-q {
  flex: 1;
  font: inherit;
  color: inherit;
  padding: 0;
}

/* Marker — circle with pseudo-element +/× */
.faq-marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-50);
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
  /* Hide any literal text inside (e.g. the "+" character from old markup) */
  font-size: 0;
  color: transparent;
  overflow: hidden;
  line-height: 0;
}
.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--purple);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, background 220ms ease;
}
.faq-marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-marker { background: var(--purple); }
.faq-item[open] .faq-marker::before,
.faq-item[open] .faq-marker::after { background: var(--white); }
.faq-item[open] .faq-marker::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  padding: 0 24px 22px;
  animation: faqFadeIn 260ms ease;
}
.faq-a p {
  margin: 0;
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.65;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Generic card grid used on location + service pages */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.card-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: block;
  transition: all 240ms ease;
  text-decoration: none;
}
.card-link:hover {
  border-color: var(--purple-200);
  box-shadow: 0 8px 24px rgba(112, 38, 113, 0.08);
  transform: translateY(-2px);
}
.card-link .card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.card-link h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}
.card-link p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}
.card-link .card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple);
}

/* Benefit grid — 2-col on wide, stacks on mobile */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 240ms ease;
}
.benefit-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 6px 22px rgba(112, 38, 113, 0.06);
}
.benefit-card .icon-circle,
.benefit-card .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.benefit-card .icon-circle svg,
.benefit-card .benefit-icon svg,
.benefit-card > svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: var(--purple);
  display: block;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.benefit-card p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* City & state specific helpers reused across location pages */
.location-why {
  background: var(--cream);
  border-radius: var(--radius-xxl);
  padding: 40px 32px;
  max-width: 960px;
  margin: 0 auto;
}
.location-why h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.location-why p {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.65;
  margin: 0 0 12px;
}

/* Blog post CTA band (softer than inline-cta) */
.post-cta {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 40px 0;
  text-align: center;
}
.post-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.post-cta p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Service focus chip pill */
.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: all 220ms ease;
}
.service-chip:hover {
  border-color: var(--purple-200);
  color: var(--purple);
  background: var(--purple-50);
}
.service-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 10px;
  flex-shrink: 0;
}

/* ===================================================================
   BATCH 1+ ADDITIONS — Component primitives used by the page builder
   =================================================================== */

/* Narrow content container (for text-heavy pages: FAQ, legal, blog) */
.container.narrow { max-width: 920px; }

/* Hero right-side visual card (generic) */
.hero-visual-card {
  background: linear-gradient(155deg, #F6EEF7 0%, #F1F9E8 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px -20px rgba(112, 38, 113, 0.18);
}
.hero-visual-placeholder {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--purple);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 24px;
  border: 2px dashed var(--purple-200);
  border-radius: 14px;
  width: 100%;
  line-height: 1.6;
  background: rgba(255,255,255,0.55);
}

/* Benefits grid — 2-column card layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 860px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
}
.benefits-grid .benefit-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.benefits-grid .benefit-card:hover {
  border-color: var(--purple-200);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -16px rgba(112, 38, 113, 0.22);
}
.benefits-grid .bc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-50) 0%, #E4F1D1 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--purple);
}
.benefits-grid .bc-icon svg { width: 22px; height: 22px; }
.benefits-grid .benefit-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}
.benefits-grid .benefit-card p {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}

/* Prose block for long-form content (blog, legal) */
.prose-block {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-top: 32px;
}
.prose-block p { margin-bottom: 20px; }
.prose-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.35;
}
.prose-block h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.prose-block ul, .prose-block ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.prose-block li { margin-bottom: 8px; }
.prose-block strong { color: var(--ink); font-weight: 700; }
.prose-block a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose-block a:hover { color: var(--green-700); }
.prose-block blockquote {
  border-left: 3px solid var(--purple);
  padding: 4px 0 4px 22px;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink);
}

/* Inline CTA band (section-level CTA) */
.inline-cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, #8B2E8C 100%);
  border-radius: 22px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 32px;
  align-items: center;
  color: #fff;
  box-shadow: 0 20px 60px -28px rgba(112, 38, 113, 0.6);
}
@media (max-width: 820px) {
  .inline-cta-band {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    text-align: center;
  }
}
.inline-cta-band .icb-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.inline-cta-band .icb-sub {
  font-family: var(--font-ui);
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.55;
}
.inline-cta-band .icb-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .inline-cta-band .icb-actions { justify-content: center; }
}
.inline-cta-band .icb-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: all 200ms ease;
}
.inline-cta-band .icb-phone:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}
.inline-cta-band .icb-phone svg { width: 16px; height: 16px; }
.inline-cta-band .btn-primary {
  background: var(--green);
  color: var(--ink);
}
.inline-cta-band .btn-primary:hover {
  background: #6EA536;
  transform: translateY(-1px);
}

/* Feature chips row (for service pages) */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
}
.feature-chip svg {
  width: 14px;
  height: 14px;
  color: var(--green-700);
  flex-shrink: 0;
}

/* Visual card placeholder (generic right-side) */
.visual-card {
  background: linear-gradient(155deg, #F6EEF7 0%, #F1F9E8 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px -22px rgba(112, 38, 113, 0.22);
}
.visual-placeholder {
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--purple);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 20px;
  border: 2px dashed var(--purple-200);
  border-radius: 12px;
  width: 100%;
  line-height: 1.6;
  background: rgba(255,255,255,0.55);
}


/* ==========================================================================
   SECTION 27 — BLOG POST PAGE STYLES
   ========================================================================== */

.blog-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--line);
}
.blog-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.blog-hero-inner .breadcrumb {
  margin-bottom: 18px;
  justify-content: flex-start;
}
.blog-hero-inner .eyebrow {
  margin-bottom: 20px;
}
.blog-h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.blog-h1 em {
  font-style: normal;
  color: var(--purple);
}
.blog-hero-inner .lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 720px;
}
.blog-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
}
.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--purple);
  flex-shrink: 0;
}
.blog-section {
  padding: 48px 0;
  background: var(--white);
}
.blog-section .blog-body {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .blog-hero { padding: 40px 0 32px; }
  .blog-h1 { font-size: 30px; line-height: 1.15; }
  .blog-hero-inner .lead { font-size: 16px; }
  .blog-meta { gap: 14px; font-size: 12px; }
  .blog-section { padding: 32px 0; }
}

/* ==========================================================================
   SECTION 28 — LEGACY VOCABULARY BRIDGE
   ==========================================================================
   Covers classes used on service pages built before the page_builder system
   was unified. Every style here maps to a specific class pattern used on
   pages like ndis-website-design.php, ndis-seo-packages.php,
   ndis-google-ads.php, etc.
   ========================================================================== */

/* ---- Hero (page-level, not homepage) ---- */
.hero-page {
  position: relative;
  padding: 60px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-page-copy .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-page-copy h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 18px;
}
.hero-page-copy h1 em {
  font-style: normal;
  color: var(--purple);
}
.hero-page-copy .lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-page .hero-stats {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  justify-content: flex-start;
  gap: 40px;
}
.hero-page .hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-page .hero-stat span {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual card (right-hand mockup placeholder) */
.hero-page-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xxl);
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--cream) 100%);
  border: 1px solid var(--purple-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
  overflow: hidden;
}
.visual-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,189,66,0.15), transparent 65%);
  pointer-events: none;
}
.visual-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--purple);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.visual-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  max-width: 280px;
  line-height: 1.5;
}

/* ---- Generic section wrapper (alternative to .page-section) ---- */
.section {
  padding: 72px 0;
  background: var(--white);
}
.section.section-alt,
.section-alt {
  background: var(--cream);
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-heading.center,
.section-heading .center,
.center .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--purple-50);
  color: var(--purple);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 12px;
}
.section-heading h2 em {
  font-style: normal;
  color: var(--purple);
}
.section-heading p {
  font-size: 16.5px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* ---- Benefit grid columns (.cols-2, .cols-3) ---- */
.benefit-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.benefit-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* .benefit-icon is handled in Section 26 alongside .icon-circle */

/* ---- Timeline section ---- */
.timeline-section {
  padding: 72px 0;
  background: var(--cream);
}
.timeline-section .timeline,
.tl-step-container {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  /* Explicitly override earlier 4-column .timeline rule from SECTION 22 */
  grid-template-columns: 1fr;
  gap: 24px;
  /* Reset <ol> defaults so the list renders as simple grid rows */
  list-style: none;
  padding: 0;
  counter-reset: none;
}
.timeline-section .timeline > li,
.tl-step-container > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline-section .timeline > li::before,
.timeline-section .timeline > li::marker {
  content: none;
  display: none;
}
.tl-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  transition: all 240ms ease;
}
.tl-step:hover {
  border-color: var(--purple-200);
  box-shadow: 0 4px 16px rgba(112,38,113,0.06);
}
.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.tl-body {
  flex: 1;
}
.tl-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.tl-body p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* ---- Inline CTA card (alternative to .inline-cta) ---- */
.inline-cta-card {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%);
  border-radius: var(--radius-xxl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}
.inline-cta-copy h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.inline-cta-copy p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.inline-cta-action {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Button variants used in CTA band */
.btn-white {
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid var(--white);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--purple-700);
}
.cta-secondary,
.inline-cta-card .cta-secondary {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
.cta-secondary a,
.inline-cta-card .cta-secondary a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.cta-secondary a:hover,
.inline-cta-card .cta-secondary a:hover {
  border-bottom-color: var(--white);
}

/* ---- FAQ section (alternative to .faq-list wrapper) ---- */
.faq-section {
  padding: 72px 0;
  background: var(--white);
}
.faq-section.section-alt {
  background: var(--cream);
}

/* ---- Hero split layout (used on service page heroes) ---- */
.hero-split .hero-page-grid {
  grid-template-columns: 1.05fr 1fr;
}

/* ---- Compare grids (two-column before/after) ---- */
.compare-grid-section {
  padding: 72px 0;
}
.compare-grid-section .compare-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.compare-bad,
.compare-good {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--line);
}
.compare-bad {
  border-left: 4px solid #E74C3C;
}
.compare-good {
  border-left: 4px solid var(--green);
}
.compare-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-bad .compare-tag {
  background: rgba(231, 76, 60, 0.12);
  color: #C0392B;
}
.compare-good .compare-tag {
  background: rgba(128, 189, 66, 0.15);
  color: #5A8B2A;
}
.compare-bad h3,
.compare-good h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.compare-bad ul,
.compare-good ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-bad li,
.compare-good li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.compare-bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #E74C3C;
  font-weight: 700;
}
.compare-good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---- Before/after visual markers ---- */
.before::before {
  content: "BEFORE";
  display: inline-block;
  padding: 4px 10px;
  background: rgba(231, 76, 60, 0.12);
  color: #C0392B;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* ---- Sitemap page layout ---- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.sitemap-section h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--purple-50);
}
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list li {
  margin-bottom: 8px;
}
.sitemap-list a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  transition: color 180ms ease;
}
.sitemap-list a:hover {
  color: var(--purple);
}

/* ---- Responsive collapse for all legacy patterns ---- */
@media (max-width: 768px) {
  .hero-page { padding: 40px 0 48px; }
  .hero-page-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-page-copy h1 { font-size: 32px; line-height: 1.1; }
  .hero-page-copy .lead { font-size: 16px; }
  .hero-page .hero-stats { gap: 24px; padding-top: 20px; }
  .hero-page .hero-stat strong { font-size: 24px; }
  .section { padding: 48px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 26px; }
  .timeline-section { padding: 48px 0; }
  .tl-step { grid-template-columns: 40px 1fr; gap: 16px; padding: 20px; }
  .tl-dot { width: 36px; height: 36px; font-size: 15px; }
  .tl-body h3 { font-size: 17px; }
  .inline-cta-card { padding: 32px 24px; flex-direction: column; text-align: center; }
  .inline-cta-copy h2 { font-size: 24px; }
  .compare-bad, .compare-good { padding: 24px; }
  .faq-section { padding: 48px 0; }
}

/* ---- Mini-stat pairs (used in hero visual cards + contact info) ---- */
.v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
}
.k {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Hero inner wrapper (centred hero content) ---- */
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
   SECTION 29 — PACKAGE DETAIL PAGES
   Pricing tiers, comparison tables, process timelines, care plans.
   Used by: website-packages.php, seo-packages.php, growth-system.php
   ========================================================================== */

/* ---- Tier grid layout ---- */
.tier-grid {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}
.tier-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.tier-grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ---- Individual tier card ---- */
.tier-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xxl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: all 240ms ease;
}
.tier-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 10px 28px rgba(112, 38, 113, 0.08);
  transform: translateY(-2px);
}
.tier-card.is-featured {
  border-color: var(--purple);
  border-width: 2px;
  padding-top: 44px;
  box-shadow: 0 10px 28px rgba(112, 38, 113, 0.1);
}

/* Small label above card (e.g. "Best to Start", "Most Popular") */
.tier-label {
  position: absolute;
  top: -12px;
  left: 24px;
  display: inline-block;
  padding: 6px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-card.is-featured .tier-label {
  background: var(--purple);
}

/* Card head: name + price + subhead */
.tier-head {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tier-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.tier-price-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-price-suffix {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.tier-subhead {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

/* Feature checklist */
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.tier-features li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card footer: best-if + next-step + CTA */
.tier-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tier-best-if,
.tier-next {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}
.tier-best-if strong,
.tier-next strong {
  color: var(--ink);
  font-weight: 700;
}
.tier-footer .btn {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}

/* Ownership / small print note below tier grid */
.ownership-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ownership-note strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---- Comparison table ---- */
.compare-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
}
.compare-table thead th {
  background: var(--cream);
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--line);
}
.compare-table thead th:first-child {
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table tbody td {
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--body);
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: #FAFAF7;
  width: 24%;
}
.compare-table tbody tr:hover td {
  background: rgba(112, 38, 113, 0.02);
}
.compare-table tbody tr:hover td:first-child {
  background: rgba(112, 38, 113, 0.04);
}

/* ---- Process steps (numbered vertical timeline) ---- */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: none;
}
.process-steps > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  transition: all 240ms ease;
  margin: 0;
}
.process-steps > li::before,
.process-steps > li::marker {
  content: none;
  display: none;
}
.process-steps > li:hover {
  border-color: var(--purple-200);
  box-shadow: 0 4px 16px rgba(112, 38, 113, 0.05);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.step-body {
  flex: 1;
}
.step-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.step-body p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.process-timeline-note {
  text-align: center;
  margin: 28px auto 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 680px;
}
.process-timeline-note strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---- Care plan cards (website-packages.php only) ---- */
.care-plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 240ms ease;
}
.care-plan-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 6px 20px rgba(112, 38, 113, 0.06);
}
.care-plan-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.care-plan-price-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.care-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.care-plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.care-plan-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Plain list (inside .benefit-card body) ---- */
.plain-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.plain-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}
.plain-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ---- Benefit grid variants for these pages ---- */
.benefit-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.benefit-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---- Secondary button variant for inline-cta on dark background ---- */
.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .tier-grid-2,
  .tier-grid-3 {
    grid-template-columns: 1fr;
  }
  .tier-card {
    padding: 32px 24px 28px;
  }
  .tier-card.is-featured {
    padding-top: 40px;
  }
  .tier-head h3 { font-size: 22px; }
  .tier-price-amount { font-size: 32px; }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .process-steps > li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .step-num { width: 36px; height: 36px; font-size: 15px; }
  .step-body h3 { font-size: 17px; }

  .care-plan-card { padding: 22px; }
}
