/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0b1e3d;
  --navy-800: #102a50;
  --navy-700: #1a3869;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-50: #ecfdf5;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --red-500: #ef4444;
  --amber-500: #f59e0b;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);

  --container: 1180px;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.1; color: var(--navy-900); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.03; }
h2 { font-size: clamp(1.75rem, 3.75vw, 2.75rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .sparkle { opacity: 0.7 !important; animation: none !important; }
  .hero-mesh::before,
  .hero-mesh::after { animation: none !important; }
  .site-header { position: static; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--emerald-600);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(5,150,105,0.25);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-primary:hover {
  background: var(--emerald-500);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(5,150,105,0.35);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--slate-300);
}
.btn-secondary:hover {
  border-color: var(--navy-700);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.1rem;
  letter-spacing: -0.018em;
}
.logo:hover { text-decoration: none; }
.logo__icon {
  width: 26px;
  height: 26px;
  color: var(--emerald-500);
  flex-shrink: 0;
  animation: sparkle-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(16,185,129,0.25));
}
@keyframes sparkle-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.12) rotate(8deg); opacity: 0.85; }
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--navy-900);
  text-decoration: none;
}
.nav .nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-900);
  font-weight: 700;
}
.nav__cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
}
.nav__cta:hover {
  background: var(--navy-800);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: all .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
  .nav__cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 112px 0 128px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-mesh::before,
.hero-mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-mesh::before {
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(16,185,129,0.55) 0%, transparent 65%);
  top: -280px;
  right: -160px;
  animation: mesh-drift-1 22s ease-in-out infinite;
}
.hero-mesh::after {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, transparent 65%);
  bottom: -200px;
  left: 5%;
  animation: mesh-drift-2 28s ease-in-out infinite;
}
@keyframes mesh-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-70px, 60px) scale(1.15); }
}
@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(80px, -60px) scale(1.12); }
}
.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px rgba(255,255,255,0.9), 0 0 12px rgba(16,185,129,0.5);
  animation: sparkle-twinkle 4s ease-in-out infinite;
}
.sparkle--lg { width: 5px; height: 5px; }
.sparkle:nth-child(1)  { top: 18%; left: 8%;  animation-delay: 0s;   }
.sparkle:nth-child(2)  { top: 32%; left: 22%; animation-delay: 0.7s; }
.sparkle:nth-child(3)  { top: 68%; left: 12%; animation-delay: 1.4s; }
.sparkle:nth-child(4)  { top: 52%; left: 30%; animation-delay: 2.1s; }
.sparkle:nth-child(5)  { top: 12%; left: 38%; animation-delay: 2.8s; }
.sparkle:nth-child(6)  { top: 78%; left: 24%; animation-delay: 0.4s; }
.sparkle:nth-child(7)  { top: 42%; left: 6%;  animation-delay: 1.1s; }
.sparkle:nth-child(8)  { top: 22%; left: 45%; animation-delay: 3.2s; }
.sparkle:nth-child(9)  { top: 62%; left: 40%; animation-delay: 1.8s; }
.sparkle:nth-child(10) { top: 88%; left: 8%;  animation-delay: 2.5s; }
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 1; transform: scale(1); }
}
.hero__inner {
  position: relative;
  max-width: 780px;
  z-index: 2;
}
.hero h1 { color: var(--white); }
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--emerald-500);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero__sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin: 12px 0 32px;
  max-width: 620px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
}
.trust-bar__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-bar__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.trust-bar__list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--emerald-50);
  color: var(--emerald-600);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.trust-bar__list ul {
  padding: 0;
  margin: 0;
  display: contents;
}

/* ---------- Sections ---------- */
.section {
  padding: 112px 0;
}
@media (max-width: 760px) { .section { padding: 72px 0; } }
.section--alt {
  background: var(--slate-50);
}
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--emerald-600);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__lead {
  color: var(--slate-700);
  font-size: 1.1rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(16,185,129,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--emerald-500);
  box-shadow: 0 20px 40px -12px rgba(15,23,42,0.12), 0 0 0 1px rgba(16,185,129,0.2);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--emerald-50);
  color: var(--emerald-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p {
  color: var(--slate-700);
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card__link {
  color: var(--emerald-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover { gap: 10px; text-decoration: none; }

/* ---------- Why us / features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature {
  text-align: left;
}
.feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.125rem; }
.feature p { color: var(--slate-700); }

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding-top: 24px;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--emerald-500);
  opacity: 0.3;
  line-height: 1;
}
.process__step h3 {
  margin-top: 12px;
  font-size: 1.125rem;
}
.process__step p { color: var(--slate-700); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--slate-200);
}
.faq__item:first-child { border-top: 1px solid var(--slate-200); }
.faq__q {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}
.faq__q:hover { color: var(--emerald-600); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--emerald-600);
  transition: transform .2s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a-inner {
  padding: 0 0 20px;
  color: var(--slate-700);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}
.cta-band__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.95rem; }
.site-footer__brand p { margin-top: 12px; max-width: 320px; font-size: 0.95rem; }
.site-footer__legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.site-footer__logo { color: var(--white); font-size: 1.1rem; font-weight: 800; }

/* ---------- Service page layout ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 72px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero__breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 12px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.bullets li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  color: var(--slate-700);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 12px;
  border-left: 3px solid var(--emerald-500);
  border-bottom: 3px solid var(--emerald-500);
  transform: rotate(-45deg);
}

.quote-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quote-card h3 { margin-bottom: 8px; }
.quote-card p { color: var(--slate-700); margin-bottom: 20px; }

/* ---------- Forms ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.field .req { color: var(--red-500); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--red-500);
}
.field__error {
  color: var(--red-500);
  font-size: 0.85rem;
  display: none;
}
.field--error .field__error { display: block; }
.form__submit {
  margin-top: 8px;
  align-self: flex-start;
}
.form__success {
  display: none;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-500);
  color: var(--emerald-600);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.form--submitted .form__success { display: block; }
.form--submitted .form__fields { display: none; }

/* ---------- Prose (for Privacy / Terms / About) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 48px;
  font-size: 1.5rem;
}
.prose h3 {
  margin-top: 32px;
  font-size: 1.15rem;
}
.prose p, .prose li {
  color: var(--slate-700);
}
.prose ul { padding-left: 20px; }
.prose ul li { margin-bottom: 8px; }

/* ---------- Hero split (home hero with inline form) ---------- */
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 100%;
}
@media (max-width: 900px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; gap: 32px; }
}
.hero__form {
  background: var(--white);
  color: var(--slate-900);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__form h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--navy-900);
}
.hero__form p {
  color: var(--slate-700);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.hero__form .field input,
.hero__form .field select {
  padding: 10px 12px;
  font-size: 0.95rem;
}
.hero__form .field label {
  font-size: 0.85rem;
}
.hero__form .form { gap: 12px; }
.hero__form .form__row { gap: 12px; }
.hero__form .btn { width: 100%; }
.hero__form__footnote {
  color: var(--slate-500);
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
}

/* ---------- Sound familiar / archetypes ---------- */
.archetypes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.archetype {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--emerald-500);
  border-radius: var(--radius-md);
  padding: 28px;
}
.archetype__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald-600);
  margin-bottom: 10px;
}
.archetype h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.archetype p {
  color: var(--slate-700);
  margin-bottom: 14px;
}
.archetype__reply {
  font-size: 0.95rem;
  color: var(--navy-900);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--slate-200);
}

/* ---------- Frustrations (specific pains) ---------- */
.frustrations-wrap {
  background: var(--navy-900);
  color: var(--white);
  padding: 80px 0;
}
.frustrations-wrap h2 { color: var(--white); }
.frustrations-wrap .section__eyebrow { color: var(--emerald-500); }
.frustrations-wrap .section__lead { color: rgba(255,255,255,0.8); }
.frustrations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 760px) { .frustrations { grid-template-columns: 1fr; } }
.frustration {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.frustration__x {
  width: 24px;
  height: 24px;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}
.frustration__text {
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.frustration__text strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.frustration__fix {
  font-size: 0.88rem;
  color: var(--emerald-500);
  margin-top: 4px;
}

/* ---------- Nav dropdowns ---------- */
.nav__dropdown {
  position: relative;
  display: inline-block;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.nav__dropdown-trigger:hover {
  color: var(--navy-900);
  text-decoration: none;
}
.nav__dropdown-arrow {
  font-size: 0.7em;
  margin-top: 1px;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
  z-index: 60;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav__dropdown-menu a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--slate-900);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover {
  background: var(--emerald-50);
  color: var(--emerald-600);
  text-decoration: none;
}
@media (max-width: 900px) {
  .nav__dropdown { display: block; }
  .nav__dropdown-trigger {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
    width: 100%;
    font-weight: 600;
    color: var(--navy-900);
    justify-content: space-between;
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 6px 0 10px 16px;
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }
  .nav__dropdown-menu::before { display: none; }
  .nav__dropdown-menu a {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--slate-700);
  }
}

/* ---------- All services grid ---------- */
.all-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.all-services__item {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--slate-900);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .15s ease;
}
.all-services__item:hover {
  border-color: var(--emerald-500);
  background: var(--emerald-50);
  color: var(--navy-900);
  text-decoration: none;
  transform: translateY(-1px);
}
.all-services__item::before {
  content: "✓";
  color: var(--emerald-600);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Facility types ---------- */
.facilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.facility {
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
  transition: all .15s ease;
}
.facility:hover {
  border-color: var(--emerald-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.facility__icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* ---------- Big value statement ---------- */
.value-statement {
  padding: 96px 0;
  background: var(--slate-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.value-statement::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(16,185,129,0.06), transparent 60%);
  pointer-events: none;
}
.value-statement__quote {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  position: relative;
}
.value-statement__quote em {
  color: var(--emerald-600);
  font-style: normal;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.value-statement__quote em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: rgba(16,185,129,0.2);
  border-radius: 3px;
  z-index: -1;
}

/* ---------- Taglines ---------- */
.logo__tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate-500);
  margin-top: -2px;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) { .logo__tagline { display: none; } }

.hero__tagline {
  display: block;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--emerald-500);
  font-weight: 500;
  margin: 4px 0 20px;
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin: 6px 0 12px;
  font-size: 0.95rem;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
