/* Services Hub V1
   Page-scoped styles for /services/. Global navigation behavior stays in main.js. */

.services-hub-v1 {
  --services-navy: #071f35;
  --services-navy-2: #0d2c48;
  --services-green: #1f6c47;
  --services-green-dark: #17563a;
  --services-mint: #dff3e8;
  --services-cream: #f6f4ed;
  --services-white: #ffffff;
  --services-ink: #122231;
  --services-muted: #5f6e78;
  --services-line: #dce3e6;
  --services-shadow: 0 18px 50px rgba(7, 31, 53, .11);
  color: var(--services-ink);
  background: var(--services-white);
}

.services-hub-v1 *,
.services-hub-v1 *::before,
.services-hub-v1 *::after {
  box-sizing: border-box;
}

.services-hub-v1 main {
  overflow: clip;
}

.services-hub-v1 .home-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2147483647;
  padding: 12px 16px;
  color: #fff;
  background: var(--services-navy);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.services-hub-v1 .home-skip-link:focus {
  transform: translateY(0);
}

.services-hub-v1 a {
  text-underline-offset: .2em;
}

.services-hub-v1 a:focus-visible,
.services-hub-v1 button:focus-visible,
.services-hub-v1 summary:focus-visible {
  outline: 3px solid #f2bd4f;
  outline-offset: 4px;
  border-radius: 4px;
}

.services-hub-v1 .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-hub-v1 .btn-primary {
  color: #fff;
  background: var(--services-green);
  border-color: var(--services-green);
  box-shadow: 0 10px 26px rgba(31, 108, 71, .22);
}

.services-hub-v1 .btn-primary:hover {
  color: #fff;
  background: var(--services-green-dark);
  border-color: var(--services-green-dark);
  transform: translateY(-1px);
}

.services-hub-v1 .site-header {
  background: rgba(7, 31, 53, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 28px rgba(7, 31, 53, .2);
}

.services-hub-v1 .nav-links {
  gap: clamp(12px, 1.15vw, 22px);
}

.services-hub-v1 .nav-links > a,
.services-hub-v1 .nav-dropdown__trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .91rem;
  white-space: nowrap;
}

.services-hub-v1 .header-call,
.services-hub-v1 .header-cta {
  white-space: nowrap;
}

.services-hub-v1 .brand-lockup {
  height: 60px !important;
}

.services-hub-v1 .nav-links a[aria-current="page"] {
  color: #fff;
}

.services-hub-v1 .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.services-hub-v1 .services-breadcrumb {
  color: #cbd8e2;
  background: #06192a;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.services-hub-v1 .services-breadcrumb .container {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.services-hub-v1 .services-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

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

.services-hub-v1 .services-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 115, 77, .22), transparent 42%),
    linear-gradient(115deg, #071f35 0%, #0b2944 58%, #0a2138 100%);
  isolation: isolate;
}

.services-hub-v1 .services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.services-hub-v1 .services-hero__grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding-top: clamp(68px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.services-hub-v1 .services-hero__copy {
  max-width: 720px;
}

.services-hub-v1 .services-eyebrow {
  margin: 0 0 14px;
  color: #9ee0bd;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.services-hub-v1 .services-section .services-eyebrow {
  color: var(--services-green-dark);
}

.services-hub-v1 .services-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 5.45vw, 5.35rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.services-hub-v1 .services-hero__lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #d8e3eb;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.services-hub-v1 .services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.services-hub-v1 .services-hero__actions .btn,
.services-hub-v1 .services-btn-commercial {
  min-height: 52px;
  padding: 13px 21px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.services-hub-v1 .services-btn-commercial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .07);
}

.services-hub-v1 .services-btn-commercial:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
}

.services-hub-v1 .services-phone-link {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.services-hub-v1 .services-phone-link:hover {
  text-decoration: underline;
}

.services-hub-v1 .services-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.services-hub-v1 .services-trust-list li {
  padding: 8px 11px;
  color: #dbe9e1;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.services-hub-v1 .services-hero__visuals {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.services-hub-v1 .services-hero-image {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0,0,0,.27);
  text-decoration: none;
  transform: translateY(-28px);
}

.services-hub-v1 .services-hero-image--commercial {
  transform: translateY(34px);
}

.services-hub-v1 .services-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,16,28,.86));
}

.services-hub-v1 .services-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.services-hub-v1 .services-hero-image:hover img {
  transform: scale(1.025);
}

.services-hub-v1 .services-hero-image span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 19px;
  left: 20px;
  display: grid;
  gap: 2px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.services-hub-v1 .services-hero-image small {
  color: #b4e5c9;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.services-hub-v1 .services-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.services-hub-v1 .services-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.services-hub-v1 .services-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-hub-v1 .services-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .64fr);
  gap: 48px;
  align-items: end;
}

.services-hub-v1 .services-heading h2,
.services-hub-v1 .services-customers h2,
.services-hub-v1 .services-why h2,
.services-hub-v1 .services-areas h2 {
  margin: 0;
  color: var(--services-navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.services-hub-v1 .services-heading > p,
.services-hub-v1 .services-heading--split > p,
.services-hub-v1 .services-customers__grid > div > p:last-child,
.services-hub-v1 .services-why__grid > div > p:last-child,
.services-hub-v1 .services-areas__grid > div > p {
  margin: 18px 0 0;
  color: var(--services-muted);
  line-height: 1.7;
}

.services-hub-v1 .services-heading--split > p {
  margin: 0;
}

.services-hub-v1 .services-audiences {
  background: var(--services-cream);
}

.services-hub-v1 .services-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.services-hub-v1 .services-audience-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--services-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--services-shadow);
}

.services-hub-v1 .services-audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--services-green);
}

.services-hub-v1 .services-audience-card--commercial {
  color: #fff;
  border-color: var(--services-navy);
  background: var(--services-navy);
}

.services-hub-v1 .services-audience-card--commercial::before {
  background: #74c99b;
}

.services-hub-v1 .services-audience-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--services-green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services-hub-v1 .services-audience-card--commercial .services-audience-card__top {
  color: #a9e3c2;
}

.services-hub-v1 .services-audience-card__top strong {
  padding: 7px 10px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .68rem;
}

.services-hub-v1 .services-audience-card h3 {
  margin: 0;
  color: var(--services-navy);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -.03em;
}

.services-hub-v1 .services-audience-card--commercial h3 {
  color: #fff;
}

.services-hub-v1 .services-audience-card p {
  margin: 16px 0;
  color: var(--services-muted);
  line-height: 1.7;
}

.services-hub-v1 .services-audience-card--commercial p,
.services-hub-v1 .services-audience-card--commercial li {
  color: #d6e2ea;
}

.services-hub-v1 .services-audience-card ul,
.services-hub-v1 .services-model-grid ul,
.services-hub-v1 .services-decision-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.services-hub-v1 .services-audience-card li,
.services-hub-v1 .services-model-grid li,
.services-hub-v1 .services-decision-grid li {
  position: relative;
  padding-left: 21px;
  line-height: 1.55;
}

.services-hub-v1 .services-audience-card li::before,
.services-hub-v1 .services-model-grid li::before,
.services-hub-v1 .services-decision-grid li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #3b9b68;
  font-weight: 900;
}

.services-hub-v1 .services-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.services-hub-v1 .services-card-actions > a:not(.btn) {
  color: var(--services-green-dark);
  font-weight: 800;
}

.services-hub-v1 .services-audience-card--commercial .services-card-actions > a:not(.btn) {
  color: #b6e8cb;
}

.services-hub-v1 .services-priority--residential {
  background: #fff;
}

.services-hub-v1 .services-priority--commercial {
  background: #edf3f5;
}

.services-hub-v1 .services-priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-hub-v1 .services-priority-grid article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--services-line);
  border-radius: 18px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.services-hub-v1 .services-priority-grid article:hover {
  border-color: #a9c9b7;
  box-shadow: 0 15px 36px rgba(7,31,53,.08);
  transform: translateY(-3px);
}

.services-hub-v1 .services-priority-grid article > span,
.services-hub-v1 .services-why-list article > span {
  color: var(--services-green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.services-hub-v1 .services-priority-grid h3 {
  margin: 24px 0 10px;
  color: var(--services-navy);
  font-size: 1.15rem;
}

.services-hub-v1 .services-priority-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.services-hub-v1 .services-priority-grid h3 a:hover,
.services-hub-v1 .services-priority-grid p a:hover {
  text-decoration: underline;
}

.services-hub-v1 .services-priority-grid p {
  margin: 0;
  color: var(--services-muted);
  font-size: .93rem;
  line-height: 1.6;
}

.services-hub-v1 .services-priority-grid p a {
  color: var(--services-green-dark);
  font-weight: 700;
}

.services-hub-v1 .services-center-cta {
  margin-top: 34px;
  text-align: center;
}

.services-hub-v1 .services-text-link {
  color: var(--services-green-dark);
  font-weight: 900;
  text-decoration: none;
}

.services-hub-v1 .services-text-link:hover {
  text-decoration: underline;
}

.services-hub-v1 .services-directory {
  color: #fff;
  background: var(--services-navy);
}

.services-hub-v1 .services-directory .services-eyebrow {
  color: #a9e3c2;
}

.services-hub-v1 .services-directory .services-heading h2 {
  color: #fff;
}

.services-hub-v1 .services-directory .services-heading > p,
.services-hub-v1 .services-directory .services-heading--split > p {
  color: #d1dde6;
}

.services-hub-v1 .services-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-hub-v1 .services-directory-grid section {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.services-hub-v1 .services-directory-grid h3 {
  min-height: 48px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.12rem;
}

.services-hub-v1 .services-directory-grid ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-hub-v1 .services-directory-grid a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #dbe7ee;
  border-bottom: 1px solid rgba(255,255,255,.09);
  text-decoration: none;
}

.services-hub-v1 .services-directory-grid li:last-child a {
  border-bottom: 0;
}

.services-hub-v1 .services-directory-grid a:hover {
  color: #b4e6c9;
  padding-left: 4px;
}

.services-hub-v1 .services-models {
  background: var(--services-cream);
}

.services-hub-v1 .services-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-hub-v1 .services-model-grid article {
  padding: 32px;
  border: 1px solid var(--services-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7,31,53,.06);
}

.services-hub-v1 .services-model-grid article > span {
  color: var(--services-green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.services-hub-v1 .services-model-grid h3 {
  margin: 18px 0;
  color: var(--services-navy);
  font-size: 1.35rem;
}

.services-hub-v1 .services-model-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--services-green-dark);
  font-weight: 900;
}

.services-hub-v1 .services-customers__grid,
.services-hub-v1 .services-why__grid,
.services-hub-v1 .services-areas__grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.services-hub-v1 .services-customer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.services-hub-v1 .services-customer-groups section {
  padding: 28px;
  border: 1px solid var(--services-line);
  border-radius: 18px;
  background: #fff;
}

.services-hub-v1 .services-customer-groups h3,
.services-hub-v1 .services-resource-grid h3 {
  margin: 0 0 18px;
  color: var(--services-navy);
}

.services-hub-v1 .services-customer-groups ul,
.services-hub-v1 .services-resource-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.services-hub-v1 .services-customer-groups a,
.services-hub-v1 .services-resource-grid a {
  color: var(--services-green-dark);
  font-weight: 700;
}

.services-hub-v1 .services-decision {
  background: #eef4f0;
}

.services-hub-v1 .services-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.services-hub-v1 .services-decision-grid article {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #cddbd2;
  border-radius: 22px;
  background: #fff;
}

.services-hub-v1 .services-decision-grid article:last-child {
  color: #fff;
  border-color: var(--services-navy);
  background: var(--services-navy);
}

.services-hub-v1 .services-decision-grid h3 {
  margin: 0;
  color: var(--services-navy);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.services-hub-v1 .services-decision-grid article:last-child h3 {
  color: #fff;
}

.services-hub-v1 .services-decision-grid li {
  color: var(--services-muted);
}

.services-hub-v1 .services-decision-grid article:last-child li {
  color: #d3e0e8;
}

.services-hub-v1 .services-decision-grid .btn {
  margin-top: 28px;
}

.services-hub-v1 .services-work {
  background: #fff;
}

.services-hub-v1 .services-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.services-hub-v1 .services-work-grid figure {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--services-navy);
}

.services-hub-v1 .services-work-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4,20,34,.9));
  pointer-events: none;
}

.services-hub-v1 .services-work-grid img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  object-fit: cover;
}

.services-hub-v1 .services-work-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  gap: 5px;
  color: #fff;
}

.services-hub-v1 .services-work-grid figcaption span {
  color: #aee5c5;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.services-hub-v1 .services-work-grid figcaption strong {
  font-size: 1.25rem;
}

.services-hub-v1 .services-work-grid figcaption a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: #fff;
  font-weight: 800;
}

.services-hub-v1 .services-why {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(49,137,91,.24), transparent 38%),
    var(--services-navy);
}

.services-hub-v1 .services-why h2 {
  color: #fff;
}

.services-hub-v1 .services-why .services-eyebrow {
  color: #aee5c5;
}

.services-hub-v1 .services-why__grid > div > p:last-child {
  color: #d3e0e8;
}

.services-hub-v1 .services-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.services-hub-v1 .services-why-list article {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}

.services-hub-v1 .services-why-list article > span {
  color: #aee5c5;
}

.services-hub-v1 .services-why-list h3 {
  margin: 18px 0 9px;
  color: #fff;
  font-size: 1.08rem;
}

.services-hub-v1 .services-why-list p {
  margin: 0;
  color: #d3e0e8;
  font-size: .92rem;
  line-height: 1.6;
}

.services-hub-v1 .services-resources {
  background: var(--services-cream);
}

.services-hub-v1 .services-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-hub-v1 .services-resource-grid section {
  padding: 28px;
  border: 1px solid var(--services-line);
  border-radius: 18px;
  background: #fff;
}

.services-hub-v1 .services-areas {
  background: #fff;
}

.services-hub-v1 .services-areas__grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.services-hub-v1 .services-areas__grid nav a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 13px 17px;
  color: var(--services-navy);
  font-weight: 800;
  border: 1px solid var(--services-line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

.services-hub-v1 .services-areas__grid nav a:hover {
  color: var(--services-green-dark);
  border-color: #9fc1ad;
}

.services-hub-v1 .services-btn-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 12px 18px;
  color: var(--services-green-dark);
  font-weight: 900;
  border: 1px solid var(--services-green);
  border-radius: 10px;
  text-decoration: none;
}

.services-hub-v1 .services-btn-outline:hover {
  color: #fff;
  background: var(--services-green);
}

.services-hub-v1 .services-faq {
  background: #edf3f5;
}

.services-hub-v1 .services-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.services-hub-v1 .services-faq__grid h2 {
  margin: 0;
  color: var(--services-navy);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.services-hub-v1 .services-faq__grid > div:first-child > p:last-child {
  color: var(--services-muted);
  line-height: 1.7;
}

.services-hub-v1 .services-faq-list {
  display: grid;
  gap: 10px;
}

.services-hub-v1 .services-faq-list details {
  border: 1px solid var(--services-line);
  border-radius: 14px;
  background: #fff;
}

.services-hub-v1 .services-faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--services-navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.services-hub-v1 .services-faq-list summary::-webkit-details-marker {
  display: none;
}

.services-hub-v1 .services-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--services-green);
  font-size: 1.45rem;
}

.services-hub-v1 .services-faq-list details[open] summary::after {
  content: "−";
}

.services-hub-v1 .services-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--services-muted);
  line-height: 1.7;
}

.services-hub-v1 .services-closing {
  padding: clamp(78px, 9vw, 124px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(57,151,99,.28), transparent 40%),
    var(--services-navy);
}

.services-hub-v1 .services-closing .services-heading h2 {
  color: #fff;
}

.services-hub-v1 .services-closing .services-heading > p {
  color: #d3e0e8;
}

.services-hub-v1 .services-closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.services-hub-v1 .services-closing-grid article {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
}

.services-hub-v1 .services-closing-grid article > span {
  color: #aee5c5;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.services-hub-v1 .services-closing-grid h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.services-hub-v1 .services-closing-grid p {
  color: #d3e0e8;
  line-height: 1.65;
}

.services-hub-v1 .services-closing-grid .btn {
  margin-top: 12px;
}

.services-hub-v1 .services-closing-phone {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 28px auto 0;
  padding: 10px 18px;
  color: #fff;
  font-weight: 900;
}

.services-hub-v1 .site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.services-hub-v1 .site-footer a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
}

.services-hub-v1 .site-footer .footer-badge__count,
.services-hub-v1 .site-footer .small {
  color: #cbd8e2;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .services-hub-v1 .nav-links,
  .services-hub-v1 .header-cta {
    display: none !important;
  }

  .services-hub-v1 .header-call {
    display: inline-flex !important;
    margin-left: auto;
  }

  .services-hub-v1 .menu-btn {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .services-hub-v1 .brand-lockup {
    height: 52px !important;
  }
}

@media (max-width: 1180px) {
  .services-hub-v1 .services-priority-grid,
  .services-hub-v1 .services-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hub-v1 .services-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 38px;
  }

  .services-hub-v1 .services-hero__visuals {
    min-height: 470px;
  }

  .services-hub-v1 .services-hero-image,
  .services-hub-v1 .services-hero-image img {
    min-height: 370px;
  }
}

@media (max-width: 980px) {
  .services-hub-v1 .services-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .services-hub-v1 .services-hero__copy {
    max-width: 780px;
  }

  .services-hub-v1 .services-hero__visuals {
    min-height: 0;
    max-width: 760px;
  }

  .services-hub-v1 .services-hero-image {
    min-height: 360px;
    transform: none;
  }

  .services-hub-v1 .services-hero-image--commercial {
    transform: translateY(28px);
  }

  .services-hub-v1 .services-hero-image img {
    min-height: 360px;
  }

  .services-hub-v1 .services-heading--split,
  .services-hub-v1 .services-customers__grid,
  .services-hub-v1 .services-why__grid,
  .services-hub-v1 .services-areas__grid,
  .services-hub-v1 .services-faq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-hub-v1 .services-heading--split > p {
    max-width: 720px;
  }

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

@media (min-width: 769px) {
  .services-hub-v1 .sticky-cta-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-hub-v1 {
    padding-bottom: 72px;
  }

  .services-hub-v1 .services-breadcrumb .container {
    min-height: 42px;
    font-size: .82rem;
  }

  .services-hub-v1 .services-hero__grid {
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .services-hub-v1 .services-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: .98;
  }

  .services-hub-v1 .services-hero__lead {
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.58;
  }

  .services-hub-v1 .services-hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .services-hub-v1 .services-hero__actions .btn,
  .services-hub-v1 .services-btn-commercial {
    width: 100%;
  }

  .services-hub-v1 .services-phone-link {
    min-height: 44px;
    align-items: center;
    margin-top: 8px;
  }

  .services-hub-v1 .services-trust-list {
    margin-top: 17px;
  }

  .services-hub-v1 .services-hero__visuals {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .services-hub-v1 .services-hero-image,
  .services-hub-v1 .services-hero-image--commercial,
  .services-hub-v1 .services-hero-image img {
    min-height: 235px;
    border-radius: 14px;
    transform: none;
  }

  .services-hub-v1 .services-hero-image span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: .84rem;
  }

  .services-hub-v1 .services-section {
    padding: 68px 0;
  }

  .services-hub-v1 .services-heading {
    margin-bottom: 28px;
  }

  .services-hub-v1 .services-heading h2,
  .services-hub-v1 .services-customers h2,
  .services-hub-v1 .services-why h2,
  .services-hub-v1 .services-areas h2,
  .services-hub-v1 .services-faq__grid h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .services-hub-v1 .services-audience-grid,
  .services-hub-v1 .services-priority-grid,
  .services-hub-v1 .services-directory-grid,
  .services-hub-v1 .services-customer-groups,
  .services-hub-v1 .services-decision-grid,
  .services-hub-v1 .services-work-grid,
  .services-hub-v1 .services-why-list,
  .services-hub-v1 .services-areas__grid nav,
  .services-hub-v1 .services-closing-grid {
    grid-template-columns: 1fr;
  }

  .services-hub-v1 .services-audience-card,
  .services-hub-v1 .services-model-grid article,
  .services-hub-v1 .services-decision-grid article {
    padding: 27px 22px;
  }

  .services-hub-v1 .services-card-actions {
    display: grid;
  }

  .services-hub-v1 .services-card-actions .btn {
    width: 100%;
  }

  .services-hub-v1 .services-priority-grid article {
    min-height: 0;
  }

  .services-hub-v1 .services-directory-grid h3 {
    min-height: 0;
  }

  .services-hub-v1 .services-work-grid figure,
  .services-hub-v1 .services-work-grid img {
    min-height: 360px;
  }

  .services-hub-v1 .services-work-grid figcaption {
    right: 20px;
    bottom: 19px;
    left: 20px;
  }

  .services-hub-v1 .services-faq-list summary {
    padding: 15px 16px;
  }

  .services-hub-v1 .services-faq-list p {
    padding-right: 16px;
    padding-left: 16px;
  }

  .services-hub-v1 .sticky-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .services-hub-v1 .brand-lockup {
    height: 40px !important;
  }
}

@media (max-width: 430px) {
  .services-hub-v1 .services-hero h1 {
    font-size: 2.58rem;
  }

  .services-hub-v1 .services-eyebrow {
    font-size: .68rem;
  }

  .services-hub-v1 .services-trust-list li {
    padding: 7px 9px;
    font-size: .69rem;
  }

  .services-hub-v1 .services-hero-image,
  .services-hub-v1 .services-hero-image img {
    min-height: 205px;
  }

  .services-hub-v1 .services-audience-card h3 {
    font-size: 1.58rem;
  }

  .services-hub-v1 .services-directory-grid section,
  .services-hub-v1 .services-resource-grid section,
  .services-hub-v1 .services-customer-groups section {
    padding: 23px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hub-v1 *,
  .services-hub-v1 *::before,
  .services-hub-v1 *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
