/* ============================================================
   EnB Holistic Care v3 — Redesigned Stylesheet
   Color palette derived from logo: purple + green on warm white
   ============================================================ */

/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ------------------------------------------------------------ */

:root {
  /* Brand colors from logo */
  --purple: #5B2D8E;
  --purple-dark: #452170;
  --purple-mid: #7B4BAE;
  --purple-light: #F0EAF6;
  --purple-xlight: #F8F5FB;

  --green: #4B7B3A;
  --green-dark: #3A6130;
  --green-light: #EEF4EB;

  /* Neutrals — warm-tinted toward purple */
  --bg-warm: #FAF8F5;
  --bg-white: #FFFFFF;
  --bg-cream: #F5F1EC;

  --text-dark: #2D2639;
  --text-body: #4A4255;
  --text-mid: #6B6478;
  --text-light: #8E879A;

  --border: #E8E2ED;
  --border-light: #F0ECF3;

  /* Typography */
  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.25s var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 38, 57, 0.06);
  --shadow-md: 0 4px 12px rgba(45, 38, 57, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 38, 57, 0.1);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple-dark);
}

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  display: block;
  margin-bottom: 0.75rem;
}

.section-label--purple {
  color: var(--purple);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.85);
}

/* ------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--white {
  background-color: var(--bg-white);
}

.section--cream {
  background-color: var(--bg-cream);
}

.section--purple-light {
  background-color: var(--purple-xlight);
}

.section--purple {
  background-color: var(--purple);
  color: #FFFFFF;
}

.section--purple h2,
.section--purple h3 {
  color: #FFFFFF;
}

.section--purple p {
  color: rgba(255, 255, 255, 0.9);
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background-color: var(--green);
  color: #FFFFFF;
  border-color: var(--green);
}

.btn--primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #FFFFFF;
}

.btn--secondary {
  background-color: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn--secondary:hover {
  background-color: var(--purple);
  color: #FFFFFF;
}

.btn--white {
  background-color: #FFFFFF;
  color: var(--purple);
  border-color: #FFFFFF;
}

.btn--white:hover {
  background-color: var(--purple-xlight);
  border-color: var(--purple-xlight);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--lg {
  font-size: 1.0625rem;
  padding: 16px 32px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--phone {
  background-color: var(--purple);
  color: #FFFFFF;
  border-color: var(--purple);
  font-size: 0.9375rem;
  padding: 10px 22px;
}

.btn--phone:hover {
  background-color: var(--purple-dark);
  border-color: var(--purple-dark);
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   6. HEADER
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--purple);
  background-color: var(--purple-xlight);
}

.desktop-nav a.active {
  color: var(--purple);
  font-weight: 600;
  background-color: var(--purple-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------
   7. MOBILE NAV
   ------------------------------------------------------------ */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 38, 57, 0.4);
  z-index: 198;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 199;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--purple);
  background-color: var(--purple-xlight);
}

.mobile-nav .btn {
  margin-top: auto;
}

/* ------------------------------------------------------------
   8. HOMEPAGE HERO — Split layout
   ------------------------------------------------------------ */

.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  background-color: var(--bg-white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-content .section-label {
  margin-bottom: var(--space-sm);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-content p {
  font-size: 1.1875rem;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

/* ------------------------------------------------------------
   9. TRUST / FEATURE BAR
   ------------------------------------------------------------ */

.trust-bar {
  background-color: var(--purple);
  padding: var(--space-md) 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ------------------------------------------------------------
   10. "WHY CHOOSE" SECTION
   ------------------------------------------------------------ */

.why-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-card {
  padding: var(--space-lg);
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card svg {
  color: var(--purple);
  margin-bottom: var(--space-sm);
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   11. SERVICES GRID — Image cards (homepage + services hub)
   ------------------------------------------------------------ */

.services-header {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--green);
  margin-top: var(--space-sm);
  transition: gap var(--transition);
}

.service-card:hover .service-card__link {
  gap: 10px;
}

/* Services hub page — larger cards */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.services-hub-grid .service-card__img {
  height: 260px;
}

.services-hub-grid .service-card__body {
  padding: var(--space-lg);
}

.services-hub-grid .service-card__title {
  font-size: 1.5rem;
}

/* Homepage 4-column compact cards */
.services-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-compact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-compact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.service-compact-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-compact-card__body {
  padding: var(--space-sm) var(--space-md);
}

.service-compact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.service-compact-card .service-card__link {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ------------------------------------------------------------
   12. TESTIMONIAL SECTION
   ------------------------------------------------------------ */

.testimonial-section {
  padding: var(--space-2xl) 0;
  background-color: var(--purple-xlight);
}

.testimonial-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonial-video-layout {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-video-wrap {
  flex-shrink: 0;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  cursor: pointer;
}

.testimonial-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Play hint overlay — hides once video plays */
.testimonial-play-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to top, rgba(45,38,57,0.5) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-play-hint span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.testimonial-video-wrap.is-playing .testimonial-play-hint {
  opacity: 0;
}

.testimonial-video-content {
  flex: 1;
  padding: var(--space-lg) 0;
}

.testimonial-pullquote {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
}

.testimonial-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -1.25rem;
  left: -0.25rem;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--purple-mid);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-pullquote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
}

.testimonial-author {
  font-weight: 600;
  color: var(--purple);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: var(--text-mid);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .testimonial-video-layout {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-video-wrap {
    width: 100%;
    max-width: 340px;
  }

  .testimonial-video-content {
    padding: 0;
  }

  .testimonial-pullquote {
    padding-left: 0;
  }

  .testimonial-pullquote::before {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: -1.5rem;
  }

  .testimonial-pullquote p {
    font-size: 1.25rem;
  }
}

/* ------------------------------------------------------------
   13. CTA BANNER
   ------------------------------------------------------------ */

.cta-banner {
  background-color: var(--purple);
  padding: var(--space-xl) 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-inner h2 {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   14. PAGE HEADER — Inner pages
   ------------------------------------------------------------ */

.page-header {
  background-color: var(--purple-light);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.breadcrumb a {
  color: var(--purple);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--text-light);
}

/* ------------------------------------------------------------
   15. SERVICE SUB-PAGES
   ------------------------------------------------------------ */

/* Service hero with image */
.service-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: var(--purple-light);
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(91, 45, 142, 0.15), rgba(91, 45, 142, 0.4));
}

.service-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-lg) 0;
}

.service-hero-content .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.service-hero-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.service-hero-content .breadcrumb svg {
  color: rgba(255, 255, 255, 0.6);
}

.service-hero-content h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-hero-content .service-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* Service body */
.service-body {
  padding: var(--space-2xl) 0;
}

.service-body .container {
  max-width: var(--container-narrow);
}

.service-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
}

/* Info cards — "Who Is This For?" / "What to Expect" */
.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
}

/* Service page CTA */
.service-cta {
  background-color: var(--purple);
  border-radius: 12px;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.service-cta h2 {
  color: #FFFFFF;
  font-size: 1.75rem;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.service-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Related services */
.related-services {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-cream);
}

.related-services h2 {
  margin-bottom: var(--space-lg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.related-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: var(--space-md);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.related-card svg {
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.related-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.related-card .service-card__link {
  font-size: 0.8125rem;
}

/* ------------------------------------------------------------
   16. ABOUT PAGE
   ------------------------------------------------------------ */

.about-founder {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-founder-img {
  border-radius: 12px;
  overflow: hidden;
}

.about-founder-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-founder-text h2 {
  margin-bottom: var(--space-md);
}

.about-founder-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.value-card svg {
  color: var(--purple);
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Differentiators */
.diff-list {
  max-width: var(--container-narrow);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.diff-item {
  display: flex;
  gap: var(--space-md);
}

.diff-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.diff-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1875rem;
}

.diff-item p {
  color: var(--text-mid);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   17. CONTACT PAGE
   ------------------------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: var(--space-md);
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--purple);
  margin-top: 3px;
}

.contact-detail a {
  color: var(--text-body);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--purple);
}

.contact-areas h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: var(--space-md);
}

.contact-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-areas li {
  background: var(--purple-xlight);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.contact-hours {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.contact-hours h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91, 45, 142, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}

.form-message.success {
  background-color: var(--green-light);
  color: var(--green-dark);
}

.form-message.error {
  background-color: #FDF0F0;
  color: #A63D3D;
}

/* ------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------ */

.site-footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  text-decoration: none;
}

.footer-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #FFFFFF;
}

.footer-logo-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-about {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social:hover {
  color: #FFFFFF;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #FFFFFF;
}

.footer-areas {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-areas strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer form */
.footer-form .form-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.footer-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form .form-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.footer-form .form-label {
  color: rgba(255, 255, 255, 0.7);
}

.footer-form .btn--primary {
  background-color: var(--green);
  border-color: var(--green);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   19. FLOATING CTA
   ------------------------------------------------------------ */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: var(--green);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(75, 123, 58, 0.35);
  text-decoration: none;
  z-index: 90;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), background-color var(--transition);
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  background-color: var(--green-dark);
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   20. SCROLL REVEAL
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.35s; }
.reveal-group .reveal:nth-child(7) { transition-delay: 0.42s; }
.reveal-group .reveal:nth-child(8) { transition-delay: 0.49s; }

/* ------------------------------------------------------------
   21. RESPONSIVE
   ------------------------------------------------------------ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-media img {
    height: 360px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .about-founder {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .btn--phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: var(--space-lg) 0;
  }

  .hero-media img {
    height: 280px;
    border-radius: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .trust-item span {
    font-size: 0.8125rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

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

  .services-grid,
  .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .services-compact {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .service-hero {
    height: 240px;
  }

  .service-cta {
    padding: var(--space-md);
  }

  .service-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .diff-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .diff-number {
    width: auto;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .services-compact {
    grid-template-columns: 1fr;
  }

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

  .floating-cta span {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ------------------------------------------------------------
   21. CARE QUIZ (assessment.html)
   ------------------------------------------------------------ */

.quiz-container {
  max-width: 720px;
}

/* Progress */
.quiz-progress {
  margin-bottom: var(--space-md);
}

.quiz-progress-bar {
  height: 8px;
  background: var(--purple-light);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress-bar span {
  display: block;
  height: 100%;
  background: var(--purple);
  border-radius: 999px;
  transition: width 0.35s var(--ease-out);
}

.quiz-progress-label {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

/* Question card */
.quiz-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.quiz-question {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  color: var(--text-dark);
}

.quiz-help {
  margin-top: 0.5rem;
  color: var(--text-mid);
  font-size: 0.9375rem;
}

/* Options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--space-md) 0;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-body);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.quiz-option:hover {
  border-color: var(--purple-mid);
  background: var(--purple-xlight);
}

.quiz-option-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color var(--transition), background-color var(--transition);
  position: relative;
}

.quiz-option.is-selected {
  border-color: var(--purple);
  background: var(--purple-light);
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: 0 0 0 3px rgba(91, 45, 142, 0.08);
}

.quiz-option.is-selected .quiz-option-check {
  border-color: var(--purple);
  background: var(--purple);
}

.quiz-option.is-selected .quiz-option-check::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
}

/* Back / Next */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.quiz-nav .btn {
  min-width: 120px;
}

.quiz-nav .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Result card */
.quiz-result {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 6px solid var(--purple);
  border-radius: 16px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.quiz-result--low { border-top-color: var(--green); }
.quiz-result--moderate { border-top-color: var(--purple); }
.quiz-result--high { border-top-color: #B8472F; }

.quiz-result-tier {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: var(--purple-light);
  padding: 5px 12px;
  border-radius: 999px;
}

.quiz-result--low .quiz-result-tier { color: var(--green-dark); background: var(--green-light); }
.quiz-result--high .quiz-result-tier { color: #B8472F; background: #FBEDE9; }

.quiz-result-headline {
  margin-top: var(--space-sm);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  color: var(--text-dark);
}

.quiz-result-body {
  margin-top: 0.75rem;
  color: var(--text-body);
  font-size: 1.0625rem;
}

.quiz-result-score {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
  color: var(--text-mid);
  font-size: 0.9375rem;
}

.quiz-result-score strong {
  color: var(--purple);
}

/* Lead capture form inside result */
.quiz-lead-form {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--purple-xlight);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.quiz-lead-form h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.quiz-lead-intro {
  margin: 0.35rem 0 var(--space-sm);
  color: var(--text-mid);
  font-size: 0.9375rem;
}

.quiz-restart {
  display: inline-block;
  margin-top: var(--space-md);
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--transition);
}

.quiz-restart:hover {
  color: var(--purple);
}

.quiz-reassure {
  margin-top: var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

.quiz-noscript {
  color: var(--text-body);
  font-size: 1.0625rem;
}

/* Homepage / cross-page quiz CTA band */
.quiz-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.quiz-cta-text {
  max-width: 640px;
}

.quiz-cta-text h2 {
  margin-top: 0.5rem;
}

.quiz-cta-text p {
  margin-top: 0.5rem;
  color: var(--text-body);
}

.quiz-cta-inner .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .quiz-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .quiz-card,
  .quiz-result {
    padding: var(--space-md);
  }

  .quiz-nav {
    flex-direction: column-reverse;
  }

  .quiz-nav .btn {
    width: 100%;
  }
}
