/*
 * Alternative Mediations — Design System
 * Sister brand to CoParent Hub | alternativemediations.com.au
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand — derived from Alternative Mediations logo */
  --purple:        #7C2AB0;
  --purple-dark:   #5C1E88;
  --purple-mid:    #9B4DCA;
  --purple-light:  #C084E0;
  --navy:          #1A1464;
  --navy-mid:      #2A2080;
  --navy-light:    #3B34A8;
  --magenta:       #C21896;

  /* Tints */
  --purple-tint-1: #F6EFF9;
  --purple-tint-2: #EDD9F5;
  --navy-tint:     #ECEAF8;
  --white:         #FFFFFF;
  --off-white:     #FAF8FC;

  /* Text */
  --text-dark:       #1A1A2E;
  --text-mid:        #4A4469;
  --text-soft:       #7A749A;
  --on-dark:         #FFFFFF;
  --on-dark-muted:   rgba(255,255,255,0.75);
  --on-dark-subtle:  rgba(255,255,255,0.50);

  /* Borders & Shadows */
  --border:       #E5D9F2;
  --border-light: #F0EBF7;
  --shadow-xs:    0 1px 4px rgba(124,42,176,0.05);
  --shadow-sm:    0 2px 12px rgba(124,42,176,0.07);
  --shadow:       0 4px 24px rgba(124,42,176,0.11);
  --shadow-lg:    0 8px 48px rgba(124,42,176,0.16);
  --shadow-hover: 0 12px 48px rgba(124,42,176,0.22);

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #1A1464 0%, #3A1880 45%, #7C2AB0 100%);
  --grad-accent:  linear-gradient(135deg, #7C2AB0 0%, #C21896 100%);
  --grad-subtle:  linear-gradient(160deg, #FAF8FC 0%, #F0E8F7 100%);
  --grad-tint:    linear-gradient(180deg, #F6EFF9 0%, #FFFFFF 100%);

  /* Spacing */
  --container:   1200px;
  --section-v:   96px;
  --section-v-sm: 64px;
  --gap:         32px;
  --gap-sm:      20px;

  /* Radius */
  --r-sm:  8px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 100px;

  /* Typography */
  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Motion */
  --ease: 0.25s ease;
  --ease-slow: 0.45s ease;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 700; }

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

strong { font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: var(--section-v) 0; }
.section--sm   { padding: var(--section-v-sm) 0; }
.section--tint { background: var(--purple-tint-1); }
.section--off  { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--on-dark); }
.section--grad { background: var(--grad-hero); color: var(--on-dark); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.section--dark .section__tag,
.section--grad .section__tag { color: var(--purple-light); }

.section--dark h2,
.section--grad h2 { color: var(--white); }
.section--dark .section__subtext,
.section--grad .section__subtext { color: var(--on-dark-muted); }

.section__subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 8px;
}

.divider {
  width: 44px;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 4px;
  margin: 0 auto 20px;
}
.divider--left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.84rem; }

.btn--primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(124,42,176,0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,42,176,0.38);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn--outline:hover { background: var(--purple); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--purple);
  padding: 10px 0;
  font-size: 0.875rem;
  gap: 6px;
}
.btn--ghost:hover { color: var(--purple-dark); gap: 10px; }
.btn--ghost::after { content: '→'; }

.btn--white {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(26,20,100,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 112px;
  gap: 40px;
}
.nav__logo img { height: 90px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all var(--ease);
}
.nav__links > li > a:hover,
.nav__links > li > a.active {
  color: var(--purple);
  background: var(--purple-tint-1);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  min-width: 270px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--ease);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all var(--ease);
}
.dropdown li a:hover { background: var(--purple-tint-1); color: var(--purple); }

.nav__cta { margin-left: auto; flex-shrink: 0; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}

/* Mobile panel */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  padding: 0 0 40px;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }

/* Branded mobile menu header: logo left, close right */
.nav-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.nav-mobile__brand-logo {
  height: 68px;
  width: auto;
  display: block;
}
.nav-mobile__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-tint-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple);
  flex-shrink: 0;
}
/* When inside header flex row, remove legacy absolute positioning */
.nav-mobile__header .nav-mobile__close {
  position: static;
}
.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  margin-bottom: 24px;
  padding: 12px 24px 0;
}
.nav-mobile__links a {
  padding: 13px 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  display: block;
  transition: all var(--ease);
}
.nav-mobile__links a:hover { background: var(--purple-tint-1); color: var(--purple); }

.nav-mobile__sub {
  padding-left: 16px;
  border-left: 2px solid var(--border);
  margin: 2px 0 2px 12px;
}
.nav-mobile__sub a {
  font-size: 0.9rem !important;
  padding: 9px 14px !important;
  color: var(--text-mid) !important;
}
.nav-mobile__cta { padding: 0 24px; }
.nav-mobile__cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--grad-hero);
  padding: 116px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194,24,150,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.90);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.hero__heading {
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__heading em {
  font-style: normal;
  background: linear-gradient(90deg, #E080FF, #FF79C6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.70);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--purple-light); flex-shrink: 0; }

/* ============================================================
   INTRO TRUST SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.trust-body .section__tag { display: block; text-align: left; }
.trust-body h2 { margin-bottom: 16px; }
.trust-body .section__subtext { margin-bottom: 32px; }

.trust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.trust-pillar {
  background: var(--purple-tint-1);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-pillar__icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  box-shadow: var(--shadow-xs);
}
.trust-pillar__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.trust-pillar__desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

.trust-visual {
  background: var(--grad-subtle);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  position: relative;
}
.trust-visual__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.trust-visual__card:last-child { margin-bottom: 0; }
.trust-visual__card-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.trust-visual__card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.trust-visual__card-text span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ============================================================
   SERVICES GRID (5-card, 3+2 layout)
   ============================================================ */
.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.services-grid-5 .service-card { grid-column: span 2; }
.services-grid-5 .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid-5 .service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--purple-tint-2);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--purple-tint-1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card__text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--purple);
  transition: gap var(--ease);
}
.service-card__link:hover { gap: 10px; color: var(--purple-dark); }
.service-card__link::after { content: '→'; }

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124,42,176,0.30);
}
.step__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step__text {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   WHO WE HELP
   ============================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all var(--ease);
}
.help-card:hover { box-shadow: var(--shadow); border-color: var(--purple-tint-2); transform: translateY(-2px); }
.help-card__icon {
  width: 44px;
  height: 44px;
  background: var(--purple-tint-1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 16px;
}
.help-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.help-card__text {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.why-item {
  display: flex;
  gap: 18px;
}
.why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}
.why-item__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item__text {
  font-size: 0.84rem;
  color: var(--on-dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.testimonial-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--purple-tint-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--purple);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}
.testimonial-card__detail { font-size: 0.78rem; color: var(--text-soft); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.active { border-color: var(--purple-tint-2); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
  user-select: none;
}
.faq-question:hover { color: var(--purple); }
.faq-item.active .faq-question { color: var(--purple); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-tint-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: all var(--ease);
}
.faq-item.active .faq-toggle {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-item.active .faq-answer { max-height: 1200px; padding-bottom: 22px; }
.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   OFFICES GRID
   ============================================================ */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.office-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple-tint-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.office-card__state {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-top: 4px;
}
.office-card__address {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 500;
}
@media (max-width: 768px) {
  .offices-grid { grid-template-columns: 1fr; }
}

/* Footer phone link */
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-top: 4px;
  transition: color var(--ease);
}
.footer__phone:hover { color: var(--white); }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad-accent);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.83);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--on-dark-muted);
  padding: 72px 0 32px;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.footer__logo { margin-bottom: 22px; }
.footer__logo img {
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copyright { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer__disclaimer {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.30);
  max-width: 640px;
  line-height: 1.55;
  text-align: right;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194,24,150,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero__tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); max-width: 720px; margin-bottom: 18px; }
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 30px;
}

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.service-detail-main h3 { margin-bottom: 16px; color: var(--navy); }
.service-detail-main p { font-size: 0.95rem; color: var(--text-mid); }

.issues-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.issue-item__dot {
  width: 8px;
  height: 8px;
  background: var(--grad-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.service-process { display: flex; flex-direction: column; gap: 18px; margin-top: 16px; }
.process-step { display: flex; gap: 14px; }
.process-step__num {
  width: 30px;
  height: 30px;
  background: var(--grad-accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.process-step__title { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
.process-step__text { font-size: 0.84rem; color: var(--text-soft); margin: 0; }

.service-detail-sidebar {}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.sidebar-card--accent {
  background: var(--grad-accent);
  border: none;
  color: var(--white);
}
.sidebar-card--accent h4 { color: var(--white); margin-bottom: 12px; }
.sidebar-card--accent p { color: rgba(255,255,255,0.82); font-size: 0.875rem; margin-bottom: 20px; }
.sidebar-card--accent .btn--white { width: 100%; }
.sidebar-card h4 { color: var(--navy); margin-bottom: 16px; font-size: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 9px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease);
  border: 1px solid transparent;
}
.sidebar-links a:hover {
  background: var(--purple-tint-1);
  color: var(--purple);
  border-color: var(--border);
}
.sidebar-links a.active {
  background: var(--purple-tint-1);
  color: var(--purple);
  font-weight: 600;
}
.sidebar-links a::before { content: '›'; color: var(--purple); font-size: 1.1rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form .form-intro { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,42,176,0.07);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-disclaimer { font-size: 0.78rem; color: var(--text-soft); margin-top: 12px; line-height: 1.5; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  gap: 16px;
}
.contact-info-card__icon {
  width: 42px;
  height: 42px;
  background: var(--purple-tint-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-info-card__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.contact-info-card__value { font-size: 0.95rem; color: var(--navy); font-weight: 500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  background: var(--purple-tint-1);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  text-align: center;
}
.about-visual__graphic { font-size: 4.5rem; margin-bottom: 24px; }
.about-visual__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  font-style: italic;
}
.about-visual__author {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-style: normal;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--ease);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.value-card__icon svg { display: block; margin: 0 auto; }
.value-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}
.value-card__text { font-size: 0.84rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ============================================================
   HOW IT WORKS PAGE — EXTENDED
   ============================================================ */
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-step:last-child::after { display: none; }
.timeline-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124,42,176,0.28);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-step__content { padding-top: 14px; }
.timeline-step__title { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.timeline-step__text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-purple  { color: var(--purple); }
.text-navy    { color: var(--navy); }
.text-soft    { color: var(--text-soft); }
.fw-700       { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-center { justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap      { flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE GRID UTILITIES
   ============================================================ */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-5 .service-card,
  .services-grid-5 .service-card:nth-child(4),
  .services-grid-5 .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .service-detail-sidebar .sidebar-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --section-v: 72px; }
  .trust-grid,
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-visual { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-sidebar { display: block; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; --section-v-sm: 40px; --gap: 18px; }

  .grid-2-col,
  .grid-3-col { grid-template-columns: 1fr; gap: 28px; }

  .timeline-step {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding-bottom: 32px;
  }
  .timeline-step__num { width: 52px; height: 52px; font-size: 1.1rem; }
  .timeline-step::after { left: 25px; top: 52px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 72px 0 56px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 16px; }
  .services-grid-5 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .help-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-pillars { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .footer__disclaimer { text-align: left; }
  .section__header { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 340px; }
}

/* ============================================================
   PREMIUM OVERRIDES & NEW COMPONENTS
   ============================================================ */

/* ── Hero: base override (non-split pages) ── */
.hero {
  padding: 128px 0 104px;
  text-align: center;
}
.hero__content { max-width: none; }

.hero__body {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Hero: split layout with photo ── */
.hero--split {
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  align-items: stretch;
}
.hero--split .hero__body {
  max-width: none;
  margin: 0;
}
.hero__split-left {
  padding: 100px clamp(24px, 5vw, 80px) 80px clamp(24px, calc((100vw - 1200px) / 2 + 24px), 80px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__split-right {
  position: relative;
  overflow: hidden;
}
.hero__split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% top;
  display: block;
}
.hero__split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(90deg, #1A1464 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 320px;
    min-height: auto;
  }
  .hero__split-left {
    padding: 72px 24px 56px;
    order: 1;
  }
  .hero__split-right {
    order: 0;
  }
  .hero__split-right::before {
    width: 0;
    background: none;
  }
  .hero--split .hero__body { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero--split .hero__actions { justify-content: center; }
  .hero--split .hero__trust { justify-content: center; }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 30px;
}

.hero__heading {
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__heading em {
  font-style: normal;
  background: linear-gradient(92deg, #D880FF 0%, #FF70C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__text {
  font-size: 1.13rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  margin-top: 0;
  flex-wrap: wrap;
}
.hero__trust-item {
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}
.hero__trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.20);
}

/* btn variant for hero */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.38);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-item__icon {
  width: 44px; height: 44px;
  background: rgba(124,42,176,0.24);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); flex-shrink: 0;
}
.stat-item__val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.46);
}

/* ── Positioning / Trust Intro ── */
.positioning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.positioning__text .section__tag { text-align: left; display: block; margin-bottom: 14px; }
.positioning__text h2 { margin-bottom: 20px; }
.positioning__text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.positioning__pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--purple-tint-1);
  border-radius: var(--r);
}
.pillar__icon {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.pillar__label {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.88rem;
  color: var(--navy); margin-bottom: 2px;
}
.pillar__desc { font-size: 0.8rem; color: var(--text-soft); margin: 0; line-height: 1.5; }

.positioning__visual {
  background: var(--purple-tint-1);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.pos-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.pos-card:last-child { margin-bottom: 0; }
.pos-card__icon {
  width: 44px; height: 44px;
  background: var(--grad-accent);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.pos-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 3px;
}
.pos-card span { font-size: 0.8rem; color: var(--text-soft); }

/* ── Featured Service Card + Grid ── */
.service-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.service-featured:hover { box-shadow: var(--shadow-lg); }
.service-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
}
.service-featured__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 14px;
}
.service-featured h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.7rem; }
.service-featured__body > p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 10px; }
.service-featured__body > p:last-of-type { margin-bottom: 28px; }

.service-featured__panel {
  background: var(--purple-tint-1);
  border-radius: var(--r-lg);
  padding: 32px;
}
.service-featured__panel h4 { color: var(--navy); margin-bottom: 18px; font-size: 0.92rem; }
.sf-list { display: flex; flex-direction: column; gap: 10px; }
.sf-list__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-mid);
}
.sf-list__item::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--grad-accent);
  border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}

/* ── services.html service-featured class aliases (missing from original CSS) ── */
.service-featured__desc {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 10px;
}
.service-featured__points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}
.service-featured__points li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.service-featured__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--grad-accent);
  border-radius: 50%;
}
.service-featured__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-tint-1);
  border-radius: var(--r-lg);
  padding: 40px;
  min-height: 200px;
}
.service-featured__icon {
  font-size: 5rem;
  line-height: 1;
  text-align: center;
  display: block;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Improved service card (homepage + inner pages) */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 14px 52px rgba(124,42,176,0.15);
  transform: translateY(-5px);
  border-color: var(--purple-tint-2);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--grad-accent);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124,42,176,0.28);
}
.service-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.service-card__text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin: 0; }
.service-card__desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin: 0; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.84rem; font-weight: 700;
  color: var(--purple); transition: gap 0.2s ease;
}
.service-card__link::after { content: '→'; }
.service-card__link:hover { gap: 10px; color: var(--purple-dark); }

/* ── When Mediation Helps (dark) ── */
.helps-section { background: var(--navy); }
.helps-section .section__tag { color: var(--purple-light); }
.helps-section h2 { color: var(--white); }
.helps-section .section__subtext { color: var(--on-dark-muted); }

.helps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 52px;
}
.helps-item {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.helps-item:nth-child(3n) { border-right: none; }
.helps-item:nth-child(4),
.helps-item:nth-child(5),
.helps-item:nth-child(6) { border-bottom: none; }
.helps-item__num {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  color: rgba(255,255,255,0.07); line-height: 1;
}
.helps-item h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; }
.helps-item p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* ── 5-Step Process ── */
.process-steps-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-steps-5::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-step-5__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: white;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(124,42,176,0.30);
  position: relative; z-index: 1;
}
.process-step-5__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.88rem; color: var(--navy); margin-bottom: 6px;
}
.process-step-5__text { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── Who We Help ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--ease);
}
.who-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--purple-tint-2); }
.who-card__label {
  font-family: var(--font-heading);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 10px;
}
.who-card h4 { color: var(--navy); margin-bottom: 10px; font-size: 0.98rem; }
.who-card p { font-size: 0.84rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── Why Choose (white section) ── */
.why-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 52px;
}
.why-clean-item { display: flex; gap: 18px; align-items: flex-start; }
.why-clean-item__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--purple-tint-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}
.why-clean-item__title {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--navy); font-size: 0.93rem; margin-bottom: 6px;
}
.why-clean-item__text { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── Premium Testimonials ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 26px;
  transition: all var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card__quote {
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 0.8;
  color: var(--purple-tint-2);
  margin-bottom: 14px;
  display: block;
}
.testimonial-card__stars {
  color: #F59E0B; font-size: 0.88rem;
  letter-spacing: 2px; margin-bottom: 14px; display: block;
}
.testimonial-card__text {
  font-size: 0.895rem; color: var(--text-mid);
  line-height: 1.75; font-style: italic; margin-bottom: 24px;
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ── 3-service grid ── */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card--lg {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card--lg .service-card__title {
  margin-bottom: 12px;
}
.service-card--lg .service-card__text {
  margin-bottom: 16px;
}
.service-card--lg .btn {
  margin-top: auto;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ── Who grid 3-col ── */
.who-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.who-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}
.who-card__link:hover { color: var(--purple-dark); }

/* ── Nav — 5 items, comfortable spacing ── */
.nav__links > li > a {
  padding: 10px 20px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

/* ── Nav chevron ── */
.nav__chevron {
  transition: transform var(--ease);
  color: currentColor;
  opacity: 0.55;
  vertical-align: middle;
  margin-left: 2px;
}
.has-dropdown:hover .nav__chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ============================================================
   MEGA MENU DROPDOWN
   ============================================================ */
.dropdown--mega {
  min-width: 620px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  left: 0;
  gap: 0;
}
.dropdown--mega .dropdown__group {
  flex: 1;
  padding: 0 14px;
  border-right: 1px solid var(--border-light);
}
.dropdown--mega .dropdown__group:first-child { padding-left: 6px; }
.dropdown--mega .dropdown__group:last-child { border-right: none; padding-right: 6px; }
.dropdown__group-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}
.dropdown--mega ul { list-style: none; margin: 0; padding: 0; }
.dropdown--mega li { list-style: none; }
.dropdown--mega .dropdown__group > ul > li > a {
  display: block;
  padding: 8px 10px;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1.3;
  background: none;
}
.dropdown--mega .dropdown__group > ul > li > a:hover {
  background: var(--purple-tint-1);
  color: var(--purple);
}

/* ============================================================
   MOBILE NAV — SERVICES ACCORDION
   ============================================================ */
.nav-mobile__section {
  display: flex;
  flex-direction: column;
}
.nav-mobile__section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--ease);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
.nav-mobile__section-toggle:hover {
  background: var(--purple-tint-1);
  color: var(--purple);
}
.nav-mobile__section-toggle.open {
  background: var(--purple-tint-1);
  color: var(--purple);
}
.nav-mobile__section-chevron {
  transition: transform var(--ease);
  flex-shrink: 0;
  opacity: 0.55;
}
.nav-mobile__section-toggle.open .nav-mobile__section-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}
.nav-mobile__section-items {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0 10px 20px;
  border-left: 2px solid var(--border);
  margin: 0 0 4px 20px;
}
.nav-mobile__section-items.open { display: flex; }
.nav-mobile__service-group-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 8px 12px 2px;
  pointer-events: none;
  display: block;
}
.nav-mobile__section-items > a {
  padding: 9px 12px !important;
  font-size: 0.895rem !important;
  font-weight: 500 !important;
  color: var(--text-mid) !important;
  display: block;
  border-radius: 6px;
  transition: all var(--ease);
}
.nav-mobile__section-items > a:hover {
  background: var(--purple-tint-1) !important;
  color: var(--purple) !important;
}

/* ============================================================
   HOMEPAGE — SERVICE GROUP LAYOUT
   ============================================================ */
.service-group + .service-group {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border-light);
}
.service-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.service-group__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad-accent);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.service-group__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.3;
}
.service-group .services-grid-3 { margin-top: 20px; }
.service-group .service-featured { margin-bottom: 0; }

/* ============================================================
   SIDEBAR — GROUP LABELS
   ============================================================ */
.sidebar-group-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 10px 12px 2px;
  display: block;
}

/* ============================================================
   FOOTER — 5-COLUMN EXPANDED
   ============================================================ */
.footer__main {
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1fr 0.85fr;
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1100px) {
  .dropdown--mega { display: none; }
}
@media (max-width: 960px) {
  .service-group + .service-group { margin-top: 48px; padding-top: 48px; }
  .footer__main { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .service-group + .service-group { margin-top: 36px; padding-top: 36px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr; }
}

/* ── Responsive for new components ── */
@media (max-width: 1100px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 1100px) {
  .service-featured { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .service-featured__panel,
  .service-featured__visual { display: none; }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .who-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .positioning__inner { grid-template-columns: 1fr; gap: 48px; }
  .positioning__visual { display: none; }
  .process-steps-5 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps-5::before { display: none; }
  .helps-grid { grid-template-columns: repeat(2, 1fr); }
  .helps-item:nth-child(2n) { border-right: none; }
  .helps-item:nth-child(3),
  .helps-item:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .helps-item:nth-child(5),
  .helps-item:nth-child(6) { border-bottom: none; }
  .why-clean-grid { grid-template-columns: 1fr; gap: 20px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 768px) {
  .hero { padding: 80px 0 64px; }
  .hero__trust { flex-direction: column; gap: 14px; }
  .hero__trust-sep { display: none; }
  .hero__trust-item { padding: 0; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .who-grid--3 { grid-template-columns: 1fr; }
  .process-steps-5 { grid-template-columns: 1fr; }
  .helps-grid { grid-template-columns: 1fr; }
  .helps-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .helps-item:last-child { border-bottom: none !important; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 10px; gap: 10px; }
  .stat-item__icon { width: 36px; height: 36px; border-radius: 9px; }
  .stat-item__val { font-size: 1rem; white-space: nowrap; }
  .service-featured { padding: 28px; }
}

/* ============================================================
   TEAM PROFILE (about page leadership)
   ============================================================ */
.team-profile {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 900px;
}
.team-profile__avatar {
  flex-shrink: 0;
  width: 160px;
  height: 200px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-profile__avatar--photo {
  background: none;
}
.team-profile__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-profile__initials {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: white;
  line-height: 1;
}
.team-profile__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-profile__role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
.team-profile__body p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.975rem;
}
.team-profile__body p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .team-profile { flex-direction: column; gap: 24px; }
  .team-profile__avatar { width: 100%; height: 260px; border-radius: 12px; }
  .team-profile__initials { font-size: 1.4rem; }
}

/* ============================================================
   BLOG — listing + article
   ============================================================ */

/* LEGAL CONTENT */
.legal-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.legal-content h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.legal-content h3:first-of-type { margin-top: 32px; }
.legal-content ul { margin: 0 0 16px 0; padding-left: 20px; }
.legal-content ul li { color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.legal-content a { color: var(--purple); font-weight: 600; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--text-soft);
}
.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card__link:hover { color: var(--purple-dark); }

/* Blog article page */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-article__category {
  background: var(--purple-tint-1);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.blog-article__date {
  font-size: 0.82rem;
  color: var(--text-soft);
}
.blog-article__read-time {
  font-size: 0.82rem;
  color: var(--text-soft);
}
.blog-article h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin: 40px 0 16px;
  color: var(--navy);
}
.blog-article h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 32px 0 12px;
  color: var(--navy);
}
.blog-article p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.blog-article ul, .blog-article ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.blog-article li {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 1rem;
}
.blog-article strong { color: var(--text-dark); }
.blog-article .callout {
  background: var(--purple-tint-1);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.blog-article .callout p { margin-bottom: 0; font-size: 0.9rem; }
.blog-article__cta {
  background: var(--purple-tint-1);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-top: 56px;
  text-align: center;
}
.blog-article__cta h4 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.blog-article__cta p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.blog-sidebar {
  position: sticky;
  top: 96px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.blog-sidebar-card {
  background: var(--purple-tint-1);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 24px;
}
.blog-sidebar-card h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.blog-sidebar-card a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.4;
}
.blog-sidebar-card a:last-child { border-bottom: none; }
.blog-sidebar-card a:hover { color: var(--purple); }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; gap: 48px; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-article__cta { padding: 24px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
}
