
:root {
  --brand-blue: #24A8E0;
  --brand-dark: #2B2B2B;
  --brand-grey: #808080;
  --bg-light: #f8fafc;
  --bg-off: #f3f4f6;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 72px 0; }
.bg-light { background: var(--bg-light); }
.bg-off { background: var(--bg-off); }
.bg-dark { background: var(--brand-dark); color: white; }
.text-blue { color: var(--brand-blue); }
.text-muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border-radius: 999px; background: rgba(36,168,224,.1); color: var(--brand-blue);
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-style: italic;
}
.title-xl, .title-lg, .title-md { font-weight: 900; letter-spacing: -.05em; text-transform: uppercase; font-style: italic; line-height: 1.05; color: var(--brand-dark); }
.title-xl { font-size: clamp(2.6rem, 4.5vw, 4.8rem); }
.title-lg { font-size: clamp(2rem, 3.6vw, 3.8rem); }
.title-md { font-size: clamp(1.6rem, 2.7vw, 2.5rem); }
.bg-dark .title-xl, .bg-dark .title-lg, .bg-dark .title-md { color: #fff; }
.lead { font-size: 1.1rem; color: var(--muted); }
.bg-dark .lead, .bg-dark .text-muted { color: rgba(255,255,255,.75); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 16px; font-weight: 900; letter-spacing: .14em;
  text-transform: uppercase; transition: .25s ease; border: 2px solid transparent;
}
.btn-primary { background: var(--brand-blue); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--brand-dark); border-color: var(--brand-dark); }
.btn-secondary:hover { background: #f8fafc; transform: translateY(-2px); }
.btn-dark { background: var(--brand-dark); color: white; }
.btn-dark:hover { background: #111827; }
.site-topbar {
  background: var(--brand-dark); color: white; padding: 10px 0; font-size: 14px; font-weight: 600;
}
.site-topbar .container, .site-header .nav-inner, .footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,24,39,.06); box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.nav-inner { min-height: 84px; width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 16px; background: var(--brand-dark); overflow: hidden; position: relative;
  display: grid; place-items: center; flex: 0 0 52px;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 0; background: rgba(36,168,224,.18); transform: skewX(-20deg) translateX(16px);
}
.brand-text strong { display:block; font-size: 1.45rem; font-weight: 900; letter-spacing: -.06em; text-transform: uppercase; font-style: italic; line-height: 1; }
.brand-text small { display:block; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--brand-grey); font-weight: 800; margin-top: 3px; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; font-size: 30px; }
.mobile-nav { display: none; padding: 0 16px 16px; border-top: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 14px 4px; font-weight: 700; }
.hero-grid, .two-col, .service-row, .cta-grid { display: grid; grid-template-columns: 1.1fr .95fr; gap: 48px; align-items: center; }
.hero-media { position: relative; }
.hero-media img, .rounded-media img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-lg); object-fit: cover; }
.blob, .blob2 {
  position: absolute; width: 140px; height: 140px; border-radius: 50%; filter: blur(24px); opacity: .65;
  animation: blob 7s infinite ease-in-out;
}
.blob { background: #bfdbfe; right: -24px; top: -24px; }
.blob2 { background: #93c5fd; left: -24px; bottom: -24px; animation-delay: 2s; }
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(24px,-36px) scale(1.08); }
  66% { transform: translate(-18px,20px) scale(.92); }
}
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 10px; width: 100%; background: rgba(36,168,224,.28);
  border-radius: 999px; transform-origin: left; animation: growline 1.4s .6s both;
}
@keyframes growline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.avatars { display:flex; align-items:center; gap:18px; margin-top: 28px; }
.avatar-stack { display:flex; }
.avatar { width:42px; height:42px; border-radius:50%; border:2px solid white; overflow:hidden; margin-left:-8px; }
.avatar:first-child { margin-left:0; }
.quote-box, .card, .review-card, .contact-box, .form-card, .city-card, .value-card {
  background: white; border: 1px solid rgba(17,24,39,.05); border-radius: 24px; box-shadow: var(--shadow-sm);
}
.quote-wrap { background: var(--brand-dark); border-radius: 36px; padding: 56px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-wrap::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(36,168,224,.08); filter: blur(6px);
}
.quote-wrap > * { position: relative; }
.form-card { padding: 32px; }
.grid-2, .grid-3, .grid-4 { display:grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .review-card, .contact-box, .value-card, .city-card { padding: 32px; }
.service-card h3, .value-card h3, .city-card h3 { margin: 0 0 12px; }
.service-icon, .icon-badge {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: #eff6ff; color: var(--brand-blue);
  margin-bottom: 22px; font-size: 24px; font-weight: 900;
}
.feature-list, .check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.feature-list li, .check-list li, .plain-list li { display:flex; gap: 12px; align-items:flex-start; margin-bottom: 14px; }
.check { width: 22px; height: 22px; border-radius: 50%; background: rgba(36,168,224,.12); color: var(--brand-blue); display:grid; place-items:center; font-size: 13px; font-weight:900; margin-top:2px; flex:0 0 22px; }
.input, .select, .textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; font: inherit; color: var(--text);
  outline: none; transition: .2s ease; background: white;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(36,168,224,.13); }
.field label { display:block; margin-bottom:8px; font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: var(--brand-dark); }
.checkbox-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.checkbox-pill {
  border:1px solid var(--border); border-radius: 14px; padding: 12px 14px; display:flex; gap: 10px; align-items:center; font-weight: 700; background: white;
}
.checkbox-pill:hover { background: rgba(36,168,224,.05); }
.stats-box { background:white; border-radius: 22px; padding: 24px; box-shadow: var(--shadow-sm); border:1px solid rgba(17,24,39,.06); }
.masonry { columns: 3 280px; column-gap: 24px; }
.masonry > * { break-inside: avoid; margin-bottom: 24px; }
.star-row { display:flex; gap: 4px; color: var(--brand-blue); }
.review-card blockquote { margin: 18px 0 26px; font-style: italic; color: #374151; }
.page-hero { padding: 86px 0; text-align: center; }
.page-hero .lead { max-width: 760px; margin: 0 auto; }
.footer { background: var(--brand-dark); color: white; padding-top: 72px; }
.footer-grid { display:grid; grid-template-columns: 1.1fr .8fr .95fr .95fr; gap: 42px; }
.footer h4 { margin: 0 0 20px; font-size: 13px; color: var(--brand-blue); text-transform: uppercase; letter-spacing: .16em; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin-bottom: 12px; color: rgba(255,255,255,.75); }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; margin-top: 48px; color: rgba(255,255,255,.56); font-size: 13px; }
.socials { display:flex; gap: 12px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display:grid; place-items:center; background: rgba(255,255,255,.06); }
.socials a:hover { background: rgba(36,168,224,.18); }
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 58px; height: 58px; border-radius: 50%;
  background: #16a34a; color: white; display:none; place-items:center; box-shadow: 0 20px 40px rgba(0,0,0,.22); font-size: 24px;
}
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.cec-js .reveal { opacity: 0; transform: translateY(24px); }
.cec-js .reveal.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 991px) {
  .hero-grid, .two-col, .service-row, .cta-grid, .footer-grid, .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-menu { display:none; }
  .mobile-toggle { display:block; }
  .hero-grid, .two-col, .service-row, .cta-grid, .footer-grid, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .quote-wrap { padding: 34px 22px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .site-topbar .container { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 68px 0; }
  .section, .section-sm { padding: 72px 0; }
  .call-fab { display:grid; }
}


/* WordPress theme additions */
.admin-bar .site-header{top:32px;}
@media (max-width:782px){.admin-bar .site-header{top:46px;}}
.site-main > .entry-content > :first-child{margin-top:0;}
.screen-reader-text{position:absolute;left:-9999px;}
.page-content-wrap{padding:88px 0;}
.article-card{max-width:900px;margin:0 auto;background:#fff;border:1px solid rgba(17,24,39,.05);border-radius:24px;box-shadow:var(--shadow-sm);padding:36px;}
.entry-title{margin-top:0;}
.custom-logo-link img{max-height:52px;width:auto;display:block;}
.mobile-nav.is-open{display:block;}
.site-footer-menu{list-style:none;padding:0;margin:0;}
.site-footer-menu li{margin-bottom:12px;}
.site-footer-menu a{color:rgba(255,255,255,.75);} 
.site-footer-menu a:hover{color:white;}
.footer-contact p{margin:0 0 12px;color:rgba(255,255,255,.75);}
.footer-note{color:rgba(255,255,255,.75);}
.socials .social-link{font-weight:700;}
.no-results, .not-found{padding:88px 0;}
.page-template-default .site-main .entry-content, .home .site-main .entry-content{margin:0;}
.page-template-default .site-main .entry-content > .section:first-child, .home .site-main .entry-content > .section:first-child{margin-top:0;}
