﻿/* ========================================================================
   Connect Cleaning  Stylesheet
   Brand: cyan #11BDE5 · deep blue #1800AD · hot pink #EF4994
   Fonts: Anton (headings, italic) · Inter (body)
   ======================================================================== */

/* RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1800AD;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s ease; }
a:hover { color: #EF4994; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

:root {
    --cyan: #11BDE5;
    --cyan-dark: #0BA0C2;
    --blue: #1800AD;
    --pink: #EF4994;
    --pink-dark: #D43A82;
    --ink: #0A0640;
    --bg-soft: #F7FBFF;
    --shadow-sm: 0 4px 12px rgba(24, 0, 173, 0.08);
    --shadow-md: 0 12px 32px rgba(24, 0, 173, 0.12);
    --shadow-lg: 0 24px 60px rgba(24, 0, 173, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

/* SKIP LINK */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: #1800AD; color: #fff; padding: .75rem 1rem; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Anton', 'Impact', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    color: var(--cyan);
}
h1 em, h2 em { font-style: italic; }
h3 { font-size: 1.35rem; letter-spacing: .8px; }
h4 { font-size: 1rem; letter-spacing: 1.2px; text-transform: uppercase; }
p { margin: 0 0 1rem; }

.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    margin-bottom: 1.25rem;
}
.eyebrow-dark { background: rgba(239,73,148,.12); color: var(--pink); }
.eyebrow-light { background: rgba(255,255,255,.18); color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.h2-light { color: #fff; }
.section-lede { font-size: 1.1rem; color: rgba(24,0,173,.75); }
.h2-light + .section-lede, .why .section-lede { color: rgba(255,255,255,.85); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1.4rem;
    border-radius: 999px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all .25s ease;
    min-height: 44px;
    white-space: nowrap;
    letter-spacing: .3px;
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }
.btn-pink {
    background: var(--pink); color: #fff;
    box-shadow: 0 8px 24px rgba(239,73,148,.4);
}
.btn-pink:hover {
    background: var(--pink-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(239,73,148,.5);
}
.btn-ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: #fff; color: var(--cyan);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent; color: var(--cyan); border-color: var(--cyan);
}
.btn-outline-dark:hover {
    background: var(--blue); color: #fff;
    transform: translateY(-2px);
}
.phone-icon { display: inline-flex; }

/* HEADER */
/*
  backdrop-filter on the header would make it a containing block for
  position:fixed children (nav drawer + overlay), breaking their viewport
  coverage. The blur lives on ::before instead so fixed positioning works.
*/
.site-header {
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(24,0,173,.05);
    transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: rgba(255,255,255,.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: background .3s ease;
    pointer-events: none;
}
.site-header.scrolled {
    box-shadow: 0 8px 28px rgba(24,0,173,.08);
    border-bottom-color: rgba(24,0,173,.08);
}
.site-header.scrolled::before {
    background: rgba(255,255,255,.92);
}
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
    position: relative;
}
.site-header .nav-wrap {
    padding-top: 25px;
    padding-bottom: 25px;
}
.brand {
    display: flex; align-items: center; gap: .65rem;
    transition: transform .25s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand-logo-img { max-height: 56px; width: auto; display: block; }

.nav-toggle {
    background: none; border: 0; padding: .5rem;
    width: 44px; height: 44px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    position: relative; z-index: 102;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--blue); border-radius: 2px;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .2s ease;
    transform-origin: center;
}
.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; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(10,6,64,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
    z-index: 100;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

.primary-nav {
    position: fixed; top: 0; right: 0;
    width: min(86vw, 360px); height: 100dvh;
    background: #fff;
    padding: 6rem 1.75rem 2rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 60px rgba(24,0,173,.18);
    display: flex; flex-direction: column;
    z-index: 101;
    overflow-y: auto;
}
.primary-nav.open { transform: translateX(0); }
.primary-nav > ul { display: flex; flex-direction: column; gap: .25rem; }
.primary-nav .nav-link {
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
    width: 100%;
    font-family: inherit;
    font-weight: 600;
    color: var(--cyan);
    padding: 1rem .25rem;
    border: 0;
    border-bottom: 1px solid rgba(24,0,173,.06);
    background: none;
    text-align: left;
    font-size: 1.1rem;
    transition: color .2s ease, padding-left .25s ease;
    cursor: pointer;
}
.primary-nav .nav-link:hover { color: var(--pink); padding-left: .75rem; }
.nav-caret {
    transition: transform .25s ease;
    flex-shrink: 0;
    color: currentColor;
}
.has-mega.is-open > .mega-trigger .nav-caret { transform: rotate(180deg); }

/* Mega panel  mobile: stacked accordion inside drawer */
.mega-panel {
    display: none;
    padding: .25rem 0 1rem;
}
.has-mega.is-open > .mega-panel { display: block; }
.mega-col + .mega-col { margin-top: 1.5rem; }

/* Overview link inside the mega panel */
.mega-overview-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin: 0 0 1rem;
    padding: .55rem .9rem;
    background: linear-gradient(135deg, rgba(17,189,229,.10), rgba(239,73,148,.10));
    border: 1px solid rgba(17,189,229,.22);
    border-radius: 999px;
    color: var(--cyan);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .3px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mega-overview-link svg { transition: transform .2s ease; }
.mega-overview-link:hover {
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    border-color: transparent;
}
.mega-overview-link:hover svg { transform: translateX(3px); }
.has-mega[data-tone="residential"] .mega-overview-link { color: var(--pink-dark); border-color: rgba(239,73,148,.25); }
.mega-col-head {
    display: flex; align-items: baseline; gap: .6rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(24,0,173,.08);
    margin-bottom: .6rem;
}
.mega-col-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--cyan);
}
.mega-col-count { display: none; }
.mega-col-sub {
    font-size: .82rem;
    font-style: italic;
    color: rgba(24,0,173,.65);
    margin: 0 0 .6rem;
    line-height: 1.4;
}
.mega-list { list-style: none; padding: 0; margin: 0; }
.mega-list li { margin: 0; }
.mega-list a {
    display: block;
    width: auto;
    padding: .45rem 0;
    border: 0;
    font-size: .9rem;
    font-weight: 500;
    color: var(--cyan);
    transition: color .15s ease, padding-left .2s ease;
}
.mega-list a:hover { color: var(--pink); padding-left: .35rem; }
.mega-col-packages .mega-list a { font-weight: 600; }

.nav-cta { margin-top: 1.75rem; width: 100%; }
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active { box-shadow: none !important; }

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 5rem;
    color: #fff;
    isolation: isolate;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background: linear-gradient(135deg, #11BDE5 0%, #2E5BE0 45%, #1800AD 100%);
}
.hero-blob {
    position: absolute; z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
}
.hero-blob-1 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, #EF4994 0%, transparent 70%);
    top: -120px; right: -120px;
}
.hero-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #11BDE5 0%, transparent 70%);
    bottom: -100px; left: -80px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}
.hero-copy { text-align: left; }
.hero-h1 {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: clamp(3rem, 12vw, 5.5rem);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    letter-spacing: 1px;
}
.hero-h1 em { font-style: italic; color: #fff; display: inline-block; }
.hero-h1-accent {
    background: linear-gradient(90deg, #FF7AB6, #FFD8E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.92);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.hero-entry {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-entry-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .75rem 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}
.hero-entry-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--pink);
    transition: width .2s ease;
}
.hero-entry-residential::before { background: #FFD8E9; }
.hero-entry-card:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(24,0,173,.25);
    color: #fff;
}
.hero-entry-card:hover::before { width: 6px; }
.hero-entry-card:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.hero-entry-eyebrow {
    grid-column: 1 / 2;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    display: block;
    margin-bottom: .15rem;
}
.hero-entry-title {
    grid-column: 1 / 2;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 1.1;
    display: block;
}
.hero-entry-sub {
    grid-column: 1 / 2;
    font-size: .85rem;
    color: rgba(255,255,255,.78);
    line-height: 1.4;
    margin-top: .25rem;
    display: block;
}
.hero-entry-perks {
    grid-column: 1 / 2;
    list-style: none;
    margin: .6rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: .3rem;
}
.hero-entry-perks li {
    font-size: .8rem;
    color: rgba(255,255,255,.9);
    line-height: 1.35;
    padding-left: 1rem;
    position: relative;
}
.hero-entry-perks li::before {
    content: '';
    position: absolute;
    left: 0; top: .45em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
}
.hero-entry-commercial .hero-entry-perks li::before { background: var(--cyan); }

.hero-entry-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / -1;
    align-self: center;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    transition: transform .2s ease, background .2s ease;
}
.hero-entry-card:hover .hero-entry-arrow {
    background: #fff;
    color: var(--cyan);
    transform: translateX(3px);
}

.hero-ctas {
    display: flex; flex-wrap: wrap; gap: .75rem;
    margin-bottom: 2rem;
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 1.25rem;
    color: rgba(255,255,255,.95);
    font-weight: 600;
    font-size: .9rem;
}
.hero-trust li {
    display: inline-flex; align-items: center; gap: .35rem;
}
.hero-trust svg { color: #FFD8E9; }

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 35%, #000 70%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.25) 35%, #000 70%);
}

/* WAVES */
.wave-divider {
    position: absolute; left: 0; width: 100%; height: 80px;
    display: block;
}
.wave-bottom { bottom: -1px; }
.wave-top { top: -1px; }

/* TRUST STRIP */
.trust-strip {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(24,0,173,.08);
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: center;
}
.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
    font-weight: 700; font-size: .85rem;
    color: var(--cyan);
    letter-spacing: .5px;
}
.trust-icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(17,189,229,.15), rgba(239,73,148,.12));
    border-radius: 50%;
    color: var(--pink);
}
.trust-sub {
    display: block;
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: .3px;
    color: rgba(24,0,173,.55);
    margin-top: .2rem;
    text-transform: none;
}

/* Google rating chip  leads the strip */
.trust-rating {
    text-decoration: none;
    color: var(--cyan);
    padding: .6rem .9rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,193,7,.10), rgba(239,73,148,.06));
    border: 1px solid rgba(255,193,7,.35);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-rating:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,193,7,.18);
    border-color: rgba(255,193,7,.6);
    color: var(--cyan);
}
.trust-rating:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
}
.trust-stars {
    display: inline-flex;
    gap: 1px;
    color: #F5B400;
    line-height: 0;
}
.trust-rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}
.trust-rating-text strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .3px;
}
.trust-rating-meta {
    display: block;
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: .3px;
    color: rgba(24,0,173,.6);
    margin-top: .15rem;
    text-transform: none;
}

/* GOOGLE REVIEWS */
.reviews {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,189,229,.20) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.reviews::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.18) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.reviews .container { position: relative; z-index: 1; }
.reviews-head .eyebrow svg { color: #F5B400; }

.reviews-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.review-card {
    background: #fff;
    border: 1px solid rgba(17,189,229,.10);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17,189,229,.25);
}
.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.review-stars {
    display: inline-flex;
    gap: 2px;
    color: #F5B400;
    line-height: 0;
}
.review-source { display: inline-flex; line-height: 0; }
.review-quote {
    margin: 0;
    color: rgba(24,0,173,.85);
    line-height: 1.65;
    font-size: .98rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(24,0,173,.12);
}
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .5px;
    flex-shrink: 0;
}
.review-author-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.review-author-meta strong { color: var(--cyan); font-size: .95rem; }
.review-author-meta span { color: rgba(24,0,173,.55); font-size: .78rem; }

.reviews-footer { text-align: center; margin-top: 2.5rem; }

/* FEATURED PACKAGES */
.featured-packages {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #F7FBFF 0%, #FFF5F9 100%);
    position: relative;
    overflow: hidden;
}
.featured-packages::before,
.featured-packages::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.featured-packages::before {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(239,73,148,.18) 0%, transparent 70%);
    top: -120px; right: -120px;
}
.featured-packages::after {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(17,189,229,.16) 0%, transparent 70%);
    bottom: -100px; left: -100px;
}
.featured-packages .container { position: relative; z-index: 1; }
.pkg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.pkg-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(24,0,173,.06);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.pkg-card::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
}
.pkg-card.pkg-residential::before { background: var(--pink); }
.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(239,73,148,.14), 0 6px 14px rgba(17,189,229,.10);
    border-color: rgba(239,73,148,.20);
}
.pkg-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: .3rem .65rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.pkg-tag-commercial { background: rgba(24,0,173,.08); color: var(--cyan); }
.pkg-tag-residential { background: rgba(239,73,148,.10); color: var(--pink-dark); }
.pkg-title {
    font-size: 1.5rem;
    margin: 0 0 .6rem;
    line-height: 1.05;
    letter-spacing: .5px;
}
.pkg-desc {
    color: rgba(24,0,173,.7);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}
.pkg-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    transition: gap .2s ease, color .2s ease;
}
.pkg-card.pkg-residential .pkg-link { color: var(--pink-dark); }
.pkg-link:hover {
    gap: .65rem;
    color: var(--pink);
}
.pkg-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* SERVICE FINDER */
.service-finder {
    padding: 5rem 0 4rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.service-finder::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.12) 0%, transparent 70%);
    filter: blur(60px);
    top: -100px; right: -100px;
    pointer-events: none;
}
.service-finder::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,189,229,.10) 0%, transparent 70%);
    filter: blur(60px);
    bottom: -60px; left: -80px;
    pointer-events: none;
}
.service-finder .container { position: relative; z-index: 1; }
.finder-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    padding: .4rem;
    background: var(--bg-soft);
    border-radius: 999px;
    border: 1px solid rgba(24,0,173,.08);
}
.finder-tab {
    appearance: none;
    background: transparent;
    border: 0;
    padding: .75rem 1rem;
    border-radius: 999px;
    text-align: center;
    cursor: pointer;
    color: rgba(24,0,173,.65);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    align-items: center;
    line-height: 1.1;
}
.finder-tab-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .8;
}
.finder-tab-label {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.finder-tab.is-active {
    background: #fff;
    color: var(--cyan);
    box-shadow: 0 4px 14px rgba(24,0,173,.12);
}
.finder-tab[data-finder-tone="residential"].is-active {
    color: var(--pink-dark);
}
.finder-tab:hover:not(.is-active) { color: var(--cyan); }
.finder-tab:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

.finder-panel {
    animation: finder-fade .25s ease;
}
@keyframes finder-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.finder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    margin: 0;
    padding: 0;
}
.finder-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.1rem;
    background: var(--bg-soft);
    border: 1px solid rgba(24,0,173,.06);
    border-radius: 12px;
    color: var(--cyan);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.3;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.finder-label { flex: 1; }
.finder-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(17,189,229,.12);
    color: var(--cyan);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.finder-icon svg { width: 20px; height: 20px; display: block; }
.finder-panel[data-finder-tone="residential"] .finder-icon {
    background: rgba(239,73,148,.12);
    color: var(--pink-dark);
}
.finder-arrow {
    flex-shrink: 0;
    color: var(--pink);
    transition: transform .2s ease;
}
.finder-item:hover {
    background: #fff;
    border-color: rgba(17,189,229,.25);
    color: var(--cyan);
    transform: translateX(4px);
    box-shadow: 0 8px 22px rgba(17,189,229,.12);
}
.finder-item:hover .finder-arrow { transform: translateX(2px); }
.finder-item:hover .finder-icon {
    background: var(--cyan);
    color: #fff;
    transform: scale(1.05);
}

.finder-panel[data-finder-tone="residential"] .finder-item:hover {
    border-color: rgba(239,73,148,.28);
    color: var(--pink-dark);
    box-shadow: 0 8px 22px rgba(239,73,148,.14);
}
.finder-panel[data-finder-tone="residential"] .finder-arrow { color: var(--pink-dark); }
.finder-panel[data-finder-tone="residential"] .finder-item:hover .finder-icon {
    background: var(--pink-dark);
    color: #fff;
}

.finder-footnote {
    text-align: center;
    margin: 2.5rem 0 0;
    color: rgba(24,0,173,.65);
    font-size: .95rem;
}
.finder-footnote a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.finder-footnote a:hover { color: var(--pink-dark); }

/* SERVICES */
.services { padding: 5rem 0 4rem; background: #fff; position: relative; overflow: hidden; }
.services::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,189,229,.12) 0%, transparent 70%);
    filter: blur(60px);
    top: 8%; left: -140px;
    pointer-events: none;
}
.services::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.12) 0%, transparent 70%);
    filter: blur(60px);
    bottom: 10%; right: -140px;
    pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.svc-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17,189,229,.15);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cyan), #6FDCEF);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all .3s ease;
}
.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--pink), #FF7AB6);
    transform: scale(1.08) rotate(-6deg);
}
.svc-card h3 {
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .5rem;
    font-size: 1.3rem;
}
.svc-card p { color: rgba(24,0,173,.7); margin: 0; font-size: .95rem; }

/* WHY CONNECT */
.why {
    position: relative;
    padding: 8rem 0 8rem;
    background: linear-gradient(135deg, #1800AD 0%, #2E1A9E 50%, #11BDE5 130%);
    color: #fff;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute; top: 20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(239,73,148,.35) 0%, transparent 70%);
    filter: blur(60px);
}
.why .container { position: relative; z-index: 1; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: all .3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.13);
    border-color: var(--pink);
    box-shadow: 0 16px 36px rgba(239,73,148,.28);
}
.why-num {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-style: italic;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}
.why-card h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: .75rem;
}
.why-card p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }

.photo-row {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.photo-slot {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(239,73,148,.3), rgba(17,189,229,.4)),
        linear-gradient(45deg, #6FDCEF, #1800AD);
    border: 1px solid rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}
.photo-slot::after {
    content: 'Photo slot';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.photo-slot-filled { background: none; border-color: rgba(255,255,255,.15); }
.photo-slot-filled::after { content: none; }
.photo-slot-filled img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* SERVICE AREA */
.service-area {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFF5F9 0%, #F0FBFF 100%);
    position: relative;
    overflow: hidden;
}
.service-area::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,189,229,.16) 0%, transparent 70%);
    filter: blur(60px);
    top: 20%; left: -150px;
    pointer-events: none;
}
.service-area::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.16) 0%, transparent 70%);
    filter: blur(60px);
    bottom: 10%; right: -120px;
    pointer-events: none;
}
.service-area .container { position: relative; z-index: 1; }
.metro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .85rem;
    max-width: 1080px;
    margin: 0 auto;
}
.metro-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: 14px;
    color: var(--cyan);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}
.metro-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--cyan);
    transition: width .2s ease;
}
.metro-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(17,189,229,.4);
    color: var(--cyan);
}
.metro-card:hover::before { width: 6px; }
.metro-card.is-new::before { background: var(--pink); }
.metro-card.is-new:hover { border-color: rgba(239,73,148,.45); }
.metro-name {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .8px;
    line-height: 1;
}
.metro-note {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(24,0,173,.6);
    margin-top: .35rem;
    line-height: 1.3;
}
.metro-arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(17,189,229,.12);
    color: var(--cyan-dark);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.metro-card:hover .metro-arrow {
    background: var(--cyan);
    color: #fff;
    transform: translateX(3px);
}
.metro-card.is-new .metro-arrow { background: rgba(239,73,148,.12); color: var(--pink-dark); }
.metro-card.is-new:hover .metro-arrow { background: var(--pink); color: #fff; }
.metro-badge {
    position: absolute;
    top: .75rem;
    right: 3.6rem;
    background: var(--pink);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .58rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: .2rem .5rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(239,73,148,.3);
}

.service-area-footnote {
    text-align: center;
    margin: 2.5rem 0 0;
    color: rgba(24,0,173,.65);
    font-size: .95rem;
    line-height: 1.7;
}
.service-area-footnote a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.service-area-footnote a:hover { color: var(--pink-dark); }
.service-area-link {
    display: block;
    margin-top: .35rem;
    text-decoration: none !important;
}

/* Legacy city-chips (kept for any other pages that reference them) */
.city-chips {
    display: flex; flex-wrap: wrap; gap: .65rem;
    justify-content: center;
    max-width: 800px; margin: 0 auto;
}
.city-chips li {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    border-radius: 999px;
    padding: .65rem 1.15rem;
    font-weight: 700;
    font-size: .95rem;
    transition: all .25s ease;
    cursor: default;
}
.city-chips li:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    transform: translateY(-2px);
}
.chip-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink);
    transition: background .25s ease;
}
.city-chips li:hover .chip-dot { background: #fff; }

/* PARTNER CALLOUTS */
.partners-callout {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #1800AD 0%, #2E5BE0 50%, #11BDE5 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.partners-callout::before,
.partners-callout::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: 0;
}
.partners-callout::before {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #EF4994 0%, transparent 70%);
    top: -120px; right: -120px;
}
.partners-callout::after {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #11BDE5 0%, transparent 70%);
    bottom: -100px; left: -80px;
}
.partners-callout .container { position: relative; z-index: 1; }

.section-lede-light { color: rgba(255,255,255,.85); }

.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-md);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
    min-height: 240px;
}
.partner-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.38);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    color: #fff;
}
.partner-featured {
    background: rgba(239,73,148,.18);
    border-color: rgba(255,200,225,.45);
    box-shadow: 0 14px 30px rgba(239,73,148,.18);
}
.partner-featured:hover {
    background: rgba(239,73,148,.28);
    border-color: rgba(255,200,225,.7);
}
.partner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pink);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .6rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: .3rem .6rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(239,73,148,.4);
}
.partner-icon {
    width: 52px; height: 52px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.14);
    border-radius: 14px;
    color: #FFD8E9;
    margin-bottom: 1rem;
}
.partner-featured .partner-icon {
    background: #fff;
    color: var(--pink-dark);
}
.partner-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.35rem;
    letter-spacing: .8px;
    line-height: 1.05;
    margin-bottom: .65rem;
}
.partner-desc {
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #FFD8E9;
    transition: gap .2s ease, color .2s ease;
}
.partner-card:hover .partner-link {
    gap: .65rem;
    color: #fff;
}
.partner-card:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.partners-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    text-align: center;
}
.partner-secondary-link {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .5px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.partner-secondary-link:hover { color: #fff; }

/* CLEANING FOR A REASON */
.cfr-section {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(135deg, #FFF5F9 0%, #FFE7F1 100%);
}
.cfr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
.cfr-badge {
    display: flex;
    justify-content: center;
}
.cfr-badge img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(239,73,148,.22));
}
.cfr-copy h2 { margin-top: .5rem; }
.cfr-copy p {
    color: rgba(24,0,173,.78);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 560px;
}
.cfr-copy .btn { margin-top: .75rem; }

/* RESOURCES TEASER */
.resources-teaser {
    padding: 5rem 0 4rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.resources-teaser::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,189,229,.12) 0%, transparent 70%);
    filter: blur(60px);
    top: -80px; left: -100px;
    pointer-events: none;
}
.resources-teaser::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.12) 0%, transparent 70%);
    filter: blur(60px);
    bottom: -80px; right: -100px;
    pointer-events: none;
}
.resources-teaser .container { position: relative; z-index: 1; }
.section-head-row {
    max-width: none;
    margin-bottom: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.section-head-row .section-lede { margin: .5rem 0 0; }
.resources-all-link {
    align-self: flex-start;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.resources-all-link:hover { color: var(--pink-dark); }

.resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.resource-grid > li { display: flex; }
.resource-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    background: var(--bg-soft);
    border: 1px solid rgba(24,0,173,.06);
    border-radius: var(--radius-md);
    color: var(--cyan);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    overflow: hidden;
    min-height: 220px;
}
.resource-card:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(24,0,173,.18);
    box-shadow: var(--shadow-md);
    color: var(--cyan);
}
.resource-tag {
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: .3rem .65rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.resource-tag-blog { background: rgba(24,0,173,.10); color: var(--cyan); }
.resource-tag-guide { background: rgba(239,73,148,.10); color: var(--pink-dark); }
.resource-tag-tool { background: rgba(17,189,229,.14); color: var(--cyan-dark); }
.resource-title {
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: .4px;
    margin: 0 0 .65rem;
}
.resource-desc {
    color: rgba(24,0,173,.7);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    flex: 1;
}
.resource-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(24,0,173,.15);
    font-size: .8rem;
    color: rgba(24,0,173,.55);
    font-weight: 600;
    letter-spacing: .3px;
}
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--pink);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: gap .2s ease, color .2s ease;
}
.resource-card:hover .resource-link {
    gap: .55rem;
    color: var(--pink-dark);
}
.resource-card:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
}

/* Resources page  extra tag colors */
.resource-tag-case { background: rgba(15,76,92,.10); color: #0F4C5C; }
.resource-tag-edu { background: rgba(180,98,58,.12); color: #7E4326; }
.resource-tag-soon { background: rgba(138,146,160,.18); color: #4A5562; }

/* Resources page  sticky category nav strip */
.resource-categories {
    position: sticky;
    top: 72px;
    z-index: 20;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(24,0,173,.08);
    border-bottom: 1px solid rgba(24,0,173,.08);
}
.resource-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .75rem 0;
    overflow-x: auto;
}
.resource-cat-link {
    display: inline-block;
    padding: .45rem .85rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(24,0,173,.7);
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--bg-soft);
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.resource-cat-link:hover {
    background: #fff;
    color: var(--pink);
    border-color: rgba(239,73,148,.3);
}

/* Resources page  "see all" footer link per section */
.resource-section-foot {
    margin: 2rem 0 0;
    text-align: center;
}
.resource-section-foot-link {
    display: inline-block;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.resource-section-foot-link:hover { color: var(--pink-dark); }

/* Resources page  "coming soon" card variant (non-clickable) */
.resource-card-soon {
    background: rgba(255,255,255,.5);
    border-style: dashed;
    cursor: default;
}
.resource-card-soon:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,.5);
    border-color: rgba(24,0,173,.18);
}

/* Resources page  redesigned section variants
   ================================================ */

/* Blog: magazine layout  first card spans full width with gradient treatment */
.resource-grid--blog > li:first-child { grid-column: 1 / -1; }
.resource-card--featured {
    background: linear-gradient(135deg, #0A0640 0%, #1800AD 58%, #11BDE5 100%);
    border-color: transparent;
    min-height: 260px;
    padding: 2.5rem 2.25rem;
}
.resource-card--featured .resource-tag-blog {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.resource-card--featured .resource-title {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.1;
}
.resource-card--featured .resource-desc { color: rgba(255,255,255,.76); font-size: .95rem; }
.resource-card--featured .resource-meta {
    border-top-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.55);
}
.resource-card--featured .resource-link { color: #FFC1DC; }
.resource-card--featured:hover {
    background: linear-gradient(135deg, #0A0640 0%, #1800AD 58%, #11BDE5 100%);
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(24,0,173,.35);
    color: var(--cyan);
}
.resource-card--featured:hover .resource-link { color: #FFC1DC; gap: .6rem; }

/* Guides: horizontal icon-card layout */
.resource-card--hlist {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    min-height: auto;
    padding: 1.5rem;
}
.rc-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.rc-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rc-icon--cyan { background: rgba(17,189,229,.14); color: var(--cyan); }
.rc-icon--pink { background: rgba(239,73,148,.12); color: var(--pink); }
.rc-icon--ink  { background: rgba(24,0,173,.10);   color: #1800AD; }
.rc-icon--teal { background: rgba(15,76,92,.12);   color: #0F4C5C; }
.rc-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.resource-card--hlist .resource-title { font-size: 1.05rem; }
.resource-card--hlist .resource-desc  { flex: 1; margin-bottom: .75rem; }
.resource-card--hlist .resource-meta  { padding-top: .75rem; }

/* Case studies: stat-forward cards */
.resource-card--stat { border-top: 3px solid; padding-top: 1.25rem; }
.accent-cyan { border-top-color: var(--cyan); }
.accent-pink { border-top-color: var(--pink); }
.accent-ink  { border-top-color: #1800AD; }
.accent-teal { border-top-color: #0F4C5C; }
.rc-stat { margin-bottom: .85rem; }
.rc-stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: .3px;
    display: block;
}
.rc-stat-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(24,0,173,.42);
    display: block;
    margin-top: .2rem;
}
.num-cyan { color: var(--cyan); }
.num-pink { color: var(--pink); }
.num-ink  { color: #1800AD; }
.num-teal { color: #0F4C5C; }

/* Educational: icon-block topped cards */
.rc-edu-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.rc-edu-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.edu-orange { background: rgba(217,119,6,.12);  color: #B45309; }
.edu-teal   { background: rgba(15,76,92,.12);   color: #0F4C5C; }
.edu-cyan   { background: rgba(17,189,229,.14); color: var(--cyan-dark); }
.edu-pink   { background: rgba(239,73,148,.10); color: var(--pink); }

/* Tools: gradient icon tile */
.resource-card--tool { background: #fff; }
.resource-card--tool:hover {
    border-color: rgba(17,189,229,.38);
    box-shadow: 0 8px 36px rgba(17,189,229,.14);
}
.rc-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan) 0%, #2E5BE0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}
.rc-tool-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Coming soon: horizontal roadmap items */
.resource-card--roadmap {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-height: auto;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,.45);
    border-style: dashed;
    cursor: default;
}
.resource-card--roadmap:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,.55);
    border-color: rgba(24,0,173,.18);
}
.rc-soon-dot {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(138,146,160,.1);
    border: 1.5px dashed rgba(138,146,160,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}
.rc-soon-dot svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rc-soon-body { flex: 1; }
.rc-soon-body .resource-title { font-size: 1rem; margin-bottom: .4rem; }
.rc-soon-body .resource-desc  { font-size: .85rem; margin-bottom: 0; }

/* Resources page  newsletter signup */
.resource-signup {
    padding: 4rem 0;
    background: #fff;
}
.resource-signup-card {
    background: linear-gradient(135deg, #1800AD 0%, #2E5BE0 50%, #11BDE5 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.resource-signup-card::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.45) 0%, transparent 70%);
    filter: blur(70px);
    top: -120px;
    right: -100px;
    z-index: 0;
}
.resource-signup-copy, .resource-signup-form { position: relative; z-index: 1; }
.resource-signup-copy .section-h2 { margin-bottom: 1rem; }
.resource-signup-copy p {
    color: rgba(255,255,255,.85);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}
.resource-signup-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: 100%;
}
.resource-signup-form input[type="email"] {
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: background .2s ease, border-color .2s ease;
}
.resource-signup-form input[type="email"]::placeholder { color: rgba(255,255,255,.6); }
.resource-signup-form input[type="email"]:focus {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.7);
}
.resource-signup-form .btn { width: 100%; justify-content: center; }

/* ABOUT PAGE  Our Story */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
.about-story-copy .eyebrow { margin-bottom: 1rem; }
.about-story-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.about-story-copy h2 em { font-style: italic; color: var(--pink); }
.about-story-copy p { font-size: 1rem; line-height: 1.7; color: rgba(24,0,173,.8); margin: 0 0 1rem; }
.about-story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.75rem;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(24,0,173,.06);
}
.about-stat {
    text-align: center;
    padding: .5rem;
}
.about-stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .4rem;
    letter-spacing: 1px;
}
.about-stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(24,0,173,.7);
    letter-spacing: .3px;
    line-height: 1.3;
}

/* ABOUT PAGE  Pillars (light variant of why-card) */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.pillar-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239,73,148,.25);
}
.pillar-num {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-style: italic;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}
.pillar-card h3 {
    color: var(--cyan);
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: .75rem;
    line-height: 1.1;
}
.pillar-card p { color: rgba(24,0,173,.75); margin: 0; font-size: .95rem; line-height: 1.6; }

/* ABOUT PAGE  Team */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.team-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1.25rem;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.team-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.team-initials {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    opacity: .85;
}
.team-name {
    font-size: 1.15rem;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: .25rem;
    line-height: 1.1;
}
.team-role {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pink);
    margin: 0 0 .65rem;
}
.team-bio { color: rgba(24,0,173,.75); margin: 0; font-size: .92rem; line-height: 1.55; }

/* ABOUT PAGE  Standards */
.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.standards-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.standards-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--pink));
}
.standards-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(17,189,229,.15), rgba(239,73,148,.15));
    color: var(--pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.standards-card h3 {
    color: var(--cyan);
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: .5rem;
    line-height: 1.1;
}
.standards-card p { color: rgba(24,0,173,.75); margin: 0; font-size: .92rem; line-height: 1.6; }

/* ABOUT PAGE  Credentials */
.credentials-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
.credentials-copy .eyebrow { margin-bottom: 1rem; }
.credentials-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.credentials-copy h2 em { font-style: italic; color: var(--pink); }
.credentials-copy p { font-size: 1rem; line-height: 1.7; color: rgba(24,0,173,.8); margin: 0 0 1rem; }
.credentials-foot { margin-top: 1.5rem; }
.credentials-link {
    display: inline-block;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.credentials-link:hover { color: var(--pink-dark); }
.credentials-list {
    display: grid;
    gap: 1rem;
}
.credentials-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem;
    background: var(--bg-soft);
    border: 1px solid rgba(24,0,173,.06);
    border-radius: 14px;
}
.credentials-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.credentials-item-title {
    font-size: 1rem;
    color: var(--cyan);
    text-transform: uppercase;
    margin: 0 0 .35rem;
    letter-spacing: .5px;
    line-height: 1.1;
}
.credentials-item-desc { color: rgba(24,0,173,.7); margin: 0; font-size: .88rem; line-height: 1.55; }

/* ABOUT PAGE  Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.review-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.review-stars {
    display: inline-flex;
    gap: 2px;
    color: #F5B400;
    line-height: 0;
}
.review-text {
    margin: 0;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--cyan);
    font-style: italic;
    quotes: none;
    border: 0;
    padding: 0;
}
.review-author {
    margin: 0;
    margin-top: auto;
    font-size: .82rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: .8px;
    text-transform: uppercase;
}
.reviews-foot {
    margin: 2.5rem 0 0;
    text-align: center;
}

/* ABOUT PAGE  Community */
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.community-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.community-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17,189,229,.4);
}
.community-card h3 {
    color: var(--cyan);
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: .55rem;
    line-height: 1.1;
}
.community-card p { color: rgba(24,0,173,.75); margin: 0; font-size: .92rem; line-height: 1.6; }

/* ABOUT PAGE  Careers */
.careers-card {
    background: linear-gradient(135deg, #1800AD 0%, #2E5BE0 50%, #11BDE5 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.careers-card::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.4) 0%, transparent 70%);
    filter: blur(70px);
    top: -120px;
    right: -100px;
    z-index: 0;
}
.careers-copy, .careers-cta { position: relative; z-index: 1; }
.careers-copy .eyebrow { background: rgba(255,255,255,.18); color: #fff; margin-bottom: 1rem; }
.careers-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.careers-copy h2 em { font-style: italic; color: #FFD8E9; }
.careers-copy p {
    color: rgba(255,255,255,.85);
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.65;
}
.careers-bullets {
    display: grid;
    gap: .55rem;
    margin: 1rem 0 0;
}
.careers-bullets li {
    font-size: .92rem;
    color: rgba(255,255,255,.9);
    padding-left: 1.5rem;
    position: relative;
}
.careers-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD8E9;
    font-weight: 700;
}
.careers-cta {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: stretch;
}
.careers-cta .btn { justify-content: center; }

/* ─────────────────────────────────────────
   DEEP PAGES  service / package / solution
   Used on: commercial-office-cleaning.html,
            hoa-common-areas-plan.html,
            hoa-community-associations.html
   ───────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .2s ease;
}
.breadcrumb a:hover { color: #FFD8E9; }
.breadcrumb [aria-current="page"] { color: #FFD8E9; }

/* At-a-glance facts strip (above the fold on deep pages) */
.facts-strip {
    background: #fff;
    border-bottom: 1px solid rgba(24,0,173,.08);
    padding: 1.5rem 0;
}
.facts-strip-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}
.facts-strip-item {
    padding: .5rem .25rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.facts-strip-num {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}
.facts-strip-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(24,0,173,.65);
    letter-spacing: .3px;
    line-height: 1.3;
}

/* Scope cards (what's included) */
.scope-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.scope-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
}
.scope-card-title {
    font-size: 1.1rem;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(24,0,173,.1);
    letter-spacing: .5px;
}
.scope-list { display: grid; gap: .5rem; }
.scope-list li {
    position: relative;
    padding-left: 1.65rem;
    font-size: .92rem;
    line-height: 1.55;
    color: rgba(24,0,173,.85);
}
.scope-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px rgba(24,0,173,.12);
}
.scope-note {
    text-align: center;
    margin: 2rem 0 0;
    color: rgba(24,0,173,.7);
    font-size: .92rem;
}
.scope-note a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Process steps (how it works) */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: process-step;
}
.process-step {
    position: relative;
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.process-step-num {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(24,0,173,.18);
}
.process-step-title {
    font-size: 1.1rem;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: .5rem;
    line-height: 1.1;
    letter-spacing: .5px;
}
.process-step-desc {
    color: rgba(24,0,173,.75);
    margin: 0;
    font-size: .92rem;
    line-height: 1.6;
}

/* FAQ accordion (native <details>) */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: .65rem;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
    border-color: rgba(239,73,148,.3);
    box-shadow: var(--shadow-md);
}
.faq-q {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    position: relative;
    font-weight: 700;
    font-size: .98rem;
    color: var(--cyan);
    line-height: 1.4;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(24,0,173,.08);
    color: var(--cyan);
    font-weight: 400;
    font-size: 1.2rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.faq-item[open] .faq-q::after {
    content: '\2212';
    background: var(--pink);
    color: #fff;
    transform: translateY(-50%) rotate(0);
}
.faq-q:hover { color: var(--pink); }
.faq-a {
    padding: 0 1.25rem 1.25rem;
    color: rgba(24,0,173,.78);
    font-size: .93rem;
    line-height: 1.6;
}
.faq-a p { margin: 0; }
.faq-a a {
    color: var(--pink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Pain points (solution pages) */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.pain-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.pain-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 3px;
    background: var(--pink);
}
.pain-num {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1;
    color: var(--pink);
    margin-bottom: .65rem;
    opacity: .6;
}
.pain-card h3 {
    color: var(--cyan);
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: .55rem;
    line-height: 1.1;
}
.pain-card p { color: rgba(24,0,173,.78); margin: 0; font-size: .92rem; line-height: 1.6; }

/* Case-study callout */
.case-callout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #1800AD 0%, #2E5BE0 50%, #11BDE5 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.case-callout::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,73,148,.4) 0%, transparent 70%);
    filter: blur(70px);
    top: -100px;
    right: -80px;
    z-index: 0;
}
.case-callout-copy, .case-callout-stats { position: relative; z-index: 1; }
.case-callout-copy .eyebrow { background: rgba(255,255,255,.18); color: #fff; margin-bottom: 1rem; }
.case-callout-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.case-callout-copy h2 em { font-style: italic; color: #FFD8E9; }
.case-callout-copy p {
    color: rgba(255,255,255,.85);
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
}
.case-callout-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
}
.case-stat { text-align: center; padding: .5rem; }
.case-stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    color: #FFD8E9;
    margin-bottom: .4rem;
    letter-spacing: 1px;
}
.case-stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    letter-spacing: .3px;
    line-height: 1.3;
}

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    white-space: nowrap;
}

/* BIG CTA */
.big-cta {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(135deg, #EF4994 0%, #FF7AB6 100%);
    position: relative;
    overflow: hidden;
}
.big-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(17,189,229,.4), transparent 50%);
}
.big-cta-inner { position: relative; }
.big-cta-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 720px; margin: 0 auto;
    text-align: center;
}
.big-cta-card .eyebrow { margin-bottom: .75rem; }
.big-cta-card .section-h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: .65rem;
    line-height: 1.05;
}
.big-cta-card p {
    color: rgba(24,0,173,.8);
    margin-bottom: 1.1rem;
    font-size: .95rem;
    line-height: 1.5;
}
.big-cta-buttons {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem;
    margin-bottom: 1rem;
}
.big-cta-buttons .btn-lg { padding: .8rem 1.4rem; font-size: .92rem; }
.big-cta-meta {
    font-size: .78rem;
    color: rgba(24,0,173,.55);
    margin: 0;
    letter-spacing: .4px;
}

/* INNER PAGES */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
}
.page-hero .hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background: linear-gradient(135deg, #11BDE5 0%, #2E5BE0 45%, #1800AD 100%);
}
.page-hero .hero-blob {
    position: absolute; z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    width: 380px; height: 380px;
    background: radial-gradient(circle, #EF4994 0%, transparent 70%);
    top: -120px; right: -100px;
}
.page-hero-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: -1;
    pointer-events: none;
    opacity: .85;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 35%, #000 75%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 35%, #000 75%);
}
.page-hero-with-photo .hero-bg { background: linear-gradient(135deg, #11BDE5 0%, #2E5BE0 35%, #1800AD 85%); }
.page-hero-inner {
    position: relative;
    max-width: 820px;
}
.page-hero .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.page-hero-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1rem;
}
.page-hero-title em { font-style: italic; color: #FFC1DC; }
.page-hero-lede {
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    max-width: 640px;
    line-height: 1.55;
    margin: 0;
}

.page-section { padding: 5rem 0; }
.page-section.alt { background: var(--bg-soft); }
.page-section-head { max-width: 760px; margin: 0 0 2.5rem; }
.page-section-head .eyebrow { background: rgba(239,73,148,.12); color: var(--pink); }
.page-section h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    text-transform: uppercase;
    margin: 0 0 .9rem;
}
.page-section h2 em { font-style: italic; color: var(--pink); }
.page-section-desc {
    color: rgba(24,0,173,.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.content-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex; flex-direction: column;
    gap: .55rem;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.content-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239,73,148,.3);
    color: var(--cyan);
}
.content-card-num {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(24,0,173,.4);
    margin-bottom: .15rem;
}
.content-card-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--cyan);
    line-height: 1.05;
    margin: 0;
}
.content-card-desc {
    font-size: .92rem;
    color: rgba(24,0,173,.7);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.content-card-link {
    margin-top: .35rem;
    font-weight: 700;
    font-size: .82rem;
    color: var(--pink);
    letter-spacing: .5px;
}
.content-card.is-package {
    background: linear-gradient(135deg, rgba(239,73,148,.04), rgba(17,189,229,.04));
    border-color: rgba(239,73,148,.18);
}
.content-card.is-package .content-card-num { color: var(--pink); }

/* PAGE HERO CTAs */
.page-hero-ctas {
    display: flex; flex-wrap: wrap; gap: .75rem;
    margin-top: 1.75rem;
}

/* INTRO BLOCK */
.page-section.page-intro { padding: 3.5rem 0 2rem; }
.page-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.page-intro-inner p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(24,0,173,.78);
    margin: 0 0 1.1rem;
}
.page-intro-inner p:last-child { margin-bottom: 0; }

/* Two-column intro (text + photo) */
.page-intro-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}
.page-intro-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(24,0,173,.78);
    margin: 0 0 1.1rem;
}
.page-intro-copy p:last-child { margin-bottom: 0; }
.page-intro-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(24,0,173,.18);
    min-height: 300px;
}
.page-intro-media::after {
    content: '';
    position: absolute;
    left: -14px; top: -14px;
    right: 14px; bottom: 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    z-index: -1;
    opacity: .55;
    filter: blur(20px);
}
.page-intro-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Full-width photo banner between sections */
.photo-banner {
    position: relative;
    overflow: hidden;
}
.photo-banner-img {
    aspect-ratio: 16 / 6;
    overflow: hidden;
}
.photo-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* Optional caption overlaid on a photo banner */
.photo-banner-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.5rem 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(10,6,64,.82) 0%, rgba(10,6,64,.45) 45%, transparent 100%);
    color: #fff;
}
.photo-banner-caption .container { padding: 0; }
.photo-banner-caption .eyebrow {
    background: rgba(255,255,255,.18); color: #fff; margin-bottom: .5rem;
}
.photo-banner-caption p {
    margin: 0;
    max-width: 640px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

/* Contained banner  shows the whole photo (no crop), caption beneath */
.photo-banner.photo-banner-contain {
    overflow: visible;
    background: var(--bg-soft);
    padding: 4rem 0;
}
.fleet-figure {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}
.fleet-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(24,0,173,.18);
}
.fleet-figure figcaption { margin-top: 1.6rem; }
.fleet-figure figcaption .eyebrow {
    background: rgba(239,73,148,.12);
    color: var(--pink);
}
.fleet-figure figcaption p {
    margin: .65rem auto 0;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(24,0,173,.78);
}

/* FEATURE SPLIT (text + photo, alternating) */
.feature-split { padding: 5rem 0; }
.feature-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: stretch;
}
.feature-split-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(24,0,173,.18);
    min-height: 280px;
}
.feature-split-media::after {
    content: '';
    position: absolute;
    left: -14px; top: -14px;
    right: 14px; bottom: 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    z-index: -1;
    opacity: .55;
    filter: blur(20px);
}
.feature-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.feature-split-copy .eyebrow { background: rgba(239,73,148,.12); color: var(--pink); }
.feature-split-copy h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    margin: .6rem 0 1rem;
}
.feature-split-copy h2 em { font-style: italic; color: var(--pink); }
.feature-split-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(24,0,173,.78);
    margin: 0 0 1.1rem;
}
.feature-split-copy p:last-child { margin-bottom: 0; }
.copy-checklist {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}
.copy-checklist li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink);
}
.copy-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0; top: .08em;
    width: 1.35rem; height: 1.35rem;
    line-height: 1.35rem;
    text-align: center;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    background: var(--pink);
}
.copy-checklist li strong { color: var(--cyan); }

/* ABOUT  CLEANING CHECKLIST (tabbed comparison table) */
.checklist-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1.75rem;
}
.checklist-tab {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--cyan);
    background: #fff;
    border: 1.5px solid rgba(17,189,229,.35);
    border-radius: 999px;
    padding: .6rem 1.4rem;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.checklist-tab:hover { border-color: var(--cyan); background: rgba(17,189,229,.07); }
.checklist-tab.is-active {
    background: linear-gradient(135deg, var(--cyan), #2E5BE0);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(17,189,229,.3);
}
.checklist-tab:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

.checklist-pane[hidden] { display: none; }

.checklist-table-wrap {
    max-width: 940px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: #fff;
}
.checklist-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
}
.checklist-table thead tr { background: var(--bg-soft); }
.checklist-table thead th {
    padding: 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    text-align: center;
}
.checklist-table thead th:first-child { text-align: left; width: 46%; color: var(--ink); }
.checklist-table tbody td {
    padding: .8rem 1rem;
    font-size: .92rem;
    color: rgba(24,0,173,.82);
    border-top: 1px solid rgba(24,0,173,.07);
    text-align: center;
    vertical-align: middle;
}
.checklist-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.checklist-table tbody tr:nth-child(even) { background: rgba(247,251,255,.7); }
.checklist-table tbody tr:hover { background: rgba(17,189,229,.06); }

/* Status icons  pure CSS, no JS dependency */
.icon-check, .icon-x {
    position: relative;
    display: inline-block;
    width: 22px; height: 22px;
    border-radius: 50%;
    vertical-align: middle;
}
.icon-check { background: rgba(17,189,229,.14); }
.icon-check::after {
    content: '';
    position: absolute;
    left: 8px; top: 4.5px;
    width: 5px; height: 9px;
    border: solid var(--cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.icon-x { background: rgba(24,0,173,.06); }
.icon-x::before, .icon-x::after {
    content: '';
    position: absolute;
    left: 5.5px; top: 10px;
    width: 11px; height: 2px;
    border-radius: 2px;
    background: rgba(24,0,173,.35);
}
.icon-x::before { transform: rotate(45deg); }
.icon-x::after  { transform: rotate(-45deg); }
.icon-na {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: rgba(24,0,173,.4);
}

.checklist-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    margin-top: 1.5rem;
    font-size: .9rem;
    color: rgba(24,0,173,.7);
}
.checklist-legend .legend-item { display: flex; align-items: center; gap: .55rem; }
.checklist-hint {
    display: none;
    margin: 0 0 1rem;
    font-size: .8rem;
    color: rgba(24,0,173,.5);
}
@media (max-width: 600px) {
    .checklist-hint { display: block; }
}

/* IMAGE PLACEHOLDERS (service-area pages, awaiting real photos) */
.img-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(17,189,229,.09), rgba(239,73,148,.09)), var(--bg-soft);
    border: 2px dashed rgba(17,189,229,.5);
    border-radius: var(--radius-md);
    min-height: 280px;
    aspect-ratio: 4 / 3;
}
.img-placeholder svg { width: 44px; height: 44px; color: var(--cyan); opacity: .85; }
.img-placeholder .ph-tag {
    font-size: .68rem; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--pink);
}
.img-placeholder .ph-label {
    font-size: .92rem; line-height: 1.5;
    color: rgba(24,0,173,.62); max-width: 380px; margin: 0;
}
.img-placeholder.is-banner { aspect-ratio: 21 / 9; min-height: 220px; width: 100%; }

/* SERVICE-AREA METRO CARDS (with image placeholder thumbnail) */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.area-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(239,73,148,.3); }
.area-card-media {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17,189,229,.1), rgba(239,73,148,.1));
    text-align: center;
}
.area-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.area-card:hover .area-card-media img { transform: scale(1.04); }
/* Placeholder fallback styling (when no image present) */
.area-card-media:not(:has(img)) { border-bottom: 2px dashed rgba(17,189,229,.4); padding: 1rem; }
.area-card-media svg { width: 32px; height: 32px; color: var(--cyan); opacity: .8; }
.area-card-media span { font-size: .64rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(24,0,173,.5); }
.area-card-body { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem; flex: 1; }
.area-card-badge {
    align-self: flex-start;
    font-size: .66rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: var(--pink); background: rgba(239,73,148,.1);
    padding: .28rem .65rem; border-radius: 999px;
}
.area-card-title {
    font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.5rem; letter-spacing: .5px;
    text-transform: uppercase; color: var(--cyan); line-height: 1.05; margin: .15rem 0 0;
}
.area-card-desc { font-size: .92rem; color: rgba(24,0,173,.72); line-height: 1.5; margin: 0; flex: 1; }
.area-card-link { margin-top: .45rem; font-weight: 700; font-size: .82rem; color: var(--pink); letter-spacing: .5px; }

/* Branded gradient wash on service photo banners (matches the hero treatment) */
.photo-banner.is-tinted .photo-banner-img { position: relative; }
.photo-banner-contain.is-tinted .fleet-figure { position: relative; }
.photo-banner.is-tinted .photo-banner-img::after,
.photo-banner-contain.is-tinted .fleet-figure::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(17,189,229,.78) 0%, rgba(46,91,224,.7) 45%, rgba(24,0,173,.82) 100%);
}
.photo-banner-contain.is-tinted .fleet-figure::after { border-radius: var(--radius-md); }

/* WHY-CHOOSE CARD GRID */
.why-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.why-feature {
    background: #fff;
    border: 1px solid rgba(17,189,229,.15);
    border-radius: var(--radius-md);
    padding: 1.65rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}
.why-feature-icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(17,189,229,.15), rgba(239,73,148,.12));
    color: var(--cyan);
}
.why-feature:hover .why-feature-icon {
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
}
.why-feature h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: .5px;
    color: var(--cyan);
    margin: 0;
}
.why-feature p {
    font-size: .95rem;
    line-height: 1.55;
    color: rgba(24,0,173,.72);
    margin: 0;
}

/* HOW IT WORKS STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}
.step-card {
    background: #fff;
    border: 1px solid rgba(17,189,229,.15);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
}
.step-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: .85rem;
}
.step-card h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: .5px;
    color: var(--cyan);
    margin: 0 0 .55rem;
}
.step-card p {
    margin: 0;
    color: rgba(24,0,173,.72);
    line-height: 1.55;
    font-size: .95rem;
}
.steps-cta { margin-top: 2rem; text-align: center; }

/* SERVICE AREA CHIPS */
.service-area-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
}
.service-area-chips li {
    padding: .65rem 1.1rem;
    background: #fff;
    border: 1px solid rgba(17,189,229,.25);
    border-radius: 999px;
    font-weight: 600;
    color: var(--cyan);
    font-size: .92rem;
    letter-spacing: .3px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.service-area-chips li:hover {
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    border-color: transparent;
}

/* FAQ CONTAINER */
.faq-container { max-width: 820px; }

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0B1424 0%, #131E36 60%, #0F1A2E 100%);
    color: rgba(255,255,255,.85);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -180px; right: -160px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(17,189,229,.18) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.site-footer::after {
    content: '';
    position: absolute;
    bottom: -160px; left: -120px;
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(239,73,148,.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.site-footer > .container,
.site-footer > div.container { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 6.5rem;
}
.footer-logo { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; transition: transform .25s ease; }
.footer-logo:hover { transform: translateY(-1px); }
.footer-logo-img { max-height: 56px; width: auto; display: block; }
.footer-tag { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.footer-col h4 {
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: .85rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.footer-col li {
    list-style: none;
    font-size: .9rem;
    line-height: 1.35;
}
.footer-col p {
    margin: 0 0 .55rem;
}
.footer-col a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-col a:hover {
    color: var(--pink);
}
.footer-col a[aria-current="page"] {
    color: var(--pink);
    font-weight: 600;
}
.footer-business { font-weight: 700; color: #fff; }
.footer-phone {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .3px;
}
.footer-phone:hover { color: var(--pink) !important; }
.footer-area { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-badges-sub {
    display: inline-block;
    margin-top: .25rem;
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: none;
}
.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.25rem;
    padding: .55rem .8rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,193,7,.35);
    border-radius: 10px;
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    line-height: 1.2;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
}
.footer-rating:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,193,7,.6);
    color: #fff;
}
.footer-rating-stars {
    display: inline-flex;
    gap: 1px;
    color: #F5B400;
    line-height: 0;
}
.footer-rating strong { color: #fff; font-weight: 800; }

.footer-h4-spaced { margin-top: 1.5rem; }
.footer-col:has(.footer-cities) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 1.25rem;
    row-gap: 0;
    align-items: start;
}
.footer-col:has(.footer-cities) .footer-h4-spaced { margin-top: 0; }
.footer-cities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.footer-cities li {
    font-size: .9rem;
    line-height: 1.35;
    color: rgba(255,255,255,.78);
}

/* LEGAL DOCUMENT (privacy, terms) */
.legal-doc { color: var(--cyan); }
.legal-doc .legal-meta { font-size: .9rem; color: rgba(24,0,173,.65); margin: 0 0 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(24,0,173,.1); }
.legal-doc p { font-size: 1rem; line-height: 1.75; color: rgba(24,0,173,.85); margin: 0 0 1.25rem; }
.legal-doc h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--cyan);
    margin: 2.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.legal-doc h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--cyan);
    margin: 1.5rem 0 .75rem;
    letter-spacing: .3px;
}
.legal-doc ul {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}
.legal-doc ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(24,0,173,.85);
    margin-bottom: .35rem;
}
.legal-doc a { color: var(--pink); font-weight: 600; }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc strong { color: var(--cyan); font-weight: 700; }

/* CONTACT PAGE */
.contact-track-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.contact-track {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-track:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--pink); }
.contact-track-eyebrow {
    font-family: 'Anton', sans-serif;
    font-size: .75rem;
    letter-spacing: 1.5px;
    color: var(--pink);
    text-transform: uppercase;
}
.contact-track h3 { font-family: 'Anton', sans-serif; font-size: 1.6rem; color: var(--cyan); margin: 0; letter-spacing: .5px; }
.contact-track p { font-size: .95rem; color: rgba(24,0,173,.7); margin: .25rem 0 .5rem; line-height: 1.5; }
.contact-track-link { font-weight: 600; color: var(--pink); font-size: .9rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.contact-card {
    background: #fff;
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
}
.contact-card[data-track="residential"] { border-top: 3px solid var(--pink); }
.contact-card[data-track="commercial"] { border-top: 3px solid var(--blue); }
.contact-card-head { margin-bottom: 1.5rem; }
.contact-card-head .eyebrow { font-size: .75rem; }
.contact-card-head h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--cyan);
    margin: .35rem 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.contact-card-head h2 em { color: var(--pink); font-style: italic; }
.contact-card-head p { font-size: .95rem; color: rgba(24,0,173,.7); line-height: 1.5; margin: 0; }

.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: .3px;
}
.form-label .req { color: var(--pink); }
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid rgba(24,0,173,.18);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--cyan);
    font-size: .95rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(24,0,173,.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(239,73,148,.15);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.form-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .85rem;
    border: 1px solid rgba(24,0,173,.18);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--cyan);
    cursor: pointer;
    transition: all .15s ease;
    background: #fff;
}
.form-chip input { position: absolute; opacity: 0; pointer-events: none; }
.form-chip:has(input:checked) {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}
.form-submit { margin-top: .5rem; }
.form-note { font-size: .78rem; color: rgba(24,0,173,.55); line-height: 1.4; margin: .25rem 0 0; }

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-card {
    padding: 1.5rem;
    background: var(--bg-soft);
    border: 1px solid rgba(24,0,173,.08);
    border-radius: var(--radius-md);
    text-align: left;
}
.contact-info-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
}
.contact-info-eyebrow {
    font-family: 'Anton', sans-serif;
    font-size: .72rem;
    letter-spacing: 1.5px;
    color: rgba(24,0,173,.55);
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.contact-info-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: var(--cyan);
    margin: 0 0 .25rem;
    letter-spacing: .5px;
}
.contact-info-card p { margin: 0; font-size: .92rem; color: rgba(24,0,173,.75); line-height: 1.5; }
.contact-info-card a { color: var(--pink); font-weight: 600; }

.contact-emergency {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
}
.contact-emergency-eyebrow {
    font-family: 'Anton', sans-serif;
    font-size: .8rem;
    letter-spacing: 2px;
    color: var(--cyan);
    text-transform: uppercase;
}
.contact-emergency h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.contact-emergency p { margin: 0; font-size: .95rem; line-height: 1.5; color: rgba(255,255,255,.9); max-width: 56ch; }

.portal-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.75rem;
    background: var(--bg-soft);
    border: 1px dashed rgba(24,0,173,.2);
    border-radius: var(--radius-md);
}
.portal-card-tag {
    display: inline-block;
    padding: .25rem .65rem;
    background: rgba(239,73,148,.12);
    color: var(--pink);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.portal-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: var(--cyan);
    margin: 0 0 .35rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.portal-card p { font-size: .92rem; color: rgba(24,0,173,.7); margin: 0 0 .75rem; line-height: 1.5; }
.portal-card-cta { font-weight: 700; color: var(--pink); }

@media (min-width: 769px) {
    .contact-track-strip { grid-template-columns: 1fr 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .form-row.split-2 { grid-template-columns: 1fr 1fr; }
    .form-row.split-3 { grid-template-columns: 1fr 1fr 1fr; }
    .contact-info-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-emergency { flex-direction: row; align-items: center; gap: 2rem; padding: 2rem 2.5rem; }
    .contact-emergency-body { flex: 1; }
    .portal-card { grid-template-columns: 1fr auto; padding: 2rem 2.5rem; }
}

.footer-badges {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    letter-spacing: .5px;
}
.footer-legal {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 1.25rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    text-align: center;
}
.footer-legal a { color: rgba(255,255,255,.75); }
.footer-legal a:hover { color: var(--pink); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* 404 PAGE */
.error-page {
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #11BDE5 0%, #1800AD 100%);
    color: #fff;
    padding: 3rem 1.25rem;
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(239,73,148,.4), transparent 50%);
}
.error-inner { position: relative; max-width: 600px; }
.error-code {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: clamp(7rem, 25vw, 14rem);
    line-height: .85;
    background: linear-gradient(135deg, #fff, #FFD8E9);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 1rem;
}
.error-page h1 {
    color: #fff;
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.error-page p {
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* RESPONSIVE  Tablet 769px+ */
@media (min-width: 769px) {
    body { font-size: 17px; }
    .container { padding: 0 2rem; }

    .nav-toggle { display: none; }
    .nav-overlay { display: none; }
    .primary-nav {
        position: static;
        transform: none;
        background: none;
        padding: 0;
        box-shadow: none;
        border-bottom: 0;
        width: auto; height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        overflow: visible;
    }
    .primary-nav > ul {
        flex-direction: row;
        gap: .5rem;
        align-items: center;
    }
    .primary-nav > ul > li { position: static; }
    .primary-nav .nav-link {
        position: relative;
        width: auto;
        display: inline-flex; align-items: center; gap: .4rem;
        padding: .65rem 1rem;
        border: 0;
        border-bottom: 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--cyan);
        border-radius: 999px;
        background: none;
    }
    .primary-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%; bottom: .2rem;
        transform: translateX(-50%);
        width: 0; height: 2px;
        background: var(--pink);
        border-radius: 2px;
        transition: width .25s ease;
    }
    .primary-nav .nav-link:hover { color: var(--pink); padding-left: .85rem; }
    .primary-nav .nav-link:hover::after,
    .has-mega.is-open > .nav-link::after { width: 22px; }
    .nav-cta { margin: 0; width: auto; font-size: .9rem; padding: .7rem 1.25rem; }

    /* Desktop mega panel  anchored to .nav-wrap so it spans full container width */
    .mega-panel {
        position: absolute;
        top: calc(100% + 6px);
        left: 0; right: 0;
        width: 100%;
        background: #fff;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 1.75rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
        border-top: 3px solid var(--pink);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .22s ease, transform .25s ease;
        z-index: 110;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .has-mega[data-tone="commercial"] .mega-panel { border-top-color: var(--cyan); }
    .has-mega[data-tone="residential"] .mega-panel { border-top-color: var(--pink); }
    .has-mega.is-open > .mega-panel {
        display: grid;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .mega-col {
        padding: 0 1.5rem;
        border-left: 1px solid rgba(24,0,173,.08);
    }
    .mega-col:first-child { border-left: 0; padding-left: .25rem; }
    .mega-col:last-child { padding-right: .25rem; }
    .mega-col + .mega-col { margin-top: 0; }
    .mega-col-head {
        align-items: center;
        padding-bottom: .55rem;
        margin-bottom: .65rem;
        border-bottom-width: 2px;
    }
    .mega-col-title { font-size: 1.1rem; }
    .has-mega[data-tone="commercial"] .mega-col-title { color: var(--cyan); }
    .has-mega[data-tone="residential"] .mega-col-title { color: var(--pink); }
    .has-mega[data-tone="commercial"] .mega-col-head { border-bottom-color: rgba(17,189,229,.35); }
    .has-mega[data-tone="residential"] .mega-col-head { border-bottom-color: rgba(239,73,148,.35); }
    .mega-col-count { display: none; }
    .mega-col-sub {
        font-size: .78rem;
        margin-bottom: .85rem;
        line-height: 1.35;
    }
    .mega-list {
        display: block;
    }
    .mega-list li { margin: 0; }
    .mega-list a {
        display: block;
        padding: .4rem .5rem;
        font-size: .9rem;
        line-height: 1.3;
        border-radius: 6px;
    }
    .mega-list a:hover {
        padding-left: .8rem;
        background: rgba(239,73,148,.06);
    }
    .has-mega[data-tone="commercial"] .mega-list a:hover {
        background: rgba(17,189,229,.08);
    }
    .has-mega[data-tone="residential"] .mega-list a { color: var(--pink-dark); }
    .has-mega[data-tone="residential"] .mega-list a:hover { color: var(--pink); }
    .mega-list-2col { display: block; }

    .hero { padding: 3rem 0 4rem; }
    .hero-inner { grid-template-columns: 1.1fr .9fr; gap: 3rem; }

    .trust-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; gap: 1.25rem; }
    .trust-item { flex-direction: row; align-items: center; gap: .65rem; white-space: nowrap; flex: 0 0 auto; text-align: left; }
    .trust-item .trust-sub { margin: 0; white-space: nowrap; display: inline; }
    .trust-item .trust-sub::before { content: " · "; margin: 0 .15rem; color: rgba(24,0,173,.4); }

    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .finder-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

    .metro-grid { gap: 1rem; }

    .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .partners-cta { flex-direction: row; justify-content: center; gap: 1.5rem; }

    .resource-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .why-card-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .page-intro-split-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
    .photo-banner-img { aspect-ratio: 21 / 9; }
    .feature-split-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
    .feature-split-reverse .feature-split-media { order: 2; }
    .feature-split-reverse .feature-split-copy { order: 1; }
    .copy-checklist { grid-template-columns: 1fr 1fr; gap: .65rem 1.5rem; }

    .resource-signup-card { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; padding: 3rem; }
    .resource-signup-form { flex-direction: row; }
    .resource-signup-form input[type="email"] { flex: 1; }
    .resource-signup-form .btn { width: auto; }

    /* Deep-page grids */
    .facts-strip-row { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
    .scope-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .case-callout { grid-template-columns: 1.4fr 1fr; padding: 3.5rem 3rem; }
    .case-callout-stats { grid-template-columns: repeat(3, 1fr); }

    /* About page grids */
    .about-story { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
    .pillar-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .standards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .credentials-block { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .community-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .careers-card { grid-template-columns: 1.4fr 1fr; padding: 3.5rem 3rem; }
    .careers-cta { flex-direction: column; align-items: stretch; }

    .section-head-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
    }
    .resources-all-link { align-self: auto; flex-shrink: 0; }

    .why-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

    .big-cta-card { padding: 3.5rem 3rem; }
}

/* RESPONSIVE  Laptop 1025px+ */
@media (min-width: 1025px) {
    .services { padding: 7rem 0 6rem; }
    .service-grid { grid-template-columns: repeat(4, 1fr); }
    .pkg-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
    .featured-packages { padding: 7rem 0 6rem; }
    .finder-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .service-finder { padding: 7rem 0 6rem; }
    .metro-grid { gap: 1.1rem; }
    .partner-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .partners-callout { padding: 7rem 0 6rem; }
    .cfr-section { padding: 3rem 0 2.5rem; }
    .cfr-grid { grid-template-columns: minmax(280px, 1fr) 1.4fr; gap: 4rem; }
    .resource-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .resources-teaser { padding: 7rem 0 6rem; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr; gap: 2rem 3.5rem; }

    /* About page  desktop tweaks */
    .standards-grid { grid-template-columns: repeat(4, 1fr); }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .community-grid { grid-template-columns: repeat(4, 1fr); }

    /* Deep-page desktop tweaks */
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .why-card-grid { grid-template-columns: repeat(3, 1fr); }
    .pain-grid { grid-template-columns: repeat(4, 1fr); }
    .case-callout-stats { grid-template-columns: 1fr; gap: .85rem; }
    .why { padding: 10rem 0 10rem; }
    .hero { padding: 3rem 0 3.5rem; }
    .hero-h1 { margin-bottom: 1rem; }
    .hero-sub { margin-bottom: 1.25rem; font-size: 1rem; }
    .hero-entry { margin-bottom: 1.25rem; gap: .75rem; grid-template-columns: 1fr 1fr; max-width: 520px; }
    .hero-entry-card { padding: .75rem 1rem; }
    .hero-entry-title { font-size: 1.05rem; }
    .hero-entry-sub { font-size: .78rem; }
    .hero-entry-arrow { width: 32px; height: 32px; }
    .hero-ctas { margin-bottom: 10px; }
    .section-head { margin-bottom: 4rem; }
}

/* Resources redesign  responsive overrides (after existing .resource-grid rules) */
@media (min-width: 640px) {
    .resource-grid--guides,
    .resource-grid--2up,
    .resource-grid--soon { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1025px) {
    .resource-grid--guides,
    .resource-grid--2up,
    .resource-grid--soon { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

/* RESPONSIVE  Desktop 1367px+ */
@media (min-width: 1367px) {
    .container { max-width: 1320px; }
    .hero-h1 { font-size: clamp(4.5rem, 8vw, 7rem); }
}

/* RESPONSIVE  XL 1921px+ */
@media (min-width: 1921px) {
    .container { max-width: 1440px; }
}

/* PHOTO STRIP  compact horizontal mosaic between sections */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 240px;
    overflow: hidden;
}
.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.photo-strip img:hover { transform: scale(1.04); }

@media (max-width: 640px) {
    .photo-strip {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .photo-strip img { height: 150px; }
}

/* QUOTE STRIP */
.quote-strip {
    background: linear-gradient(135deg, #11BDE5 0%, #2E5BE0 45%, #1800AD 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}
.quote-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(239,73,148,.28), transparent 55%);
    pointer-events: none;
}
.quote-strip-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.quote-strip-copy { display: flex; flex-direction: column; gap: .25rem; }
.quote-strip-label {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}
.quote-strip-heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}
.quote-strip-heading em { font-style: italic; color: #FFC1DC; }
.quote-strip-actions {
    display: flex;
    gap: .7rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 700px) {
    .quote-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    html { scroll-behavior: auto; }
}

/* BLOG NAV DROPDOWN — narrow single-column panel */
@media (min-width: 769px) {
    .has-mega[data-tone="blog"] { position: relative; }
    .has-mega[data-tone="blog"] .mega-panel {
        left: 50%;
        right: auto;
        width: 300px;
        grid-template-columns: 1fr;
        border-top-color: var(--cyan);
        transform: translateX(-50%) translateY(-8px);
    }
    .has-mega[data-tone="blog"].is-open > .mega-panel {
        display: grid;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    .has-mega[data-tone="blog"] .mega-col { border-left: 0; padding: 0; }
    .has-mega[data-tone="blog"] .mega-col-title { color: var(--cyan); }
    .has-mega[data-tone="blog"] .mega-col-head { border-bottom-color: rgba(17,189,229,.35); }
    .has-mega[data-tone="blog"] .mega-list a:hover { background: rgba(17,189,229,.08); }
}

/* BLOG ARTICLE PAGE */
.blog-article-hero {
    background: linear-gradient(135deg, #11BDE5 0%, #1800AD 100%);
    padding: 3.5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-article-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 40%, rgba(239,73,148,.3), transparent 55%);
    pointer-events: none;
}
.blog-article-hero-inner { position: relative; max-width: 780px; }
.blog-article-meta {
    display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.blog-article-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.blog-article-read { font-size: .88rem; color: rgba(255,255,255,.72); }
.blog-article-title {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.blog-article-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,.9);
    max-width: 640px;
    line-height: 1.65;
}
.blog-article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
}
.blog-back-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--cyan);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color .2s ease;
}
.blog-back-link:hover { color: var(--pink); }
.blog-back-link svg { transition: transform .2s ease; }
.blog-back-link:hover svg { transform: translateX(-3px); }
.blog-article-body h2 {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    color: var(--blue);
    margin: 2.5rem 0 .75rem;
}
.blog-article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin: 1.75rem 0 .5rem; }
.blog-article-body p { margin-bottom: 1.2rem; line-height: 1.75; color: var(--text); }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 1.2rem 1.5rem; line-height: 1.75; color: var(--text); }
.blog-article-body li { margin-bottom: .4rem; }
.blog-article-body .callout {
    background: linear-gradient(135deg, rgba(17,189,229,.07), rgba(239,73,148,.05));
    border-left: 4px solid var(--cyan);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
}
.blog-article-body .callout p { margin-bottom: 0; font-weight: 500; }
.blog-article-cta {
    background: linear-gradient(135deg, #11BDE5 0%, #1800AD 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.blog-article-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(239,73,148,.3), transparent 50%);
    pointer-events: none;
}
.blog-article-cta > * { position: relative; }
.blog-article-cta h3 {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: 1.75rem;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: #fff;
}
.blog-article-cta p { color: rgba(255,255,255,.88); margin-bottom: 1.5rem; }

