/* ============================================================
   Lion Electric — Styles
   Brand palette mandated by build system
   ============================================================ */

:root {
  --primary: #0f3460;
  --primary-rgb: 15, 52, 96;
  --primary-dark: #082040;
  --primary-dark-rgb: 8, 32, 64;
  --primary-light: #1e5092;
  --primary-light-rgb: 30, 80, 146;
  --secondary: #b45309;
  --secondary-rgb: 180, 83, 9;
  --secondary-dark: #92400e;
  --secondary-dark-rgb: 146, 64, 14;
  --secondary-light: #fbbf24;
  --secondary-light-rgb: 251, 191, 36;
  --accent: #b45309;
  --accent-rgb: 180, 83, 9;
  --text: #1a1a1a;
  --text-rgb: 26, 26, 26;
  --text-light: #8b8b8b;
  --text-light-rgb: 139, 139, 139;
  --text-muted: #848b99;
  --text-muted-rgb: 132, 139, 153;
  /* Readable body-on-white tone — sits above WCAG AA */
  --text-body: #4b5563;
  --text-body-rgb: 75, 85, 99;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --surface: #f9fafb;
  --surface-rgb: 249, 250, 251;
  --surface-dark: #082040;
  --surface-dark-rgb: 8, 32, 64;
  --border: #e5e7eb;
  --border-rgb: 229, 231, 235;
  --border-light: #f3f4f6;
  --border-light-rgb: 243, 244, 246;
  --bg-alt: #f9fafb;
  --bg-alt-rgb: 249, 250, 251;

  /* Utility tokens */
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(var(--primary-dark-rgb), 0.06);
  --shadow: 0 10px 30px rgba(var(--primary-dark-rgb), 0.12);
  --shadow-lg: 0 20px 50px rgba(var(--primary-dark-rgb), 0.18);
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
  --font-head: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1240px;
  --container-pad: clamp(20px, 4vw, 40px);
}

/* ============ RESET / BASE ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--primary);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: clamp(60px, 8vw, 110px) 0;
}
.section--services { background: var(--background); }
.section--areas { background: var(--surface); }
.section--process { background: var(--surface); }
.section--split { background: var(--background); }
.section--contact { background: var(--surface); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--secondary-light); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title { color: var(--primary); }
.section-lead {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 65ch;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}
.btn--primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--secondary-rgb), 0.30);
}
.btn--secondary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn--secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(0,0,0,0.35);
  color: #ffffff;
  border-color: #ffffff;
  backdrop-filter: blur(2px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn--bright {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-color: var(--secondary-light);
  font-weight: 700;
}
.btn--bright:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--secondary-light-rgb), 0.40);
}
.btn--large { padding: 16px 30px; font-size: 1.02rem; }
.btn--compact { padding: 10px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary-dark);
  margin-top: 6px;
}
.link-arrow span { transition: transform var(--transition); }
.link-arrow:hover { color: var(--primary); }
.link-arrow:hover span { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(var(--primary-dark-rgb), 0.08); }

.topbar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}
.topbar__item--license { color: var(--secondary-light); font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
.topbar__icon { display: inline-flex; color: var(--secondary-light); }
.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.20);
}
.topbar__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  font-weight: 500;
  color: #ffffff;
}

.navbar { background: var(--background); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  height: 52px;
  width: auto;
  display: block;
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.primary-nav__link:hover,
.primary-nav__link.active {
  color: var(--secondary-dark);
}
.primary-nav__link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.caret { font-size: 0.85em; }

.has-dropdown { position: relative; }
.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--background);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 500;
  font-family: var(--font-head);
}
.dropdown li a:hover {
  background: var(--surface);
  color: var(--secondary-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  white-space: nowrap;
}
.phone-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary-dark);
}
.phone-link__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.phone-link__label {
  font-size: 0.72rem;
  color: var(--text-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.phone-link__number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
}
.phone-link:hover .phone-link__number { color: var(--secondary-dark); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(70px, 9vw, 130px) 0 clamp(70px, 9vw, 110px);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(var(--primary-dark-rgb), 0.94) 0%,
    rgba(var(--primary-dark-rgb), 0.84) 45%,
    rgba(var(--primary-dark-rgb), 0.68) 100%
  );
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero__content { max-width: 720px; }
.hero__title {
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero__title-accent {
  display: block;
  color: var(--secondary-light);
  font-weight: 600;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero__lead {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 60ch;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  margin-bottom: 28px;
}
.hero__lead strong { color: var(--secondary-light); font-weight: 700; }
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: rgba(255,255,255,0.94);
  font-size: 0.93rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero__card {
  background: var(--background);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__card-flag {
  display: inline-block;
  background: rgba(var(--secondary-rgb), 0.14);
  color: var(--secondary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.hero__card-title { color: var(--primary); margin-bottom: 6px; }
.hero__card-sub { color: var(--text-body); margin-bottom: 22px; font-size: 0.95rem; }
.hero__card-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.hero__card-list li {
  border-left: 3px solid var(--secondary);
  padding: 4px 0 4px 14px;
}
.hero__card-list strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
}
.hero__card-list span {
  font-size: 0.88rem;
  color: var(--text-body);
}

/* Hero quick-quote form */
.hero__form {
  display: grid;
  gap: 12px;
}
.hero__form-field {
  display: block;
}
.hero__form-field > span {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.84rem;
  margin-bottom: 5px;
}
.hero__form-field input,
.hero__form-field select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--background);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero__form-field input::placeholder {
  color: #94a3b8;
}
.hero__form-field input:focus,
.hero__form-field select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.15);
}
.hero__form .btn--block {
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 1rem;
}
.hero__form-note {
  font-size: 0.78rem;
  color: var(--text-body);
  margin: 6px 0 0;
  text-align: center;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--primary);
  color: #ffffff;
  padding: 36px 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
}
.trust-strip__num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: var(--secondary-light);
  line-height: 1;
}
.trust-strip__label {
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ============ SERVICE GRID ============ */
.service-grid {
  display: grid;
  gap: 24px;
}
.service-grid.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--secondary-rgb), 0.30);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-card__media img {
  transform: scale(1.04);
}
.service-card__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.service-card__body--full {
  flex: 1;
  background: var(--background);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 12px;
  margin-top: -52px;
  margin-bottom: 6px;
  box-shadow: 0 6px 14px rgba(var(--secondary-rgb), 0.25);
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--primary); }
.service-card p { color: var(--text-body); margin-bottom: 6px; }
.service-card .link-arrow { margin-top: auto; padding-top: 6px; }

.service-card--feature {
  border-color: rgba(var(--primary-rgb), 0.30);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, var(--background) 60%);
}
.service-card--feature .service-card__icon {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(var(--primary-rgb), 0.25);
}

/* ============ WHY / ABOUT ============ */
.section--why {
  position: relative;
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;
}
.why__media { position: absolute; inset: 0; z-index: -1; }
.why__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
}
.why__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(var(--primary-dark-rgb), 0.96) 0%,
    rgba(var(--primary-dark-rgb), 0.90) 50%,
    rgba(var(--primary-dark-rgb), 0.85) 100%
  );
}
.why__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.why__title { color: #ffffff; margin-bottom: 18px; }
.why__lead {
  color: rgba(255,255,255,0.90);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.why__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 26px 24px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  position: relative;
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.pillar h3 { color: #ffffff; margin-bottom: 8px; font-size: 1.1rem; }
.pillar p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0; line-height: 1.55; }

/* ============ PROCESS ============ */
.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  counter-reset: step;
}
.step {
  background: var(--background);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step__title { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
.step__text { color: var(--text-body); margin: 0; font-size: 0.95rem; }

/* ============ SPLIT (Residential / Commercial) ============ */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.split__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.split__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.split__card-inner {
  padding: clamp(28px, 4vw, 44px);
}
.split__card--com {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}
.split__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  background: rgba(var(--secondary-rgb), 0.14);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}
.split__card--com .split__tag {
  color: var(--secondary-light);
  background: rgba(var(--secondary-rgb), 0.18);
}
.split__title { color: var(--primary); margin-bottom: 10px; font-size: 1.6rem; }
.split__card--com .split__title { color: #ffffff; }
.split__text { color: var(--text-body); margin-bottom: 22px; }
.split__card--com .split__text { color: rgba(255,255,255,0.88); }
.split__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.split__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.96rem;
}
.split__card--com .split__list li { color: rgba(255,255,255,0.92); }
.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}
.split__card--com .split__list li::before {
  border-color: var(--secondary-light);
}
.split__card--com .btn--primary {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  color: #ffffff;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__media { position: absolute; inset: 0; z-index: -1; }
.cta-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--primary-dark-rgb), 0.92) 0%,
    rgba(var(--primary-dark-rgb), 0.75) 60%,
    rgba(var(--primary-dark-rgb), 0.65) 100%
  );
}
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 36px;
  align-items: center;
}
.cta-band__title {
  color: #ffffff;
  margin-bottom: 14px;
  max-width: 22ch;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.cta-band__text {
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============ SERVICE AREAS ============ */
.areas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.areas__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.area-tile {
  background: var(--background);
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.area-tile h3 { color: var(--primary); margin-bottom: 6px; font-size: 1.05rem; }
.area-tile p { color: var(--text-body); margin: 0; font-size: 0.92rem; }

/* ============ CREDENTIALS ============ */
.creds {
  background: var(--primary-dark);
  color: #ffffff;
  padding: clamp(50px, 6vw, 80px) 0;
}
.creds__head { text-align: center; margin-bottom: 36px; }
.creds__title { color: #ffffff; }
.creds__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.creds__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 26px 20px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.creds__label {
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.creds__value {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary-light);
  font-size: 1.18rem;
  line-height: 1.3;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-list__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-body);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-list__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.02rem;
  white-space: nowrap;
}
.contact-list li:nth-child(2) .contact-list__value { white-space: normal; }
.contact-list li:nth-child(3) .contact-list__value { white-space: normal; }
a.contact-list__value:hover { color: var(--secondary-dark); }

.quote-form {
  background: var(--background);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--secondary);
}
.quote-form__title { color: var(--primary); margin-bottom: 22px; }
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-form__field {
  display: block;
  margin-bottom: 14px;
}
.quote-form__field span {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--background);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quote-form__field input::placeholder,
.quote-form__field textarea::placeholder {
  color: #94a3b8;
}
.quote-form__field input:hover,
.quote-form__field select:hover,
.quote-form__field textarea:hover {
  border-color: #94a3b8;
}
.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.15);
}
.quote-form__note {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 12px 0 0;
  text-align: center;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--primary-dark);
  color: #ffffff;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 40px;
  padding: clamp(50px, 6vw, 80px) var(--container-pad);
}
.footer__col h3,
.footer__col h2 { color: #ffffff; }
.footer__brand {
  display: inline-block;
  margin-bottom: 22px;
  padding: 14px 22px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.footer__logo {
  height: 72px;
  width: auto;
  display: block;
  opacity: 1;
}
.footer__about {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  margin-bottom: 18px;
  max-width: 38ch;
}
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(var(--secondary-rgb), 0.18);
  color: var(--secondary-light);
  border: 1px solid rgba(var(--secondary-rgb), 0.30);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.footer__heading {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}
.footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__list a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.footer__list a:hover { color: var(--secondary-light); }
.footer__list--contact li {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer__phone {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary-light) !important;
  font-size: 1.10rem;
  white-space: nowrap;
}
.footer__phone:hover { color: #ffffff !important; }

.footer__bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  color: rgba(255,255,255,0.70);
  margin: 0;
  font-size: 0.88rem;
}
.footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
}
.footer__legal a,
.footer__legal span {
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
}
.footer__legal a:hover { color: var(--secondary-light); }

/* ============ MOBILE CALL FAB ============ */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 480px; }
  .why__inner { grid-template-columns: 1fr; }
  .why__pillars { grid-template-columns: repeat(2, 1fr); }
  .creds__list { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: var(--background);
    box-shadow: -8px 0 30px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 90px 24px 24px;
    overflow-y: auto;
    z-index: 95;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .primary-nav__link {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    justify-content: space-between;
  }
  .primary-nav__link.active::after { display: none; }
  .primary-nav__link.active { background: rgba(var(--secondary-rgb), 0.08); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--surface);
    margin: 4px 0 8px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: none;
  }
  .has-dropdown.is-open > .dropdown { display: block; }

  .nav-cta__btn { display: none; }
  .phone-link__text { display: none; }
  .phone-link__icon { width: 42px; height: 42px; }

  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .service-grid.service-grid--three { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }
  .areas { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .creds__list { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }

  .mobile-call { display: inline-flex; }
}

@media (max-width: 600px) {
  .topbar__right { display: none; }
  .topbar__item:not(.topbar__item--license) { display: none; }
  .topbar__divider { display: none; }

  .navbar__inner { min-height: 64px; }
  .brand__logo { height: 42px; }

  .hero__cta-row .btn { width: 100%; }
  .hero__card { padding: 24px; }
  .hero__card-list li { padding-left: 12px; }
  .hero__form-field input,
  .hero__form-field select { padding: 10px 12px; }

  .trust-strip__inner { grid-template-columns: 1fr; }
  .service-grid.service-grid--three { grid-template-columns: 1fr; }
  .why__pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .creds__list { grid-template-columns: 1fr; }

  .quote-form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Body scroll lock when mobile nav open */
body.nav-open { overflow: hidden; }

/* ============================================================
   SERVICES PAGE (catalog_index)
   ============================================================ */

/* Page hero (slim variant for non-home pages) */
body.page-services .page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 90px);
}
body.page-services .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
body.page-services .page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-services .page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(var(--primary-dark-rgb), 0.88) 0%,
      rgba(var(--primary-dark-rgb), 0.72) 45%,
      rgba(var(--primary-dark-rgb), 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.05) 60%,
      rgba(0,0,0,0.20) 100%
    );
}
body.page-services .page-hero__inner {
  max-width: 880px;
}
body.page-services .page-hero__title {
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
body.page-services .page-hero__lead {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 62ch;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  margin-bottom: 28px;
}
body.page-services .page-hero__lead strong {
  color: var(--secondary-light);
  font-weight: 700;
}
body.page-services .page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Hero CTA buttons: brighter primary + solid secondary for higher prominence on dark hero */
body.page-services .page-hero__cta .btn--primary {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-color: var(--secondary-light);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(var(--secondary-light-rgb), 0.35);
}
body.page-services .page-hero__cta .btn--primary:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(var(--secondary-light-rgb), 0.50);
}
/* Secondary (call) CTA: outlined in same yellow family as primary so the pair reads
   as one consistent hierarchy (primary filled, secondary outlined) instead of a clash. */
body.page-services .page-hero__cta .btn--ghost {
  background: rgba(var(--primary-dark-rgb), 0.35);
  color: #ffffff;
  border-color: var(--secondary-light);
  border-width: 2px;
  backdrop-filter: blur(2px);
  font-weight: 700;
}
body.page-services .page-hero__cta .btn--ghost:hover {
  background: rgba(var(--secondary-light-rgb), 0.18);
  color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(var(--secondary-light-rgb), 0.30);
}
body.page-services .page-hero__cta .btn--ghost svg {
  stroke: currentColor;
}

/* Breadcrumbs */
body.page-services .breadcrumbs {
  margin-bottom: 18px;
}
body.page-services .breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
body.page-services .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-services .breadcrumbs li + li::before {
  content: "›";
  color: rgba(255,255,255,0.55);
}
body.page-services .breadcrumbs a {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
body.page-services .breadcrumbs a:hover {
  color: var(--secondary-light);
  border-bottom-color: var(--secondary-light);
}
body.page-services .breadcrumbs [aria-current="page"] {
  color: var(--secondary-light);
  font-weight: 600;
}

/* Catalog section + grid */
body.page-services .section--catalog {
  background: var(--background);
}
body.page-services .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.page-services .catalog-card {
  background: var(--background);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-top: 3px solid rgba(var(--secondary-rgb), 0.55);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  box-shadow: 0 2px 6px rgba(var(--primary-dark-rgb), 0.06), 0 8px 20px rgba(var(--primary-dark-rgb), 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body.page-services .catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(var(--primary-dark-rgb), 0.10), 0 16px 36px rgba(var(--primary-dark-rgb), 0.16);
  border-color: rgba(var(--secondary-rgb), 0.55);
  border-top-color: var(--secondary);
}
body.page-services .catalog-card--feature {
  border-color: rgba(var(--primary-rgb), 0.35);
  border-top-color: var(--primary);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.05) 0%, var(--background) 60%);
}
body.page-services .catalog-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary-dark);
  margin-bottom: 4px;
}
body.page-services .catalog-card__icon svg {
  width: 22px;
  height: 22px;
}
body.page-services .catalog-card--feature .catalog-card__icon {
  background: var(--primary);
  color: #ffffff;
}
body.page-services .catalog-card__title {
  color: var(--primary);
  margin: 0;
  font-size: 1.2rem;
}
body.page-services .catalog-card__text {
  color: var(--text-body);
  margin: 0;
  font-size: 0.95rem;
}
body.page-services .catalog-card__tags {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.page-services .catalog-card__tags li {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.page-services .catalog-card__meta {
  margin: 8px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed var(--border);
  display: grid;
  gap: 4px;
}
body.page-services .catalog-card__meta dt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.page-services .catalog-card__meta dd {
  margin: 0;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.5;
}
body.page-services .catalog-card__link {
  margin-top: auto;
  padding-top: 6px;
}

/* Method note section */
body.page-services .section--method {
  background: var(--primary-dark);
  color: #ffffff;
  padding: clamp(60px, 8vw, 100px) 0;
}
body.page-services .section--method .eyebrow {
  color: var(--secondary-light);
}
body.page-services .method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
body.page-services .method__head {
  position: relative;
}
body.page-services .method__title {
  color: #ffffff;
  margin: 0 0 16px;
  max-width: 22ch;
}
body.page-services .method__intro {
  color: rgba(255,255,255,0.82);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
}
body.page-services .method__body p {
  color: rgba(255,255,255,0.92);
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.65;
}
body.page-services .method__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
body.page-services .method__points li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}
body.page-services .method__points li strong {
  display: block;
  color: var(--secondary-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Single CTA section: distinct band with bordered card so it reads as its own contact band */
body.page-services .section--single-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), 0.14) 0%, rgba(var(--secondary-rgb), 0.12) 100%),
    var(--surface);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 4px solid var(--secondary);
  overflow: hidden;
  isolation: isolate;
}
body.page-services .section--single-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 20%, rgba(var(--primary-rgb), 0.18), transparent 55%),
    radial-gradient(circle at 88% 80%, rgba(var(--secondary-rgb), 0.18), transparent 55%);
}
body.page-services .single-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  background: var(--background);
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}
body.page-services .single-cta__title {
  color: var(--primary);
  margin: 8px 0 14px;
}
body.page-services .single-cta__text {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
body.page-services .single-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
/* Boost primary button prominence on the light single-CTA card */
body.page-services .single-cta__actions .btn--primary {
  box-shadow: 0 10px 24px rgba(var(--secondary-rgb), 0.28);
}
body.page-services .single-cta__actions .btn--primary:hover {
  box-shadow: 0 14px 30px rgba(var(--secondary-rgb), 0.42);
}
/* Override ghost button for use on the light single-CTA background */
body.page-services .single-cta__actions .btn--ghost {
  background: var(--background);
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: none;
}
body.page-services .single-cta__actions .btn--ghost:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
body.page-services .single-cta__note {
  margin: 0;
  color: var(--text-body);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1080px) {
  body.page-services .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  body.page-services .method { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body.page-services .catalog-grid { grid-template-columns: 1fr; }
  body.page-services .method__points { grid-template-columns: 1fr; }
  body.page-services .page-hero__cta .btn { width: 100%; }
}

/* ============================================================
   RESIDENTIAL ELECTRICIAN PAGE (service_detail · NarrativeWorkflow)
   Distinct band sequence from page-services; reuses brand tokens.
   ============================================================ */

/* --- Page hero (shared shape, scoped here so services-only rules don't apply) --- */
body.page-residential .page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 7vw, 96px);
}
body.page-residential .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
body.page-residential .page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}
body.page-residential .page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(var(--primary-dark-rgb), 0.96) 0%,
      rgba(var(--primary-dark-rgb), 0.88) 45%,
      rgba(var(--primary-dark-rgb), 0.70) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.15) 55%,
      rgba(0,0,0,0.40) 100%
    );
}
body.page-residential .page-hero__inner {
  max-width: 900px;
  position: relative;
}
body.page-residential .page-hero__title {
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55);
  max-width: 22ch;
}
body.page-residential .page-hero__lead {
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 62ch;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  margin-bottom: 28px;
}
body.page-residential .page-hero__lead strong {
  color: #ffffff;
  font-weight: 700;
  padding: 1px 6px;
  background: rgba(var(--secondary-light-rgb), 0.18);
  border-radius: 3px;
}
body.page-residential .page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
body.page-residential .page-hero__cta .btn--primary {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 18px 34px;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 32px rgba(var(--secondary-rgb), 0.55),
    0 0 0 2px rgba(var(--secondary-light-rgb), 0.35);
}
body.page-residential .page-hero__cta .btn--primary:hover {
  background: var(--secondary-dark);
  color: #ffffff;
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(var(--secondary-rgb), 0.65),
    0 0 0 2px rgba(var(--secondary-light-rgb), 0.55);
}
body.page-residential .page-hero__cta .btn--ghost {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  border-width: 2px;
  backdrop-filter: none;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.30);
}
body.page-residential .page-hero__cta .btn--ghost:hover {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(var(--secondary-light-rgb), 0.45);
}
body.page-residential .page-hero__cta .btn--ghost svg {
  stroke: var(--primary-dark);
}

/* Breadcrumbs (scoped to residential) */
body.page-residential .breadcrumbs { margin-bottom: 18px; }
body.page-residential .breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
body.page-residential .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-residential .breadcrumbs li + li::before {
  content: "›";
  color: rgba(255,255,255,0.55);
}
body.page-residential .breadcrumbs a {
  color: rgba(255,255,255,0.90);
  border-bottom: 1px solid transparent;
}
body.page-residential .breadcrumbs a:hover {
  color: var(--secondary-light);
  border-bottom-color: var(--secondary-light);
}
body.page-residential .breadcrumbs [aria-current="page"] {
  color: var(--secondary-light);
  font-weight: 600;
}

/* Hero proof row (compact pills) */
body.page-residential .res-hero-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255,255,255,0.95);
  font-size: 0.88rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
body.page-residential .res-hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
}
body.page-residential .res-hero-proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-light);
  box-shadow: 0 0 0 3px rgba(var(--secondary-light-rgb), 0.25);
}

/* --- TRIGGERS section (light band, ordered "you-probably-found-us-because" cards) --- */
body.page-residential .section--res-triggers { background: var(--background); }
body.page-residential .res-triggers {
  list-style: none;
  counter-reset: rtrig;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
body.page-residential .res-trigger {
  counter-increment: rtrig;
  position: relative;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: 0 2px 6px rgba(var(--primary-dark-rgb), 0.05), 0 12px 28px rgba(var(--primary-dark-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
body.page-residential .res-trigger::before {
  content: counter(rtrig, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(var(--primary-rgb), 0.18);
  letter-spacing: 0.04em;
}
body.page-residential .res-trigger:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--secondary-rgb), 0.45);
  box-shadow: 0 8px 18px rgba(var(--primary-dark-rgb), 0.10), 0 18px 34px rgba(var(--primary-dark-rgb), 0.14);
}
body.page-residential .res-trigger__tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary-dark);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
body.page-residential .res-trigger__title {
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 4px 0 0;
  padding-right: 36px;
}
body.page-residential .res-trigger__text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
}

/* --- PROCESS section (dark band, numbered vertical-rail steps) --- */
body.page-residential .section--res-process {
  background: var(--primary-dark);
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body.page-residential .section--res-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--secondary-rgb), 0.18), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(var(--primary-light-rgb), 0.22), transparent 55%);
  opacity: 0.55;
}
body.page-residential .section--res-process .section-head .eyebrow {
  color: var(--secondary-light);
}
body.page-residential .res-process__title {
  color: #ffffff;
  margin: 0 0 14px;
}
body.page-residential .res-process__intro {
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
  max-width: 56ch;
}
body.page-residential .res-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  counter-reset: rstep;
}
body.page-residential .res-process__step {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 3px solid var(--secondary-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
body.page-residential .res-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
body.page-residential .res-process__step-title {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}
body.page-residential .res-process__step-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

/* --- SCOPE section (light band, three matrix columns) --- */
body.page-residential .section--res-scope { background: var(--surface); }
body.page-residential .res-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
body.page-residential .res-scope__col {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(var(--primary-dark-rgb), 0.06);
  min-width: 0;
}
body.page-residential .res-scope__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
}
body.page-residential .res-scope__icon svg {
  width: 22px;
  height: 22px;
}
body.page-residential .res-scope__col-title {
  color: var(--primary);
  font-size: 1.15rem;
  margin: 4px 0 6px;
}
body.page-residential .res-scope__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
body.page-residential .res-scope__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
}
body.page-residential .res-scope__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--secondary);
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--secondary) 45% 55%, transparent 55% 100%),
    transparent;
}
body.page-residential .res-scope__note {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 16px 20px;
  background: rgba(var(--primary-rgb), 0.05);
  border-left: 3px solid var(--secondary);
  border-radius: 8px;
  color: var(--text-body);
  font-size: 0.95rem;
}
body.page-residential .res-scope__note strong {
  color: var(--primary);
  font-weight: 700;
}

/* --- FAQ section (light band, accordion) --- */
body.page-residential .section--res-faq { background: var(--background); }
body.page-residential .res-faq {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
body.page-residential .res-faq__item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
body.page-residential .res-faq__item[open] {
  border-color: rgba(var(--primary-rgb), 0.30);
  box-shadow: 0 6px 18px rgba(var(--primary-dark-rgb), 0.08);
}
body.page-residential .res-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
}
body.page-residential .res-faq__item summary::-webkit-details-marker { display: none; }
body.page-residential .res-faq__item summary:hover { background: var(--surface); }
body.page-residential .res-faq__q {
  font-size: 1.02rem;
  line-height: 1.4;
}
body.page-residential .res-faq__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
body.page-residential .res-faq__item[open] .res-faq__chevron {
  transform: rotate(45deg);
  background: var(--secondary);
  color: #ffffff;
}
body.page-residential .res-faq__a {
  padding: 0 22px 20px;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}
body.page-residential .res-faq__a p { margin: 0; }

/* --- CTA band (book residential help — two-column with related links aside) --- */
body.page-residential .section--res-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), 0.22) 0%, rgba(var(--secondary-rgb), 0.20) 100%),
    var(--surface);
  border-top: 6px solid var(--secondary);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.18);
  overflow: hidden;
  isolation: isolate;
}
body.page-residential .section--res-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 30%, rgba(var(--primary-rgb), 0.18), transparent 55%),
    radial-gradient(circle at 82% 75%, rgba(var(--secondary-rgb), 0.20), transparent 55%);
}
body.page-residential .res-cta {
  background: var(--background);
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
body.page-residential .res-cta__text .eyebrow { color: var(--secondary-dark); }
body.page-residential .res-cta__title {
  color: var(--primary);
  margin: 6px 0 14px;
}
body.page-residential .res-cta__lead {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
body.page-residential .res-cta__points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
body.page-residential .res-cta__points li {
  padding: 12px 16px;
  background: var(--surface);
  border-left: 3px solid var(--secondary);
  border-radius: 6px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.55;
}
body.page-residential .res-cta__points strong {
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  display: inline;
  margin-right: 4px;
}
body.page-residential .res-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
body.page-residential .res-cta__actions .btn--ghost {
  background: var(--background);
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: none;
}
body.page-residential .res-cta__actions .btn--ghost:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
body.page-residential .res-cta__note {
  margin: 0;
  color: var(--text-body);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
body.page-residential .res-cta__related {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.06) 0%, var(--surface) 80%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
body.page-residential .res-cta__related-title {
  color: var(--primary);
  font-size: 0.92rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
body.page-residential .res-cta__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
body.page-residential .res-cta__related-list li + li {
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  margin-top: 6px;
}
body.page-residential .res-cta__related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
body.page-residential .res-cta__related-list a:hover {
  color: var(--secondary-dark);
}
body.page-residential .res-cta__related-list a span {
  color: var(--secondary-dark);
  transition: transform var(--transition);
}
body.page-residential .res-cta__related-list a:hover span {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  body.page-residential .res-triggers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-residential .res-process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body.page-residential .res-scope { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-residential .res-cta { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.page-residential .res-triggers { grid-template-columns: 1fr; }
  body.page-residential .res-process__steps { grid-template-columns: 1fr; }
  body.page-residential .res-scope { grid-template-columns: 1fr; }
  body.page-residential .page-hero__cta .btn { width: 100%; }
  body.page-residential .res-cta__actions .btn { width: 100%; }
}

/* ============================================================
   COMMERCIAL ELECTRICIAN PAGE (service_detail · ConversationalFAQ)
   Distinct section banding from page-services and page-residential.
   Uses brand tokens; lead section is the Q&A, not the hero proof row.
   ============================================================ */

/* --- Page hero (shared shape, scoped here so other page rules don't apply) --- */
body.page-commercial .page-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 7vw, 96px);
}
body.page-commercial .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
body.page-commercial .page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.04) contrast(1.02) brightness(0.92);
}
body.page-commercial .page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      95deg,
      rgba(var(--primary-dark-rgb), 0.92) 0%,
      rgba(var(--primary-dark-rgb), 0.82) 45%,
      rgba(var(--primary-dark-rgb), 0.70) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.45) 100%);
}
body.page-commercial .page-hero__inner {
  max-width: 920px;
  position: relative;
}
body.page-commercial .page-hero__title {
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.70), 0 1px 2px rgba(0,0,0,0.55);
  max-width: 24ch;
}
body.page-commercial .page-hero__lead {
  color: rgba(255,255,255,0.97);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 64ch;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55);
  margin-bottom: 28px;
}
body.page-commercial .page-hero__lead strong {
  color: #ffffff;
  font-weight: 700;
  padding: 1px 6px;
  background: rgba(var(--secondary-light-rgb), 0.18);
  border-radius: 3px;
}
body.page-commercial .page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
body.page-commercial .page-hero__cta .btn--primary {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  font-weight: 800;
  font-size: 1.06rem;
  padding: 18px 32px;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 32px rgba(var(--secondary-rgb), 0.55),
    0 0 0 2px rgba(var(--secondary-light-rgb), 0.32);
}
body.page-commercial .page-hero__cta .btn--primary:hover {
  background: var(--secondary-dark);
  color: #ffffff;
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(var(--secondary-rgb), 0.65),
    0 0 0 2px rgba(var(--secondary-light-rgb), 0.55);
}
body.page-commercial .page-hero__cta .btn--ghost {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  border-width: 2px;
  backdrop-filter: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.30);
}
body.page-commercial .page-hero__cta .btn--ghost:hover {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(var(--secondary-light-rgb), 0.45);
}
body.page-commercial .page-hero__cta .btn--ghost svg {
  stroke: var(--primary-dark);
}

/* Breadcrumbs (scoped) */
body.page-commercial .breadcrumbs { margin-bottom: 18px; }
body.page-commercial .breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
body.page-commercial .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-commercial .breadcrumbs li + li::before {
  content: "›";
  color: rgba(255,255,255,0.55);
}
body.page-commercial .breadcrumbs a {
  color: rgba(255,255,255,0.90);
  border-bottom: 1px solid transparent;
}
body.page-commercial .breadcrumbs a:hover {
  color: var(--secondary-light);
  border-bottom-color: var(--secondary-light);
}
body.page-commercial .breadcrumbs [aria-current="page"] {
  color: var(--secondary-light);
  font-weight: 600;
}

/* Hero "marquee" — distinct from residential's pill-row proof */
body.page-commercial .com-hero-marquee {
  list-style: none;
  margin: 0;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 3px solid var(--secondary-light);
  border-radius: 10px;
  color: #ffffff;
}
body.page-commercial .com-hero-marquee li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
body.page-commercial .com-hero-marquee__label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-light);
  font-weight: 700;
}
body.page-commercial .com-hero-marquee__value {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* --- QA (ConversationalFAQ LEAD — light band, dialog cards) --- */
body.page-commercial .section--com-qa { background: var(--background); }
body.page-commercial .section--com-qa .section-head { max-width: 880px; }
body.page-commercial .com-qa {
  list-style: none;
  counter-reset: cqa;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
body.page-commercial .com-qa__item {
  counter-increment: cqa;
  background: var(--background);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 24px clamp(22px, 3vw, 32px) 26px;
  box-shadow: 0 2px 6px rgba(var(--primary-dark-rgb), 0.05), 0 12px 28px rgba(var(--primary-dark-rgb), 0.07);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 26px 36px;
  align-items: start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body.page-commercial .com-qa__item:hover {
  transform: translateY(-2px);
  border-left-color: var(--secondary-dark);
  box-shadow: 0 8px 18px rgba(var(--primary-dark-rgb), 0.10), 0 18px 34px rgba(var(--primary-dark-rgb), 0.14);
}
body.page-commercial .com-qa__q {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-right: 18px;
  border-right: 1px dashed rgba(var(--primary-rgb), 0.18);
}
body.page-commercial .com-qa__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.page-commercial .com-qa__q-text {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.4;
  color: var(--primary);
}
body.page-commercial .com-qa__q-text::before {
  content: "“";
  display: inline-block;
  margin-right: 4px;
  color: var(--secondary);
  font-family: 'Barlow', Georgia, serif;
  font-weight: 800;
}
body.page-commercial .com-qa__q-text::after {
  content: "”";
  display: inline-block;
  margin-left: 2px;
  color: var(--secondary);
  font-family: 'Barlow', Georgia, serif;
  font-weight: 800;
}
body.page-commercial .com-qa__a {
  position: relative;
  padding-left: 56px;
}
body.page-commercial .com-qa__a-tag {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(var(--secondary-rgb), 0.40);
}
body.page-commercial .com-qa__a p {
  margin: 0;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- CASES (commercial situations — distinct from residential trigger cards) --- */
body.page-commercial .section--com-cases {
  background: var(--surface);
  position: relative;
}
body.page-commercial .section--com-cases::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(var(--primary-rgb), 0.06), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(var(--secondary-rgb), 0.08), transparent 55%);
  pointer-events: none;
}
body.page-commercial .section--com-cases > .container { position: relative; z-index: 1; }
body.page-commercial .com-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
body.page-commercial .com-case {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px;
  box-shadow: 0 2px 6px rgba(var(--primary-dark-rgb), 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
body.page-commercial .com-case:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--secondary-rgb), 0.40);
  box-shadow: 0 8px 18px rgba(var(--primary-dark-rgb), 0.08), 0 16px 32px rgba(var(--primary-dark-rgb), 0.10);
}
body.page-commercial .com-case__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.10), rgba(var(--secondary-rgb), 0.14));
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
body.page-commercial .com-case__body { min-width: 0; display: flex; flex-direction: column; gap: 10px; }
body.page-commercial .com-case__sector {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 11px;
  background: rgba(var(--secondary-rgb), 0.12);
  color: var(--secondary-dark);
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.page-commercial .com-case__title {
  color: var(--primary);
  font-size: 1.14rem;
  line-height: 1.4;
  margin: 2px 0 0;
}
body.page-commercial .com-case__text {
  color: var(--text-body);
  font-size: 1.0rem;
  line-height: 1.6;
  margin: 0;
}

/* --- FLOW (dark band, vertical workflow with sub-points per step) --- */
body.page-commercial .section--com-flow {
  background: var(--primary);
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body.page-commercial .section--com-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(var(--secondary-rgb), 0.22), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(var(--primary-light-rgb), 0.28), transparent 55%);
  opacity: 0.7;
}
body.page-commercial .section--com-flow .section-head .eyebrow {
  color: var(--secondary-light);
}
body.page-commercial .com-flow__title {
  color: #ffffff;
  margin: 0 0 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
body.page-commercial .com-flow__intro {
  color: rgba(255,255,255,0.96);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 62ch;
}
body.page-commercial .com-flow__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  counter-reset: cflow;
}
body.page-commercial .com-flow__step {
  position: relative;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-left: 3px solid var(--secondary-light);
  border-radius: var(--radius-lg);
  padding: 26px clamp(24px, 3vw, 32px);
  color: #ffffff;
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 22px 28px;
  align-items: start;
  min-width: 0;
}
body.page-commercial .com-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
body.page-commercial .com-flow__step-title {
  color: #ffffff;
  font-size: 1.18rem;
  margin: 4px 0 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
body.page-commercial .com-flow__step-text {
  color: rgba(255,255,255,0.96);
  font-size: 0.99rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}
body.page-commercial .com-flow__step-text em {
  color: var(--secondary-light);
  font-style: normal;
  font-weight: 700;
}
body.page-commercial .com-flow__step-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  align-self: start;
}
body.page-commercial .com-flow__step-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
body.page-commercial .com-flow__step-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--secondary-light);
  box-shadow: 0 0 0 3px rgba(var(--secondary-light-rgb), 0.18);
}

/* --- CTA (book_specific_service — split with coverage card) --- */
body.page-commercial .section--com-cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(var(--primary-rgb), 0.16) 0%, rgba(var(--secondary-rgb), 0.18) 100%),
    var(--surface);
  border-top: 6px solid var(--secondary);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.18);
  overflow: hidden;
  isolation: isolate;
}
body.page-commercial .section--com-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 28%, rgba(var(--primary-rgb), 0.18), transparent 55%),
    radial-gradient(circle at 86% 78%, rgba(var(--secondary-rgb), 0.20), transparent 55%);
}
body.page-commercial .com-cta {
  background: var(--background);
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
body.page-commercial .com-cta__text .eyebrow { color: var(--secondary-dark); }
body.page-commercial .com-cta__title {
  color: var(--primary);
  margin: 6px 0 14px;
}
body.page-commercial .com-cta__lead {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
body.page-commercial .com-cta__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
body.page-commercial .com-cta__checks li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 8px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.55;
  align-items: start;
}
body.page-commercial .com-cta__checks strong {
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  display: inline;
  margin-right: 4px;
}
body.page-commercial .com-cta__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  margin-top: 1px;
}
body.page-commercial .com-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
body.page-commercial .com-cta__actions .btn--ghost {
  background: var(--background);
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: none;
}
body.page-commercial .com-cta__actions .btn--ghost:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
body.page-commercial .com-cta__actions .btn--ghost svg { stroke: currentColor; }
body.page-commercial .com-cta__note {
  margin: 0;
  color: var(--text-body);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
body.page-commercial .com-cta__card {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.06) 0%, var(--surface) 80%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.page-commercial .com-cta__card-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.page-commercial .com-cta__card-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-dark);
}
body.page-commercial .com-cta__card-title {
  color: var(--primary);
  font-size: 1.08rem;
  margin: 6px 0 0;
  line-height: 1.35;
}
body.page-commercial .com-cta__grid {
  margin: 0;
  display: grid;
  gap: 12px;
}
body.page-commercial .com-cta__grid-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
body.page-commercial .com-cta__grid-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
body.page-commercial .com-cta__grid dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
}
body.page-commercial .com-cta__grid dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
}
body.page-commercial .com-cta__related {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-commercial .com-cta__related-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-dark);
}
body.page-commercial .com-cta__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
body.page-commercial .com-cta__related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.93rem;
  border-bottom: 1px dashed transparent;
}
body.page-commercial .com-cta__related-list li + li a {
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  margin-top: 2px;
}
body.page-commercial .com-cta__related-list a:hover { color: var(--secondary-dark); }
body.page-commercial .com-cta__related-list a span {
  color: var(--secondary-dark);
  transition: transform var(--transition);
}
body.page-commercial .com-cta__related-list a:hover span {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  body.page-commercial .com-hero-marquee { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-commercial .com-qa__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.page-commercial .com-qa__q {
    padding-right: 0;
    border-right: none;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(var(--primary-rgb), 0.20);
  }
  body.page-commercial .com-cases { grid-template-columns: 1fr; }
  body.page-commercial .com-flow__step {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  body.page-commercial .com-flow__step-points {
    grid-column: 1 / -1;
    padding-left: 86px;
  }
  body.page-commercial .com-cta { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.page-commercial .com-hero-marquee {
    grid-template-columns: 1fr;
    padding: 14px 18px;
  }
  body.page-commercial .com-case { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  body.page-commercial .com-case__index { width: 44px; height: 44px; font-size: 1.05rem; border-radius: 10px; }
  body.page-commercial .com-flow__step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }
  body.page-commercial .com-flow__num { width: 52px; height: 52px; font-size: 1.3rem; }
  body.page-commercial .com-flow__step-points {
    grid-column: auto;
    padding-left: 0;
  }
  body.page-commercial .com-qa__a { padding-left: 0; padding-top: 50px; }
  body.page-commercial .com-qa__a-tag { top: 0; }
  body.page-commercial .page-hero__cta .btn { width: 100%; }
  body.page-commercial .com-cta__actions .btn { width: 100%; }
}
