body .site-header {
  background: #050a12 !important;
  background-image: none !important;
}

body .site-header .header-shell,
body .site-header .contact-bar,
body .site-header .nav {
  background: transparent !important;
  background-image: none !important;
}

html body .site-header .consultation-link {
  position: relative;
  isolation: isolate;
  color: #ffffff !important;
  border-color: #4da3ff !important;
  animation: consultation-blue-pulse 1.8s ease-in-out infinite !important;
  will-change: box-shadow, border-color;
}

@keyframes consultation-blue-pulse {
  0%,
  100% {
    border-color: rgba(77, 163, 255, 0.72);
    box-shadow:
      0 0 0 0 rgba(50, 140, 255, 0),
      0 0 8px rgba(50, 140, 255, 0.14);
  }

  45% {
    border-color: #65b4ff;
    box-shadow:
      0 0 0 5px rgba(50, 140, 255, 0.13),
      0 0 22px rgba(50, 140, 255, 0.72),
      inset 0 0 14px rgba(50, 140, 255, 0.14);
  }

  65% {
    border-color: #1e78ff;
    box-shadow:
      0 0 0 9px rgba(30, 120, 255, 0),
      0 0 12px rgba(30, 120, 255, 0.38);
  }
}

html body .site-header .consultation-link:hover,
html body .site-header .consultation-link:focus-visible {
  color: #ffffff !important;
  background: rgba(50, 140, 255, 0.16) !important;
}

.consultation-card > a {
  color: #ffffff !important;
  border-color: #4da3ff !important;
  animation: consultation-blue-pulse 1.8s ease-in-out infinite !important;
  will-change: box-shadow, border-color;
}

.consultation-card > a:hover,
.consultation-card > a:focus-visible {
  color: #ffffff !important;
  background: rgba(50, 140, 255, 0.16) !important;
}

html body .service-detail-cta .button,
html body .services-cta .button {
  color: #ffffff !important;
  border-color: #65b4ff !important;
  animation: consultation-blue-pulse 1.8s ease-in-out infinite !important;
  will-change: box-shadow, border-color;
}

html body .service-detail-cta .button:hover,
html body .service-detail-cta .button:focus-visible,
html body .services-cta .button:hover,
html body .services-cta .button:focus-visible {
  color: #ffffff !important;
  background: #236fc9 !important;
}

@keyframes contact-icon-blue-pulse {
  0%,
  100% {
    border-color: rgba(77, 163, 255, 0.42);
    box-shadow: 0 0 5px rgba(50, 140, 255, 0.08);
  }

  50% {
    border-color: #328cff;
    box-shadow:
      0 0 0 3px rgba(50, 140, 255, 0.08),
      0 0 14px rgba(50, 140, 255, 0.48),
      inset 0 0 10px rgba(50, 140, 255, 0.1);
  }
}

@keyframes contact-detail-visible-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 1px rgba(50, 140, 255, 0.2));
  }

  50% {
    transform: scale(1.07);
    filter:
      drop-shadow(0 0 5px rgba(50, 140, 255, 0.9))
      drop-shadow(0 0 11px rgba(50, 140, 255, 0.62));
  }
}

html body .site-header .social-links a {
  animation: contact-icon-blue-pulse 2.4s ease-in-out infinite !important;
  will-change: box-shadow, border-color;
}

html body .site-header .social-links a:nth-child(2) {
  animation-delay: 0.32s !important;
}

html body .site-header .social-links a:nth-child(3) {
  animation-delay: 0.64s !important;
}

html body .site-header .social-links a:hover,
html body .site-header .social-links a:focus-visible {
  color: #328cff !important;
  border-color: #328cff !important;
  background: rgba(50, 140, 255, 0.13) !important;
}

@media (prefers-reduced-motion: reduce) {
  html body .site-header .consultation-link,
  .consultation-card > a,
  html body .service-detail-cta .button,
  html body .services-cta .button {
    animation: none !important;
    box-shadow: 0 0 14px rgba(50, 140, 255, 0.42) !important;
  }
}

.whatsapp-picker {
  position: fixed;
  z-index: 1000000;
  width: min(380px, calc(100vw - 24px));
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid rgba(143, 184, 238, 0.3);
  border-radius: 8px;
  background: rgba(2, 9, 20, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.whatsapp-picker[hidden] {
  display: none !important;
}

.whatsapp-picker a {
  min-height: 76px;
  padding: 13px 17px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(143, 184, 238, 0.24);
  border-radius: 6px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(5, 10, 18, 0.72);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-picker a:hover,
.whatsapp-picker a:focus {
  border-color: #0b82ff;
  background:
    linear-gradient(
      145deg,
      rgba(11, 130, 255, 0.14),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 10, 18, 0.82);
  transform: translateY(-1px);
}

.whatsapp-picker span {
  color: #328cff;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-picker strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.home-contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px) !important;
  background:
    linear-gradient(
      145deg,
      rgba(5, 10, 18, 0.98),
      rgba(7, 15, 28, 0.94)
    ),
    #050a12 !important;
  border-color: rgba(143, 184, 238, 0.17) !important;
}

.home-contact-panel::before {
  opacity: 0.24 !important;
}

.home-contact-modern-grid {
  width: 100% !important;
  max-width: 560px !important;
  padding: 12px 22px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: 1px solid rgba(143, 184, 238, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(2, 8, 17, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

.home-contact-modern-grid .home-contact-tile {
  width: 100% !important;
  min-height: 66px !important;
  padding: 11px 2px !important;
  gap: 14px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(143, 184, 238, 0.17) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-contact-modern-grid .home-contact-tile-wide {
  min-height: 70px !important;
}

.home-contact-modern-grid a.home-contact-tile {
  transition:
    color 0.2s ease,
    padding-left 0.2s ease !important;
}

.home-contact-modern-grid a.home-contact-tile:hover,
.home-contact-modern-grid a.home-contact-tile:focus {
  color: #ffffff !important;
  padding-left: 6px !important;
  background: transparent !important;
}

.home-contact-modern-grid .home-detail-icon {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border: 1px solid rgba(77, 163, 255, 0.46) !important;
  background: rgba(50, 140, 255, 0.08) !important;
  color: #ffffff !important;
  box-shadow: 0 0 5px rgba(50, 140, 255, 0.08);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease !important;
  animation: contact-detail-visible-pulse 2.1s ease-in-out infinite !important;
}

.home-contact-details .home-detail-icon,
.contact-list .contact-icon {
  animation: contact-detail-visible-pulse 2.1s ease-in-out infinite !important;
}

.home-contact-modern-grid .home-contact-tile:nth-child(2) .home-detail-icon {
  animation-delay: 0.24s !important;
}

.home-contact-modern-grid .home-contact-tile:nth-child(3) .home-detail-icon {
  animation-delay: 0.48s !important;
}

.home-contact-modern-grid .home-contact-tile:nth-child(4) .home-detail-icon {
  animation-delay: 0.72s !important;
}

.home-contact-modern-grid .home-contact-tile:nth-child(5) .home-detail-icon {
  animation-delay: 0.96s !important;
}

.home-contact-modern-grid .contact-copy span {
  color: #ffffff !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
}

.home-contact-modern-grid .home-contact-tile:hover .contact-copy span,
.home-contact-modern-grid .home-contact-tile:focus-visible .contact-copy span {
  color: #328cff !important;
}

.home-contact-modern-grid .home-contact-tile:hover .home-detail-icon,
.home-contact-modern-grid .home-contact-tile:focus-visible .home-detail-icon {
  color: #328cff !important;
  background: rgba(50, 140, 255, 0.13) !important;
  border-color: #328cff !important;
}

.home-contact-modern-grid .home-contact-socials {
  width: 100% !important;
  padding: 14px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.home-contact-modern-grid .home-contact-socials a {
  width: 40px !important;
  height: 40px !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease !important;
  animation: contact-icon-blue-pulse 2.4s ease-in-out infinite !important;
}

.home-contact-modern-grid .home-contact-socials a:nth-child(2) {
  animation-delay: 0.32s !important;
}

.home-contact-modern-grid .home-contact-socials a:nth-child(3) {
  animation-delay: 0.64s !important;
}

.home-contact-modern-grid .home-contact-socials a:hover,
.home-contact-modern-grid .home-contact-socials a:focus-visible {
  color: #328cff !important;
  background: rgba(50, 140, 255, 0.13) !important;
  border-color: #328cff !important;
}

.home-contact-modern-grid .home-contact-socials a:hover svg,
.home-contact-modern-grid .home-contact-socials a:focus-visible svg {
  color: #328cff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.contact-page .contact-list-refined {
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 22px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: 1px solid rgba(143, 184, 238, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(5, 10, 18, 0.46) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

.contact-page .contact-list-refined li {
  width: 100% !important;
  min-height: 66px !important;
  padding: 11px 2px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(143, 184, 238, 0.17) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-page .contact-list-refined li:last-child {
  border-bottom: 0 !important;
}

.contact-page .contact-list-refined .contact-icon {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border: 1px solid rgba(77, 163, 255, 0.46) !important;
  background: rgba(50, 140, 255, 0.08) !important;
  color: #ffffff !important;
  box-shadow: 0 0 5px rgba(50, 140, 255, 0.08) !important;
  animation: contact-detail-visible-pulse 2.1s ease-in-out infinite !important;
}

.contact-page .contact-list-refined li:nth-child(2) .contact-icon {
  animation-delay: 0.24s !important;
}

.contact-page .contact-list-refined li:nth-child(3) .contact-icon {
  animation-delay: 0.48s !important;
}

.contact-page .contact-list-refined li:nth-child(4) .contact-icon {
  animation-delay: 0.72s !important;
}

.contact-page .contact-list-refined li:nth-child(5) .contact-icon {
  animation-delay: 0.96s !important;
}

.contact-page .contact-list-refined .contact-copy span {
  color: #ffffff !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
}

.contact-page .contact-list-refined li:hover .contact-copy span {
  color: #328cff !important;
}

.contact-page .contact-list-refined li:hover .contact-icon {
  color: #328cff !important;
  background: rgba(50, 140, 255, 0.13) !important;
  border-color: #328cff !important;
}

@media (prefers-reduced-motion: reduce) {
  html body .site-header .social-links a,
  .home-contact-modern-grid .home-detail-icon,
  .home-contact-modern-grid .home-contact-socials a,
  .home-contact-details .home-detail-icon,
  .contact-list .contact-icon {
    animation: none !important;
  }
}

body .page-hero {
  min-height: 490px !important;
  padding: 0 20px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
}

body .page-hero .page-hero-inner {
  width: min(1120px, 100%) !important;
  margin: 0 auto !important;
  padding-top: 115px !important;
  position: relative !important;
  z-index: 2 !important;
}

body .page-hero .eyebrow {
  display: inline-flex !important;
  margin: 0 0 42px !important;
}

body .page-hero h1 {
  max-width: 1050px !important;
  margin: 0 0 42px !important;
  font-size: clamp(42px, 3.4vw, 58px) !important;
  line-height: 1.12 !important;
}

body .page-hero .lead {
  max-width: 920px !important;
  margin: 0 !important;
  font-size: 22px !important;
  line-height: 1.55 !important;
}

.site-footer {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  padding: 0 24px !important;
  overflow: visible !important;
  border: 0 !important;
  border-top: 1px solid rgba(50, 140, 255, 0.22) !important;
  border-radius: 0 !important;
  background: #020914 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 -8px 24px rgba(0, 20, 50, 0.12) !important;
}

.site-footer::before,
.site-footer::after {
  content: none !important;
  display: none !important;
}

.site-footer-inner {
  width: min(1400px, 100%) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 14px 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 30px !important;
  font-size: 13px !important;
}

.footer-copyright {
  grid-column: 1 !important;
  justify-self: start !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.footer-slogan {
  grid-column: 2 !important;
  justify-self: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #328cff !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.footer-links {
  grid-column: 3 !important;
  justify-self: end !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-links a,
.footer-links a:visited {
  position: static !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px 0 !important;
  display: inline-flex !important;
  color: #ffffff !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.footer-links a::before,
.footer-links a::after,
.footer-slogan::before,
.footer-slogan::after {
  content: none !important;
  display: none !important;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #328cff !important;
}

.legal-provider-card .legal-info-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-areas:
    "manager address"
    "phone1 phone1"
    "email website" !important;
  gap: 14px !important;
}

.legal-provider-card .legal-info-list.has-secondary-phone {
  grid-template-areas:
    "manager address"
    "phone1 phone2"
    "email website" !important;
}

.legal-provider-card .legal-info-list > div {
  grid-column: auto !important;
  min-height: 105px !important;
  padding: 22px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 8px !important;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(5, 10, 18, 0.5) !important;
  border: 1px solid rgba(143, 184, 238, 0.2) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2) !important;
}

.legal-provider-card .legal-address {
  grid-area: address !important;
}

.legal-provider-card .legal-manager {
  grid-area: manager !important;
}

.legal-provider-card .legal-phone-primary {
  grid-area: phone1 !important;
}

.legal-provider-card .legal-phone-secondary {
  grid-area: phone2 !important;
}

.legal-provider-card .legal-email {
  grid-area: email !important;
}

.legal-provider-card .legal-website {
  grid-area: website !important;
}

.legal-provider-card .legal-info-list > div::before,
.legal-provider-card .legal-info-list > div::after {
  content: none !important;
  display: none !important;
}

.legal-provider-card .legal-info-list span {
  color: #328cff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.legal-provider-card .legal-info-list strong {
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 1320px) {
  .home-contact-panel {
    grid-template-columns: 1fr !important;
  }

  .home-contact-modern-grid {
    max-width: 680px !important;
    justify-self: start !important;
  }
}

@media (max-width: 700px) {
  .whatsapp-picker {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .whatsapp-picker a {
    min-height: 78px;
    padding: 14px 16px;
    gap: 5px;
  }

  .whatsapp-picker span {
    font-size: 13px;
  }

  .whatsapp-picker strong {
    font-size: 15px;
  }

  .home-contact-modern-grid {
    max-width: none !important;
    padding: 8px 14px 12px !important;
  }

  .home-contact-modern-grid .home-contact-tile,
  .home-contact-modern-grid .home-contact-tile-wide {
    min-height: 60px !important;
    padding: 10px 0 !important;
    gap: 12px !important;
  }

  .home-contact-modern-grid .home-detail-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .home-contact-modern-grid .contact-copy span {
    font-size: 14px !important;
  }

  body .page-hero {
    min-height: 360px !important;
    padding: 0 20px !important;
  }

  body .page-hero .page-hero-inner {
    padding-top: 72px !important;
  }

  body .page-hero .eyebrow {
    margin-bottom: 28px !important;
  }

  body .page-hero h1 {
    margin-bottom: 28px !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
  }

  body .page-hero .lead {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }

  .site-footer {
    padding: 0 16px !important;
  }

  .site-footer-inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 14px !important;
    padding: 22px 0 !important;
    text-align: center !important;
  }

  .footer-links,
  .footer-slogan,
  .footer-copyright {
    grid-column: 1 !important;
    justify-self: center !important;
    text-align: center !important;
  }

  .footer-links {
    grid-row: 1 !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .footer-slogan {
    grid-row: 2 !important;
    white-space: normal !important;
  }

  .footer-copyright {
    grid-row: 3 !important;
    white-space: normal !important;
  }

  .legal-provider-card .legal-info-list,
  .legal-provider-card .legal-info-list.has-secondary-phone {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "manager"
      "address"
      "phone1"
      "phone2"
      "email"
      "website" !important;
  }

  .legal-provider-card .legal-info-list > div {
    grid-column: 1 !important;
    min-height: 92px !important;
    padding: 20px !important;
  }

  .legal-provider-card .legal-info-list strong {
    font-size: 16px !important;
  }
}
