@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&family=Manrope:wght@500;700;800&display=swap');

:root{
 --bg: #0b1220;
 --bg2:#0f1b33;
 --text:#0d1220;
 --muted:#667085;
 --white:#ffffff;

 --brand:#0b5cff;
 --brand2:#0747c9;
 --accent:#ffc400;

 --shadow: 0 14px 40px rgba(0,0,0,.22);
 --shadow2: 0 10px 30px rgba(2,18,43,.18);

 --radius: 16px;
 --radius2: 22px;

 --container: 1200px;
}

*{ box-sizing:border-box; }
html{ min-height:100%; }
body{
 min-height:100%;
 margin:0;
 font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 color: var(--text);
 background: #fff;
}

/* Layout */
.container{
 width: min(1200px, calc(100% - 40px));
 margin: 0 auto;
}

/* Breadcrumb bar */
.breadcrumbBar{
 position: relative;
 background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
 border-bottom: 1px solid rgba(11, 92, 255, 0.08);
 padding: 13px 0 14px;
 overflow: hidden;
}
.breadcrumbBar::before{
 content: "";
 position: absolute;
 inset: 0 0 auto 0;
 height: 2px;
 background: linear-gradient(
 90deg,
 transparent 0%,
 rgba(11, 92, 255, 0.22) 18%,
 rgba(11, 92, 255, 0.55) 50%,
 rgba(11, 92, 255, 0.22) 82%,
 transparent 100%
 );
 opacity: 0.85;
}
.breadcrumbBar__inner{
 display: flex;
 align-items: center;
 justify-content: center;
}
.breadcrumb{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 gap: 0;
 list-style: none;
 margin: 0;
 padding: 8px 18px;
 border-radius: 999px;
 background: rgba(255, 255, 255, 0.82);
 border: 1px solid rgba(11, 92, 255, 0.1);
 box-shadow: 0 8px 28px rgba(13, 35, 84, 0.06);
}
.breadcrumb__item{
 display: inline-flex;
 align-items: center;
 font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 line-height: 1.2;
}
.breadcrumb__item:not(:last-child)::after{
 content: "/";
 margin: 0 11px;
 color: rgba(11, 92, 255, 0.28);
 font-weight: 500;
 letter-spacing: 0;
}
.breadcrumb__link{
 color: #64748b;
 text-decoration: none;
 transition: color 0.22s ease, opacity 0.22s ease;
}
.breadcrumb__link:hover{
 color: var(--brand);
}
.breadcrumb__label{
 color: #64748b;
}
.breadcrumb__current{
 color: #0f172a;
}
.breadcrumb__item--current .breadcrumb__current{
 position: relative;
 padding-bottom: 1px;
}
.breadcrumb__item--current .breadcrumb__current::after{
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: -2px;
 height: 2px;
 border-radius: 999px;
 background: linear-gradient(90deg, rgba(11, 92, 255, 0.15), rgba(11, 92, 255, 0.75), rgba(11, 92, 255, 0.15));
}
@media (max-width: 640px){
 .breadcrumb{
 padding: 7px 14px;
 border-radius: 18px;
 }
 .breadcrumb__item{
 font-size: 10px;
 letter-spacing: 0.08em;
 }
 .breadcrumb__item:not(:last-child)::after{
 margin: 0 8px;
 }
}
@media (prefers-reduced-motion: reduce){
 .breadcrumb__link{
 transition: none;
 }
}

/* Topbar */
.topbar{
 background: #0a1326;
 color: rgba(255,255,255,.86);
 font-size: 13px;
}
.topbar__inner{
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
 align-items: center;
 padding: 10px 0;
 gap: 12px 18px;
}
.topbar__left{
 justify-self: start;
 min-width: 0;
}
.topbar__center{
 justify-self: center;
 text-align: center;
}
.topbar__tagline{
 margin: 0;
 font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
 font-size: clamp(1rem, 0.55vw + 0.82rem, 1.125rem);
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: rgba(255,255,255,.96);
 white-space: nowrap;
 line-height: 1.2;
 text-shadow: 0 1px 2px rgba(0,0,0,.45);
 font-feature-settings: "kern" 1, "liga" 1;
}
.topbar__tagline-text{
 color: rgba(255,255,255,.92);
 font-weight: 600;
}
.topbar__tagline-sep{
 margin: 0 0.55em;
 opacity: 0.42;
 font-weight: 300;
}
.topbar__tagline-accent{
 color: var(--accent);
 font-weight: 800;
 letter-spacing: 0.16em;
 text-shadow: 0 0 20px rgba(255, 196, 0, 0.22);
}
.topbar__link{
 color: rgba(255,255,255,.92);
 text-decoration:none;
 display:flex;
 align-items:center;
 gap: 10px;
}
.dot{
 width:8px; height:8px; border-radius:99px;
 background: var(--accent);
 box-shadow: 0 0 0 4px rgba(255,196,0,.18);
}
.topbar__right{
 display:flex;
 align-items:center;
 gap: 12px;
 flex-wrap: wrap;
 justify-content:flex-end;
 justify-self: end;
}
.sep{
 width:1px; height:14px;
 background: rgba(255,255,255,.18);
}
.social__icon{
 width:26px;
 height:26px;
 display:inline-flex;
 align-items:center;
 justify-content:center;
 border-radius: 9px;
 color: rgba(255,255,255,.88);
 text-decoration:none;
 background: rgba(255,255,255,.08);

 /* animation */
 transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
 will-change: transform;
 position: relative;
 overflow: hidden;
}

/* subtle shine */
.social__icon::after{
 content:"";
 position:absolute;
 inset:-40%;
 background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 65%);
 transform: translateX(-55%) rotate(8deg);
 transition: transform .6s ease;
 pointer-events:none;
}

.social__icon:hover{
 transform: translateY(-2px) scale(1.02);
 background: rgba(255,255,255,.14);
 box-shadow: 0 10px 22px rgba(0,0,0,.18);
 color: rgba(255,255,255,.95);
}

.social__icon:hover::after{
 transform: translateX(55%) rotate(8deg);
}

.social__icon:active{
 transform: translateY(-1px) scale(0.99);
}

/* YouTube: slight red glow on hover */
.social__icon--yt:hover{
 box-shadow: 0 10px 22px rgba(255, 0, 0, .20);
}

/* SVG sizing + color */
.social__svg{
 width: 15px;
 height: 15px;
 display:block;
 fill: currentColor;
}

/* Optional: slightly larger icons */
.social__icon{
 width: 28px;
 height: 28px;
}


/* Header */
.header{
 position: sticky;
 top:0;
 z-index: 50;
 background: linear-gradient(180deg, #0b5cff 0%, #0b49d0 100%);
 box-shadow: 0 10px 30px rgba(7, 22, 48, .22);
}
.header__inner{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 10px 18px;
 padding: 14px 0;
}

.header__brand{
 display: flex;
 justify-content: center;
 align-items: center;
 min-width: 0;
}

.header__nav.nav{
 justify-content: center;
 margin-left: 0;
}

.header__queries{
 display: flex;
 justify-content: center;
 min-width: 0;
}

.header__queriesBox{
 display: inline-flex;
 align-items: center;
 gap: 10px;
 max-width: 100%;
 background: var(--accent);
 color: #111827;
 text-decoration: none;
 padding: 10px 14px;
 border-radius: 12px;
 box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
 transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.header__queriesBox:hover{
 filter: brightness(1.06);
 transform: translateY(-1px);
 box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
 color: #111827;
}

.header__queriesIcon{
 flex-shrink: 0;
 display: flex;
 color: #111827;
}

.header__queriesText{
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2px;
 line-height: 1.15;
 text-align: center;
}

.header__queriesLabel{
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.02em;
}

.header__queriesPhone{
 font-size: 16px;
 font-weight: 800;
 white-space: nowrap;
}

/* Mobile / tablet: stack header (logo → nav → phone) — centered */
@media (max-width: 900px) {
 .header__inner {
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 12px;
 }

 .header__brand {
 min-width: 0;
 max-width: 100%;
 width: 100%;
 justify-content: center;
 }

 .header__nav.nav {
 width: 100%;
 max-width: 100%;
 margin-left: 0;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 8px 12px;
 row-gap: 10px;
 }

 .header__queries {
 width: 100%;
 max-width: 100%;
 min-width: 0;
 justify-content: center;
 }

 .header__queriesBox {
 width: 100%;
 max-width: 100%;
 min-width: 0;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 8px 10px;
 }

 .header__queriesText {
 min-width: 0;
 flex: 1 1 auto;
 align-items: center;
 text-align: center;
 }

 .header__queriesPhone {
 white-space: normal;
 word-break: break-word;
 overflow-wrap: anywhere;
 }

 .brand--logoOnly .brand__logo {
 max-width: min(225px, 100%);
 }

 /* Hero trust row: one card per row (was 3 squeezed columns on tablet) */
 .trust {
 display: grid;
 grid-template-columns: 1fr;
 gap: 12px;
 align-items: stretch;
 }

 .trust__item {
 min-height: 0;
 width: 100%;
 }
}

.brand{
 display:flex;
 flex-direction:row;
 align-items:center;
 gap: 0;
 text-decoration:none;
 color: var(--white);
 line-height: 1.1;
 padding: 4px 8px;
 border-radius: 14px;
 background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
 border: 1px solid rgba(255,255,255,.18);
 box-shadow: 0 10px 24px rgba(2,18,43,.26), inset 0 1px 0 rgba(255,255,255,.14);
}

/* Logo-only brand: cleaner, more premium */
.brand--logoOnly{
 padding: 6px 10px;
 background: transparent;
 border: 0;
 box-shadow: none;
 position: relative;
 transform: none;
 z-index: auto;
}

.brand--logoOnly .brand__logo{
 height: 63px;
 max-width: 265px;
 filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)) saturate(1.08) contrast(1.08);
}

.brand--logoOnly:hover{
 background: transparent;
 border-radius: 14px;
}
.brand__logo{
 height: 57px;
 width: auto;
 max-width: 245px;
 object-fit: contain;
 flex-shrink: 0;
 display: block;
 filter: drop-shadow(0 3px 10px rgba(0,0,0,.3)) saturate(1.06) contrast(1.06);
}
.brand__mark{
 font-weight: 800;
 letter-spacing: .2px;
 font-size: 26px;
}
.brand__mark span{
 color: var(--accent);
}
.brand__sub{
 font-size: 12px;
 opacity: .9;
 letter-spacing: 2px;
}

/* Nav */
.nav{
 display:flex;
 align-items:center;
 gap: 18px;
 margin-left: 0;
}
.nav__link{
 color: rgba(255,255,255,.95);
 text-decoration:none;
 font-weight: 600;
 font-size: 19px;
 text-transform: uppercase;
 letter-spacing: .06em;
 padding: 10px 10px;
 border-radius: 12px;
 transition: background .18s ease, transform .18s ease;
}
.nav__link:hover{
 background: rgba(255,255,255,.12);
 transform: translateY(-1px);
}
.nav__cta{
 background: var(--accent);
 color: #111827;
 text-decoration:none;
 font-weight: 800;
 font-size: 14px;
 padding: 10px 14px;
 border-radius: 999px;
 box-shadow: 0 10px 22px rgba(255,196,0,.22);
 transition: transform .18s ease, filter .18s ease;
}
.nav__cta:hover{
 transform: translateY(-1px);
 filter: brightness(.98);
}

/* Dropdown (CSS only) */
.nav__dropdown{ position:relative; }
.nav__link--btn{
 border:0;
 background: transparent;
 cursor:pointer;
}
.chev{ opacity:.9; margin-left:4px; }
.nav__menu{
 position:absolute;
 top: 44px;
 right: 0;
 min-width: 180px;
 max-width: min(300px, 94vw);
 background: #ffffff;
 border-radius: 12px;
 box-shadow: var(--shadow2);
 padding: 8px;
 display:none;
 box-sizing: border-box;
}
.nav__menu a{
 display:block;
 padding: 8px 10px;
 border-radius: 10px;
 text-decoration:none;
 color: #0f172a;
 font-weight: 600;
 font-size: 13px;
}
.nav__menu a:hover{
 background: #f3f6ff;
}
.nav__dropdown:hover .nav__menu{
 display:block;
}

/* Hero */
.hero{
 position:relative;
 min-height: 74vh;
 display:flex;
 align-items:center;
 overflow:hidden;
 background: #0b1220;
}
.hero__bg{
 position:absolute; inset:0;
 transform: scale(1.02);
 filter: saturate(1.05);
}
.hero__overlay{
 position:absolute; inset:0;
 background: radial-gradient(1000px 520px at 20% 40%, rgba(0,0,0,.55), rgba(0,0,0,.82));
}
.hero__inner{
 position:relative;
 z-index: 2;
 padding: 70px 0 56px;
}
.hero__content{
 max-width: min(760px, 100%);
 min-width: 0;
 width: 100%;
 color: rgba(255,255,255,.95);
 text-align: left;
 margin-left: 0;
}

/* Home hero layout */
.hero__content--home{
 display: block;
}
@keyframes fadeUp{
 from{ opacity:0; transform: translateY(10px); }
 to{ opacity:1; transform: translateY(0); }
}
.badge{
 display:inline-flex;
 align-items:center;
 gap: 8px;
 padding: 8px 12px;
 border-radius: 999px;
 background: rgba(255,255,255,.12);
 border: 1px solid rgba(255,255,255,.16);
 font-weight: 700;
 font-size: 13px;
 margin-bottom: 14px;
}
.hero__title{
 text-align:left;
}
.heroTitleMain{
 margin: 0 0 14px;
 line-height: 1.08;
}
.heroTitleMain__primary{
 display: block;
 font-size: clamp(34px, 4.2vw, 54px);
 font-weight: 950;
 letter-spacing: -0.02em;
 color: #fbbf24;
 text-shadow: 0 12px 28px rgba(0,0,0,.55), 0 2px 0 rgba(0,0,0,.2);
}
.heroTitleMain__zipSuffix{
 font-weight: 800;
 letter-spacing: -0.02em;
 color: #fbbf24;
 text-shadow: 0 12px 28px rgba(0,0,0,.55), 0 2px 0 rgba(0,0,0,.2);
}
.heroTitleStateLine{
 display: block;
 margin-top: clamp(14px, 2.2vw, 24px);
 font-size: calc(clamp(15px, 1.85vw, 22px) + 6px);
 font-weight: 700;
 letter-spacing: 0.01em;
 color: #fff;
 text-shadow: 0 8px 18px rgba(0,0,0,.45);
}

.heroBelowStateLines{
 margin: clamp(10px, 1.8vw, 18px) 0 0;
 max-width: min(52rem, 100%);
 text-align: left;
}

p.heroBelowStateLines--single{
 margin: 0;
 font-size: clamp(14px, 1.55vw, 17px);
 line-height: 1.65;
 font-weight: 500;
 letter-spacing: 0.01em;
 color: rgba(255, 255, 255, 0.92);
 text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.heroBelowStateLines + .hero__subtitle{
 margin-top: clamp(14px, 2vw, 22px);
}

.heroTitle2{
 margin: 0 0 18px;
 line-height: 1.08;
 max-width: 100%;
 overflow-wrap: break-word;
 word-wrap: break-word;
}
.heroTitle2__main{
 display: block;
 font-size: clamp(34px, 4.2vw, 54px);
 font-weight: 950;
 letter-spacing: -0.02em;
 color: #fbbf24;
 text-shadow: 0 12px 28px rgba(0,0,0,.55), 0 2px 0 rgba(0,0,0,.2);
}
.hero__subtitle{
 margin: 10px 0 18px;
 max-width: min(640px, 100%);
 font-size: 16px;
 line-height: 1.75;
 color: rgba(255,255,255,.86);
 overflow-wrap: break-word;
 word-wrap: break-word;
 hyphens: auto;
}

.hero__actions{
 display:flex;
 gap: 12px;
 flex-wrap: wrap;
 margin-bottom: 18px;
}
.hero__actions .btn{
 white-space: nowrap;
}

@media (max-width: 480px) {
 .hero__actions {
 width: 100%;
 }
 .hero__actions .btn {
 white-space: normal;
 text-align: center;
 max-width: 100%;
 padding-left: 14px;
 padding-right: 14px;
 }
}
.btn{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 text-decoration:none;
 font-weight: 800;
 border-radius: 999px;
 padding: 12px 18px;
 transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}
.btn--primary{
 background: var(--accent);
 color: #111827;
 box-shadow: 0 14px 26px rgba(255,196,0,.18);
}
.btn--primary:hover{ transform: translateY(-1px); filter: brightness(.98); }
.btn--ghost{
 background: rgba(255,255,255,.10);
 color: rgba(255,255,255,.96);
 border: 1px solid rgba(255,255,255,.16);
}
.btn--ghost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.14); }

.trust{
 display:flex;
 gap: 10px;
 flex-wrap: nowrap;
 align-items: stretch;
 margin-top: 10px;
 margin-bottom: 6px;
}
.trust__item{
 background: rgba(255,255,255,.12);
 border: 1px solid rgba(255,255,255,.22);
 border-radius: var(--radius);
 padding: 16px 16px;
 min-height: 104px;
 display:flex;
 flex-direction: column;
 justify-content: center;
 flex: 1;
 min-width: 0;
 box-shadow: 0 18px 44px rgba(2, 18, 43, .10);
}
.trust__num{
 font-weight: 950;
 letter-spacing: -.28px;
 font-size: 18px;
 white-space: normal;
 overflow: visible;
 text-overflow: clip;
 max-width: 100%;
 display: block;
 line-height: 1.15;
 overflow-wrap: break-word;
 word-wrap: break-word;
}
.trust__label{
 margin-top: 4px;
 color: rgba(255,255,255,.86);
 font-size: 13px;
 font-weight: 650;
 white-space: normal;
 overflow: visible;
 text-overflow: clip;
 max-width: 100%;
 display: block;
 line-height: 1.25;
 overflow-wrap: break-word;
 word-wrap: break-word;
}
.note{
 margin-top: 14px;
 font-size: 12px;
 color: rgba(255,255,255,.62);
}

/* Strip */
.strip{
 background: #f6f8ff;
 padding: 26px 0 34px;
}
.strip__inner{
 display:grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 14px;
 margin-top: -28px;
}
.strip__card{
 background: #fff;
 border-radius: var(--radius2);
 padding: 18px 18px;
 box-shadow: 0 16px 26px rgba(2, 18, 43, .08);
 border: 1px solid rgba(15, 23, 42, .06);
 transition: transform .18s ease;
}
.strip__card:hover{ transform: translateY(-2px); }
.strip__title{
 font-weight: 900;
 color: #0f172a;
 margin-bottom: 6px;
}
.strip__text{
 color: #475569;
 font-size: 14px;
 line-height: 1.6;
}

/* Footer */
.footer{
 background: #0a1326;
 color: rgba(255,255,255,.88);
 padding: 18px 0;
}
.footer__inner{
 display:flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 6px;
}
.footer__brand{
 font-weight: 900;
 font-size: 16px;
}
.footer__muted{
 font-size: 13px;
 color: rgba(255,255,255,.70);
 margin-top: 0;
}

.footer__disclaimer{
 width: 100%;
 max-width: 980px;
 font-size: 12px;
 line-height: 1.35;
 color: rgba(255,255,255,.65);
 text-align: center;
}

/* Responsive */
@media (max-width: 940px){
 .nav{ gap: 10px; }
 .strip__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
 .topbar__inner{
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 6px;
 padding: 8px 0;
 }
 .topbar__center{ order: -1; width: 100%; }
 .topbar__left{ justify-self: center; text-align: center; }
 .topbar__right{ justify-content: center; justify-self: center; }
 .topbar__tagline{
 white-space: normal;
 overflow: visible;
 text-overflow: unset;
 max-width: 100%;
 font-size: clamp(0.78rem, 1.0vw + 0.58rem, 0.95rem);
 letter-spacing: 0.08em;
 text-align: center;
 overflow-wrap: break-word;
 }
 .hero__inner{ padding: 54px 0 44px; }
}

/* =========================
 Extra mobile friendliness
 ========================= */
@media (max-width: 520px) {
 .topbar{
 font-size: 12px;
 }

 .topbar__tagline{
 font-size: 12px;
 letter-spacing: 0.06em;
 }

 .header__inner{
 padding: 10px 0;
 gap: 10px;
 }

 .brand{
 padding: 4px 6px;
 border-radius: 12px;
 }

 .brand__logo{
 height: 49px;
 max-width: 205px;
 }

 .brand--logoOnly{
 padding: 4px 8px;
 left: auto;
 transform: none;
 }

 .brand--logoOnly .brand__logo{
 height: 53px;
 max-width: 225px;
 }

 /* Make nav links fit without collisions */
 .nav{
 gap: 8px;
 }

 .nav__link{
 font-size: 14px;
 padding: 8px 8px;
 letter-spacing: 0.04em;
 }

 .header__queriesBox{
 width: 100%;
 justify-content: center;
 padding: 9px 12px;
 gap: 8px;
 border-radius: 12px;
 }

 .header__queriesLabel{
 font-size: 10px;
 }

 .header__queriesPhone{
 font-size: 14px;
 }

 .hero{
 min-height: auto;
 }

 .hero__inner{
 padding: 44px 0 36px;
 }

 .hero__subtitle{
 font-size: 14px;
 line-height: 1.65;
 }

 /* Trust cards: prevent squeezed 3-column overflow */
 .trust{
 display: grid;
 grid-template-columns: 1fr;
 gap: 12px;
 align-items: stretch;
 }

 .trust__item{
 min-height: 0;
 }

 .trust__num{
 font-size: 16px;
 line-height: 1.2;
 overflow-wrap: anywhere;
 word-break: break-word;
 }

 .trust__label{
 font-size: 12px;
 line-height: 1.35;
 overflow-wrap: anywhere;
 word-break: break-word;
 }
}

@media (max-width: 420px) {
 :root{
 --sticky-topbar-height: 122px;
 }

 .nav__link{
 font-size: 13px;
 padding: 7px 7px;
 }

 .brand__logo{
 height: 45px;
 max-width: 185px;
 }
}

/* ========= LAYOUT OVERRIDES (Full-width header & hero) ========= */

/* Make topbar/header use full browser width */
.topbar .container,
.header .container,
.hero .container {
 width: 100%;
 max-width: none;
 margin: 0;
 padding-left: 28px;
 padding-right: 28px;
}

/* Hero: keep content left aligned (not centered) */
.hero__inner {
 display: flex;
 justify-content: flex-start;
}

.hero__content {
 text-align: left;
 margin-left: 0;
}

/* Optional: better spacing on small screens */
@media (max-width: 720px) {
 .topbar .container,
 .header .container,
 .hero .container {
 padding-left: 16px;
 padding-right: 16px;
 }
}

/* Scrollable Services / Areas dropdowns — premium SaaS-style scrollbar */
.nav__menu--scroll {
 max-height: min(38vh, 260px);
 overflow-y: auto;
 overflow-x: hidden;
 padding-right: 4px;
 scrollbar-gutter: stable;
 scrollbar-width: thin;
 scrollbar-color: #3b82f6 #eef2f7;
 overscroll-behavior: contain;
}

.nav__menu--scroll::-webkit-scrollbar {
 width: 7px;
}

.nav__menu--scroll::-webkit-scrollbar-track {
 background: linear-gradient(
 180deg,
 rgba(248, 250, 252, 0.98) 0%,
 rgba(241, 245, 249, 0.92) 100%
 );
 border-radius: 999px;
 margin: 8px 0;
 box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.nav__menu--scroll::-webkit-scrollbar-thumb {
 background: linear-gradient(180deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
 border-radius: 999px;
 border: 2px solid rgba(248, 250, 252, 0.95);
 box-shadow:
 0 1px 2px rgba(15, 23, 42, 0.12),
 inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav__menu--scroll::-webkit-scrollbar-thumb:hover {
 background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.nav__menu--scroll::-webkit-scrollbar-thumb:active {
 background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
}

.nav__menu--scroll::-webkit-scrollbar-corner {
 background: transparent;
}

.nav__empty{
 padding: 10px 12px;
 color: #667085;
 font-size: 13px;
 font-weight: 600;
}

/* Search Box inside Services dropdown */
.service-search-wrapper{
 padding: 8px;
 border-bottom: 1px solid rgba(0,0,0,.05);
}

.service-search{
 width: 100%;
 padding: 7px 9px;
 border-radius: 8px;
 border: 1px solid #e5e7eb;
 font-size: 13px;
 outline: none;
}

.service-search:focus{
 border-color: var(--brand);
 box-shadow: 0 0 0 2px rgba(11,92,255,.15);
}

.service-item{
 display: block;
}
.service-item__title{
 display: block;
 font-weight: 700;
 color: #0f172a;
}
.service-item__desc{
 display: block;
 font-size: 12px;
 line-height: 1.4;
 color: #64748b;
 margin-top: 4px;
 font-weight: 500;
 -webkit-line-clamp: 2;
 display: -webkit-box;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

/* Strip header */
.strip__head{
 padding-top: 8px;
 padding-bottom: 12px;
}
.strip__heading{
 margin: 0;
 font-size: 20px;
 font-weight: 900;
 color: #0f172a;
}
.strip__sub{
 margin: 8px 0 0;
 color: #475569;
 font-size: 14px;
 line-height: 1.6;
}

/* Services grid */
.strip__inner--services{
 margin-top: 12px;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 14px;
}

/* Card becomes a clickable link */
.strip__card--link{
 text-decoration: none;
 color: inherit;
}

/* Optional: Slightly tighter card layout for many services */
.strip__card--link .strip__text{
 margin-top: 6px;
}

/* Empty state */
.strip__empty{
 padding: 14px;
 border-radius: 14px;
 background: #fff;
 border: 1px solid rgba(15,23,42,.08);
 color: #667085;
 font-weight: 600;
}

/* Responsive */
@media (max-width: 940px){
 .strip__inner--services{ grid-template-columns: 1fr; }
}




/* Optional: make service cards area scrollable */
.strip__inner--services{
 max-height: 360px;
 overflow-y: auto;
 padding-right: 6px;
}

.strip__inner--services::-webkit-scrollbar{
 width: 8px;
}
.strip__inner--services::-webkit-scrollbar-thumb{
 background: rgba(15,23,42,.22);
 border-radius: 999px;
}
.strip__inner--services::-webkit-scrollbar-track{
 background: rgba(15,23,42,.06);
 border-radius: 999px;
}

/* =========================
 Premium 2-card Scorecards
 ========================= */
.strip--premium{
 background: #f6f8ff;
 padding: 38px 0 46px;
}

.scorecards{
 display: grid;
 grid-template-columns: 1.25fr 1fr;
 gap: 18px;
 margin-top: 16px;
}

.scorecard{
 position: relative;
 display: block;
 text-decoration: none;
 border-radius: 22px;
 padding: 22px 22px;
 overflow: hidden;
 box-shadow: 0 18px 40px rgba(2, 18, 43, .10);
 border: 1px solid rgba(15, 23, 42, .06);
 transform: translateY(10px);
 opacity: 0;
 animation: scoreFadeUp .55s ease forwards;
}

.scorecard:nth-child(2){
 animation-delay: .08s;
}

@keyframes scoreFadeUp{
 to { transform: translateY(0); opacity: 1; }
}

/* Subtle shine sweep */
.scorecard::after{
 content:"";
 position:absolute;
 inset: -40%;
 background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.18) 50%, rgba(255,255,255,0) 65%);
 transform: translateX(-40%) rotate(8deg);
 transition: transform .6s ease;
 pointer-events:none;
}

.scorecard:hover::after{
 transform: translateX(40%) rotate(8deg);
}

.scorecard:hover{
 transform: translateY(-3px);
 box-shadow: 0 24px 60px rgba(2, 18, 43, .16);
}

.scorecard__top{
 display:flex;
 align-items:center;
 justify-content:space-between;
 margin-bottom: 14px;
}

.scorecard__badge{
 font-weight: 800;
 font-size: 12px;
 padding: 7px 10px;
 border-radius: 999px;
 letter-spacing: .2px;
}

.scorecard__icon{
 width: 44px;
 height: 44px;
 border-radius: 16px;
 display:flex;
 align-items:center;
 justify-content:center;
 font-size: 18px;
}

.scorecard__title{
 font-size: 22px;
 font-weight: 900;
 letter-spacing: -0.3px;
 margin-bottom: 8px;
}

.scorecard__text{
 font-size: 14px;
 line-height: 1.7;
 opacity: .92;
 margin-bottom: 16px;
 max-width: 520px;
}

.scorecard__cta{
 display:flex;
 align-items:center;
 justify-content:space-between;
 font-weight: 900;
 font-size: 13px;
 opacity: .95;
}

.scorecard__arrow{
 transition: transform .18s ease;
}
.scorecard:hover .scorecard__arrow{
 transform: translateX(3px);
}

/* Variants */
.scorecard--primary{
 background: radial-gradient(900px 400px at 20% 15%, rgba(255,255,255,.22), rgba(255,255,255,0)),
 linear-gradient(135deg, #0b5cff 0%, #0747c9 100%);
 color: rgba(255,255,255,.96);
}

.scorecard--primary .scorecard__badge{
 background: rgba(255,255,255,.14);
 border: 1px solid rgba(255,255,255,.18);
 color: rgba(255,255,255,.95);
}

.scorecard--primary .scorecard__icon{
 background: rgba(255,255,255,.14);
 border: 1px solid rgba(255,255,255,.16);
 color: rgba(255,255,255,.96);
}

.scorecard--dark{
 background: radial-gradient(900px 400px at 20% 15%, rgba(255,255,255,.14), rgba(255,255,255,0)),
 linear-gradient(135deg, #0a1326 0%, #0b2448 100%);
 color: rgba(255,255,255,.92);
}

.scorecard--dark .scorecard__badge{
 background: rgba(255,255,255,.10);
 border: 1px solid rgba(255,255,255,.14);
 color: rgba(255,255,255,.92);
}

.scorecard--dark .scorecard__icon{
 background: rgba(255,255,255,.10);
 border: 1px solid rgba(255,255,255,.12);
 color: rgba(255,255,255,.94);
}

/* Responsive */
@media (max-width: 940px){
 .scorecards{
 grid-template-columns: 1fr;
 }
 .scorecard__text{
 max-width: none;
 }
}

/* =========================
 Consistent Services Cards
 ========================= */
.strip__head--row{
 display:flex;
 align-items:flex-end;
 justify-content:space-between;
 gap: 14px;
}

.strip__link{
 font-weight: 900;
 font-size: 13px;
 text-decoration:none;
 color: #0b5cff;
 background: rgba(11,92,255,.08);
 border: 1px solid rgba(11,92,255,.16);
 padding: 10px 12px;
 border-radius: 999px;
 transition: transform .18s ease, background .18s ease;
}
.strip__link:hover{
 transform: translateY(-1px);
 background: rgba(11,92,255,.12);
}

/* Horizontal rail (big cards, consistent height) */
.svcRail{
 margin-top: 16px;
 display: grid;
 grid-auto-flow: column;
 grid-auto-columns: minmax(340px, 420px);
 gap: 16px;
 overflow-x: auto;
 padding-bottom: 10px;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
}

/* scrollbar (Chrome/Edge) */
.svcRail::-webkit-scrollbar{ height: 10px; }
.svcRail::-webkit-scrollbar-thumb{
 background: rgba(15,23,42,.20);
 border-radius: 999px;
}
.svcRail::-webkit-scrollbar-track{
 background: rgba(15,23,42,.06);
 border-radius: 999px;
}

.svcCard{
 scroll-snap-align: start;
 position: relative;
 display: block;
 text-decoration: none;
 color: #0f172a;
 background: #fff;
 border-radius: 22px;
 padding: 18px 18px;
 border: 1px solid rgba(15,23,42,.08);
 box-shadow: 0 18px 40px rgba(2, 18, 43, .08);
 overflow:hidden;

 /* Consistency */
 height: 210px;
 display:flex;
 flex-direction:column;

 /* Animation */
 transform: translateY(10px);
 opacity: 0;
 animation: svcFadeUp .55s ease forwards;
 animation-delay: var(--d, 0s);
}

@keyframes svcFadeUp{
 to { transform: translateY(0); opacity: 1; }
}

/* Subtle highlight line */
.svcCard::before{
 content:"";
 position:absolute;
 left: 18px;
 right: 18px;
 top: 0;
 height: 4px;
 border-radius: 999px;
 background: linear-gradient(90deg, #0b5cff, #ffc400);
 opacity: .9;
}

/* Shine sweep */
.svcCard::after{
 content:"";
 position:absolute;
 inset:-40%;
 background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.18) 50%, rgba(255,255,255,0) 65%);
 transform: translateX(-40%) rotate(8deg);
 transition: transform .6s ease;
 pointer-events:none;
}

.svcCard:hover{
 transform: translateY(-3px);
 box-shadow: 0 24px 60px rgba(2, 18, 43, .14);
}
.svcCard:hover::after{
 transform: translateX(40%) rotate(8deg);
}

.svcCard__top{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 10px;
 margin-bottom: 12px;
}

.svcCard__badge{
 font-size: 12px;
 font-weight: 800;
 color: #334155;
 background: #f1f5ff;
 border: 1px solid rgba(11,92,255,.14);
 padding: 7px 10px;
 border-radius: 999px;
}

.svcCard__pill{
 font-size: 12px;
 font-weight: 900;
 color: #111827;
 background: rgba(255,196,0,.92);
 padding: 8px 12px;
 border-radius: 999px;
}

.svcCard__title{
 font-size: 18px;
 font-weight: 900;
 letter-spacing: -0.2px;

 /* keeps layout consistent even with long names */
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 min-height: 46px;
}

.svcCard__text{
 margin-top: 8px;
 font-size: 13px;
 line-height: 1.6;
 color: #475569;

 /* keep height consistent */
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

.svcCard__cta{
 margin-top: auto; /* pushes CTA to bottom consistently */
 display:flex;
 align-items:center;
 justify-content:space-between;
 font-weight: 900;
 font-size: 13px;
 color: #0b5cff;
}

.svcCard__arrow{
 transition: transform .18s ease;
}
.svcCard:hover .svcCard__arrow{
 transform: translateX(3px);
}

/* Responsive */
@media (max-width: 720px){
 .svcRail{
 grid-auto-columns: minmax(300px, 1fr);
 }
}

/* =========================
 Big Premium 2-Column Tiles
 ========================= */

.svcGrid{
 margin-top: 18px;
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 18px;
}

/* Big premium tile */
.svcTile{
 position: relative;
 display: block;
 text-decoration: none;
 color: rgba(255,255,255,.96);
 border-radius: 26px;
 padding: 22px 22px;
 overflow: hidden;

 /* Consistency */
 min-height: 230px;

 /* Premium gradient background */
 background:
 radial-gradient(900px 360px at 15% 20%, rgba(255,255,255,.12), rgba(255,255,255,0) 55%),
 linear-gradient(135deg, #0b5cff 0%, #073a9b 55%, #061a3c 100%);

 border: 1px solid rgba(255,255,255,.10);
 box-shadow: 0 22px 60px rgba(2, 18, 43, .18);

 /* Animation */
 transform: translateY(10px);
 opacity: 0;
 animation: svcTileUp .55s ease forwards;
 animation-delay: var(--d, 0s);
}

@keyframes svcTileUp{
 to { transform: translateY(0); opacity: 1; }
}

/* Premium glow blob */
.svcTile__glow{
 position:absolute;
 width: 420px;
 height: 420px;
 right: -180px;
 top: -220px;
 background: radial-gradient(circle at 30% 30%, rgba(255,196,0,.35), rgba(255,196,0,0) 60%);
 filter: blur(0px);
 opacity: .85;
 pointer-events:none;
}

/* Subtle shine sweep */
.svcTile::after{
 content:"";
 position:absolute;
 inset:-40%;
 background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,.16) 50%, rgba(255,255,255,0) 65%);
 transform: translateX(-45%) rotate(8deg);
 transition: transform .6s ease;
 pointer-events:none;
}

.svcTile:hover{
 transform: translateY(-3px);
 box-shadow: 0 30px 80px rgba(2, 18, 43, .26);
}
.svcTile:hover::after{
 transform: translateX(45%) rotate(8deg);
}

/* Top row */
.svcTile__top{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 10px;
 margin-bottom: 14px;
}

.svcTile__badge{
 font-weight: 900;
 font-size: 12px;
 padding: 8px 10px;
 border-radius: 999px;
 background: rgba(255,255,255,.10);
 border: 1px solid rgba(255,255,255,.14);
 color: rgba(255,255,255,.92);
}

.svcTile__chip{
 font-weight: 900;
 font-size: 12px;
 padding: 8px 12px;
 border-radius: 999px;
 background: rgba(255,196,0,.92);
 color: #111827;
}

/* Title (consistent 2 lines max) */
.svcTile__title{
 font-size: 22px;
 font-weight: 900;
 letter-spacing: -0.25px;
 line-height: 1.15;

 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
 min-height: 52px;
}

/* Body (consistent 2 lines max) */
.svcTile__text{
 margin-top: 10px;
 font-size: 14px;
 line-height: 1.7;
 color: rgba(255,255,255,.82);

 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

/* Footer sticks to bottom */
.svcTile__footer{
 margin-top: 18px;
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap: 14px;
}

.svcTile__meta{
 display:flex;
 align-items:center;
 gap: 10px;
 color: rgba(255,255,255,.78);
 font-weight: 800;
 font-size: 12px;
}

.svcTile__dot{
 width: 10px;
 height: 10px;
 border-radius: 999px;
 background: rgba(255,196,0,.95);
 box-shadow: 0 0 0 5px rgba(255,196,0,.16);
}

.svcTile__cta{
 display:flex;
 align-items:center;
 gap: 10px;
 font-weight: 900;
 font-size: 13px;
 color: rgba(255,255,255,.95);
}
.svcTile__arrow{
 transition: transform .18s ease;
}
.svcTile:hover .svcTile__arrow{
 transform: translateX(3px);
}

/* Responsive: stack 1 per row on mobile */
@media (max-width: 940px){
 .svcGrid{ grid-template-columns: 1fr; }
}


/* =========================
 Location Intro Section
 ========================= */

.locationIntro{
 background: #ffffff;
 padding: 48px 0 56px;
}

.locationIntro__inner{
 max-width: 1080px;
 margin: 0 auto;
 text-align: center;
}

.locationIntro__title{
 margin: 0;
 font-weight: 900;
 letter-spacing: 1px;
 font-size: 28px;
 color: #0f172a;
 text-transform: uppercase;
}

.locationIntro__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 12px auto 0;
}

.locationIntro__sub{
 max-width: 860px;
 margin: 14px auto 0;
 color: #475569;
 font-size: 15px;
 line-height: 1.8;
}

.locationIntro__text{
 max-width: 720px;
 margin: 28px auto 0;
 padding: 0 16px;
 text-align: left;
 line-height: 1.9;
}

.locationIntro__text p{
 margin: 0 0 18px;
 color: #334155;
 font-size: 15px;
 line-height: 1.95;
}

.locationIntro__text p:last-child{
 margin-bottom: 0;
}

@media (max-width: 640px){
 .locationIntro{
 padding: 0 0 6px;
 }

 .locationIntro__title{
 font-size: 22px;
 }

 .locationIntro__sub,
 .locationIntro__text p{
 font-size: 14px;
 line-height: 1.85;
 }
}


/* =========================
 Services Cards (Ref Design)
 ========================= */

.svcSection{
 background: #fff;
 padding: 42px 0 54px;
}

.svcSection__head{
 text-align: center;
 margin-bottom: 26px;
}

.svcSection__title{
 margin: 0;
 font-weight: 900;
 letter-spacing: 1px;
 font-size: 28px;
 color: #0f172a;
 text-transform: uppercase;
}

.svcSection__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 12px auto 0;
}

/* 3 cards per row desktop, 2 tablet, 1 mobile */
.svcCards{
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 18px;
 margin-top: 18px;
}

/* Service page: steps + why (exactly two cards) — center the pair instead of left slot in a 3-col grid */
.svcCards.svcCards--pair{
 grid-template-columns: repeat(2, minmax(0, 1fr));
 max-width: min(980px, 100%);
 margin-left: auto;
 margin-right: auto;
}

.svcCard2{
 background: #fff;
 border: 1px solid rgba(15,23,42,.18);
 border-radius: 16px;
 padding: 26px 22px;
 box-shadow: 0 18px 40px rgba(2, 18, 43, .08);
 transition: transform .18s ease, box-shadow .18s ease;
 min-height: 270px;
 position: relative;

 display:flex;
 flex-direction:column;
 justify-content:space-between;

 /* subtle entrance */
 animation: svcCardIn .45s ease both;
}

.svcCard2__link {
 position: absolute;
 inset: 0;
 z-index: 1;
 border-radius: inherit;
}

@keyframes svcCardIn{
 from{ opacity:0; transform: translateY(10px); }
 to{ opacity:1; transform: translateY(0); }
}

.svcCard2:hover{
 transform: translateY(-3px);
 box-shadow: 0 26px 60px rgba(2, 18, 43, .12);
}

.svcCard2__title{
 margin: 0;
 font-size: 18px;
 font-weight: 900;
 color: #0f172a;
 text-align:center;

 /* keeps consistent height even for long names */
 display:-webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 overflow:hidden;
 min-height: 48px;
}

.svcCard2__text{
 margin: 12px 0 18px;
 color: #475569;
 font-size: 14px;
 line-height: 1.8;
 text-align:center;

 display:-webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;
 overflow:hidden;
 min-height: 76px;
}

.svcCard2__btn{
 position: relative;
 z-index: 2;
 display:inline-flex;
 align-items:center;
 justify-content:center;
 width: auto;
 align-self: flex-start;
 margin-top: auto;
 padding: 14px 14px;
 border-radius: 8px;
 background: #123baf;
 color: #fff;
 text-decoration:none;
 font-weight: 900;
 font-size: 13px;
 letter-spacing: .4px;
 transition: transform .18s ease, filter .18s ease;
 position: relative;
 overflow: hidden;
}
.svcCard2__btn::after{
 content: "";
 position: absolute;
 top: -30%;
 left: -60%;
 width: 55%;
 height: 160%;
 background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.30) 45%, rgba(255,255,255,.12) 60%, transparent 100%);
 transform: skewX(-18deg);
 animation: svcBtnShine 2.6s ease-in-out infinite;
 pointer-events: none;
}

.svcCard2__btn:hover{
 transform: translateY(-1px);
 filter: brightness(.98);
}
.svcCard2__btn:hover::after{
 animation-duration: 1.6s;
}

@keyframes svcBtnShine{
 0%, 60% { transform: translateX(0) skewX(-18deg); opacity: 0; }
 64% { opacity: 1; }
 85% { transform: translateX(280%) skewX(-18deg); opacity: 0; }
 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
 .svcCard2__btn::after{ animation: none !important; display: none; }
}

/* Hero two-column layout (copy + contact form) */
.hero__layout{
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
 gap: 28px 40px;
 align-items: start;
 width: 100%;
}
.hero__col--copy{ min-width: 0; }
.hero__col--form{ min-width: 0; }

/* Contact form styling (hero right column) */
.heroLeadForm{
 background: rgba(255, 255, 255, 0.96);
 border: 1px solid rgba(255, 255, 255, 0.45);
 border-radius: 18px;
 padding: 22px 20px 20px;
 box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
 color: #0f172a;
}
.heroLeadForm__title{
 margin: 0 0 6px;
 font-size: 18px;
 font-weight: 900;
 color: #132a57;
 text-align: center;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}
.heroLeadForm__sub{
 margin: 0 0 16px;
 font-size: 13px;
 line-height: 1.45;
 color: #64748b;
 font-weight: 500;
}
.heroLeadForm__field{ margin-bottom: 12px; }
.heroLeadForm__field label{
 display: block;
 font-size: 12px;
 font-weight: 700;
 color: #334155;
 margin-bottom: 5px;
}
.heroLeadForm__field .req{ color: #dc2626; font-weight: 800; }
.heroLeadForm__field .opt{ color: #94a3b8; font-weight: 600; font-size: 11px; }
.heroLeadForm input,
.heroLeadForm textarea{
 width: 100%;
 box-sizing: border-box;
 border: 1px solid #cbd5e1;
 border-radius: 10px;
 padding: 10px 12px;
 font-size: 14px;
 font-family: inherit;
 background: #fff;
 color: #0f172a;
}
.heroLeadForm textarea{
 min-height: 88px;
 resize: vertical;
 line-height: 1.45;
}
.heroLeadForm input:focus,
.heroLeadForm textarea:focus{
 outline: none;
 border-color: #0b5cff;
 box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.15);
}
.heroLeadForm__submit{
 width: 100%;
 margin-top: 6px;
 border: none;
 cursor: pointer;
 font-size: 14px;
}
.heroLeadForm__msg{
 margin: 12px 0 0;
 font-size: 13px;
 line-height: 1.4;
 min-height: 1.4em;
}
.heroLeadForm__msg--ok{ color: #15803d; font-weight: 800; }
.heroLeadForm__msg--err{ color: #b91c1c; font-weight: 600; }

@media (max-width: 960px){
 .hero__layout{ grid-template-columns: 1fr; }
}

.svcEmpty{
 padding: 16px;
 border-radius: 14px;
 border: 1px solid rgba(15,23,42,.10);
 color: #667085;
 font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
 .svcCards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
 .svcCards{ grid-template-columns: 1fr; }
 .svcSection__title{ font-size: 22px; }
}

/* Areas We Serve — slightly wider min, still capped (scroll lists long content) */
.nav__menu--wide {
 min-width: 200px;
 max-width: min(320px, 92vw);
}

.nav__menu--wide:has(.navAreaList--zips) {
 max-width: min(440px, 94vw);
}

.navAreaList.navAreaList--zips {
 padding: 4px 2px 8px;
}

/* Areas We Serve — location pin beside each area name */
.nav__areaLink {
 display: flex;
 align-items: center;
 gap: 10px;
}

.nav__areaIcon {
 flex-shrink: 0;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 28px;
 height: 28px;
 border-radius: 8px;
 background: linear-gradient(135deg, rgba(11, 92, 255, 0.14) 0%, rgba(37, 99, 235, 0.08) 100%);
 color: #0b5cff;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
 transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__areaIcon svg {
 width: 14px;
 height: 14px;
}

.nav__areaLabel {
 flex: 1;
 min-width: 0;
 line-height: 1.35;
}

.nav__menu a.nav__areaLink:hover .nav__areaIcon,
.nav__zipLink.nav__areaLink:hover .nav__areaIcon,
.dropdown-item.nav__areaLink:hover .nav__areaIcon,
.mobile-menu-links .nav__areaLink:hover .nav__areaIcon {
 background: linear-gradient(135deg, #0b5cff 0%, #2563eb 100%);
 color: #ffffff;
 box-shadow: 0 4px 12px rgba(11, 92, 255, 0.28);
 transform: scale(1.04);
}

.nav__areasLead {
 font-size: 15px;
 font-weight: 900;
 letter-spacing: -0.02em;
 color: #0f172a;
 margin: 0 10px 4px;
 padding-top: 2px;
}

.nav__areasSub {
 margin: 0 10px 12px;
 font-size: 12px;
 line-height: 1.4;
 color: #64748b;
 font-weight: 600;
}

.nav__zipListPlain {
 list-style: none;
 margin: 0;
 padding: 0 10px 8px;
 max-height: min(52vh, 360px);
 overflow-y: auto;
}

.nav__zipItem {
 margin: 0;
 padding: 0;
 border: 0;
 background: none;
 box-shadow: none;
}

.nav__zipLink {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 7px 2px;
 font-size: 14px;
 font-weight: 600;
 font-variant-numeric: tabular-nums;
 letter-spacing: 0.02em;
 color: #1e40af;
 text-decoration: underline;
 text-underline-offset: 3px;
 text-decoration-color: rgba(30, 64, 175, 0.25);
 transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.nav__zipLink:hover {
 color: #0b5cff;
 text-decoration-color: rgba(11, 92, 255, 0.55);
}

.nav__zipLink:focus-visible {
 outline: 2px solid #0b5cff;
 outline-offset: 2px;
 border-radius: 2px;
}

/* Footer states (tabular multi-column bullet list) */
.footerStates{
 width: 100%;
 margin-top: 16px;
 padding-top: 16px;
 border-top: 1px solid rgba(255,255,255,.12);
}

.footerStates__title{
 font-weight: 900;
 font-size: 13px;
 color: rgba(255,255,255,.92);
 margin-bottom: 10px;
 letter-spacing: .3px;
}

.footerStates__grid{
 margin: 0;
 padding-left: 18px; /* bullets */
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 8px 18px;
 list-style: disc;
}

.footerStates__grid li{
 color: rgba(255,255,255,.74);
 font-size: 13px;
 line-height: 1.35;
}

.footerStates__grid a{
 color: rgba(255,255,255,.74);
 text-decoration: none;
}
.footerStates__grid a:hover{
 color: rgba(255,255,255,.95);
 text-decoration: underline;
}

/* Responsive columns */
@media (max-width: 980px){
 .footerStates__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
 .footerStates__grid{ grid-template-columns: 1fr; }
}


/* =========================
 States Footer (Attached Design)
 ========================= */
.statesFooter{
 background: #f4f6fb;
 padding: 46px 0 52px;
}

.statesFooter__head{
 text-align: center;
 margin-bottom: 26px;
}

.statesFooter__title{
 margin: 0;
 font-weight: 1000;
 letter-spacing: .6px;
 font-size: 34px;
 color: #0f172a;
 text-transform: uppercase;
}

.statesFooter__accent{
 color: #f6a800; /* premium yellow */
}

.statesFooter__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 14px auto 0;
}

/* States grid */
.statesFooter__grid{
 margin: 0 auto;
 padding: 0;
 list-style: none;
 display: grid;
 grid-template-columns: repeat(6, minmax(0, 1fr));
 gap: 18px 22px;
 max-width: 1100px;
}

/* Square bullet + link */
.statesFooter__grid li{
 display:flex;
 align-items:center;
 gap: 10px;
 color: #334155;
 font-weight: 650;
 font-size: 14px;
}

.statesFooter__grid li::before{
 content: "□";
 color: #0b5cff;
 font-size: 12px;
 transform: translateY(-1px);
}

.statesFooter__grid a{
 color: #334155;
 text-decoration: none;
}

.statesFooter__grid a:hover{
 color: #0b5cff;
 text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px){
 .statesFooter__grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
 .statesFooter__title{ font-size: 26px; }
 .statesFooter__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
 .statesFooter__grid{ grid-template-columns: 1fr; }
}

/* Center align copyright */
.footer__inner{
 text-align: center;
}

.footer__muted{
 text-align: center;
 width: auto;
 margin-top: 0;
}

/* Cities section */
.citiesSection{
 background: #fff;
 padding: 44px 0 36px;
}

.citiesSection__head{
 text-align:center;
 margin-bottom: 22px;
}

.citiesSection__title{
 margin:0;
 font-weight: 1000;
 letter-spacing: .6px;
 font-size: 28px;
 color: #0f172a;
 text-transform: uppercase;
}

.citiesSection__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 14px auto 0;
}

/* Cities grid */
.citiesGrid{
 margin: 0 auto;
 padding: 0;
 list-style: none;
 display: grid;
 grid-template-columns: repeat(6, minmax(0, 1fr));
 gap: 14px 20px;
 max-width: 1100px;
}

.citiesGrid li{
 display:flex;
 align-items:center;
 gap: 10px;
 font-size: 14px;
 font-weight: 650;
 color: #334155;
}

.citiesGrid li::before{
 content: "□";
 color: #0b5cff;
 font-size: 12px;
 transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1100px){
 .citiesGrid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
 .citiesSection__title{ font-size: 22px; }
 .citiesGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
 .citiesGrid{ grid-template-columns: 1fr; }
}

/* =========================
 DROPDOWN STABILITY FIX
========================= */

/* Make dropdown wrapper relative */
.nav__dropdown {
 position: relative;
}

/* Base dropdown menu */
.nav__menu {
 position: absolute;
 top: calc(100% + 8px);
 left: 0;

 display: none;
 opacity: 0;
 transform: translateY(6px);
 transition: opacity 0.18s ease, transform 0.18s ease;

 pointer-events: none;
}

/* Invisible hover bridge (prevents menu from disappearing) */
.nav__dropdown::after {
 content: "";
 position: absolute;
 top: 100%;
 left: 0;
 width: 100%;
 height: 14px; /* bridge height */
}

/* Show dropdown when hovering entire wrapper */
.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu {
 display: block;
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}

/* Smooth hover animation for menu items */
.nav__menu a {
 transition: background 0.15s ease, transform 0.15s ease;
}

.nav__menu a:hover {
 transform: translateX(3px);
}

/* Mobile / tablet: dropdown panels use viewport-fixed positioning via fabCall.ejs (no overflow off-screen).
 Fallback when JS is off: cap width; centering on a narrow trigger still fails for right-edge tabs — enable JS. */
@media (max-width: 1024px) {
 .header .nav__dropdown .nav__menu,
 .header .nav__dropdown .nav__menu.nav__menu--wide {
 min-width: 0;
 max-width: min(300px, calc(100vw - 48px));
 box-sizing: border-box;
 }

 .header .nav__dropdown .nav__menu.nav__menu--scroll {
 max-height: min(34vh, 240px);
 }
}

/* =========================
 Cities Section (State Page)
 Fixes "looks like states nationwide" issue
========================= */
.citiesSection{
 padding: 24px 0 36px;
 background: #fff;
}

.citiesSection__head{
 text-align: center;
 margin-bottom: 10px;
}

.citiesSection__title{
 margin: 0;
 font-size: 22px;
 font-weight: 1000;
 letter-spacing: .5px;
 color: #0f172a;
 text-transform: uppercase;
}
.citiesSection__titleAccent{
 color: #f59e0b;
 text-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
}

.citiesSection__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 8px auto 0;
}

.citiesSection__sub{
 margin: 12px 0 0;
 font-size: 15px;
 color: #64748b;
 font-weight: 600;
 letter-spacing: 0.02em;
}

/* State page: premium city directory (grouped + search) */
.citiesSection--premium{
 padding: 48px 0 64px;
 background: linear-gradient(180deg, #f8fafc 0%, #ffffff 32%, #f1f5f9 100%);
 border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* State page: compact Areas We Serve list (reference-style) */
.areasServeSection{
 padding: 44px 0 64px;
 background: #ffffff;
 border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.areasServeSection__head{
 text-align: center;
 margin-bottom: 22px;
}
.areasServeSection__title{
 margin: 0;
 font-size: 26px;
 font-weight: 950;
 letter-spacing: 0.02em;
 color: #0f172a;
}
.areasServeSection__counts{
 margin: 10px auto 0;
 font-size: 15px;
 font-weight: 600;
 letter-spacing: 0.01em;
 color: #334155;
}
.areasServeSection__counts strong{
 color: #0b5cff;
 font-weight: 900;
}
.areasServeSection__accent{
 color: #f59e0b;
}
.areasServeSection__underline{
 width: 72px;
 height: 3px;
 border-radius: 999px;
 margin: 12px auto 0;
 background: rgba(11, 92, 255, 0.55);
}

/* Service area grid — ZIP codes, nearby cities, state lists (center-aligned) */
#areas.citiesSection .container,
.areasServeSection .container{
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

#areas.citiesSection .citiesSection__head,
.areasServeSection .areasServeSection__head{
 width: 100%;
 max-width: 920px;
 margin-left: auto;
 margin-right: auto;
 text-align: center;
}

@keyframes areaGridPanelBorder{
 0%, 100%{
 border-color: rgba(147, 197, 253, 0.35);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.92) inset,
 0 18px 48px rgba(15, 23, 42, 0.07),
 0 0 0 0 rgba(59, 130, 246, 0);
 }
 50%{
 border-color: rgba(96, 165, 250, 0.55);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.92) inset,
 0 18px 48px rgba(15, 23, 42, 0.07),
 0 0 24px rgba(59, 130, 246, 0.12);
 }
}

@keyframes areaGridCellBorder{
 0%, 100%{
 border-color: rgba(147, 197, 253, 0.4);
 box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
 }
 50%{
 border-color: rgba(59, 130, 246, 0.72);
 box-shadow:
 0 1px 2px rgba(15, 23, 42, 0.04),
 0 0 16px rgba(96, 165, 250, 0.22);
 }
}

.areaGrid{
 --areaGrid-gap: 10px;
 --areaGrid-cell-w: 112px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-content: center;
 align-items: stretch;
 gap: var(--areaGrid-gap);
 width: fit-content;
 max-width: min(1080px, 100%);
 margin-left: auto;
 margin-right: auto;
 padding: clamp(18px, 2.8vw, 28px);
 background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
 border: 1px solid rgba(147, 197, 253, 0.35);
 border-radius: 20px;
 animation: areaGridPanelBorder 3.6s ease-in-out infinite;
}

.areaGrid--zips{
 --areaGrid-cell-w: 112px;
}

.areaGrid--cities{
 --areaGrid-cell-w: 168px;
}

.areaGrid--wide{
 max-width: min(1120px, 100%);
 --areaGrid-cell-w: 152px;
}

.areaGrid__cell{
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 box-sizing: border-box;
 flex: 0 0 var(--areaGrid-cell-w);
 width: var(--areaGrid-cell-w);
 max-width: var(--areaGrid-cell-w);
 min-height: 48px;
 padding: 12px 10px;
 font-size: 0.875rem;
 font-weight: 700;
 line-height: 1.35;
 letter-spacing: 0.02em;
 color: #1e293b;
 text-decoration: none;
 text-align: center;
 word-break: break-word;
 background: #ffffff;
 border: 1px solid rgba(147, 197, 253, 0.45);
 border-radius: 12px;
 animation: areaGridCellBorder 3s ease-in-out infinite;
 transition:
 color 0.2s ease,
 background 0.2s ease,
 transform 0.2s ease;
}

.areaGrid__cell:nth-child(3n){
 animation-delay: 0.35s;
}

.areaGrid__cell:nth-child(3n + 1){
 animation-delay: 0.7s;
}

.areaGrid--zips .areaGrid__cell{
 font-variant-numeric: tabular-nums;
 letter-spacing: 0.04em;
}

.areaGrid__cell:hover{
 color: #0b5cff;
 border-color: rgba(37, 99, 235, 0.85);
 background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
 box-shadow:
 0 10px 28px rgba(11, 92, 255, 0.14),
 0 0 20px rgba(96, 165, 250, 0.28);
 transform: translateY(-2px);
 animation-play-state: paused;
}

.areaGrid__cell:focus-visible{
 outline: 2px solid #0b5cff;
 outline-offset: 2px;
}

.areaGrid--visible .areaGrid__cell{
 opacity: 1;
}

.areaGrid__empty{
 width: fit-content;
 max-width: min(720px, 100%);
 margin-left: auto;
 margin-right: auto;
 padding: 18px 22px;
 text-align: center;
 font-weight: 600;
 color: #64748b;
 background: rgba(248, 250, 252, 0.9);
 border: 1px dashed rgba(147, 197, 253, 0.55);
 border-radius: 14px;
}

@media (prefers-reduced-motion: reduce){
 .areaGrid,
 .areaGrid__cell{
 animation: none;
 }
}

@media (max-width: 640px){
 .areaGrid{
 padding: 14px;
 border-radius: 16px;
 }
 .areaGrid--zips{
 --areaGrid-cell-w: 96px;
 }
 .areaGrid--cities{
 --areaGrid-cell-w: 140px;
 }
 .areaGrid--wide{
 --areaGrid-cell-w: 140px;
 }
 .areaGrid__cell{
 min-height: 44px;
 padding: 10px 8px;
 font-size: 0.8125rem;
 }
}

@media (max-width: 440px){
 .areasServeSection__title{ font-size: 22px; }
 .areasServeSection__counts{ font-size: 13px; line-height: 1.5; }
 .areaGrid--zips{
 --areaGrid-cell-w: 88px;
 }
}

.citiesSection--premium .citiesSection__head{
 margin-bottom: 28px;
}

.cityDir{
 max-width: 1100px;
 margin: 0 auto;
}

.cityDir__toolbar{
 margin-bottom: 8px;
}

.cityDir__searchLabel{
 display: flex;
 align-items: center;
 gap: 12px;
 max-width: 520px;
 margin: 0 auto;
 padding: 12px 16px;
 border-radius: 14px;
 background: rgba(255, 255, 255, 0.92);
 border: 1px solid rgba(15, 23, 42, 0.08);
 box-shadow: 0 10px 34px rgba(15, 23, 42, 0.07);
}

.cityDir__searchIcon{
 flex-shrink: 0;
 color: #64748b;
 display: flex;
}

.cityDir__search{
 flex: 1;
 min-width: 0;
 border: 0;
 background: transparent;
 font-size: 16px;
 font-weight: 600;
 color: #0f172a;
 outline: none;
}

.cityDir__search::placeholder{
 color: #94a3b8;
 font-weight: 500;
}

.cityDir__hint{
 margin: 14px 0 0;
 text-align: center;
 font-size: 14px;
 color: #94a3b8;
 font-weight: 600;
}

.cityDir__alpha{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 8px;
 margin: 22px 0 28px;
 padding-bottom: 18px;
 border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.cityDir__alphaBtn{
 min-width: 38px;
 padding: 8px 11px;
 border-radius: 10px;
 font-weight: 800;
 font-size: 13px;
 letter-spacing: 0.04em;
 text-decoration: none;
 text-align: center;
 color: #334155;
 background: rgba(255, 255, 255, 0.75);
 border: 1px solid rgba(15, 23, 42, 0.1);
 box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
 transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cityDir__alphaBtn:hover{
 background: #0b5cff;
 color: #fff;
 border-color: #0b5cff;
 transform: translateY(-1px);
 box-shadow: 0 8px 20px rgba(11, 92, 255, 0.25);
}

.cityDir__groups{
 display: flex;
 flex-direction: column;
 gap: 8px;
}

.cityDir__group{
 scroll-margin-top: 150px;
 margin-bottom: 28px;
}

.cityDir__group:last-child{
 margin-bottom: 0;
}

.cityDir__letter{
 margin: 0 0 14px;
 font-size: 12px;
 font-weight: 800;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: #0b5cff;
}

.cityDir__letter span{
 display: inline-block;
 padding-bottom: 8px;
 border-bottom: 2px solid rgba(11, 92, 255, 0.28);
}

.cityDir__grid{
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 10px 14px;
 list-style: none;
 margin: 0;
 padding: 0;
}

.citiesSection--premium .cityDir__item{
 margin: 0;
 padding: 0;
 background: transparent;
 border: 0;
 box-shadow: none;
}

.citiesSection--premium .cityDir__item:hover{
 transform: none;
 box-shadow: none;
}

.cityDir__link{
 display: flex;
 align-items: center;
 min-height: 46px;
 padding: 11px 15px;
 border-radius: 12px;
 font-size: 14px;
 font-weight: 600;
 color: #0f172a;
 text-decoration: none;
 background: rgba(255, 255, 255, 0.88);
 border: 1px solid rgba(15, 23, 42, 0.07);
 box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
 transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cityDir__link:hover{
 border-color: rgba(11, 92, 255, 0.4);
 box-shadow: 0 10px 28px rgba(11, 92, 255, 0.12);
 transform: translateY(-2px);
 color: #0b5cff;
 background: #fff;
}

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

@media (max-width: 560px){
 .cityDir__grid{
 grid-template-columns: 1fr;
 }

 .cityDir__searchLabel{
 max-width: none;
 }

 .cityDir__alpha{
 justify-content: flex-start;
 overflow-x: auto;
 flex-wrap: nowrap;
 padding-bottom: 14px;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: thin;
 }

 .cityDir__alphaBtn{
 flex: 0 0 auto;
 }
}

.citiesSection .citiesGrid:not(.citiesGrid--zips){
 margin: 12px auto 0;
 padding: 0;
 list-style: none;
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 8px 12px;
 max-width: 1100px;
}

.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__item{
 background: #f6f8fc;
 border: 1px solid rgba(2,6,23,.08);
 border-radius: 12px;
 padding: 6px 10px;
 font-weight: 800;
 font-size: 12px;
 color: #0f172a;
 line-height: 1.1;
 box-shadow: 0 8px 16px rgba(2,6,23,.06);
 transition: transform .14s ease, box-shadow .14s ease;
}

.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__item:hover{
 transform: none;
 box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

/* Responsive */
@media (max-width: 1100px){
 .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
 .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 520px){
 .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: 1fr; }
}

/* State page: remove the small marker to keep cards compact */
.citiesSection .citiesGrid:not(.citiesGrid--zips) li::before{
 content: none;
}

/* Clickable city links */
.citiesGrid__link{
 display:block;
 width:100%;
 height:100%;
 text-decoration:none;
 color:inherit;
}

/* Premium city directory overrides (state page) */
.citiesSection--premium .cityDir__link.citiesGrid__link{
 display:flex;
 width:100%;
 height:auto;
 text-align:left;
}

/* State page: city names — left-aligned so multi-word names stay grouped (avoid justify spread) */
.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__link{
 text-align: left;
}

/* ZIP codes (city page) — clickable neighbourhood explorer */
.citiesGrid__zip{
 display: block;
 width: 100%;
 text-align: center;
 font-variant-numeric: tabular-nums;
}
button.citiesGrid__zip--btn{
 appearance: none;
 margin: 0;
 padding: 8px 10px;
 border: 1px solid rgba(11, 92, 255, 0.22);
 border-radius: 12px;
 background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
 font: inherit;
 font-weight: 700;
 color: #0f172a;
 cursor: pointer;
 box-shadow: 0 2px 8px rgba(2, 6, 23, 0.06);
 transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
button.citiesGrid__zip--btn:hover{
 transform: translateY(-2px);
 border-color: rgba(11, 92, 255, 0.45);
 color: #0b5cff;
 box-shadow: 0 8px 22px rgba(11, 92, 255, 0.18);
}
button.citiesGrid__zip--btn:focus-visible{
 outline: 2px solid var(--brand, #0b5cff);
 outline-offset: 2px;
}
.citiesGrid--zips .citiesGrid__item:hover{
 transform: none;
}

/* Nearby cities (Areas We Serve subsection + landmark cards) */
.citiesSection__head--nearby{
 margin-top: clamp(32px, 4.5vw, 52px);
}

.nearbyCitiesList{
 margin-top: 8px;
}

.nav__areasSub--nearby{
 margin-top: 14px;
}

.landmarkHub__card--nearby{
 cursor: default;
}

.landmarkHub__card--nearby:hover{
 transform: none;
 box-shadow: var(--shadow-sm, 0 8px 24px rgba(15, 23, 42, .08));
}

.landmarkHub--nearby .landmarkHub__grid{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: stretch;
 gap: 20px;
}

.landmarkHub--nearby .landmarkHub__card--nearby{
 flex: 0 1 280px;
 max-width: 420px;
 width: 100%;
 text-align: left;
}

.landmarkHub--nearby .landmarkHub__cardTitle{
 margin-bottom: 10px;
}

.landmarkHub--nearby .landmarkHub__cardText{
 margin: 0;
 font-size: 14px;
 line-height: 1.6;
}

/* Nearby city neighbourhood cards — no “AREA” kicker above each name */
.landmarkHub--nearby .landmarkHub__cardKicker{
 display: none;
}

/* City / service page — ZIP + nearby city grids */
#areas.citiesSection{
 padding: 48px 0 64px;
 background: #f8fafc;
 border-top: 1px solid rgba(15, 23, 42, 0.06);
 text-align: center;
}

#areas.citiesSection .container{
 width: min(1200px, calc(100% - 40px));
}

#areas.citiesSection .areaGrid,
#areas.citiesSection .areaGrid__empty{
 margin-left: auto;
 margin-right: auto;
}

#areas.citiesSection .citiesSection__head{
 margin-bottom: 20px;
}

#areas.citiesSection .areaGrid + .citiesSection__head,
#areas.citiesSection .areaGrid__empty + .citiesSection__head{
 margin-top: clamp(28px, 4vw, 44px);
}

/* Neighbourhood hub — between metrics and services */
.landmarkHub{
 padding: 56px 0 64px;
 background:
 linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #f1f5f9 100%);
 border-top: 1px solid rgba(15, 23, 42, 0.06);
 border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.landmarkHub__head{
 text-align: center;
 margin-bottom: 36px;
}

.landmarkHub__eyebrow{
 margin: 0 0 8px;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: #3b5bdb;
}

.landmarkHub__title{
 margin: 0;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
 font-size: clamp(22px, 2.8vw, 32px);
 font-weight: 800;
 letter-spacing: -0.03em;
 color: #0f172a;
}

.landmarkHub__underline{
 width: 56px;
 height: 3px;
 border-radius: 999px;
 margin: 16px auto 0;
 background: linear-gradient(90deg, #0b5cff, #6366f1);
}

.landmarkHub__head--zip{
 margin-bottom: 40px;
}

.landmarkHub__zipHeadRow{
 display: flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 gap: 10px 14px;
 margin: 0 0 14px;
}

.landmarkHub__zipHeadBadge{
 display: inline-flex;
 align-items: center;
 padding: 7px 16px;
 border-radius: 999px;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: #1e3a8a;
 background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
 border: 1px solid rgba(59, 130, 246, 0.22);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.95) inset,
 0 8px 22px rgba(37, 99, 235, 0.08);
}

.landmarkHub__zipHeadDot{
 width: 4px;
 height: 4px;
 border-radius: 50%;
 background: #cbd5e1;
 flex-shrink: 0;
}

.landmarkHub__zipHeadMeta{
 font-size: 13px;
 font-weight: 600;
 color: #64748b;
 letter-spacing: 0.02em;
}

.landmarkHub__sub--zip{
 margin: 14px auto 0;
 max-width: 520px;
 font-size: 15px;
 line-height: 1.6;
 color: #64748b;
 font-weight: 500;
}

.landmarkHub__grid{
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
 gap: 20px;
 align-items: stretch;
}

/* Primary city — centre postal-code neighbourhood cards under the heading (e.g. 1–2 cards) */
.landmarkHub:not(.landmarkHub--zip):not(.landmarkHub--nearby) .landmarkHub__grid{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: stretch;
}

.landmarkHub:not(.landmarkHub--zip):not(.landmarkHub--nearby) .landmarkHub__card--link{
 flex: 0 1 280px;
 max-width: 360px;
 width: 100%;
}

.landmarkHub .metrics-section{
 padding: 0 0 40px;
 border-bottom: none;
 text-align: center;
}

.landmarkHub .metrics-intro{
 margin-left: auto;
 margin-right: auto;
}

.landmarkHub .metrics-grid{
 max-width: 960px;
 margin-left: auto;
 margin-right: auto;
}

.landmarkHub__card{
 position: relative;
 border-radius: 20px;
 padding: 22px 22px 24px;
 background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
 border: 1px solid rgba(15, 23, 42, 0.08);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.9) inset,
 0 18px 44px rgba(2, 6, 23, 0.08);
 transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landmarkHub__card--link{
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 text-decoration: none;
 color: inherit;
 cursor: pointer;
}

/* “Notable neighbourhoods by postal code”: neighbourhood first, then ZIP */
.landmarkHub__card--link .landmarkHub__cardTitle{
 order: 1;
 margin: 0 0 8px;
}
.landmarkHub__card--link .landmarkHub__cardZip{
 order: 2;
 margin: 0 0 12px;
}
.landmarkHub__card--link .landmarkHub__cardCta{
 order: 3;
 width: 100%;
 text-align: center;
}

.landmarkHub__card--link:hover{
 transform: translateY(-4px);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 1) inset,
 0 24px 56px rgba(11, 92, 255, 0.12);
}

.landmarkHub__cardKicker{
 display: block;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: #64748b;
 margin-bottom: 8px;
}

.landmarkHub__cardZip{
 display: inline-block;
 font-size: 12px;
 font-weight: 800;
 font-variant-numeric: tabular-nums;
 letter-spacing: 0.12em;
 color: #3b5bdb;
 margin-bottom: 10px;
}

.landmarkHub__cardTitle{
 margin: 0 0 12px;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
 font-size: 18px;
 font-weight: 800;
 line-height: 1.25;
 letter-spacing: -0.02em;
 color: #0f172a;
}

.landmarkHub__cardText{
 margin: 0 0 10px;
 font-size: 14px;
 line-height: 1.55;
 color: #475569;
}

.landmarkHub__cardText:last-child{
 margin-bottom: 0;
}

.landmarkHub__cardCta{
 margin-top: auto;
 padding-top: 14px;
 font-size: 13px;
 font-weight: 800;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: #0b5cff;
}

@media (max-width: 520px){
 .landmarkHub{
 padding: 44px 0 48px;
 }
 .landmarkHub__grid{
 grid-template-columns: 1fr;
 }
}

/* ZIP page — tabbed spotlight (one neighbourhood at a time) */
@keyframes landmarkHubTabsBorder{
 0%, 100%{
 border-color: rgba(147, 197, 253, 0.32);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.9) inset,
 0 12px 32px rgba(15, 23, 42, 0.06),
 0 0 0 0 rgba(59, 130, 246, 0);
 }
 50%{
 border-color: rgba(96, 165, 250, 0.62);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.9) inset,
 0 12px 32px rgba(15, 23, 42, 0.06),
 0 0 24px rgba(59, 130, 246, 0.14);
 }
}

@keyframes landmarkHubPanelBorder{
 0%, 100%{
 border-color: rgba(147, 197, 253, 0.38);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.98) inset,
 0 28px 64px -24px rgba(15, 23, 42, 0.18),
 0 14px 36px rgba(2, 6, 23, 0.06),
 0 0 0 0 rgba(59, 130, 246, 0);
 }
 50%{
 border-color: rgba(59, 130, 246, 0.7);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.98) inset,
 0 28px 64px -24px rgba(15, 23, 42, 0.18),
 0 14px 36px rgba(2, 6, 23, 0.06),
 0 0 32px rgba(96, 165, 250, 0.22);
 }
}

@keyframes landmarkHubTabIdleBorder{
 0%, 100%{
 border-color: rgba(147, 197, 253, 0.22);
 box-shadow: none;
 }
 50%{
 border-color: rgba(96, 165, 250, 0.48);
 box-shadow: 0 0 12px rgba(59, 130, 246, 0.1);
 }
}

@keyframes landmarkHubTabActiveBorder{
 0%, 100%{
 border-color: rgba(96, 165, 250, 0.55);
 box-shadow:
 0 10px 28px rgba(15, 23, 42, 0.22),
 0 1px 0 rgba(255, 255, 255, 0.12) inset,
 0 0 0 0 rgba(59, 130, 246, 0);
 }
 50%{
 border-color: rgba(147, 197, 253, 0.85);
 box-shadow:
 0 10px 28px rgba(15, 23, 42, 0.22),
 0 1px 0 rgba(255, 255, 255, 0.12) inset,
 0 0 22px rgba(96, 165, 250, 0.35);
 }
}

.landmarkHub--zip .landmarkHub__grid--zip{
 display: block;
 max-width: 920px;
 margin-left: auto;
 margin-right: auto;
}

.landmarkHub__zipSpotlight{
 position: relative;
}

.landmarkHub--zip .landmarkHub__zipTabsWrap{
 margin: 0 0 22px;
 padding: 4px;
 border-radius: 16px;
 background: rgba(255, 255, 255, 0.65);
 border: 1px solid rgba(147, 197, 253, 0.35);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.9) inset,
 0 12px 32px rgba(15, 23, 42, 0.06);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 animation: landmarkHubTabsBorder 3.6s ease-in-out infinite;
}

.landmarkHub__zipTabs{
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 justify-content: center;
 align-items: stretch;
}

.landmarkHub--zip .landmarkHub__zipTab{
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 10px 16px 10px 12px;
 margin: 0;
 border: 1px solid rgba(147, 197, 253, 0.22);
 border-radius: 12px;
 background: transparent;
 color: #475569;
 font-family: inherit;
 font-size: 13px;
 font-weight: 600;
 line-height: 1.25;
 text-align: left;
 cursor: pointer;
 animation: landmarkHubTabIdleBorder 3.2s ease-in-out infinite;
 transition:
 background 0.2s ease,
 color 0.2s ease,
 transform 0.2s ease;
}

.landmarkHub--zip .landmarkHub__zipTab:nth-child(3n){
 animation-delay: 0.35s;
}

.landmarkHub--zip .landmarkHub__zipTab:nth-child(3n + 1){
 animation-delay: 0.7s;
}

.landmarkHub--zip .landmarkHub__zipTab:hover{
 animation-play-state: paused;
 background: rgba(255, 255, 255, 0.95);
 border-color: rgba(96, 165, 250, 0.55);
 color: #0f172a;
 box-shadow: 0 0 14px rgba(59, 130, 246, 0.12);
}

.landmarkHub--zip .landmarkHub__zipTab[aria-selected="true"]{
 background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
 color: #f8fafc;
 animation: landmarkHubTabActiveBorder 2.8s ease-in-out infinite;
 box-shadow:
 0 10px 28px rgba(15, 23, 42, 0.22),
 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.landmarkHub--zip .landmarkHub__zipTab[aria-selected="true"]:hover{
 color: #fff;
 transform: translateY(-1px);
 animation-play-state: paused;
 border-color: rgba(191, 219, 254, 0.9);
 box-shadow:
 0 10px 28px rgba(15, 23, 42, 0.22),
 0 0 24px rgba(96, 165, 250, 0.35);
}

.landmarkHub__zipTab:focus-visible{
 outline: 2px solid #2563eb;
 outline-offset: 3px;
}

.landmarkHub__zipTab[aria-selected="true"]:focus-visible{
 outline-color: #93c5fd;
}

.landmarkHub__zipTabIx{
 flex-shrink: 0;
 min-width: 2.1em;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.08em;
 font-variant-numeric: tabular-nums;
 opacity: 0.75;
}

.landmarkHub__zipTab[aria-selected="true"] .landmarkHub__zipTabIx{
 opacity: 0.95;
 color: #93c5fd;
}

.landmarkHub__zipTabLbl{
 min-width: 0;
 max-width: 44ch;
 word-break: break-word;
}

@media (max-width: 640px){
 .landmarkHub__zipTabs{
 flex-wrap: nowrap;
 justify-content: flex-start;
 overflow-x: auto;
 -webkit-overflow-scrolling: touch;
 scroll-snap-type: x proximity;
 padding-bottom: 6px;
 margin: 0 -4px;
 padding-left: 4px;
 padding-right: 4px;
 scrollbar-width: thin;
 }
 .landmarkHub__zipTab{
 flex: 0 0 auto;
 scroll-snap-align: start;
 max-width: min(88vw, 320px);
 }
}

.landmarkHub__zipPanel{
 outline: none;
}

.landmarkHub--zip .landmarkHub__zipPanelInner{
 position: relative;
 border-radius: 24px;
 overflow: hidden;
 background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
 border: 1px solid rgba(147, 197, 253, 0.4);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.98) inset,
 0 28px 64px -24px rgba(15, 23, 42, 0.18),
 0 14px 36px rgba(2, 6, 23, 0.06);
 animation: landmarkHubPanelBorder 3.4s ease-in-out infinite;
}

.landmarkHub__zipPanelInner{
 position: relative;
 border-radius: 24px;
 overflow: hidden;
}

.landmarkHub__zipPanelAccent{
 height: 4px;
 width: 100%;
 background: linear-gradient(90deg, #0b5cff, #6366f1, #a855f7);
 opacity: 0.95;
}

.landmarkHub__zipPanelBody{
 padding: 28px 32px 34px;
}

.landmarkHub__zipPlace{
 margin: 0 0 10px;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: #64748b;
}

.landmarkHub__zipPanelTitle{
 margin: 0 0 18px;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
 font-size: clamp(22px, 2.4vw, 30px);
 font-weight: 800;
 letter-spacing: -0.035em;
 line-height: 1.18;
 color: #0f172a;
}

.landmarkHub__zipProse{
 display: flex;
 flex-direction: column;
 gap: 14px;
 max-width: 65ch;
}

.landmarkHub__zipLead{
 margin: 0;
 font-size: 16px;
 line-height: 1.65;
 font-weight: 500;
 color: #334155;
}

.landmarkHub__zipPara{
 margin: 0;
 font-size: 14.5px;
 line-height: 1.62;
 color: #64748b;
}

@media (max-width: 520px){
 .landmarkHub__zipPanelBody{
 padding: 22px 20px 26px;
 }
}

/* ZIP page — neighbourhood block: scroll reveal + stagger + hover polish */
.landmarkHub--zip{
 position: relative;
 overflow: hidden;
 padding: 64px 0 76px;
 background:
 linear-gradient(180deg, #e8edf5 0%, #eef2ff 38%, #f8fafc 100%);
 border-top: 1px solid rgba(15, 23, 42, 0.06);
 border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.landmarkHub--zip::before{
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 height: min(140px, 28vh);
 background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(11, 92, 255, 0.09), transparent 72%);
 pointer-events: none;
 z-index: 0;
}

.landmarkHub--zip .container{
 position: relative;
 z-index: 1;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--zip .landmarkHub__head .landmarkHub__title{
 opacity: 0;
 transform: translateY(18px);
 transition:
 opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
 transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__title{
 transition-delay: 0.06s;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
 opacity: 0;
 transform: translateY(14px);
 transition:
 opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
 transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow{
 transition-delay: 0.04s;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
 transition-delay: 0.14s;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__sub--zip{
 opacity: 1;
 transform: translateY(0);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__underline{
 transform: scaleX(0);
 transform-origin: center;
 transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
 transition-delay: 0.12s;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__title{
 opacity: 1;
 transform: translateY(0);
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__underline{
 transform: scaleX(1);
}

.landmarkHub--zip .landmarkHub__zipSpotlight{
 opacity: 0;
 transform: translateY(28px);
 transition:
 opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
 transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
 transition-delay: 0.12s;
 will-change: opacity, transform;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__zipSpotlight{
 opacity: 1;
 transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
 .landmarkHub--zip .landmarkHub__head .landmarkHub__eyebrow,
 .landmarkHub--zip .landmarkHub__head .landmarkHub__title,
 .landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow,
 .landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
 opacity: 1 !important;
 transform: none !important;
 transition: none !important;
 }
 .landmarkHub--zip .landmarkHub__head .landmarkHub__underline{
 transform: scaleX(1) !important;
 transition: none !important;
 }
 .landmarkHub--zip .landmarkHub__zipSpotlight{
 opacity: 1 !important;
 transform: none !important;
 transition: none !important;
 will-change: auto;
 }
 .landmarkHub--zip .landmarkHub__zipTabsWrap,
 .landmarkHub--zip .landmarkHub__zipTab,
 .landmarkHub--zip .landmarkHub__zipPanelInner{
 animation: none !important;
 }
}

/* Google map section */
.mapSection{
 padding: 10px 0 60px;
 background: #fff;
}
.mapSection__head{
 text-align:center;
 margin: 10px 0 16px;
}
.mapSection__title{
 margin:0;
 font-size: 18px;
 font-weight: 900;
 text-transform: uppercase;
 color:#0f172a;
 letter-spacing:.5px;
}
.mapSection__underline{
 width: 70px;
 height: 3px;
 border-radius: 999px;
 background: #0b5cff;
 margin: 10px auto 0;
}
.mapWrap{
 border-radius: 18px;
 overflow: hidden;
 border: 1px solid rgba(2,6,23,.10);
 box-shadow: 0 16px 36px rgba(2,6,23,.10);
}
.mapWrap iframe{
 width: 100%;
 height: 420px;
 border: 0;
 display:block;
}

/* =========================
 About Page (AI content)
========================= */
.aboutSection{
 padding: 56px 0 70px;
 background: #fff;
}

.aboutWrap{
 max-width: 1120px;
}

.aboutIntro{
 text-align: center;
 max-width: 840px;
 margin: 0 auto 26px;
}

.aboutIntro__title{
 margin: 0 0 10px;
 font-size: 28px;
 font-weight: 1000;
 letter-spacing: .2px;
 color: #0f172a;
}

.aboutIntro__text{
 margin: 0;
 color: rgba(15,23,42,.78);
 font-size: 16px;
 line-height: 1.8;
}

.aboutGrid{
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 16px;
 margin-top: 18px;
}

.aboutCard{
 background: #f7f9ff;
 border: 1px solid rgba(2,6,23,.08);
 border-radius: 18px;
 padding: 18px 18px;
 box-shadow: 0 14px 30px rgba(2,6,23,.08);
 transition: transform .18s ease, box-shadow .18s ease;
}

.metricsStrip{
 background: linear-gradient(135deg, #1d43b8 0%, #2047c7 100%);
 padding: 18px 0 14px;
 position: relative;
 overflow: hidden;
}

.metricsStrip__headlineWrap{
 position: relative;
 z-index: 1;
 max-width: 1080px;
 margin: 0 auto 14px;
 text-align: center;
}

.metricsStrip__headline{
 margin: 0;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
 font-size: clamp(16px, 1.65vw, 20px);
 font-weight: 800;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: #ffd24a;
 text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.metricsStrip::before{
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 20%),
 radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06), transparent 24%);
 pointer-events: none;
}

.metricsStrip__copy{
 position: relative;
 z-index: 1;
 max-width: 1080px;
 margin: 0 auto 10px;
 text-align: center;
}

.metricsStrip__text{
 margin: 0 auto;
 max-width: 980px;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 font-size: clamp(15px, 1.55vw, 19px);
 line-height: 1.55;
 font-weight: 650;
 letter-spacing: .01em;
 color: rgba(255,255,255,.97);
 text-wrap: balance;
 text-shadow: 0 10px 24px rgba(5, 18, 44, .22);
}


.metricsStrip__inner{
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 14px;
 align-items: center;
}

.metricCard{
 text-align: center;
 color: #ffffff;
 padding: 8px 8px;
}

.metricCard__num{
 font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 font-size: 56px;
 font-weight: 800;
 line-height: 1;
 letter-spacing: -1.8px;
 color: #ffffff;
 text-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.metricCard__num .metricSuffix{
 color: #ffd24a;
 font-size: 0.55em;
 vertical-align: top;
 margin-left: 2px;
}

.metricCard__label{
 margin-top: 10px;
 font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 font-size: 20px;
 font-weight: 700;
 line-height: 1.35;
 color: rgba(255,255,255,.98);
}

@media (max-width: 1100px){
 .metricsStrip__inner{
 grid-template-columns: repeat(3, 1fr);
 gap: 18px;
 }

 .metricCard__num{ font-size: 48px; }
 .metricCard__label{ font-size: 18px; }
}

@media (max-width: 768px){
 .metricsStrip{
 padding: 22px 0;
 }

 .metricsStrip__text{
 font-size: 14px;
 line-height: 1.55;
 }

 .metricsStrip__inner{
 grid-template-columns: 1fr;
 gap: 20px;
 }

 .metricCard__num{ font-size: 40px; }
 .metricCard__label{ font-size: 16px; }
}

.aboutCard:hover{
 transform: translateY(-4px);
 box-shadow: 0 18px 38px rgba(2,6,23,.11);
}

.aboutCard__title{
 margin: 0 0 8px;
 font-size: 16px;
 font-weight: 950;
 color: #0f172a;
}

.aboutCard__text{
 margin: 0;
 color: rgba(15,23,42,.78);
 line-height: 1.75;
 font-size: 14px;
}

.aboutValues{
 margin-top: 28px;
 border-top: 1px solid rgba(2,6,23,.08);
 padding-top: 22px;
}

.aboutValues__title{
 margin: 0 0 12px;
 font-size: 16px;
 font-weight: 950;
 color: #0f172a;
 text-transform: uppercase;
 letter-spacing: .5px;
}

.aboutValues__list{
 margin: 0;
 padding: 0;
 list-style: none;
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 10px 14px;
}

.aboutValues__list li{
 background: #ffffff;
 border: 1px solid rgba(2,6,23,.08);
 border-radius: 14px;
 padding: 12px 14px;
 font-weight: 850;
 color: #0f172a;
 box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

.aboutCTA{
 margin-top: 30px;
}

.aboutCTA__box{
 background: linear-gradient(135deg, rgba(11,92,255,.12), rgba(255,180,0,.10));
 border: 1px solid rgba(2,6,23,.10);
 border-radius: 20px;
 padding: 22px 20px;
 box-shadow: 0 18px 44px rgba(2,6,23,.10);
 display:flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

.aboutCTA__title{
 margin: 0 0 8px;
 font-size: 18px;
 font-weight: 1000;
 color: #0f172a;
 text-align: center !important;
}

.aboutCTA__text{
 margin: 0 auto 14px;
 max-width: 820px;
 color: rgba(15,23,42,.78);
 line-height: 1.75;
 text-align: center !important;
}

.aboutCTA__btn{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 height: 44px;
 padding: 0 18px;
 border-radius: 12px;
 font-weight: 950;
 text-decoration: none;
 color: #0b1020;
 background: #ffb400;
 box-shadow: 0 14px 30px rgba(255,180,0,.25);
 transition: transform .15s ease, box-shadow .15s ease;
}

.aboutCTA__btn:hover{
 transform: translateY(-2px);
 box-shadow: 0 18px 38px rgba(255,180,0,.30);
}

/* Responsive */
@media (max-width: 980px){
 .aboutGrid{ grid-template-columns: 1fr; }
 .aboutValues__list{ grid-template-columns: 1fr; }
}

/* ===============================
 Service Card Bullet Highlights
 =============================== */

.svcCard2__bullets {
 list-style: none;
 padding: 0;
 margin: 18px 0 22px 0;
 display: grid;
 gap: 10px;
}

.svcCard2__bullets li {
 position: relative;
 padding-left: 26px;
 font-size: 14px;
 font-weight: 500;
 color: #4a5568; /* subtle dark grey */
 letter-spacing: 0.2px;
 line-height: 1.4;
}

/* Premium subtle accent dot */
.svcCard2__bullets li::before {
 content: "✓";
 position: absolute;
 left: 0;
 top: -1px;
 font-size: 14px;
 font-weight: 700;
 color: #f5b400;
}

/* Hover micro-interaction */
.svcCard2:hover .svcCard2__bullets li::before {
 transform: scale(1.1);
 box-shadow: 0 0 0 4px rgba(245, 180, 0, 0.25);
}

/* ==================================================
 Sticky Global Topbar + Header Across All Pages
 ================================================== */
:root{
 --sticky-topbar-height: 52px;
}

body{
 padding-top: 112px;
}

.topbar{
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 110;
}

.topbar__inner{
 min-height: var(--sticky-topbar-height);
}

.header{
 position: fixed;
 top: var(--sticky-topbar-height);
 left: 0;
 right: 0;
 z-index: 105;
}

.nav__menu{
 z-index: 120;
}

main{
 position: relative;
 z-index: 1;
}

@media (max-width: 720px){
 /* On mobile, keep bars in normal flow to avoid hiding content */
 body{
 padding-top: 0;
 }

 .topbar{
 position: sticky;
 top: 0;
 }

 .header{
 position: sticky;
 top: 0;
 }

 /* Ensure jump links don't hide under sticky bars */
 .cityDir__group{
 scroll-margin-top: 24px;
 }
}

/* Fixed floating call button (bottom-right) */
.fabCall{
 position: fixed;
 right: max(20px, env(safe-area-inset-right));
 bottom: max(22px, env(safe-area-inset-bottom));
 z-index: 200;
}
.fab-call{
 width: 58px;
 height: 58px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 0;
 cursor: pointer;
 background: #16a34a;
 color: #fff;
 text-decoration: none;
 box-shadow: 0 10px 28px rgba(22, 163, 74, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2);
 transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fab-call:hover{
 background: #15803d;
 transform: translateY(-2px) scale(1.03);
 box-shadow: 0 14px 34px rgba(22, 163, 74, 0.5), 0 6px 14px rgba(0, 0, 0, 0.22);
 color: #fff;
}
.fab-call:active{
 transform: translateY(0) scale(0.98);
}
.fab-call__icon{
 width: 28px;
 height: 28px;
 display: block;
}

.fabCall__popup{
 position: absolute;
 right: 70px;
 bottom: 8px;
 min-width: 220px;
 max-width: min(320px, calc(100vw - 120px));
 padding: 12px 12px 10px;
 border-radius: 14px;
 background: rgba(17, 24, 39, 0.94);
 color: #fff;
 box-shadow: 0 18px 46px rgba(0,0,0,.34);
 border: 1px solid rgba(255,255,255,.12);
 transform: translateY(0);
 opacity: 1;
 pointer-events: auto;
}
.fabCall__popup::after{
 content: "";
 position: absolute;
 right: -7px;
 bottom: 18px;
 width: 14px;
 height: 14px;
 background: rgba(17, 24, 39, 0.94);
 transform: rotate(45deg);
 border-right: 1px solid rgba(255,255,255,.12);
 border-top: 1px solid rgba(255,255,255,.12);
}
.fabCall__popupCta{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 2px;
 width: 100%;
 padding: 11px 12px 10px;
 border-radius: 14px;
 background: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #15803d 100%);
 color: #fff;
 text-decoration: none;
 box-shadow: 0 14px 28px rgba(22,163,74,.38), inset 0 1px 0 rgba(255,255,255,.18);
 border: 1px solid rgba(255,255,255,.12);
 transform-origin: center;
 animation: fabCallVibe 2.8s ease-in-out infinite;
}
.fabCall__popupCta:hover{
 background: linear-gradient(135deg, #16a34a 0%, #15803d 60%, #166534 100%);
 color: #fff;
}

.fabCall__ctaTop{
 font-size: 12px;
 font-weight: 900;
 letter-spacing: .12em;
 text-transform: uppercase;
 line-height: 1.05;
 opacity: .95;
 text-align: center;
}
.fabCall__ctaBottom{
 font-size: 14px;
 font-weight: 900;
 letter-spacing: .02em;
 line-height: 1.15;
 text-shadow: 0 1px 0 rgba(0,0,0,.2);
 word-break: break-word;
 text-align: center;
}

@keyframes fabCallVibe{
 0%, 72%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
 74% { transform: translate3d(-1px, 0, 0) rotate(-1deg); }
 76% { transform: translate3d(1px, 0, 0) rotate(1deg); }
 78% { transform: translate3d(-1px, 0, 0) rotate(-1deg); }
 80% { transform: translate3d(1px, 0, 0) rotate(1deg); }
 82% { transform: translate3d(0,0,0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce){
 .fabCall__popupCta{ animation: none !important; }
}

@media print{
 .fabCall{ display: none !important; }
}

/* =========================
 ZIP neighbourhood modal (city page)
========================= */
html.zipLm-open,
html.zipLm-open body{
 overflow: hidden;
}

/* ZIP modal open: hide “Areas We Serve” flyout so it doesn’t sit visually on top of the overlay */
html.zipLm-open .header .nav__menu,
html.zipLm-open .header .nav__dropdown:hover .nav__menu,
html.zipLm-open .header .nav__dropdown:focus-within .nav__menu{
 opacity: 0 !important;
 visibility: hidden !important;
 pointer-events: none !important;
}

.zipLm{
 --zip-lm-accent: #0b5cff;
 position: fixed;
 inset: 0;
 z-index: 10050;
 display: grid;
 place-items: center;
 padding: 24px 16px;
 box-sizing: border-box;
}

.zipLm[hidden]{
 display: none !important;
}

.zipLm__backdrop{
 position: absolute;
 inset: 0;
 background: radial-gradient(120% 80% at 50% 0%, rgba(11, 92, 255, 0.18), transparent 55%),
 rgba(6, 11, 26, 0.72);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 animation: zipLmFadeIn 0.35s ease forwards;
 cursor: pointer;
}

.zipLm__panel{
 position: relative;
 z-index: 1;
 width: min(800px, 100%);
 max-height: min(88vh, 900px);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 border-radius: 24px;
 background: linear-gradient(165deg, #ffffff 0%, #f1f5ff 42%, #eef2ff 100%);
 border: 1px solid rgba(15, 23, 42, 0.1);
 box-shadow:
 0 0 0 1px rgba(255, 255, 255, 0.6) inset,
 0 28px 80px rgba(2, 6, 23, 0.35),
 0 12px 40px rgba(11, 92, 255, 0.12);
 animation: zipLmPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.zipLm__close{
 position: absolute;
 top: 14px;
 right: 14px;
 z-index: 2;
 width: 44px;
 height: 44px;
 border: none;
 border-radius: 12px;
 background: rgba(15, 23, 42, 0.06);
 color: #0f172a;
 font-size: 26px;
 line-height: 1;
 cursor: pointer;
 transition: background 0.2s ease, transform 0.2s ease;
}
.zipLm__close:hover{
 background: rgba(15, 23, 42, 0.12);
 transform: scale(1.05);
}

.zipLm__head{
 padding: 28px 28px 12px;
 border-bottom: 1px solid rgba(15, 23, 42, 0.08);
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, transparent 100%);
}

.zipLm__eyebrow{
 margin: 0 0 6px;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--zip-lm-accent);
 opacity: 0.9;
}

.zipLm__title{
 margin: 0;
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: clamp(22px, 3vw, 30px);
 font-weight: 800;
 letter-spacing: -0.03em;
 color: #0a1628;
}

.zipLm__sub{
 margin: 10px 0 0;
 font-size: 15px;
 line-height: 1.5;
 color: #475569;
 max-width: 720px;
}

.zipLm__callStrip{
 flex-shrink: 0;
 padding: 16px 24px 18px;
 border-bottom: 1px solid rgba(15, 23, 42, 0.08);
 background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 255, 0.95) 50%, rgba(255, 251, 235, 0.55) 100%);
}

.zipLm__callStripInner{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 14px 20px;
}

.zipLm__callStripCopy{
 display: flex;
 flex-direction: column;
 gap: 4px;
 min-width: 0;
}

.zipLm__callStripKicker{
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--zip-lm-accent);
 opacity: 0.95;
}

.zipLm__callStripPhone{
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: clamp(18px, 2.8vw, 22px);
 font-weight: 800;
 letter-spacing: -0.02em;
 color: #0a1628;
 text-decoration: none;
 transition: color 0.2s ease;
}
.zipLm__callStripPhone:hover{
 color: var(--zip-lm-accent);
}

.zipLm__callStripBtnMotion{
 display: inline-block;
 transform-origin: center center;
 will-change: transform;
 animation: zipLmCallIdleNudge 3.2s ease-in-out 1.1s infinite;
}

.zipLm__callStripBtn{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 padding: 14px 26px;
 border-radius: 999px;
 border: none;
 cursor: pointer;
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: 15px;
 font-weight: 800;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 text-decoration: none;
 color: #fff;
 background: linear-gradient(135deg, var(--zip-lm-accent) 0%, #1d4ed8 55%, #0f172a 160%);
 box-shadow:
 0 4px 0 rgba(15, 23, 42, 0.22),
 0 12px 28px rgba(11, 92, 255, 0.35),
 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zipLm__callStripBtn:hover{
 transform: translateY(-2px) scale(1.02);
 box-shadow:
 0 6px 0 rgba(15, 23, 42, 0.18),
 0 18px 40px rgba(11, 92, 255, 0.42),
 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.zipLm__callStripBtn:active{
 transform: translateY(1px) scale(0.99);
}

.zipLm__callStripBtnIcon{
 display: flex;
 flex-shrink: 0;
 opacity: 0.95;
}

.zipLm__callStrip--shake .zipLm__callStripBtnMotion{
 animation:
 zipLmCallShakePremium 0.75s cubic-bezier(0.36, 0.07, 0.19, 0.97) both,
 zipLmCallIdleNudge 3.2s ease-in-out 1.85s infinite;
}

@keyframes zipLmCallShakePremium{
 0%{ transform: translateX(0) rotate(0deg); }
 8%{ transform: translateX(-7px) rotate(-1.2deg); }
 16%{ transform: translateX(7px) rotate(1.2deg); }
 24%{ transform: translateX(-5px) rotate(-0.8deg); }
 32%{ transform: translateX(5px) rotate(0.8deg); }
 40%{ transform: translateX(-3px); }
 48%{ transform: translateX(3px); }
 56%{ transform: translateX(-2px); }
 64%{ transform: translateX(2px); }
 72%{ transform: translateX(-1px); }
 80%{ transform: translateX(1px); }
 100%{ transform: translateX(0) rotate(0deg); }
}

@keyframes zipLmCallIdleNudge{
 0%, 88%, 100%{ transform: translateX(0); }
 90%{ transform: translateX(-4px) rotate(-0.6deg); }
 93%{ transform: translateX(4px) rotate(0.6deg); }
 96%{ transform: translateX(-2px); }
}

@media (max-width: 520px){
 .zipLm__callStripInner{
 flex-direction: column;
 align-items: stretch;
 }
 .zipLm__callStripBtnMotion{
 width: 100%;
 }
 .zipLm__callStripBtn{
 width: 100%;
 justify-content: center;
 }
}

.zipLm__body{
 padding: 20px 24px 28px;
 overflow-y: auto;
 display: block;
}

.zipLm__body--carousel{
 overflow: hidden;
 flex: 1;
 min-height: 0;
 display: flex;
 flex-direction: column;
 padding: 22px 24px 26px;
}

/* —— Neighbourhood carousel (one slide at a time) —— */
.zipLm__carousel{
 display: flex;
 flex-direction: column;
 gap: 22px;
 min-height: 0;
 flex: 1;
 --zip-lm-slides: 1;
}

.zipLm__carouselViewport{
 position: relative;
 width: 100%;
 overflow: hidden;
 border-radius: 22px;
 flex: 1;
 min-height: min(42vh, 320px);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.85) inset,
 0 24px 56px rgba(2, 6, 23, 0.1),
 0 8px 24px rgba(11, 92, 255, 0.06);
}

.zipLm__carouselTrack{
 display: flex;
 height: 100%;
 transition: transform 0.58s cubic-bezier(0.22, 1, 0.32, 1);
 will-change: transform;
}

.zipLm__carouselTrack--instant{
 transition: none !important;
}

.zipLm__slide{
 box-sizing: border-box;
 padding: 0 6px;
 height: 100%;
 display: flex;
 align-items: stretch;
}

.zipLm__slide:first-child{
 padding-left: 0;
}
.zipLm__slide:last-child{
 padding-right: 0;
}

.zipLm__slideInner{
 box-sizing: border-box;
 width: 100%;
 min-height: 100%;
 border-radius: 20px;
 padding: 28px 30px 32px;
 background:
 linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) padding-box,
 linear-gradient(
 145deg,
 var(--zip-lm-accent) 0%,
 rgba(11, 92, 255, 0.22) 42%,
 rgba(15, 23, 42, 0.12) 100%
 ) border-box;
 border: 1px solid transparent;
 background-origin: border-box;
 background-clip: padding-box, border-box;
 box-shadow:
 0 0 0 1px rgba(255, 255, 255, 0.75) inset,
 0 20px 48px rgba(2, 6, 23, 0.08),
 0 6px 16px rgba(11, 92, 255, 0.06);
 animation: zipLmSlideReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.zipLm__slideKicker{
 display: block;
 margin: 0 0 12px;
 font-size: 10px;
 font-weight: 800;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--zip-lm-accent);
 opacity: 0.92;
}

.zipLm__slideTitle{
 margin: 0 0 18px;
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: clamp(20px, 2.4vw, 26px);
 font-weight: 800;
 line-height: 1.22;
 letter-spacing: -0.035em;
 color: #0a1628;
}

.zipLm__slideText{
 margin: 0 0 14px;
 font-size: 15px;
 line-height: 1.65;
 color: #475569;
}
.zipLm__slideText:last-child{
 margin-bottom: 0;
}

.zipLm__carouselChrome{
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 flex-shrink: 0;
 padding: 4px 2px 0;
}

.zipLm__carouselMeta{
 flex: 1;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 12px;
 min-width: 0;
}

.zipLm__carouselCount{
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: rgba(15, 23, 42, 0.45);
}

.zipLm__carouselDots{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 8px;
}

.zipLm__dot{
 width: 8px;
 height: 8px;
 padding: 0;
 border: none;
 border-radius: 999px;
 background: rgba(15, 23, 42, 0.14);
 cursor: pointer;
 transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.zipLm__dot:hover{
 background: rgba(15, 23, 42, 0.28);
 transform: scale(1.15);
}

.zipLm__dot.is-active{
 background: var(--zip-lm-accent);
 box-shadow: 0 0 0 4px color-mix(in srgb, var(--zip-lm-accent) 22%, transparent);
 transform: scale(1.05);
}

.zipLm__navBtn{
 flex-shrink: 0;
 width: 52px;
 height: 52px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid rgba(15, 23, 42, 0.1);
 border-radius: 50%;
 background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 255, 0.9) 100%);
 color: #0f172a;
 cursor: pointer;
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 0.9) inset,
 0 10px 28px rgba(2, 6, 23, 0.08);
 transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.zipLm__navBtn:hover:not(:disabled){
 transform: translateY(-2px);
 border-color: color-mix(in srgb, var(--zip-lm-accent) 35%, rgba(15, 23, 42, 0.1));
 color: var(--zip-lm-accent);
 box-shadow:
 0 1px 0 rgba(255, 255, 255, 1) inset,
 0 14px 36px rgba(11, 92, 255, 0.15);
}

.zipLm__navBtn:active:not(:disabled){
 transform: translateY(0) scale(0.97);
}

.zipLm__navBtn:disabled{
 opacity: 0.35;
 cursor: not-allowed;
 box-shadow: none;
}

.zipLm__navBtn:focus-visible,
.zipLm__dot:focus-visible{
 outline: 2px solid var(--zip-lm-accent);
 outline-offset: 3px;
}

@media (max-width: 520px){
 .zipLm__carouselChrome{
 gap: 10px;
 }
 .zipLm__navBtn{
 width: 46px;
 height: 46px;
 }
 .zipLm__slideInner{
 padding: 22px 20px 26px;
 }
}

.zipLm__loading{
 display: grid;
 gap: 14px;
}

.zipLm__loading--carousel{
 flex: 1;
 align-content: center;
 min-height: min(42vh, 280px);
}

.zipLm__skel{
 height: 120px;
 border-radius: 16px;
 background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
 background-size: 200% 100%;
 animation: zipLmShimmer 1.2s ease-in-out infinite;
}

.zipLm__err{
 margin: 0;
 padding: 20px;
 border-radius: 14px;
 background: #fef2f2;
 color: #991b1b;
 font-weight: 600;
 text-align: center;
}

.zipLm__err--muted{
 background: rgba(15, 23, 42, 0.04);
 color: #64748b;
 border: 1px solid rgba(15, 23, 42, 0.08);
}

@keyframes zipLmFadeIn{
 from { opacity: 0; }
 to { opacity: 1; }
}

@keyframes zipLmPanelIn{
 from {
 opacity: 0;
 transform: translateY(22px) scale(0.97);
 }
 to {
 opacity: 1;
 transform: translateY(0) scale(1);
 }
}

@keyframes zipLmSlideReveal{
 from {
 opacity: 0;
 transform: translateY(14px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}

@keyframes zipLmShimmer{
 0% { background-position: 200% 0; }
 100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce){
 .zipLm__backdrop,
 .zipLm__panel,
 .zipLm__slideInner{
 animation: none !important;
 opacity: 1 !important;
 transform: none !important;
 }
 .zipLm__carouselTrack{
 transition: none !important;
 }
 .zipLm__skel{
 animation: none !important;
 }
 .zipLm__callStripBtnMotion,
 .zipLm__callStrip--shake .zipLm__callStripBtnMotion{
 animation: none !important;
 }
}

/* Page scroll: frosted rail + double-chevron SVGs (above floating call) */
.scroll-jump{
 position: fixed;
 right: max(16px, env(safe-area-inset-right));
 bottom: max(102px, calc(env(safe-area-inset-bottom) + 86px));
 z-index: 9890;
 pointer-events: none;
}

.scroll-jump__rail{
 pointer-events: auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 6px;
 border-radius: 999px;
 background: linear-gradient(
 165deg,
 rgba(30, 41, 59, 0.94) 0%,
 rgba(15, 23, 42, 0.96) 55%,
 rgba(11, 92, 255, 0.22) 160%
 );
 border: 1px solid rgba(255, 255, 255, 0.14);
 box-shadow:
 0 0 0 1px rgba(0, 0, 0, 0.35) inset,
 0 14px 36px rgba(2, 6, 23, 0.45),
 0 4px 12px rgba(11, 92, 255, 0.12);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
}

.scroll-jump__divider{
 display: block;
 width: 26px;
 height: 1px;
 margin: 2px 0;
 border-radius: 1px;
 background: linear-gradient(
 90deg,
 transparent,
 rgba(255, 255, 255, 0.28) 20%,
 rgba(255, 255, 255, 0.28) 80%,
 transparent
 );
}

.scroll-jump__btn{
 width: 46px;
 height: 46px;
 padding: 0;
 border: 0;
 border-radius: 50%;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(255, 255, 255, 0.96);
 background: transparent;
 line-height: 0;
 transition:
 background 0.2s ease,
 color 0.2s ease,
 transform 0.2s ease,
 box-shadow 0.2s ease;
}

.scroll-jump__btn .scroll-jump__svg{
 width: 22px;
 height: 22px;
 flex-shrink: 0;
 filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.scroll-jump__btn--top:hover,
.scroll-jump__btn--top:focus-visible{
 background: rgba(255, 255, 255, 0.12);
 color: #fff;
 transform: translateY(-1px);
 box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.scroll-jump__btn--bottom:hover,
.scroll-jump__btn--bottom:focus-visible{
 background: rgba(255, 255, 255, 0.12);
 color: #fff;
 transform: translateY(1px);
 box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.scroll-jump__btn:focus-visible{
 outline: 2px solid #60a5fa;
 outline-offset: 2px;
}

@media (max-width: 520px){
 .scroll-jump{
 bottom: max(94px, calc(env(safe-area-inset-bottom) + 74px));
 }
 .scroll-jump__btn{
 width: 44px;
 height: 44px;
 }
 .scroll-jump__btn .scroll-jump__svg{
 width: 20px;
 height: 20px;
 }
}

@media (prefers-reduced-motion: reduce){
 .scroll-jump__btn,
 .scroll-jump__btn--top:hover,
 .scroll-jump__btn--bottom:hover{
 transition: none;
 transform: none;
 }
}

/* Hero / Contact lead form status (wired from js/main.js) */
.heroLeadForm__msg--ok { color: var(--accent-dark, #0a9663); }
.heroLeadForm__msg--err { color: #b91c1c; }

/* Skip link */
.skipLink{
 position: absolute;
 left: -9999px;
 top: auto;
 width: 1px;
 height: 1px;
 overflow: hidden;
 z-index: 10000;
 padding: 12px 18px;
 background: #0b5cff;
 color: #fff;
 font-weight: 700;
 text-decoration: none;
 border-radius: 8px;
}
.skipLink:focus{
 left: 16px;
 top: 16px;
 width: auto;
 height: auto;
}

/* Cookie consent */
.cookieConsent{
 position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9950;
 background: rgba(15, 23, 42, 0.96);
 color: #e2e8f0;
 border-top: 1px solid rgba(255,255,255,0.08);
 padding: 14px 0;
}
.cookieConsent__inner{
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 flex-wrap: wrap;
}
.cookieConsent__text{
 margin: 0;
 font-size: 14px;
 line-height: 1.5;
}
.cookieConsent__text a{ color: #93c5fd; }
.cookieConsent__btn{
 border: 0;
 border-radius: 999px;
 padding: 10px 18px;
 background: #0b5cff;
 color: #fff;
 font-weight: 700;
 cursor: pointer;
}

/* Footer social + address */
.footer-social{
 display: flex;
 flex-wrap: wrap;
 gap: 12px 16px;
}
.footer-social a{
 color: rgba(255,255,255,0.82);
 text-decoration: none;
 font-size: 13px;
 font-weight: 600;
}
.footer-social a:hover{ color: #fff; }
.footer-contact-widget address{
 font-style: normal;
}

