@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@500;600;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,body{ height:100%; }
body{
 margin:0;
 font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
 color: var(--text);
 background: #fff;
}

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

/* 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);
}

/* Premium vertical partitions between main nav items (desktop only) */
@media (min-width: 901px) {
 .header__nav.nav > .nav__link,
 .header__nav.nav > .nav__dropdown {
 position: relative;
 }

 .header__nav.nav > .nav__link:not(:first-child),
 .header__nav.nav > .nav__dropdown:not(:first-child) {
 padding-left: 1.15rem;
 margin-left: 0.35rem;
 }

 .header__nav.nav > .nav__link:not(:first-child)::before,
 .header__nav.nav > .nav__dropdown:not(:first-child)::before {
 content: "";
 position: absolute;
 left: 0;
 top: 50%;
 transform: translateY(-50%);
 width: 1px;
 height: 1.55em;
 background: linear-gradient(
 180deg,
 transparent 0%,
 rgba(255, 255, 255, 0.22) 18%,
 rgba(232, 196, 104, 0.55) 50%,
 rgba(255, 255, 255, 0.22) 82%,
 transparent 100%
 );
 pointer-events: none;
 }
}

.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;
 background-image: url("/images/hero-water.jpeg");
 background-size: cover;
 background-position: center;
 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);
}
.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);
}
.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 (legacy compact bar) */
.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 (nation-wide style multi-column) */
.main-footer {
 background: #0f172a;
 padding: 100px 0 0;
 color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
 display: grid;
 grid-template-columns: 1.8fr 1.8fr 1fr 1.5fr;
 gap: 50px;
 margin-bottom: 60px;
}

.footer-logo {
 max-height: 120px;
 margin-bottom: 25px;
 width: auto;
 height: auto;
 object-fit: contain;
 display: block;
}

.footer-col h3 {
 color: #fff;
 margin-bottom: 25px;
 font-size: 1.05rem;
 font-weight: 800;
}

.footer-col p {
 line-height: 1.7;
 margin: 0;
}

.footer-col ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.footer-col ul li {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 15px;
}

.footer-col ul li a {
 color: rgba(255, 255, 255, 0.82);
 text-decoration: none;
 transition: color 0.2s ease;
}

.footer-col ul li a:hover {
 color: var(--accent);
}

.footer-col__exploreAll {
 font-weight: 700;
 color: var(--accent);
}

.footer-col__exploreAll:hover {
 color: #fff;
}

.footer-col ul li svg {
 width: 18px;
 height: 18px;
 stroke: var(--accent);
 fill: none;
 stroke-width: 2;
 flex-shrink: 0;
}

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding: 30px 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 flex-wrap: wrap;
}

.footer-bottom p {
 margin: 0;
 font-size: 14px;
}

.footer-bottom a {
 color: rgba(255, 255, 255, 0.78);
 text-decoration: none;
}

.footer-bottom a:hover {
 color: var(--accent);
}

.mb-20 {
 margin-bottom: 20px;
}

.main-footer .footer__disclaimer {
 width: 100%;
 max-width: none;
 margin: 0 0 28px;
 padding: 0 0 28px;
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 font-size: 13px;
 line-height: 1.65;
 color: rgba(255, 255, 255, 0.62);
 text-align: left;
}

.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/breadcrumbs use full browser width */
.topbar .container,
.header .container,
.hero .container,
.siteBreadcrumbs--bar .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;
}

/* Service page scoreboards under "Our Services" */
.svcSection .serviceIntroRich {
 margin-left: auto;
 margin-right: auto;
}

.svcSection .serviceIntroRich__points {
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

.svcSection .serviceIntroRich__point {
 text-align: center;
}

.svcSection .serviceIntroRich__point strong {
 text-align: center;
}

.svcSection > .container > .svcCards {
 grid-template-columns: repeat(2, minmax(280px, 400px));
 justify-content: center;
 margin-left: auto;
 margin-right: auto;
 max-width: 920px;
}

/* 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;
}

.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;

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

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

@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{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 width: 100%;
 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){
 .svcSection > .container > .svcCards{
 grid-template-columns: repeat(2, minmax(0, 1fr));
 max-width: none;
 }
 .svcCards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
 .svcSection > .container > .svcCards{
 grid-template-columns: 1fr;
 max-width: 520px;
 }
 .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);
}

/* 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 54px;
}

.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);
}

/* 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 {
 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);
}

/* 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);
}

.areasCols{
 max-width: 1120px;
 margin: 0 auto;
 padding: 0;
 list-style: none;
 columns: 4;
 column-gap: 34px;
}
.areasCols__item{
 break-inside: avoid;
 -webkit-column-break-inside: avoid;
 padding: 0;
 margin: 0 0 10px;
}
.areasCols__link{
 display: inline-flex;
 align-items: baseline;
 gap: 0;
 text-decoration: none;
 font-weight: 700;
 font-size: 14px;
 color: #0f172a;
 transition: color .22s ease, transform .22s ease;
}
.areasCols__link::before{
 content: "›";
 font-size: 18px;
 line-height: 1;
 width: 16px;
 margin-right: 10px;
 color: rgba(11, 92, 255, 0.9);
}
.areasCols__link:hover{
 color: #0b5cff;
 text-decoration: none;
 transform: translateX(4px);
}

@media (max-width: 980px){
 .areasCols{ columns: 3; }
}
@media (max-width: 720px){
 .areasCols{ columns: 2; }
}
@media (max-width: 440px){
 .areasCols{ columns: 1; }
 .areasServeSection__title{ font-size: 22px; }
 .areasServeSection__counts{ font-size: 13px; line-height: 1.5; }
}

.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) - non-clickable */
.citiesGrid__zip{
 display: block;
 width: 100%;
 text-align: center;
 font-variant-numeric: tabular-nums;
}
.citiesGrid--zips .citiesGrid__item:hover{
 transform: none;
}

/* 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::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;
 --sticky-chrome-height: 152px;
 --sticky-breadcrumbs-height: 0px;
}

body{
 padding-top: calc(var(--sticky-chrome-height) + var(--sticky-breadcrumbs-height));
}

.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: 991px){
 /* Fixed topbar+header + body padding only apply above 991px. Below that, use normal flow so nothing covers the hero. */
 body{
 padding-top: 0 !important;
 }

 .topbar{
 position: relative !important;
 top: auto !important;
 left: auto !important;
 right: auto !important;
 z-index: 110;
 }

 .header{
 position: relative !important;
 top: auto !important;
 left: auto !important;
 right: auto !important;
 z-index: 105;
 }

 .siteBreadcrumbs--bar {
 position: relative;
 top: auto;
 left: auto;
 right: auto;
 }

 /* 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; }
}

/* Legal pages */
.pageBanner{
 background: linear-gradient(135deg, #1d43b8 0%, #2047c7 55%, #0b5cff 100%);
 color: #fff;
 padding: 42px 0 38px;
 position: relative;
 overflow: hidden;
}

.pageBanner::before{
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(circle at 18% 20%, rgba(255,255,255,0.1), transparent 24%),
 radial-gradient(circle at 82% 78%, rgba(255,196,0,0.12), transparent 28%);
 pointer-events: none;
}

.pageBanner__inner{
 position: relative;
 z-index: 1;
 text-align: center;
}

.pageBanner__title{
 margin: 0 0 10px;
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: clamp(1.75rem, 2.5vw, 2.35rem);
 font-weight: 800;
 letter-spacing: .02em;
}

.pageBanner__crumbs{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 8px;
 font-size: 14px;
 color: rgba(255,255,255,.86);
}

.pageBanner__crumbs a{
 color: rgba(255,255,255,.92);
 text-decoration: none;
}

.pageBanner__crumbs a:hover{
 color: var(--accent);
}

.pageBanner__sep{
 opacity: .55;
}

.legalSection{
 padding: 52px 0 68px;
 background: #fff;
}

.legalSection__inner{
 max-width: 820px;
}

.legalCard{
 background: #f7f9ff;
 border: 1px solid rgba(2,6,23,.08);
 border-radius: 20px;
 padding: 32px 34px;
 box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.legalCard h2{
 margin: 28px 0 10px;
 font-size: 1.15rem;
 font-weight: 800;
 color: #0f172a;
}

.legalCard h2:first-of-type{
 margin-top: 8px;
}

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

.legalCard a{
 color: var(--brand);
 font-weight: 600;
}

/* Premium testimonials */
.testimonialsPremium{
 padding: 64px 0 72px;
 background:
 linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
 position: relative;
 overflow: hidden;
}

.testimonialsPremium::before{
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(circle at 10% 15%, rgba(11,92,255,0.07), transparent 26%),
 radial-gradient(circle at 90% 85%, rgba(255,196,0,0.08), transparent 28%);
 pointer-events: none;
}

.testimonialsPremium__head{
 text-align: center;
 max-width: 720px;
 margin: 0 auto 30px;
 position: relative;
 z-index: 1;
}

.testimonialsPremium__eyebrow{
 display: inline-block;
 margin-bottom: 10px;
 font-size: 12px;
 font-weight: 800;
 letter-spacing: .16em;
 text-transform: uppercase;
 color: var(--brand);
}

.testimonialsPremium__title{
 margin: 0;
 font-family: "Plus Jakarta Sans", system-ui, sans-serif;
 font-size: clamp(1.65rem, 2.2vw, 2.1rem);
 font-weight: 800;
 color: #0f172a;
}

.testimonialsPremium__title span{
 color: var(--brand);
}

.testimonialsPremium__grid{
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 18px;
 position: relative;
 z-index: 1;
}

.testimonialPremium{
 margin: 0;
 padding: 24px 22px 20px;
 background: #fff;
 border: 1px solid rgba(2,6,23,.08);
 border-radius: 18px;
 box-shadow: 0 14px 30px rgba(2,6,23,.08);
 position: relative;
 transition: transform .2s ease, box-shadow .2s ease;
}

.testimonialPremium::before{
 content: "";
 position: absolute;
 top: 0;
 left: 18px;
 right: 18px;
 height: 3px;
 border-radius: 0 0 6px 6px;
 background: linear-gradient(90deg, var(--brand), var(--accent));
}

.testimonialPremium:hover{
 transform: translateY(-3px);
 box-shadow: 0 18px 36px rgba(2,6,23,.12);
}

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

.testimonialPremium__stars{
 color: #f59e0b;
 font-size: .92rem;
 letter-spacing: .08em;
}

.testimonialPremium__quote{
 width: 32px;
 height: 22px;
 color: rgba(11,92,255,.14);
}

.testimonialPremium__text{
 margin: 0 0 18px;
 line-height: 1.75;
 color: rgba(15,23,42,.78);
}

.testimonialPremium__footer{
 display: flex;
 align-items: center;
 gap: 12px;
 padding-top: 16px;
 border-top: 1px solid rgba(2,6,23,.06);
}

.testimonialPremium__avatar{
 width: 42px;
 height: 42px;
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 font-weight: 800;
 font-size: .88rem;
 color: #fff;
 background: linear-gradient(135deg, var(--brand), var(--brand2));
 box-shadow: 0 8px 18px rgba(11,92,255,.22);
}

.testimonialPremium__meta{
 display: flex;
 flex-direction: column;
 gap: 2px;
}

.testimonialPremium__meta cite{
 font-style: normal;
 font-weight: 800;
 color: #0f172a;
}

.testimonialPremium__meta span{
 font-size: .86rem;
 color: rgba(15,23,42,.58);
}

@media (max-width: 992px){
 .testimonialsPremium__grid{
 grid-template-columns: 1fr;
 max-width: 560px;
 margin: 0 auto;
 }
}

@media (max-width: 640px){
 .legalCard{
 padding: 24px 20px;
 border-radius: 16px;
 }
}

/* Page scroll navigator — bottom ↔ top */
.scrollNav {
 position: fixed;
 left: max(18px, env(safe-area-inset-left));
 bottom: max(24px, env(safe-area-inset-bottom));
 z-index: 9980;
 width: 52px;
 height: 52px;
 opacity: 0;
 transform: translate3d(-16px, 0, 0) scale(0.92);
 pointer-events: none;
 transition:
 opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
 transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrollNav:not([hidden]) {
 opacity: 1;
 transform: translate3d(0, 0, 0) scale(1);
 pointer-events: auto;
}

.scrollNav__track {
 position: absolute;
 inset: 0;
 pointer-events: none;
}

.scrollNav__ring {
 width: 100%;
 height: 100%;
 display: block;
}

.scrollNav__ring-bg {
 stroke: rgba(11, 92, 255, 0.12);
}

.scrollNav__ring-progress {
 stroke: var(--brand, #0b5cff);
 stroke-linecap: round;
 transition: stroke-dashoffset 0.15s linear;
}

.scrollNav__btn {
 position: relative;
 z-index: 1;
 width: 52px;
 height: 52px;
 border: 0;
 border-radius: 50%;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
 color: var(--brand, #0b5cff);
 box-shadow:
 0 10px 28px rgba(0, 35, 92, 0.14),
 0 2px 6px rgba(0, 0, 0, 0.08),
 inset 0 1px 0 rgba(255, 255, 255, 0.9);
 transition:
 transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
 box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
 color 0.25s ease;
}

.scrollNav__btn:hover {
 transform: translateY(-3px) scale(1.04);
 box-shadow:
 0 16px 36px rgba(0, 35, 92, 0.18),
 0 4px 10px rgba(0, 0, 0, 0.1),
 inset 0 1px 0 rgba(255, 255, 255, 0.95);
 color: var(--accent, #ffc400);
}

.scrollNav__btn:active {
 transform: translateY(0) scale(0.97);
}

.scrollNav__btn--pulse {
 animation: scrollNavPulse 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrollNav__icon {
 position: absolute;
 width: 22px;
 height: 22px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition:
 opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
 transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrollNav__icon svg {
 width: 100%;
 height: 100%;
 display: block;
}

.scrollNav__icon--up {
 opacity: 0;
 transform: translateY(10px) scale(0.7) rotate(-18deg);
}

.scrollNav__icon--down {
 opacity: 1;
 transform: translateY(0) scale(1) rotate(0deg);
}

.scrollNav[data-direction="up"] .scrollNav__icon--up {
 opacity: 1;
 transform: translateY(0) scale(1) rotate(0deg);
}

.scrollNav[data-direction="up"] .scrollNav__icon--down {
 opacity: 0;
 transform: translateY(-10px) scale(0.7) rotate(18deg);
}

.scrollNav--traveling .scrollNav__btn {
 animation: scrollNavTravel 0.9s ease-in-out infinite;
}

.scrollNav__hint {
 position: absolute;
 left: calc(100% + 10px);
 top: 50%;
 transform: translateY(-50%) translateX(-6px);
 padding: 5px 10px;
 border-radius: 999px;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: #fff;
 background: rgba(15, 23, 42, 0.88);
 white-space: nowrap;
 opacity: 0;
 pointer-events: none;
 transition:
 opacity 0.3s ease,
 transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrollNav:hover .scrollNav__hint,
.scrollNav:focus-within .scrollNav__hint {
 opacity: 1;
 transform: translateY(-50%) translateX(0);
}

@keyframes scrollNavPulse {
 0% { transform: scale(1); }
 40% { transform: scale(0.92); }
 100% { transform: scale(1); }
}

@keyframes scrollNavTravel {
 0%, 100% { box-shadow: 0 10px 28px rgba(0, 35, 92, 0.14), 0 0 0 0 rgba(255, 196, 0, 0.35); }
 50% { box-shadow: 0 14px 32px rgba(0, 35, 92, 0.16), 0 0 0 8px rgba(255, 196, 0, 0); }
}

@media (max-width: 768px) {
 .scrollNav {
 left: max(14px, env(safe-area-inset-left));
 bottom: max(20px, env(safe-area-inset-bottom));
 width: 48px;
 height: 48px;
 }

 .scrollNav__btn {
 width: 48px;
 height: 48px;
 }

 .scrollNav__hint {
 display: none;
 }
}

@media (prefers-reduced-motion: reduce) {
 .scrollNav,
 .scrollNav__btn,
 .scrollNav__icon,
 .scrollNav__hint,
 .testimonialPremium {
 transition: none !important;
 animation: none !important;
 }

 .scrollNav--traveling .scrollNav__btn {
 animation: none !important;
 }
}

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

/* Breadcrumbs — premium navigation bar */
.siteBreadcrumbs {
 margin: 0;
 padding: 0;
}

.siteBreadcrumbs__wrap {
 width: 100%;
}

.siteBreadcrumbs__list {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 2px;
 list-style: none;
 margin: 0;
 padding: 0;
 font-size: 13px;
 line-height: 1.35;
}

.siteBreadcrumbs__item,
.siteBreadcrumbs__divider {
 display: flex;
 align-items: center;
}

.siteBreadcrumbs__divider svg {
 width: 12px;
 height: 12px;
 opacity: 0.42;
}

.siteBreadcrumbs__link {
 display: inline-flex;
 align-items: center;
 gap: 5px;
 text-decoration: none;
 font-weight: 600;
 transition: color 0.2s ease, background 0.2s ease;
}

.siteBreadcrumbs__homeIcon {
 width: 13px;
 height: 13px;
 flex-shrink: 0;
}

.siteBreadcrumbs__current {
 display: inline-flex;
 align-items: center;
 font-weight: 700;
 white-space: normal;
 text-align: center;
}

.siteBreadcrumbs__text {
 display: inline-flex;
 align-items: center;
 padding: 4px 6px;
 color: #64748b;
 font-weight: 600;
}

.siteBreadcrumbs--bar {
 position: relative;
 z-index: 4;
 background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
 border-bottom: 1px solid rgba(15, 23, 42, 0.08);
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
 padding: 8px 0;
}

@media (min-width: 992px) {
 .siteBreadcrumbs--bar {
 position: fixed;
 top: var(--sticky-chrome-height);
 left: 0;
 right: 0;
 z-index: 104;
 }
}

.siteBreadcrumbs--bar::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
 width: 3px;
 background: linear-gradient(180deg, #1a4fd6 0%, #d9b44a 100%);
}

.siteBreadcrumbs--bar .siteBreadcrumbs__link {
 color: #1a4fd6;
 padding: 4px 8px;
 border-radius: 8px;
}

.siteBreadcrumbs--bar .siteBreadcrumbs__link:hover {
 color: #0f2f8a;
 background: rgba(26, 79, 214, 0.08);
}

.siteBreadcrumbs--bar .siteBreadcrumbs__divider svg {
 color: #94a3b8;
}

.siteBreadcrumbs--bar .siteBreadcrumbs__current {
 color: #0c1526;
 padding: 4px 10px;
 border-radius: 8px;
 background: linear-gradient(135deg, rgba(26, 79, 214, 0.1) 0%, rgba(217, 180, 74, 0.14) 100%);
 border: 1px solid rgba(26, 79, 214, 0.16);
 box-shadow: 0 2px 8px rgba(15, 35, 80, 0.05);
}

.siteBreadcrumbs--banner {
 background: transparent;
 border: 0;
 padding: 10px 0 0;
 margin-top: 6px;
}

.siteBreadcrumbs--banner .siteBreadcrumbs__list {
 justify-content: center;
}

.siteBreadcrumbs--banner .siteBreadcrumbs__link {
 color: rgba(255, 255, 255, 0.92);
 padding: 6px 10px;
 border-radius: 8px;
}

.siteBreadcrumbs--banner .siteBreadcrumbs__link:hover {
 color: #e8c468;
 background: rgba(255, 255, 255, 0.08);
}

.siteBreadcrumbs--banner .siteBreadcrumbs__divider svg {
 color: rgba(255, 255, 255, 0.55);
}

.siteBreadcrumbs--banner .siteBreadcrumbs__current {
 color: #e8c468;
 padding: 6px 12px;
 border-radius: 8px;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.14);
}

.siteBreadcrumbs--banner .siteBreadcrumbs__text {
 color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
 .footer-grid {
 grid-template-columns: 1fr;
 gap: 32px;
 margin-bottom: 36px;
 }

 .main-footer {
 padding-top: 56px;
 }

 .footer-bottom {
 flex-direction: column;
 align-items: center;
 text-align: center;
 }
}

@media (max-width: 640px) {
 .siteBreadcrumbs--bar {
 padding: 7px 0;
 }

 .siteBreadcrumbs--bar .siteBreadcrumbs__link,
 .siteBreadcrumbs--bar .siteBreadcrumbs__current {
 font-size: 12px;
 padding: 3px 7px;
 }
}

@import url("premium.css");
/* scorecard-link */
a.metricCard.metricCard--link {
 text-decoration: none;
 color: inherit;
 cursor: pointer;
 display: block;
}
a.metricCard.metricCard--link:hover {
 transform: translateY(-2px);
}
a.metricCard.metricCard--link:focus-visible {
 outline: 2px solid var(--accent, #0b3fbf);
 outline-offset: 2px;
}

/* Areas We Serve — landmarks are display-only (not clickable) */
.nav__areaLink--static,
.areaGrid__cell--static {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
.nav__areaLink--static:hover,
.areaGrid__cell--static:hover {
  background: transparent;
  color: inherit;
  transform: none;
  box-shadow: none;
}
/* Legacy HTML: disable landmark links until pages are re-exported */
a.nav__areaLink--landmark,
.areaGrid--landmarks a.areaGrid__cell,
.nearbyLandmarksList a.areaGrid__cell[href*="landmarkHubSection"],
a.areaGrid__cell[href*="landmarkHubSection"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}