html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid #13A36F;
  outline-offset: 3px;
}

.ea11y-skip-to-content-link,
.ea11y-skip-to-content-backdrop {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: #1b252f;
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.wp-site-blocks > header.wp-block-template-part {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 9990;
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

.site-header {
  position: relative;
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid #dfe7ee;
  margin: 0 !important;
  max-width: none !important;
}

.site-header.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-header.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.site-header .site-header__inner {
  box-sizing: border-box;
  width: min(100% - 120px, 1600px) !important;
  max-width: 1600px;
  margin-inline: auto;
  min-height: 86px;
  display: grid !important;
  grid-template-columns: 16.719% 56.012% 25%;
  align-items: center;
  justify-content: start !important;
  gap: 0;
  padding-inline: 0 !important;
}

.site-header .site-header__brand {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: auto;
  height: 27px;
  max-width: 100%;
  object-fit: contain;
}

.site-header .site-header__nav-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.site-header__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  white-space: nowrap;
}

.site-header__menu,
.site-header__mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
}

.site-header__menu .menu-item {
  position: relative;
}

.site-header__menu a,
.site-header__mobile-menu a {
  color: #1b252f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header__menu > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 50;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header__menu .sub-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
}

.site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header__menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.site-header__menu .sub-menu a:hover {
  background: #f4f8fb;
  color: #066AAB;
}

.site-header .site-header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-header__phone-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 24px;
  border-radius: 8px;
  background: #066AAB;
  color: #fff;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header__phone-link:hover {
  background: #0a7fc7;
}

.site-header__phone-link:active {
  animation: site-header-call-press 260ms ease;
}

.site-header__phone-link svg,
.site-header__menu-toggle svg,
.site-header__panel-close svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes site-header-call-press {
  0% { transform: scale(1); }
  35% { transform: scale(0.96); }
  70% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.site-header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
  background: #fff;
  color: #1b252f;
  cursor: pointer;
}

.site-header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 28, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 9998;
}

.site-header__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-header__panel {
  position: fixed;
  inset: 0 auto 0 0 !important;
  width: min(92vw, 360px);
  height: 100vh;
  height: 100dvh;
  margin: 0 !important;
  padding: 0 12px calc(16px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  box-shadow: 20px 0 60px rgba(0,0,0,0.18);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-header__panel,
.site-header__panel * {
  box-sizing: border-box;
}

.site-header__panel.is-open {
  transform: translateX(0);
}

.site-header__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 10px 0 14px;
  border-bottom: 1px solid #dfe7ee;
  flex: 0 0 auto;
}

.site-header__panel-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
  background: #fff;
  color: #1b252f;
  cursor: pointer;
}

.site-header__panel-nav {
  flex: 0 0 auto;
  overflow-y: visible;
  padding: 12px 0;
}

.site-header__mobile-menu {
  display: grid;
  gap: 0;
}

.site-header__mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  border-bottom: 1px solid #eef2f5;
}

.site-header__mobile-menu .menu-item {
  position: relative;
}

.site-header__mobile-menu > .menu-item-has-children > a {
  padding-right: 46px;
}

.site-header__mobile-submenu-toggle {
  position: absolute;
  top: 4px;
  right: 0;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1b252f;
  cursor: pointer;
}

.site-header__mobile-submenu-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 160ms ease;
}

.site-header__mobile-menu .menu-item-has-children.is-open > .site-header__mobile-submenu-toggle::before {
  transform: rotate(225deg) translate(-1px, -2px);
}

.site-header__mobile-menu .sub-menu {
  max-height: 0;
  margin: 0;
  padding: 0 0 0 14px;
  list-style: none;
  overflow: hidden;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.site-header__mobile-menu .menu-item-has-children.is-open > .sub-menu {
  max-height: 560px;
  padding-bottom: 4px;
}

.site-header__mobile-menu .sub-menu a {
  padding: 9px 4px;
  color: #1b252f;
  font-size: 14px;
  font-weight: 600;
}

.site-header__panel-cta {
  flex: 0 0 auto;
  margin-top: 10px;
  padding-top: 0;
  background: #fff;
}

.site-header__panel-cta .site-header__phone-link {
  width: 100%;
  max-width: 100%;
  min-height: 44px;
}

.site-main {
  margin-top: 0;
  margin-block-start: 0 !important;
}

.page-template-landing .site-main,
.page-template-landing .site-main > .entry-content,
.page-template-landing .site-main > .wp-block-post-content,
.page-template-landing .entry-content > .sl-home {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid #263748;
  background: #1b252f;
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 4rem);
}

@media (max-width: 960px) {
  .site-header__inner {
    width: min(100% - 40px, 1180px) !important;
    padding-inline: 16px !important;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(240px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 27px;
  max-width: 200px;
  margin: 0 0 1.25rem;
  object-fit: contain;
}

.site-footer__brand p,
.site-footer__updates p {
  max-width: 18rem;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.site-footer__socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-footer__socials a:hover {
  border-color: #066AAB;
  background: #066AAB;
  color: #fff;
  transform: translateY(-1px);
}

.site-footer ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #66B6EA;
}

.site-footer__column a,
.site-footer__bottom a {
  font-size: 0.9rem;
}

.site-footer__form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.site-footer__form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #415569;
  border-radius: 8px;
  background: #243241;
  color: #fff;
  padding: 0 0.95rem;
  font: inherit;
}

.site-footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__form input:focus {
  border-color: #066AAB;
  outline: none;
}

.site-footer__form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #066AAB;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.site-footer__form button:hover {
  background: #0A7FC7;
  transform: translateY(-1px);
}

.site-footer__bottom {
  border-top: 1px solid #263748;
}

.site-footer__bottom-inner {
  display: flex;
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding-block: 1.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__bottom p {
  font-size: 0.88rem;
}

.sl-section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.sl-section-padding {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.sl-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.sl-hero {
  background: #1b252f;
  color: #fff;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.sl-hero-grid,
.sl-split-grid,
.sl-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sl-hero h1 {
  color: #fff;
  max-width: 12ch;
}

.sl-hero p {
  color: #fff;
  max-width: 42rem;
}

.sl-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.sl-media-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  min-height: 20rem;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: #fff;
}

.sl-section-header {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
  text-align: center;
}

.sl-section-header p {
  color: #111;
}

.sl-services {
  background: #F5F8FB;
}

.sl-services-grid,
.sl-process-grid,
.sl-price-factors,
.sl-faq-list {
  display: grid;
  gap: 1rem;
}

.sl-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.sl-service-card,
.sl-factor-card,
.sl-faq-item {
  border: 1px solid #DDE7EF;
  border-radius: 8px;
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.sl-service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}

.sl-service-card:hover {
  border-color: #066AAB;
}

.sl-service-label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1rem;
  color: #066AAB;
  font-weight: 800;
}

.sl-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.sl-check-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: #0B1F33;
  font-weight: 700;
}

.sl-check-list li::before {
  content: "";
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: #13A36F;
}

.sl-process-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.sl-step {
  text-align: center;
}

.sl-step-number {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #066AAB;
  color: #fff;
  font-weight: 800;
}

.sl-location-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.sl-city-tag {
  border: 1px solid #DDE7EF;
  border-radius: 999px;
  background: #fff;
  padding: 0.7rem 1rem;
  color: #0B1F33;
  font-weight: 700;
}

.sl-pricing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
}

.sl-price-factors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sl-faq {
  background: #F5F8FB;
}

.sl-faq-list {
  max-width: 840px;
  margin-inline: auto;
}

.sl-final-cta {
  background: #fff;
}

.sl-cta-box {
  border-radius: 16px;
  background: #1b252f;
  color: #fff;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.sl-cta-box h2 {
  color: #fff;
}

.sl-cta-box p {
  max-width: 42rem;
  margin-inline: auto;
  color: #fff;
}

.sl-kicker {
  color: #066AAB;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sl-card {
  border: 1px solid #DDE7EF;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(11, 31, 51, 0.06);
}

.sl-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.wp-block-button__link,
.wp-element-button {
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
  transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  border-color: #066AAB;
  color: #066AAB;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #066AAB;
  color: #fff;
}

@media (max-width: 1024px) {
  .site-header .site-header__inner {
    width: min(100% - 24px, 1180px) !important;
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-inline: 0 !important;
  }

  .site-header .site-header__logo {
    height: 24px;
    max-width: 100%;
  }

  .site-header .site-header__brand {
    justify-content: flex-start;
  }

  .site-header .site-header__nav-desktop,
  .site-header .site-header__actions {
    display: none !important;
  }

  .site-header .site-header__menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .site-footer__inner,
  .site-footer__bottom-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand,
  .site-footer__updates {
    grid-column: 1 / -1;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sl-hero-grid,
  .sl-split-grid,
  .sl-pricing-grid {
    grid-template-columns: 1fr;
  }

  .sl-price-factors {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__updates {
    grid-column: 1 / -1;
  }

  .site-footer__logo {
    margin-inline: auto;
  }

  .site-footer__brand p,
  .site-footer__updates p {
    margin-inline: auto;
  }

  .site-footer__socials,
  .site-footer__column ul {
    justify-content: center;
  }

  .site-footer__column ul {
    justify-items: center;
  }

  .site-footer__form {
    max-width: 360px;
    margin-inline: auto;
  }

  .site-footer__bottom ul {
    justify-content: center;
    gap: 0.85rem 1.1rem;
  }

  .site-footer__bottom-inner {
    align-items: center;
    text-align: center;
  }
}

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