﻿:root {
  --bg: #0f151b;
  --bg-elevated: rgba(20, 26, 33, 0.92);
  --ink: #f4ede3;
  --muted: #b8b0a1;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f26b2c;
  --accent-2: #2f8d72;
  --panel: #171e26;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@view-transition {
  navigation: auto;
}
body {
  margin: 0;
  color: var(--ink);
  overflow-x: clip;
  background:
    radial-gradient(
      circle at top left,
      rgba(242, 107, 44, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(47, 141, 114, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, #141b22 0%, var(--bg) 100%);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 340ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) {
  animation-name: talvi-slide-out;
}
::view-transition-new(root) {
  animation-name: talvi-slide-in;
}
@keyframes talvi-slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2.2%);
  }
}
@keyframes talvi-slide-in {
  from {
    transform: translateX(2.2%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: relative;
  z-index: 40;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px max(18px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #151a20;
  color: #f4ede3;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-note {
  color: var(--muted);
  font-size: 0.92rem;
  display: none;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a:hover {
  color: var(--ink);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}
.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.hero {
  position: relative;
  padding: 44px 0 18px;
}
.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(27, 34, 43, 0.98),
    rgba(18, 23, 29, 0.98)
  );
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 42px;
  height: min(760px, calc(100svh - 138px));
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 107, 44, 0.18),
    transparent 64%
  );
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 107, 44, 0.13);
  color: #ffbf9e;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 10ch;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
h3 {
  font-size: 1.18rem;
}
p {
  margin: 0 0 14px;
  color: var(--muted);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
  min-height: calc(100% - 48px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-right: 12px;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  max-width: 8ch;
  margin-bottom: 18px;
}
.hero-copy p {
  max-width: 44ch;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 36px rgba(31, 107, 79, 0.22);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 43, 75, 0.14);
  color: #16314a;
  box-shadow: 0 12px 24px rgba(16, 47, 84, 0.08);
}
.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(34, 43, 54, 0.9),
    rgba(22, 28, 35, 0.94)
  );
  border-radius: 22px;
  padding: 22px;
}
.hero-stage {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.86fr);
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(47, 141, 114, 0.28),
      transparent 22%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(242, 107, 44, 0.22),
      transparent 20%
    ),
    linear-gradient(155deg, rgba(34, 43, 54, 0.96), rgba(15, 21, 27, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px 20px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  transform: rotate(18deg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 240px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(47, 141, 114, 0.26),
    transparent 70%
  );
}
.stage-copy {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  z-index: 2;
  max-width: none;
  padding-right: 0;
  align-self: start;
}
.stage-copy strong {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  margin-bottom: 10px;
  max-width: 6ch;
}
.stage-copy-body {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 24ch;
  margin: 0 0 16px;
}
.stage-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
}
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--ink);
}
.stage-media-card {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  z-index: 2;
}
.stage-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.stage-pillars {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: 12px;
  z-index: 2;
}
.stage-pillar {
  min-height: 0;
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.stage-pillar strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.stage-pillar span {
  color: var(--muted);
  font-size: 0.92rem;
}
.selection-hero {
  height: auto;
  min-height: 0;
  padding: 34px;
}
.selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.82fr);
  gap: 20px;
  align-items: start;
}
.selection-copy h1 {
  max-width: 10ch;
  margin-bottom: 16px;
}
.selection-copy p {
  max-width: 58ch;
}
.state-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}
.state-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.state-pill.active,
.state-pill:hover {
  background: rgba(242, 107, 44, 0.16);
  border-color: rgba(242, 107, 44, 0.28);
}
.state-summary-card {
  background: linear-gradient(
    180deg,
    rgba(24, 31, 39, 0.98),
    rgba(16, 21, 27, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}
.compact-head {
  margin-top: 28px;
}
.compact-head h2 {
  margin-bottom: 10px;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  display: block;
  background: linear-gradient(
    180deg,
    rgba(24, 31, 39, 0.98),
    rgba(16, 21, 27, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 140ms ease,
    border-color 140ms ease;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 107, 44, 0.22);
}
.service-card h3 {
  margin: 14px 0 10px;
}
.service-card p {
  margin-bottom: 18px;
}
.service-card-cta {
  color: #ffbf9e;
  font-weight: 800;
}
.ghost-head h2,
.ghost-head p {
  color: rgba(244, 237, 227, 0.72);
}
.ghost-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ghost-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(244, 237, 227, 0.44);
  font-size: 0.88rem;
}
.ghost-links a:hover {
  color: rgba(244, 237, 227, 0.75);
  background: rgba(255, 255, 255, 0.05);
}
.soft-note {
  color: rgba(244, 237, 227, 0.58);
}
.directory-shell {
  display: grid;
  gap: 22px;
}
.directory-hero {
  background: linear-gradient(
    145deg,
    rgba(27, 34, 43, 0.98),
    rgba(18, 23, 29, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.directory-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}
.directory-copy p {
  max-width: 56ch;
}
.directory-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 260px;
  background: rgba(255, 255, 255, 0.03);
}
.directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.provider-card {
  background: linear-gradient(
    180deg,
    rgba(24, 31, 39, 0.98),
    rgba(16, 21, 27, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}
.provider-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-panel li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--ink);
}
.hero-panel strong {
  color: var(--ink);
}
.dot {
  width: 11px;
  height: 11px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.section {
  padding: 28px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.card p:last-child {
  margin-bottom: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(242, 107, 44, 0.14);
  color: #ffbe9c;
  font-size: 0.82rem;
  font-weight: 700;
}
.list-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.list-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.muted {
  color: var(--muted);
}
.faq {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.footer {
  padding: 36px 0 60px;
  color: var(--muted);
  font-size: 0.94rem;
}
.footer-row {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-brand-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.footer-brand-line span:last-child {
  min-width: 0;
}
.content-shell {
  padding: 16px 0 56px;
}
.content-card {
  background: rgba(23, 30, 38, 0.96);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.content-card h1:first-child {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.content-card h2 {
  margin-top: 28px;
}
.content-card .cta-box,
.content-card .lead-form {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.content-card form {
  display: grid;
  gap: 12px;
}
.content-card input,
.content-card textarea,
.content-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font: inherit;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}
.content-card button,
.content-card .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  background: var(--accent);
  color: white;
  border: none;
}
.lead-form-layout {
  display: grid;
  gap: 14px;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.lead-form-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.lead-form-field span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.required-marker {
  color: #d92d20;
  font-style: normal;
}
.lead-form-field-wide {
  grid-column: 1 / -1;
}
.lead-form-field-message textarea {
  min-height: 156px;
  resize: vertical;
}
.lead-form-layout > button {
  justify-self: start;
}
.lead-form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}
.lead-form-submit-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  display: none;
  animation: talviSpin 720ms linear infinite;
}
.lead-form-submit.is-loading {
  cursor: wait;
  opacity: 0.88;
}
.lead-form-submit.is-loading .lead-form-submit-spinner {
  display: inline-block;
}
@keyframes talviSpin {
  to {
    transform: rotate(360deg);
  }
}
.content-card .lead-form-field span {
  color: rgba(255, 255, 255, 0.78);
}
.content-card .cta-button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid var(--line);
}
.utility-page {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(100vh - 220px);
  padding: 36px max(18px, calc((100vw - 1120px) / 2)) 58px;
  background: #ffffff;
  color: #132233;
}
.utility-page .content-card {
  width: min(780px, 100%);
  margin: 0 auto;
}
.utility-card {
  background: #ffffff;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 10px 28px rgba(16, 47, 84, 0.05);
  color: #132233;
}
.utility-card .eyebrow {
  background: rgba(11, 103, 184, 0.08);
  color: #31506d;
}
.utility-card h1,
.utility-card h2,
.utility-card h3 {
  color: #132233;
}
.utility-card h1:first-child,
.utility-card h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}
.utility-card p {
  color: #55697d;
}
.utility-card .soft-note {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 12px;
  background: #f8fafc;
  color: #63778c;
}
.utility-card .review-error {
  border-color: rgba(185, 28, 28, 0.18);
  background: #fff7f7;
  color: #8f1d1d;
}
.utility-card .review-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.utility-card .lead-form-field span {
  color: #4d6279;
}
.utility-card input,
.utility-card textarea,
.utility-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 43, 75, 0.14);
  font: inherit;
  background: #ffffff;
  color: #17314a;
}
.utility-card input:focus,
.utility-card textarea:focus,
.utility-card select:focus {
  outline: 3px solid rgba(11, 103, 184, 0.14);
  border-color: rgba(11, 103, 184, 0.4);
}
.utility-card select option {
  background: #ffffff;
  color: #17314a;
}
.utility-card .lead-form-submit,
.utility-card button {
  background: #0b67b8;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  box-shadow: none;
}
.utility-card .cta-stack {
  margin-top: 24px;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}
.breadcrumbs a:hover {
  color: var(--ink);
}
.service-hero {
  margin-bottom: 20px;
}
.service-hero-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(47, 141, 114, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(242, 107, 44, 0.14),
      transparent 20%
    ),
    linear-gradient(145deg, rgba(27, 34, 43, 0.98), rgba(18, 23, 29, 0.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}
.service-copy p {
  max-width: 62ch;
  font-size: 1.02rem;
}
.service-actions {
  margin-top: 20px;
}
.service-actions .button {
  min-width: 170px;
}
.service-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.service-summary {
  display: grid;
  gap: 12px;
}
.service-stage {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(47, 141, 114, 0.22),
      transparent 20%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(242, 107, 44, 0.18),
      transparent 18%
    ),
    linear-gradient(160deg, rgba(33, 41, 50, 0.98), rgba(17, 22, 28, 0.98));
}
.service-stage::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 36px;
  width: 240px;
  height: 240px;
  border-radius: 32px;
  transform: rotate(18deg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
}
.service-stage::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 92px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 107, 44, 0.24),
    transparent 68%
  );
}
.service-stage-main {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  z-index: 2;
}
.service-stage-code {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 0.9;
  max-width: 5ch;
  margin: 14px 0 0;
}
.service-stage-subline {
  color: var(--muted);
  max-width: 34ch;
}
.service-stage-media {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  justify-self: end;
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  z-index: 2;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}
.service-stage-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.service-stage-chip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(16, 21, 27, 0.92),
    rgba(10, 14, 18, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
.service-stage-chip strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.service-stage-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.service-stage-cards {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  z-index: 2;
}
.service-stage-card {
  min-height: 110px;
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.service-stage-card strong {
  display: block;
  margin-bottom: 8px;
}
.service-stage-card span {
  color: var(--muted);
  font-size: 0.9rem;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.fact-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(27, 35, 43, 0.98),
    rgba(19, 25, 31, 0.98)
  );
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.fact-card::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 140px;
  height: 140px;
  border-radius: 30px;
  transform: rotate(20deg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
}
.fact-card.accent {
  background:
    radial-gradient(
      circle at top right,
      rgba(242, 107, 44, 0.18),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(36, 27, 23, 0.98), rgba(28, 21, 19, 0.98));
}
.fact-card.cool {
  background:
    radial-gradient(
      circle at top right,
      rgba(47, 141, 114, 0.2),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(21, 34, 33, 0.98), rgba(17, 27, 28, 0.98));
}
.fact-card strong {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.fact-card p,
.fact-card span {
  position: relative;
  z-index: 2;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.78fr);
  gap: 20px;
  align-items: start;
}
.service-sidebar {
  display: grid;
  gap: 16px;
}
.sticky-card {
  position: sticky;
  top: 18px;
}
.sidebar-card {
  background: linear-gradient(
    180deg,
    rgba(27, 35, 43, 0.98),
    rgba(19, 25, 31, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.sidebar-card h3 {
  margin-bottom: 10px;
}
.cta-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.cta-stack .button {
  width: 100%;
}
.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.mini-list li + li {
  margin-top: 8px;
}
.article-body {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.article-body > *:first-child {
  margin-top: 0;
}
.article-body > section,
.article-body > .cta-box,
.article-body > .lead-form {
  grid-column: span 6;
  background: linear-gradient(
    180deg,
    rgba(28, 35, 43, 0.98),
    rgba(20, 26, 33, 0.98)
  );
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.article-body > section:first-child,
.article-body > section:nth-last-child(2),
.article-body > section:last-child,
.article-body > .lead-form {
  grid-column: 1 / -1;
}
.article-body h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.article-body h3 {
  margin-top: 20px;
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
  color: var(--ink);
}
.article-body li {
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--ink);
}
.form-panel .lead-form {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 20px;
}
.conversion-note {
  font-size: 1.04rem;
}
.shell-home {
  width: 100%;
}
.shell-home .footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.shell-home .topbar .brand {
  gap: 0;
}
.shell-home .topbar {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 12px clamp(28px, 5vw, 72px);
  background: #151a20;
  border-bottom: none;
  box-shadow: none;
}
.shell-home .topbar .brand-mark {
  color: #f4ede3;
}
.shell-home .topbar .nav {
  color: rgba(244, 237, 227, 0.78);
  gap: 24px;
  font-size: 0.88rem;
}
.shell-home .topbar .nav a:hover {
  color: #ffd25f;
}
.shell-home .topbar .brand-note {
  display: none;
}
.home-landing {
  padding: 0;
  background:
    linear-gradient(
      180deg,
      #30353d 0%,
      #30353d calc(81svh - 76px),
      #ffffff calc(81svh - 76px),
      #ffffff 100%
    );
}
.home-hero-wrap {
  position: relative;
  z-index: 1;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(81svh - 76px);
  border-radius: 0;
  border: none;
  background:
    linear-gradient(
      180deg,
      rgba(12, 16, 22, 0.22) 0%,
      rgba(11, 15, 21, 0.34) 26%,
      rgba(9, 12, 18, 0.76) 64%,
      rgba(6, 8, 13, 0.985) 100%
    ),
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 216, 147, 0.18),
      transparent 28%
    );
  box-shadow: none;
  padding: 0 clamp(28px, 5vw, 72px) 18px;
}
.home-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 14, 0.06) 0%,
    rgba(8, 10, 14, 0.28) 28%,
    rgba(7, 9, 13, 0.72) 62%,
    rgba(5, 7, 10, 0.95) 100%
  );
  pointer-events: none;
}
.home-hero-card::after {
  content: none;
}
.home-hero-grid::before {
  content: none;
}
.home-hero-grid::after {
  content: none;
}
.home-topbar {
  position: relative;
  z-index: 4;
  margin: -18px -34px 18px;
  padding: 18px 34px;
  background: linear-gradient(
    180deg,
    rgba(16, 23, 31, 0.98),
    rgba(12, 18, 25, 0.98)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(5, 14, 24, 0.22);
}
.home-nav {
  gap: 18px;
}
.home-topbar .brand-mark {
  color: #f4ede3;
}
.home-topbar .brand {
  gap: 0;
}
.home-topbar .brand-note,
.home-topbar .nav {
  color: var(--muted);
}
.home-topbar .nav a:hover {
  color: var(--ink);
}
.home-hero-grid {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
  z-index: 1;
}
.home-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home-hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 13, 0.12) 0%,
    rgba(7, 9, 13, 0.24) 26%,
    rgba(6, 8, 12, 0.7) 58%,
    rgba(4, 5, 8, 0.94) 100%
  );
}
.home-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 6800ms ease;
}
.home-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-width: 900px;
  padding: clamp(240px, 30vw, 340px) 0 52px;
  text-align: center;
  margin: 0 auto;
}
.home-eyebrow {
  display: none;
}
.home-hero-copy h1 {
  max-width: none;
  margin: 0 auto 14px;
  font-size: clamp(3rem, 6.6vw, 5.35rem);
  line-height: 0.9;
  white-space: normal;
  color: white;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}
.home-title-accent {
  color: inherit;
  text-shadow: inherit;
}
.home-hero-subtitle {
  max-width: 31rem;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.9vw, 1.26rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  white-space: normal;
}
.home-hero-subtitle strong {
  font-weight: 800;
  color: #ffffff;
}
.home-hero-subtitle span {
  display: inline;
}
.home-start-card {
  margin-top: 0;
  width: auto;
  min-height: 0;
  border-radius: 0;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  display: grid;
  justify-items: center;
  gap: 10px;
  overflow: visible;
}
.home-hero-helper {
  margin: 0;
  max-width: 20rem;
  color: #f6c93d;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}
.home-start-header {
  display: none;
}
.home-start-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 236, 182, 0.92);
}
.home-start-intro {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.state-picker-form {
  display: grid;
  gap: 12px;
  align-content: start;
}
.state-picker-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}
.state-picker-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}
.state-picker-form select {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.97);
  color: #102133;
  font: inherit;
  padding: 0 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.state-picker-controls .button {
  height: 56px;
  min-height: 56px;
}
.button-light {
  align-self: start;
  background: #ffd646;
  color: #102133;
  border: 1px solid rgba(255, 214, 70, 0.46);
  box-shadow: 0 16px 30px rgba(8, 32, 65, 0.16);
}
.home-start-card .button-light {
  width: 100%;
  justify-content: center;
}
.home-state-selector {
  display: grid;
  gap: 0;
  margin-top: 0;
  justify-items: center;
}
.home-state-selector-label {
  display: none;
}
.home-state-selector-field {
  position: relative;
  width: auto;
  max-width: min(100%, 320px);
}
.home-state-selector-field::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.98rem;
  font-weight: 800;
  color: rgba(16, 33, 51, 0.82);
  pointer-events: none;
}
.home-state-selector select {
  width: auto;
  max-width: min(100%, 268px);
  min-width: 224px;
  min-height: 48px;
  border: 1px solid rgba(255, 214, 70, 0.54);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd967 0%, #f6c93d 100%);
  color: #102133;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0 40px 0 18px;
  text-align: left;
  appearance: none;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 22px rgba(0, 0, 0, 0.22);
}
.home-state-selector select:focus {
  border-color: rgba(255, 245, 212, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 32px rgba(0, 0, 0, 0.26),
    0 0 0 4px rgba(255, 214, 70, 0.14);
}
.home-state-expansion-note {
  margin: 8px auto 0;
  max-width: 22rem;
  color: rgba(255, 235, 174, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26);
}
.home-map-note {
  display: none;
}
.home-service-picker {
  display: grid;
  gap: 10px;
}
.home-service-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 122px;
  align-content: flex-start;
}
.home-service-option {
  display: inline-flex;
  flex: 1 1 calc(50% - 5px);
  min-width: 212px;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.home-service-option-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 214, 70, 0.16);
  border: 1px solid rgba(255, 214, 70, 0.28);
  font-size: 1rem;
}
.home-service-option-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}
.home-service-option strong {
  font-size: 0.96rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.home-service-option:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 14px 28px rgba(4, 27, 53, 0.16);
}
.home-service-option.is-active {
  background: rgba(255, 214, 70, 0.18);
  border-color: rgba(255, 214, 70, 0.4);
  box-shadow: 0 16px 32px rgba(4, 27, 53, 0.2);
}
.home-step-note {
  margin: 0;
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}
.home-services-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
}
.home-services-shell::before {
  content: none;
}
.home-services-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  margin-top: 0;
  border-radius: 0;
  padding: 34px 30px 52px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.home-services-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  margin-bottom: 26px;
}
.home-services-head h2 {
  color: #1f2630;
  max-width: none;
  margin-bottom: 0;
  line-height: 0.98;
}
.home-services-head .home-section-kicker {
  color: #8e6321;
}
.home-services-head p {
  max-width: 42ch;
  margin: 0;
  color: #5f5a54;
}
.home-services-placeholder {
  display: flex;
  justify-content: center;
}
.home-services-placeholder[hidden] {
  display: none !important;
}
.home-services-placeholder-card {
  width: min(560px, 100%);
  padding: 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 38, 48, 0.08);
  box-shadow: 0 18px 40px rgba(31, 38, 48, 0.08);
  text-align: center;
}
.home-services-placeholder-card strong {
  display: block;
  color: #1f2630;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1.02;
}
.home-services-placeholder-card p {
  margin: 10px auto 0;
  max-width: 34ch;
  color: #5f5a54;
}
.home-services-grid {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}
.home-services-grid[hidden] {
  display: none !important;
}
.home-services-item {
  width: 100%;
  position: relative;
  display: block;
  min-height: 252px;
  border-radius: 0;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    var(--service-accent, #8b9aae);
  border: none;
  box-shadow:
    0 36px 68px rgba(5, 24, 45, 0.22),
    0 14px 28px rgba(5, 24, 45, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  overflow: hidden;
}
.home-services-item.is-photo {
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.38) 0%, rgba(7, 23, 38, 0.56) 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    var(--service-image) center center / cover no-repeat;
}
.home-services-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 44px 82px rgba(5, 24, 45, 0.28),
    0 20px 36px rgba(5, 24, 45, 0.16);
}
.home-services-front {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transition:
    top 180ms ease,
    transform 180ms ease;
  z-index: 2;
}
.home-services-item:hover .home-services-front {
  top: 28%;
  transform: translateY(-50%);
}
.home-services-front h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.04;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(9, 27, 49, 0.24);
}
.home-services-icon {
  display: none;
}
.home-services-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  transform: translateY(102%);
  transition: transform 180ms ease;
  z-index: 1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 -12px 26px rgba(5, 24, 45, 0.08);
}
.home-services-item:hover .home-services-reveal {
  transform: translateY(0);
}
.home-services-reveal-inner {
  height: 100%;
  padding: 20px 18px 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  text-align: center;
}
.home-services-metrics {
  display: grid;
  gap: 8px;
}
.home-services-availability {
  margin: 0;
  color: #17314a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}
.home-services-cities {
  margin: 0;
  color: #607385;
  font-size: 0.92rem;
  line-height: 1.4;
}
.home-services-link {
  color: #5f2e9c;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}
@keyframes heroGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.06);
    opacity: 0.84;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }
}
.home-copy-divider {
  width: 170px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0)
  );
}
.home-copy-note {
  margin: 14px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: nowrap;
}
.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}
.home-hero-media {
  display: none;
}
.home-hero-media::before {
  content: none;
}
.home-hero-media::after {
  content: none;
}
.home-hero-person {
  position: absolute;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
  filter: drop-shadow(0 20px 42px rgba(8, 32, 65, 0.2));
}
.home-hero-person.house {
  right: -130px;
  bottom: -80px;
  width: min(2500px, 280%);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(8, 32, 65, 0.1)) saturate(1)
    brightness(1);
  opacity: 0.2;
  z-index: 0;
}
.home-hero-person.left {
  left: -240px;
  bottom: -120px;
  height: min(580px, 200%);
  opacity: 1;
  filter: drop-shadow(0 18px 36px rgba(8, 32, 65, 0.16)) saturate(0.97)
    brightness(0.97);
  z-index: 1;
}
.home-hero-person.center {
  right: 50px;
  bottom: -80px;
  opacity: 1;
  height: min(590px, 500%);
  z-index: 3;
}
.home-hero-person.right {
  right: -26px;
  bottom: -80px;
  height: min(610px, 108%);
  opacity: 0;
  filter: drop-shadow(0 18px 36px rgba(8, 32, 65, 0.16)) saturate(0.78)
    brightness(0.82);
  z-index: 2;
}
.home-testimonials-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 214, 70, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #0a2037 0%, #102c49 100%);
  border-radius: 0;
  box-shadow: 0 -12px 40px rgba(7, 36, 74, 0.12);
}
.home-testimonials-inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 34px 28px;
}
.home-testimonials-head {
  text-align: center;
  margin-bottom: 28px;
}
.home-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cfe7ff;
}
.home-testimonials-head h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}
.testimonial-carousel {
  display: grid;
  gap: 18px;
}
.testimonial-slides {
  position: relative;
}
.testimonial-slide {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-slide.is-active {
  display: grid;
}
.testimonial-card {
  min-height: 240px;
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(14, 28, 44, 0.96) 0%, rgba(10, 23, 38, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(5, 24, 45, 0.28);
  color: #f2f6fb;
}
.testimonial-card p {
  color: rgba(242, 246, 251, 0.84);
  margin: 18px 0 20px;
}
.testimonial-card strong {
  color: #ffffff;
}
.testimonial-stars {
  color: #f5a623;
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 75, 132, 0.2);
  cursor: pointer;
}
.testimonial-dot.is-active {
  background: #0b67b8;
}
.home-ghost-zone {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.home-ghost-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.42);
}
.home-ghost-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.34);
}
.home-ghost-links a:hover {
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.07);
}
.home-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 34px 24px;
  background: #151a20;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(244, 237, 227, 0.78);
}
.home-footer-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}
.home-footer strong {
  color: white;
  flex: 0 0 auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.home-footer-brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-footer-links {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.home-footer-links a {
  color: rgba(244, 237, 227, 0.78);
}
.home-footer-links a:hover {
  color: white;
}
.triage-section {
  margin-bottom: 14px;
}
.triage-section-inline {
  margin: 0;
}
.triage-card {
  border-radius: 24px;
  padding: 14px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 22%
    ),
    linear-gradient(140deg, #0b67b8 0%, #0a6bc0 44%, #095aa7 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 28px rgba(7, 36, 74, 0.1);
}
.triage-card.is-stacked {
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: 0 18px 38px rgba(7, 36, 74, 0.12);
}
.triage-shell {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.38fr);
  gap: 14px;
  align-items: start;
}
.triage-shell.is-stacked {
  grid-template-columns: 1fr;
  gap: 12px;
}
.triage-copy .eyebrow {
  padding: 6px 10px;
  font-size: 0.74rem;
}
.triage-card.is-stacked .triage-copy .eyebrow {
  background: rgba(11, 103, 184, 0.1);
  color: #0b67b8;
}
.triage-copy h2 {
  color: white;
  margin-bottom: 6px;
  font-size: 1.28rem;
}
.triage-card.is-stacked .triage-copy h2 {
  color: #132233;
}
.triage-copy p {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.42;
}
.triage-card.is-stacked .triage-copy p {
  max-width: none;
  color: #5b6c80;
}
.triage-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.triage-chip-row .badge {
  min-height: 26px;
  padding: 0 10px;
  font-size: 0.72rem;
}
.triage-chat-panel {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: 0 12px 24px rgba(16, 47, 84, 0.06);
  height: 300px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.triage-messages {
  display: grid;
  gap: 8px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.triage-bubble {
  max-width: 92%;
  padding: 9px 11px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.32;
}
.triage-bubble.assistant {
  justify-self: start;
  background: #eef5fc;
  color: #17314a;
}
.triage-bubble.user {
  justify-self: end;
  background: #0b67b8;
  color: white;
}
.triage-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.triage-option {
  border: 1px solid rgba(17, 43, 75, 0.12);
  background: #ffffff;
  color: #16314a;
  border-radius: 14px;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.22;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease;
}
.triage-option:hover {
  transform: translateY(-1px);
  background: #edf6ff;
  box-shadow: 0 12px 24px rgba(16, 47, 84, 0.08);
}
.triage-result {
  margin-top: 10px;
}
.triage-result-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 18px;
  padding: 14px;
}
.triage-result-card h3 {
  color: #132233;
  margin: 8px 0 6px;
  font-size: 1rem;
}
.triage-result-card p {
  color: #51657a;
  font-size: 0.86rem;
  line-height: 1.34;
}
.triage-urgency-note {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #eef5fc;
  color: #17314a;
  font-size: 0.84rem;
}
.triage-provider-card {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(17, 43, 75, 0.08);
}
.triage-provider-card strong {
  display: block;
  margin-top: 6px;
  color: #132233;
  font-size: 0.92rem;
}
.triage-provider-card p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}
.triage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.triage-actions .button {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.84rem;
}
.triage-capture {
  margin-top: 10px;
}
.triage-capture-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 18px;
  padding: 14px;
}
.triage-capture-card strong {
  display: block;
  color: #132233;
  font-size: 0.94rem;
}
.triage-capture-card p {
  margin: 6px 0 0;
  color: #55697d;
  font-size: 0.84rem;
  line-height: 1.36;
}
.triage-capture-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  margin: 12px 0 0;
}
.triage-capture-summary dt {
  color: #617285;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.triage-capture-summary dd {
  margin: 0;
  color: #16314a;
  font-size: 0.84rem;
  line-height: 1.34;
}
.triage-reset {
  margin-top: 10px;
  border: none;
  background: transparent;
  color: #0b67b8;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}
.triage-composer {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.triage-composer-copy {
  display: grid;
  gap: 4px;
}
.triage-composer-copy strong {
  color: #17314a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.triage-composer-copy p {
  margin: 0;
  color: #132233;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.34;
}
.triage-composer[hidden] {
  display: none !important;
}
.triage-composer input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 43, 75, 0.14);
  font: inherit;
  background: #ffffff;
  color: #17314a;
  font-size: 0.88rem;
}
.triage-composer-actions {
  display: flex;
  gap: 8px;
}
.triage-composer-actions .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.triage-composer-actions .button:first-child {
  flex: 1 1 auto;
}
.triage-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.triage-status.is-success {
  color: #157347;
}
.triage-status.is-error {
  color: #b42318;
}
.floating-assistant {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 12px;
}
.floating-assistant-launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b67b8 0%, #095aa7 100%);
  color: white;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(7, 36, 74, 0.24);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}
.floating-assistant-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(7, 36, 74, 0.28);
  filter: saturate(1.05);
}
.floating-assistant-launch-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
}
.floating-assistant-launch-copy {
  display: inline-block;
}
.floating-assistant-launch-mobile {
  display: none;
}
.floating-assistant-panel {
  width: min(360px, calc(100vw - 28px));
  max-height: min(74vh, 620px);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: 0 28px 70px rgba(7, 36, 74, 0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.floating-assistant.is-open .floating-assistant-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 12px;
  background: linear-gradient(140deg, #0b67b8 0%, #0a6bc0 44%, #095aa7 100%);
  color: white;
}
.floating-assistant-head strong {
  display: block;
  font-size: 0.98rem;
}
.floating-assistant-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}
.floating-assistant-close {
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}
.floating-assistant-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.22);
}
.floating-assistant-body {
  padding: 12px 12px 8px;
  max-height: min(58vh, 460px);
  overflow: auto;
}
.floating-messages {
  display: grid;
  gap: 8px;
  padding-right: 2px;
}
.floating-bubble {
  max-width: 92%;
  padding: 9px 11px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.34;
  animation: floatingAssistantItemIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.floating-bubble.assistant {
  justify-self: start;
  background: #eef5fc;
  color: #17314a;
}
.floating-bubble.user {
  justify-self: end;
  background: #0b67b8;
  color: white;
}
.floating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.floating-option {
  border: 1px solid rgba(17, 43, 75, 0.12);
  background: #ffffff;
  color: #16314a;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  animation: floatingAssistantItemIn 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}
.floating-option:hover {
  transform: translateY(-1px);
  background: #edf6ff;
  box-shadow: 0 10px 20px rgba(16, 47, 84, 0.08);
}
.floating-result {
  margin-top: 10px;
}
.floating-result-card {
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(17, 43, 75, 0.08);
  animation: floatingAssistantItemIn 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.floating-result-card h3 {
  color: #132233;
  margin: 8px 0 6px;
  font-size: 0.98rem;
}
.floating-result-card p {
  color: #526478;
  font-size: 0.86rem;
  line-height: 1.4;
}
.floating-urgency-note {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #eef5fc;
  color: #17314a;
}
.floating-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.floating-actions .button {
  width: 100%;
  min-height: 40px;
  font-size: 0.86rem;
}
.floating-capture {
  margin-top: 10px;
}
.floating-capture-card {
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(17, 43, 75, 0.08);
  animation: floatingAssistantItemIn 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.floating-capture-card strong {
  display: block;
  color: #132233;
  font-size: 0.92rem;
}
.floating-capture-card p {
  margin: 6px 0 0;
  color: #526478;
  font-size: 0.84rem;
  line-height: 1.38;
}
.floating-capture-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  margin: 12px 0 0;
}
.floating-capture-summary dt {
  color: #617285;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.floating-capture-summary dd {
  margin: 0;
  color: #16314a;
  font-size: 0.82rem;
  line-height: 1.34;
}
.floating-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #667a91;
}
.floating-composer {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.floating-composer-copy {
  display: grid;
  gap: 4px;
}
.floating-composer-copy strong {
  color: #17314a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.floating-composer-copy p {
  margin: 0;
  color: #132233;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.32;
}
.floating-composer[hidden] {
  display: none !important;
}
.floating-composer input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(17, 43, 75, 0.14);
  border-radius: 12px;
  background: #ffffff;
  color: #17314a;
  font: inherit;
  font-size: 0.84rem;
}
.floating-composer-actions {
  display: flex;
  gap: 8px;
}
.floating-composer-actions .button {
  min-height: 38px;
  font-size: 0.82rem;
}
.floating-composer-actions .button:first-child {
  flex: 1 1 auto;
}
.floating-form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}
.floating-form-status.is-error {
  color: #b42318;
}
.floating-form-status.is-success {
  color: #157347;
}
.floating-assistant-foot {
  padding: 0 12px 12px;
}
.floating-reset {
  border: none;
  background: transparent;
  color: #0b67b8;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease;
}
.floating-reset:hover {
  transform: translateX(2px);
  color: #095aa7;
}
@keyframes floatingAssistantItemIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.state-services-page {
  padding: 34px 0 12px;
}
.state-services-hero-card {
  padding: 34px 34px 120px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.16),
      transparent 18%
    ),
    linear-gradient(140deg, #0b67b8 0%, #0a6bc0 44%, #095aa7 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 90px rgba(7, 36, 74, 0.24);
}
.state-services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
}
.state-services-copy h1 {
  color: white;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}
.state-services-copy p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.86);
}
.state-services-hero-media {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(8, 32, 65, 0.18);
}
.state-services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.state-services-surface {
  margin-top: -88px;
  background: #ffffff;
  border-radius: 52px 52px 0 0;
  box-shadow: 0 -6px 32px rgba(7, 36, 74, 0.06);
}
.state-services-surface-inner {
  padding: 38px 34px 26px;
}
.state-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: -62px;
}
.state-service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  min-height: 100%;
  background: white;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 30px;
  padding: 18px 18px 20px;
  box-shadow: 0 20px 48px rgba(16, 47, 84, 0.08);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}
.state-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(16, 47, 84, 0.12);
}
.state-service-card:nth-child(3n) {
  background: white;
  color: inherit;
}
.state-service-card:nth-child(3n) p,
.state-service-card:nth-child(3n) .state-service-link {
  color: inherit;
}
.state-service-media {
  min-height: 200px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(17, 43, 75, 0.08);
}
.state-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.state-service-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.state-service-topline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.state-service-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 103, 184, 0.1);
  border: 1px solid rgba(11, 103, 184, 0.15);
  font-size: 1.05rem;
}
.state-service-copy h3 {
  margin: 2px 0 0;
  color: #132233;
}
.state-service-copy p {
  margin: 0;
  color: #54667b;
}
.state-service-card:nth-child(3n) .state-service-copy h3 {
  color: #132233;
}
.state-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.state-service-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 103, 184, 0.08);
  color: #39526e;
  font-size: 0.82rem;
  font-weight: 700;
}
.state-service-link {
  color: #0b67b8;
  font-weight: 800;
  margin-top: auto;
}
.state-services-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: 26px;
  align-items: center;
  margin-top: 34px;
}
.state-services-story-media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 22px 44px rgba(16, 47, 84, 0.08);
}
.state-services-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.state-services-story-copy h2 {
  color: #132233;
}
.state-services-story-copy p,
.state-story-list {
  color: #526478;
}
.state-story-list {
  margin: 16px 0 0;
  padding-left: 18px;
}
.state-story-list li + li {
  margin-top: 8px;
}
.state-ghost-zone {
  margin-top: 28px;
}
.service-directory-page {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 30px 0 24px;
  background: #ffffff;
  color: #132233;
}
.service-directory-page > * {
  width: min(1120px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}
.service-directory-breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.service-directory-shell {
  margin-top: 0;
}
.service-directory-shell-card {
  background: #ffffff;
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: 0 18px 38px rgba(16, 47, 84, 0.06);
  border-radius: 22px;
  overflow: hidden;
}
.service-directory-page .breadcrumbs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  text-align: left;
  margin: 0;
  color: rgba(18, 43, 71, 0.82);
  font-weight: 700;
}
.service-directory-page .breadcrumbs a,
.service-directory-page .breadcrumbs span {
  color: inherit;
}
.service-directory-back-link {
  color: rgba(18, 43, 71, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms ease;
}
.service-directory-back-link:hover {
  color: #0b67b8;
}
.service-directory-hero-card {
  padding: 28px 30px 18px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.service-directory-copy h1 {
  color: #132233;
  max-width: none;
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 8px;
}
.service-directory-copy p {
  max-width: 62ch;
  color: #55697d;
  margin-left: 0;
  margin-right: 0;
}
.service-directory-copy-left {
  text-align: left;
}
.service-directory-copy-left h1,
.service-directory-copy-left p {
  margin-left: 0;
  margin-right: 0;
}
.service-directory-copy-left h1 {
  max-width: 12ch;
}
.service-directory-copy-left p {
  max-width: 48ch;
}
.service-directory-copy-full {
  width: 100%;
  text-align: center;
}
.service-directory-copy-full h1,
.service-directory-copy-full p {
  margin-left: auto;
  margin-right: auto;
}
.service-directory-copy-full h1 {
  max-width: none;
}
.service-directory-copy-full p {
  max-width: none;
}
.service-directory-copy-full .service-directory-summary {
  text-align: center;
}
.service-directory-summary {
  margin: 0;
  color: #31506d;
  font-size: 0.9rem;
  font-weight: 800;
}
.service-directory-surface {
  margin-top: 0;
  background: transparent;
  border-radius: 0;
}
.service-directory-surface-inner {
  padding: 18px 30px 28px;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(17, 43, 75, 0.08);
}
.provider-controls-wrap {
  margin: 0 0 16px;
  display: flex;
  justify-content: flex-end;
}
.provider-controls-wrap[hidden] {
  display: none !important;
}
.provider-controls-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.provider-controls-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: end;
  flex: 1 1 220px;
}
.provider-controls-form-inline {
  flex: 0 1 auto;
}
.provider-control-field {
  display: grid;
  gap: 4px;
  min-width: 0;
  width: min(230px, 100%);
}
.provider-control-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
}
.provider-control-field span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #58708a;
}
.provider-control-inline span {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}
.provider-control-field select {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(17, 43, 75, 0.12);
  background: #ffffff;
  color: #17314a;
  padding: 0 12px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.provider-empty-state {
  margin: 0 0 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px dashed rgba(17, 43, 75, 0.14);
  color: #48627c;
  font-weight: 700;
}
.service-directory-empty-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(420px, 100%);
  min-height: 184px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dfd8ea;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(31, 22, 56, 0.08);
}
.service-directory-empty-card h2 {
  margin: 0;
  color: #060914;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}
.service-directory-empty-card p {
  margin: 0;
  color: #41464f;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.42;
}
.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  justify-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.provider-tile {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 184px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dfd8ea;
  box-shadow: 0 14px 34px rgba(31, 22, 56, 0.08);
  padding: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.provider-tile:hover {
  transform: translateY(-2px);
  border-color: #d6cce6;
  box-shadow: 0 18px 42px rgba(31, 22, 56, 0.12);
}
.provider-tile[hidden] {
  display: none !important;
}
.provider-tile-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
.provider-tile-identity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.provider-tile-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: #8a98a8;
  font-size: 0.78rem;
  font-weight: 800;
}
.provider-tile-kicker .badge {
  white-space: nowrap;
  background: #edf4fb;
  border: 1px solid rgba(22, 79, 125, 0.13);
  color: #1d5b86;
  font-weight: 900;
}
.provider-tile-copy {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: stretch;
  min-height: 184px;
  padding: 0;
  text-align: left;
}
.provider-tile-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  width: 100%;
  padding: 18px 20px 14px;
}
.provider-tile-logo {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #e7e2f0;
  box-shadow: none;
}
.provider-tile-info {
  min-width: 0;
}
.provider-tile-copy h3 {
  color: #060914;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}
.provider-tile-copy p {
  color: #060914;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.42;
}
.provider-tile-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.provider-rating-score {
  color: #41464f;
  font-size: 0.95rem;
  font-weight: 300;
}
.provider-rating-stars {
  color: #f7c62e;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.provider-tile-review-count {
  margin-top: 4px !important;
  color: #060914 !important;
  font-size: 0.95rem !important;
  font-weight: 300;
}
.provider-tile-meta {
  display: none;
  font-weight: 600;
}
.provider-tile-contact {
  margin-top: 4px;
}
.provider-actions {
  display: grid;
  place-items: center;
  gap: 0;
  margin-top: auto;
  min-height: 46px;
  padding: 0;
  border-top: 1px solid #dfd8ea;
  background: #ffffff;
}
.provider-actions-row {
  justify-content: stretch;
  align-items: center;
}
.provider-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #ffd967 0%, #f6c93d 100%);
  color: #102133;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}
.provider-profile-link-directory {
  margin: 0;
  min-height: 46px;
  border-radius: 0;
  background: transparent;
  color: #31506d;
}
.provider-detail-page {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 28px 0 20px;
  background: #ffffff;
}
.provider-detail-page > * {
  width: min(1120px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}
.provider-detail-page .breadcrumbs {
  color: rgba(18, 43, 71, 0.82);
  font-weight: 700;
}
.provider-detail-page .breadcrumbs a,
.provider-detail-page .breadcrumbs span {
  color: inherit;
}
.provider-detail-page .breadcrumbs a:hover {
  color: #0b67b8;
}
.provider-detail-shell-card {
  background: #ffffff;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 47, 84, 0.04);
}
.provider-detail-hero-card {
  padding: 22px 24px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.provider-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: stretch;
  gap: 28px;
}
.provider-detail-media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.provider-detail-logo-card {
  width: min(180px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 18%, rgba(95, 46, 156, 0.08), transparent 32%),
    #f4f5f6;
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: none;
}
.provider-detail-logo-card img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}
.provider-detail-copy h1 {
  color: #132233;
  max-width: none;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.provider-detail-copy p {
  max-width: 62ch;
  color: #55697d;
  margin-bottom: 0;
}
.provider-detail-copy-compact {
  text-align: left;
  width: 100%;
}
.provider-detail-kicker {
  margin: 0 0 10px;
  color: #6a7a8c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.provider-detail-intro {
  line-height: 1.55;
}
.provider-detail-card,
.provider-form-card {
  background: white;
  border-radius: 12px;
  padding: 20px 20px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  box-shadow: none;
}
.provider-detail-card h2,
.provider-form-card h2 {
  color: #132233;
}
.provider-detail-strip {
  border-top: 1px solid rgba(17, 43, 75, 0.08);
  background: #ffffff;
}
.provider-detail-strip-inline {
  margin-top: 18px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.provider-detail-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.provider-detail-strip-item {
  min-width: 0;
  padding: 16px 20px;
}
.provider-detail-strip-item + .provider-detail-strip-item {
  border-left: 1px solid rgba(17, 43, 75, 0.08);
}
.provider-detail-strip-item span {
  display: block;
  color: #738295;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.provider-detail-strip-item p {
  margin: 6px 0 0;
  color: #30455d;
  font-weight: 600;
  line-height: 1.4;
}
.provider-detail-form-section {
  padding: 0 24px 24px;
}
.provider-form-card-wide {
  background: #ffffff;
}
.provider-form-card-wide h2 {
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.provider-reviews-section {
  padding-top: 0;
}
.provider-reviews-card {
  display: grid;
  gap: 16px;
}
.provider-reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.provider-reviews-heading h2 {
  margin: 6px 0 0;
}
.provider-review-score {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #5d7187;
  font-size: 0.82rem;
  font-weight: 700;
}
.provider-review-score strong {
  color: #15283d;
  font-size: 1.2rem;
}
.provider-review-list {
  display: grid;
  gap: 10px;
}
.provider-review-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(17, 43, 75, 0.08);
  border-radius: 12px;
  background: #f8fafc;
}
.provider-review-topline,
.provider-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.provider-review-topline strong {
  color: #132233;
}
.provider-review-card p {
  margin: 0;
  color: #40566c;
  line-height: 1.55;
}
.provider-review-meta {
  color: #718196;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-card .review-error {
  border-color: rgba(185, 28, 28, 0.18);
  color: #8f1d1d;
}
.provider-form-card .lead-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}
.provider-form-card .lead-form h2 {
  display: none;
}
.provider-form-card form {
  display: grid;
  gap: 12px;
}
.provider-form-card .lead-form-field span {
  color: #4d6279;
}
.provider-form-card input,
.provider-form-card textarea,
.provider-form-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 43, 75, 0.14);
  font: inherit;
  background: #ffffff;
  color: #17314a;
}
.provider-form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  background: #0b67b8;
  color: white;
  border: none;
}
@media (max-width: 1100px) {
  .topbar {
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 14px;
    gap: 10px;
    min-height: 54px;
  }
  .topbar-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .brand-mark {
    font-size: 1.42rem;
  }
  .nav-toggle {
    display: inline-flex !important;
  }
  .topbar .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none !important;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(21, 26, 32, 0.98);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  }
  .topbar.is-nav-open .nav {
    display: flex !important;
  }
  .shell-home .topbar .nav {
    display: none !important;
    gap: 0;
    font-size: 0.95rem;
  }
  .shell-home .topbar.is-nav-open .nav {
    display: flex !important;
  }
  .topbar .nav a {
    padding: 10px 12px;
    border-radius: 10px;
  }
  .topbar .nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .lang-toggle {
    min-width: 42px;
    min-height: 34px;
    padding: 0 10px;
  }
  .hero-grid,
  .grid,
  .service-hero-grid,
  .service-layout,
  .conversion-grid,
  .fact-grid,
  .service-stage-cards,
  .selection-grid,
  .service-card-grid,
  .directory-hero-grid,
  .provider-grid,
  .home-hero-grid,
  .testimonial-slide,
  .state-services-grid,
  .state-service-card {
    grid-template-columns: 1fr;
  }
  .hero-card,
  .content-card,
  .service-hero-card,
  .sidebar-card {
    padding: 26px;
  }
  .hero-card {
    height: auto;
  }
  h1 {
    max-width: none;
  }
  .sticky-card {
    position: static;
  }
  .article-body {
    grid-template-columns: 1fr;
  }
  .article-body > section,
  .article-body > .cta-box,
  .article-body > .lead-form {
    grid-column: auto;
  }
  .lead-form-grid {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 22px;
  }
  .stage-copy,
  .stage-media-card,
  .stage-pillars {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: none;
    width: auto;
  }
  .service-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 22px;
  }
  .service-stage-media {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
  }
  .service-stage-main,
  .service-stage-cards {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .shell-home {
    width: 100%;
  }
  .shell-home .topbar {
    padding: 10px 14px;
  }
  .home-landing {
    padding: 0;
  }
  .home-hero-card {
    min-height: 0;
    padding: 0 18px 24px;
    border-radius: 0;
  }
  .home-hero-grid::before {
    display: none;
  }
  .home-hero-grid::after {
    display: none;
  }
  .home-topbar,
  .home-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-footer-brand,
  .home-footer-links {
    justify-self: auto;
    text-align: left;
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
  .home-topbar {
    margin: -18px -18px 16px;
    padding: 16px 18px;
  }
  .home-nav,
  .home-footer-links {
    gap: 14px;
  }
  .home-hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 168px 0 18px;
  }
  .home-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 11vw, 3.3rem);
    white-space: normal;
  }
  .home-hero-subtitle {
    max-width: 28rem;
    font-size: clamp(0.96rem, 4.2vw, 1.08rem);
    white-space: normal;
  }
  .home-hero-subtitle span {
    display: inline;
  }
  .home-copy-note {
    white-space: normal;
  }
  .home-start-card {
    width: 100%;
    min-height: 0;
    padding: 0;
  }
  .home-hero-helper {
    font-size: 0.92rem;
    max-width: 100%;
  }
  .home-service-choices {
    min-height: 0;
  }
  .home-service-option {
    flex: 1 1 100%;
    min-width: 0;
  }
  .home-hero-media {
    display: none;
  }
  .home-hero-media::before,
  .home-hero-media::after {
    display: none;
  }
  .home-services-shell {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
  .home-services-card {
    width: calc(100% - 12px);
    margin: 0 auto;
    border-radius: 0;
    padding: 22px 18px;
  }
  .home-services-head h2,
  .home-services-head p {
    max-width: none;
  }
  .home-services-card {
    padding-bottom: 36px;
  }
  .home-services-grid {
    width: min(390px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 14px;
    overflow: visible;
    padding: 8px 0 10px;
    scroll-snap-type: none;
  }
  .home-services-item {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: stretch;
    gap: 0;
    aspect-ratio: auto;
    min-height: 132px;
    padding: 0;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dfd8ea;
    box-shadow:
      0 14px 34px rgba(31, 22, 56, 0.08),
      0 4px 12px rgba(31, 22, 56, 0.05);
  }
  .home-services-grid .home-services-item:nth-child(odd):last-child {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
  .home-services-item.is-photo {
    background:
      radial-gradient(circle at 92% 0%, rgba(95, 46, 156, 0.08), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  }
  .home-services-front {
    position: relative;
    inset: auto;
    transform: none;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    align-content: stretch;
    gap: 14px;
    padding: 18px 18px 14px;
    text-align: left;
  }
  .home-services-front h3 {
    color: #1d2935;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: none;
  }
  .home-services-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #5f2e9c;
    border: 1px solid #e7dfef;
    border-radius: 999px;
    background: #ffffff;
  }
  .home-services-icon::before,
  .home-services-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
  }
  .home-services-icon-plumber::before {
    width: 24px;
    height: 9px;
    border: 2px solid currentColor;
    border-left-width: 5px;
    border-radius: 999px;
    transform: rotate(-32deg);
  }
  .home-services-icon-plumber::after {
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(8px, -8px);
  }
  .home-services-icon-hvac-repair::before {
    width: 30px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }
  .home-services-icon-hvac-repair::after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
      conic-gradient(from 35deg, transparent 0 22%, currentColor 22% 32%, transparent 32% 55%, currentColor 55% 65%, transparent 65% 88%, currentColor 88% 98%, transparent 98%);
  }
  .home-services-icon-furnace-repair::before {
    width: 18px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 14px 14px 14px 4px;
    transform: rotate(42deg);
  }
  .home-services-icon-furnace-repair::after {
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 6px 0 currentColor;
    transform: translateY(14px);
  }
  .home-services-reveal {
    position: relative;
    inset: auto;
    height: auto;
    transform: translateY(0);
    background: #ffffff;
    border-radius: 0;
    border-top: 1px solid #dfd8ea;
    box-shadow: none;
  }
  .home-services-reveal-inner {
    height: auto;
    padding: 10px 18px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }
  .home-services-metrics {
    gap: 2px;
  }
  .home-services-availability {
    color: #5f2e9c;
    font-size: 0.84rem;
    font-weight: 600;
  }
  .home-services-cities {
    color: #6f667d;
    font-size: 0.78rem;
    font-weight: 400;
  }
  .home-services-link {
    flex: 0 0 auto;
    color: #5f2e9c;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
  }
  .home-services-item:hover {
    transform: translateY(-2px);
  }
  .home-services-item:hover .home-services-front {
    top: auto;
    transform: none;
  }
  .home-services-media {
    min-height: 210px;
    height: 210px;
  }
  .home-hero-person {
    position: static;
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .home-hero-person.left,
  .home-hero-person.right,
  .home-hero-person.house {
    display: none;
  }
  .home-hero-person.center {
    width: min(500px, 100%);
  }
  .home-testimonials-shell {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  .home-testimonials-inner {
    width: calc(100% - 12px);
    margin: 0 auto;
    padding-top: 54px;
  }
  .home-testimonials-inner {
    padding: 32px 18px 24px;
  }
  .triage-shell,
  .triage-actions {
    grid-template-columns: 1fr;
  }
  .triage-card {
    padding: 14px 12px;
  }
  .triage-chat-panel {
    padding: 12px;
    height: 320px;
  }
  .triage-messages {
    max-height: 96px;
  }
  .triage-actions {
    display: grid;
  }
  .triage-actions .button {
    width: 100%;
  }
  .floating-assistant {
    right: 14px;
    bottom: 16px;
    left: auto;
    justify-items: end;
  }
  .floating-assistant-launch {
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 54px;
    height: 54px;
    padding: 0;
    font-size: 0.68rem;
    line-height: 0.92;
    box-shadow: 0 12px 24px rgba(7, 36, 74, 0.22);
  }
  .floating-assistant-launch-mark {
    display: none;
  }
  .floating-assistant-launch-copy {
    display: none;
  }
  .floating-assistant-launch-mobile {
    display: grid;
    place-items: center;
    gap: 1px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .floating-assistant-panel {
    width: min(340px, calc(100vw - 24px));
    max-height: min(76vh, 620px);
  }
  .testimonial-card {
    min-height: 0;
  }
  .state-services-hero-card,
  .service-directory-hero-card {
    padding: 20px 18px;
  }
  .state-services-surface {
    margin-top: 12px;
    border-radius: 0;
  }
  .service-directory-shell-card {
    border-radius: 18px;
  }
  .service-directory-surface {
    margin-top: 0;
    border-radius: 0;
  }
  .state-services-surface-inner,
  .provider-detail-surface-inner {
    padding: 20px 18px;
  }
  .service-directory-surface-inner {
    padding: 16px 18px 20px;
  }
  .provider-controls-card {
    width: 100%;
    flex-direction: row;
    align-items: start;
  }
  .provider-controls-form {
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }
  .provider-control-field {
    min-width: 0;
    width: 100%;
  }
  .provider-control-inline {
    flex-direction: column;
    align-items: flex-start;
  }
  .provider-tile-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .provider-tile-identity {
    width: 100%;
    justify-content: flex-start;
  }
  .provider-tile {
    width: 100%;
    background: #f4f5f6;
    border: 1px solid rgba(95, 46, 156, 0.22);
  }
  .provider-tile-copy {
    padding: 0;
  }
  .provider-actions {
    background: #f4f5f6;
    border-top-color: rgba(95, 46, 156, 0.22);
  }
  .service-directory-empty-card {
    width: min(420px, 100%);
    background: #f4f5f6;
    border-color: rgba(95, 46, 156, 0.22);
  }
  .provider-actions-row {
    justify-content: stretch;
  }
  .provider-actions-row .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 900;
  }
  .lead-form-layout > button,
  .lead-form-submit,
  .provider-form-card button {
    width: 100%;
    justify-self: stretch;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 900;
  }
  .state-services-grid {
    margin-top: -34px;
  }
  .state-services-story,
  .provider-detail-grid {
    grid-template-columns: 1fr;
  }
  .provider-detail-hero-card {
    padding: 18px;
  }
  .provider-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(88px, 28vw, 108px);
    align-items: stretch;
    gap: 10px 14px;
  }
  .provider-detail-copy-compact {
    display: contents;
  }
  .provider-detail-kicker,
  .provider-detail-copy h1,
  .provider-detail-intro {
    grid-column: 1 / -1;
  }
  .provider-detail-strip-inline {
    display: contents;
    margin-top: 0;
  }
  .provider-detail-strip-grid {
    display: contents;
  }
  .provider-detail-strip-item {
    padding: 12px 14px;
    border: 1px solid rgba(17, 43, 75, 0.08);
    border-radius: 12px;
    background: #ffffff;
  }
  .provider-detail-strip-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 4;
  }
  .provider-detail-strip-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 5;
  }
  .provider-detail-strip-item:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 6;
  }
  .provider-detail-media {
    grid-column: 2 / 3;
    grid-row: 4 / span 2;
    align-items: flex-end;
    align-self: stretch;
    justify-content: flex-end;
  }
  .provider-detail-logo-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border-color: rgba(17, 43, 75, 0.08);
    border-radius: 14px;
  }
  .provider-detail-shell-card {
    border-radius: 12px;
  }
  .provider-detail-form-section {
    padding: 0 18px 18px;
  }
  .provider-detail-strip-item + .provider-detail-strip-item {
    border-left: 1px solid rgba(17, 43, 75, 0.08);
    border-top: 1px solid rgba(17, 43, 75, 0.08);
  }
  .service-directory-breadcrumb-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .triage-shell.is-stacked {
    grid-template-columns: 1fr;
  }
  .state-service-card {
    padding: 18px;
  }
  .state-service-media {
    min-height: 190px;
  }
  .service-card,
  .state-service-card,
  .home-services-item,
  .provider-tile,
  .testimonial-card,
  .content-card,
  .hero-card,
  .stage-media-card {
    transition: none !important;
  }
  .service-card:hover,
  .service-card:active,
  .state-service-card:hover,
  .state-service-card:active,
  .home-services-item:hover,
  .home-services-item:active,
  .provider-tile:hover,
  .provider-tile:active,
  .testimonial-card:hover,
  .testimonial-card:active,
  .content-card:hover,
  .content-card:active,
  .hero-card:hover,
  .hero-card:active,
  .stage-media-card:hover,
  .stage-media-card:active {
    transform: none !important;
    box-shadow: inherit;
  }
  .home-services-item:hover .home-services-front,
  .home-services-item:active .home-services-front {
    top: auto;
    transform: none !important;
  }
  .home-services-item:hover .home-services-reveal,
  .home-services-item:active .home-services-reveal {
    transform: translateY(0) !important;
  }
}

@media (max-width: 900px) {
  .service-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-directory-grid {
    grid-template-columns: 1fr;
  }
}
