﻿:root {
  --ink: #0f172a;
  --blue: #2454a6;
  --cyan: #3b6fc4;
  --gold: #1f1f24;
  --cream: #f8faff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  /* background: radial-gradient(circle at 15% 20%, rgba(59, 111, 196, 0.16), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(17, 24, 39, 0.1), transparent 30%),
    var(--cream); */
    background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(#0f172a 0.35px, transparent 0.35px);
  background-size: 7px 7px;
}

.section-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(37, 84, 166, 0.12);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.section-shell:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 84, 166, 0.2);
  box-shadow: 0 25px 45px -35px rgba(15, 23, 42, 0.7);
}

.top-progress {
  transform-origin: left;
  transform: scaleX(0);
}

.premium-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(122, 168, 246, 0.2), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(59, 111, 196, 0.22), transparent 36%),
    linear-gradient(145deg, #050914 8%, #12336b 48%, #2454a6 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.premium-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-stage {
  width: min(100%, 23rem);
}

.loader-rings {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 1rem;
}

.loader-rings::before,
.loader-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(214, 231, 255, 0.35);
}

.loader-rings::before {
  animation: loaderPulse 1.8s ease-out infinite;
}

.loader-rings::after {
  inset: 10px;
  border-color: rgba(158, 195, 246, 0.56);
  animation: loaderPulse 1.8s ease-out infinite 0.55s;
}

.loader-core {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(183, 213, 255, 0.6);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(125, 170, 241, 0.08));
  box-shadow: 0 16px 32px -20px rgba(8, 29, 65, 0.9);
  animation: loaderCoreSpin 1.4s linear infinite;
}

.loader-core-icon {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.loader-progress {
  width: min(100%, 15.5rem);
  height: 6px;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  background: rgba(219, 233, 255, 0.22);
  border: 1px solid rgba(211, 227, 250, 0.26);
  overflow: hidden;
}

.loader-progress span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8eb9f4 0%, #d7e8ff 52%, #8eb9f4 100%);
  box-shadow: 0 0 18px rgba(164, 201, 255, 0.78);
  animation: loaderSweep 1.25s ease-in-out infinite;
}

@keyframes loaderPulse {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }
  45% {
    opacity: 0.85;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes loaderCoreSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(285%);
  }
}

@media (max-width: 767px) {
  .loader-rings {
    width: 92px;
    height: 92px;
    margin-bottom: 0.9rem;
  }

  .loader-core {
    width: 50px;
    height: 50px;
    font-size: 0.86rem;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(59, 111, 196, 0.65);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 59, 105, 0.45);
  background: rgba(59, 111, 196, 0.12);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(59, 111, 196, 0.85);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-from-top {
  transform: translateY(-20px);
}

.reveal.reveal-from-bottom {
  transform: translateY(20px);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  animation: revealPop 0.65s ease both;
}

.reveal.reveal-left.show {
  animation: revealLeft 0.65s ease both;
}

.reveal.reveal-right.show {
  animation: revealRight 0.65s ease both;
}

@keyframes revealPop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealLeft {
  0% {
    opacity: 0;
    transform: translateX(-26px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes revealRight {
  0% {
    opacity: 0;
    transform: translateX(26px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.75s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 15, 32, 0.78) 20%, rgba(17, 34, 66, 0.36) 70%, rgba(20, 49, 97, 0.2) 100%);
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.41;
  transform: scale(1.08);
  transition: transform 7s ease;
  filter: saturate(1.05) contrast(1.02);
}

.hero-slide.is-active .hero-slide-media {
  transform: scale(1);
}

.hero-dot.active-dot {
  width: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
}

#main-header > div {
  border: 1px solid rgba(184, 198, 219, 0.46);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#main-header:not(.sticky-scrolled) .nav-link,
#main-header:not(.sticky-scrolled) #services-desktop-toggle {
  color: #1e4f9c;
}

.home-page #main-header:not(.sticky-scrolled) > div {
  border-color: rgba(219, 230, 246, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.home-page #main-header:not(.sticky-scrolled) .nav-link,
.home-page #main-header:not(.sticky-scrolled) #services-desktop-toggle {
  color: #ffffff;
}

.home-page #main-header:not(.sticky-scrolled) #menu-toggle {
  border-color: rgba(226, 236, 251, 0.5);
  background: rgba(15, 23, 42, 0.2);
  color: #eaf1ff;
}

.home-page #hero-slider {
  height: 84vh;
  min-height: 100vh;
  max-height: 930px;
}

.home-page #home .hero-slide {
  color: #f8fafc;
}

.home-page #home .hero-slide::before {
  background: linear-gradient(112deg, rgba(2, 6, 23, 0.8) 12%, rgba(2, 6, 23, 0.58) 58%, rgba(15, 23, 42, 0.42) 100%);
}

.home-page #home .hero-slide .text-blue-100,
.home-page #home .hero-slide .text-white {
  color: #dbeafe !important;
}

.home-page #home .hero-slide .border-white\/30,
.home-page #home .hero-slide .border-white\/20,
.home-page #home .hero-slide .border-white\/45,
.home-page #home .hero-slide .border-white\/35 {
  border-color: rgba(255, 255, 255, 0.36) !important;
}

.home-page #home .hero-slide .bg-white\/10,
.home-page #home .hero-slide .bg-white\/15 {
  background: rgba(15, 23, 42, 0.42) !important;
}

.header-row {
  position: relative;
}

.header-cta .open-consultation-modal {
  border-radius: 999px;
  padding-inline: 1.35rem;
  padding-block: 0.65rem;
  font-size: 0.96rem;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .header-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    column-gap: 0;
  }

  .header-row > a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .header-row > a img {
    height: clamp(3.1rem, 3.25vw, 4rem);
    width: auto;
  }

  .header-row > nav {
    width: auto;
    margin-right: auto;
    justify-content: flex-start;
    gap: clamp(1.35rem, 1.95vw, 2.2rem);
    font-size: 0.99rem;
  }

  .header-row .header-cta {
    margin-left: auto;
  }
}

.submenu-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-services-menu:hover .submenu-panel,
.nav-services-menu:focus-within .submenu-panel,
.submenu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  height: 100vh;
  height: 100dvh;
  width: min(88vw, 360px);
  transform: translateX(102%);
  transition: transform 0.35s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  background: #ffffff;
  box-shadow: -18px 0 45px rgba(15, 23, 42, 0.22);
}

.consultation-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(70, 130, 230, 0.34), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(15, 48, 104, 0.3), transparent 40%),
    rgba(4, 11, 24, 0.77);
  backdrop-filter: blur(11px) saturate(125%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consultation-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.consultation-modal-box {
  position: relative;
  width: min(100%, 52rem);
  border-radius: 1.75rem;
  border: 1px solid rgba(203, 220, 246, 0.68);
  background: #f8fbff;
  box-shadow: 0 34px 88px -44px rgba(4, 10, 24, 0.82);
  overflow: hidden;
  transform: translateY(16px) scale(0.975);
  transition: transform 0.32s ease;
}

.consultation-modal-overlay.show .consultation-modal-box {
  transform: translateY(0) scale(1);
}

.consultation-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.consultation-modal-close {
  position: absolute;
  right: 0.95rem;
  top: 0.95rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(194, 213, 241, 0.94);
  background: rgba(255, 255, 255, 0.92);
  color: #234c89;
  font-size: 0.95rem;
  box-shadow: 0 12px 22px -16px rgba(8, 26, 55, 0.8);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.consultation-modal-close:hover {
  background: #e1ecff;
  color: #173c75;
  transform: translateY(-1px);
}

.consultation-modal-panel {
  position: relative;
  padding: clamp(1.45rem, 2.8vw, 2.2rem);
  background:
    radial-gradient(circle at 80% 14%, rgba(153, 210, 255, 0.25), transparent 40%),
    linear-gradient(140deg, #0f2a58 6%, #1f4fa3 58%, #2e66bf 100%);
  color: #ffffff;
}

.consultation-modal-panel::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -3.8rem;
  width: 10.5rem;
  height: 10.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.consultation-modal-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #eaf4ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
}

.consultation-modal-title {
  margin: 0.95rem 0 0;
  color: #ffffff;
  font-size: clamp(1.68rem, 2.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.consultation-modal-subtitle {
  margin: 0.68rem 0 0;
  color: rgba(236, 244, 255, 0.9);
  font-size: 0.93rem;
  line-height: 1.58;
}

.consultation-modal-highlights {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.62rem;
}

.consultation-modal-highlights p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  color: #f3f8ff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.consultation-modal-highlights i {
  margin-top: 0.2rem;
  color: #9fd5ff;
  font-size: 0.7rem;
}

.consultation-modal-content {
  padding: clamp(1.2rem, 2.5vw, 1.9rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.consultation-modal-form-title {
  margin: 0;
  color: #123469;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consultation-form-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem;
}

.consultation-form-field {
  display: grid;
  gap: 0.4rem;
}

.consultation-form-field-full {
  grid-column: 1 / -1;
}

.consultation-form-field label {
  color: #2d4365;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.consultation-form-field input,
.consultation-form-field textarea {
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid #cad8ec;
  background: #f3f7fc;
  color: #1d2e48;
  font-size: 0.93rem;
  line-height: 1.3;
  padding: 0.74rem 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.consultation-form-field textarea {
  min-height: 5.85rem;
  resize: vertical;
}

.consultation-form-field input::placeholder,
.consultation-form-field textarea::placeholder {
  color: #8a9ab0;
}

.consultation-form-field input:focus,
.consultation-form-field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2f67bf;
  box-shadow: 0 0 0 3px rgba(47, 103, 191, 0.15);
}

.consultation-form-submit {
  margin-top: 0.94rem;
  width: 100%;
  border: 0;
  border-radius: 0.78rem;
  background: linear-gradient(135deg, #0f2a58 0%, #1f4fa3 66%, #2f67bf 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.82rem 1.2rem;
  box-shadow: 0 18px 32px -24px rgba(14, 39, 82, 0.85);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form-submit:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 22px 34px -22px rgba(14, 39, 82, 0.78);
}

@media (max-width: 767px) {
  .consultation-modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: calc(0.72rem + env(safe-area-inset-top, 0px)) 0.72rem calc(0.72rem + env(safe-area-inset-bottom, 0px));
    overscroll-behavior: contain;
  }

  .consultation-modal-box {
    width: min(100%, 30rem);
    max-height: calc(100vh - 1.44rem);
    max-height: calc(100dvh - 1.44rem);
    margin: 0 auto;
    border-radius: 1.2rem;
  }

  .consultation-modal-layout {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 1.44rem);
    max-height: calc(100dvh - 1.44rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .consultation-modal-panel {
    padding: 1rem 2.95rem 0.92rem 1rem;
  }

  .consultation-modal-content {
    padding: 0.9rem 0.92rem 1rem;
  }

  .consultation-form-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .consultation-modal-title {
    font-size: 1.42rem;
  }

  .consultation-modal-subtitle {
    font-size: 0.89rem;
  }

  .consultation-modal-highlights {
    gap: 0.56rem;
  }

  .consultation-modal-close {
    right: calc(0.62rem + env(safe-area-inset-right, 0px));
    top: calc(0.62rem + env(safe-area-inset-top, 0px));
    width: 2rem;
    height: 2rem;
    z-index: 6;
  }

  .consultation-form-submit {
    border-radius: 0.72rem;
  }
}

.footer-shell {
  background: radial-gradient(circle at 5% 5%, rgba(59, 111, 196, 0.28), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(37, 84, 166, 0.24), transparent 34%),
    linear-gradient(145deg, #0b1224 10%, #13284f 58%, #1f4fa3 100%);
}

.work-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 247, 255, 0.95) 100%);
}

.work-feature-card {
  overflow: hidden;
  border: 1px solid rgba(37, 84, 166, 0.14);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.45);
}

.about-premium-wrap {
  position: relative;
  background: #ffffff;
}

.about-premium-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  /* border: 1px solid #e9edf4; */
  background: #ffffff;
  padding: clamp(1.3rem, 2.4vw, 2.5rem);
}

.about-premium-shell::before {
  content: "";
  position: absolute;
  left: -2.8rem;
  top: 9.9rem;
  width: 5.5rem;
  height: 8rem;
  background-image: radial-gradient(circle, rgba(30, 41, 59, 0.32) 1.5px, transparent 1.6px);
  background-size: 0.9rem 0.9rem;
  opacity: 0.55;
  pointer-events: none;
}

.about-premium-shell::after {
  display: none;
}

.about-media-col {
  position: relative;
  z-index: 1;
}

.about-primary-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 38px -30px rgba(15, 23, 42, 0.6);
  height: clamp(25rem, 45vw, 34rem);
}

.about-primary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-experience-card {
  position: absolute;
  left: -1.3rem;
  top: 2.8rem;
  z-index: 3;
  width: min(12.2rem, 60%);
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #18263a 0%, #101a29 100%);
  color: #f8fafc;
  padding: 1.8rem 1.55rem;
  box-shadow: 0 22px 34px -24px rgba(15, 23, 42, 0.88);
}

.about-exp-number {
  font-size: clamp(2.3rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-exp-text {
  margin-top: 0.74rem;
  font-size: 1.03rem;
  color: #e2e8f0;
}

.about-secondary-media {
  position: absolute;
  right: 0.15rem;
  bottom: 1.15rem;
  z-index: 2;
  width: clamp(12rem, 35.5%, 14.8rem);
  overflow: hidden;
  border-radius: 1.2rem;
  border: 6px solid #ffffff;
  box-shadow: 0 24px 45px -30px rgba(15, 23, 42, 0.78);
}

.about-secondary-media img {
  width: 100%;
  height: clamp(11.3rem, 21vw, 13.9rem);
  object-fit: cover;
}

.about-copy-col {
  position: relative;
  z-index: 1;
  padding-right: clamp(1rem, 2.2vw, 3.4rem);
}

.about-ghost-title {
  position: absolute;
  left: 0;
  top: -0.7rem;
  z-index: 0;
  margin: 0;
  color: rgba(30, 41, 59, 0.042);
  font-size: clamp(4.1rem, 8.6vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: capitalize;
  pointer-events: none;
}

.about-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.65rem;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(30, 41, 59, 0.3);
}

.about-copy-col h2 {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  max-width: 11ch;
  color: #1e293b;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.about-content-grid {
  position: relative;
  z-index: 1;
  margin-top: 1.55rem;
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(12.4rem, 0.8fr);
}

.about-content-grid p {
  margin: 0;
  color: #556376;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  max-width: 34ch;
  line-height: 1.75;
}

.about-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #4b5567;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.45;
}

.about-feature-list i {
  margin-top: 0.22rem;
  color: #1f2937;
  font-size: 0.92rem;
}

.about-cta-row {
  margin-top: 1.9rem;
  position: relative;
  z-index: 2;
}

.about-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.88rem 1.6rem;
  border: 1px solid #1e40af;
  box-shadow: 0 14px 24px -16px rgba(30, 64, 175, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-read-more:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 20px 30px -18px rgba(30, 64, 175, 0.9);
}

.about-grid-box {
  position: absolute;
  right: 0.95rem;
  top: 58%;
  width: 8.2rem;
  height: 8.2rem;
  border: 1px solid rgba(30, 41, 59, 0.16);
  background-image: linear-gradient(rgba(30, 41, 59, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.14) 1px, transparent 1px);
  background-size: 2.73rem 2.73rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-grid-dot {
  position: absolute;
  right: -0.6rem;
  top: calc(58% + 3.9rem);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(59, 111, 196, 0.18);
  border: 1px solid rgba(59, 111, 196, 0.55);
  pointer-events: none;
}

.services-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #edf1f2 0%, #e9eeef 100%);
}

.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 82%, rgba(148, 163, 184, 0.13), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(148, 163, 184, 0.11), transparent 35%);
  opacity: 0.9;
}

.services-shell {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.8rem, 5vw, 4.8rem);
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1f8e95;
  color: #ffffff;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.46rem 0.95rem;
  text-transform: uppercase;
}

.services-head h2 {
  margin: 1rem 0 0;
  color: #111827;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-head p:last-child {
  margin: 1rem auto 0;
  max-width: 58ch;
  color: #5b6472;
  font-size: 1.06rem;
  line-height: 1.6;
}

.services-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: start;
}

.services-offer-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d9e0e8;
  border-radius: 1.15rem;
  min-height: 20.6rem;
  padding: 1.6rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 18px 34px -34px rgba(15, 23, 42, 0.52);
}

.services-offer-index {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f4f7;
  color: #565f6d;
  font-size: 0.9rem;
  font-weight: 700;
}

.services-offer-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  border: 1px solid #dce4ef;
  background: linear-gradient(150deg, #f9fbff, #f0f4fa);
  color: #1f334f;
  font-size: 1.35rem;
}

.services-offer-card h3 {
  margin: 0.2rem 0 0;
  color: #0f172a;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.services-offer-card p {
  margin: 0;
  color: #4f5d72;
  font-size: 1.02rem;
  line-height: 1.6;
}

.services-offer-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.services-offer-link i {
  font-size: 1rem;
}

.services-offer-link:hover {
  color: #2454a6;
}

@media (min-width: 1100px) {
  .services-offer-card:nth-child(2),
  .services-offer-card:nth-child(4) {
    margin-top: -2.9rem;
  }
}

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

  .services-offer-card {
    min-height: 18.8rem;
  }
}

@media (max-width: 767px) {
  .services-head p:last-child {
    font-size: 0.95rem;
  }

  .services-offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-offer-card {
    min-height: 0;
    padding: 1.2rem 1rem 1.1rem;
    gap: 0.68rem;
  }

  .services-offer-icon {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1.15rem;
  }

  .services-offer-card h3 {
    font-size: 1.52rem;
  }

  .services-offer-card p {
    font-size: 0.93rem;
  }

  .services-offer-link {
    font-size: 0.98rem;
  }
}

.service-neo-card {
  position: relative;
  border-radius: 1.25rem;
  border: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: 0 32px 56px -40px rgba(3, 10, 24, 0.9);
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-neo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%);
  opacity: 0.62;
}

.service-neo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 44px 64px -44px rgba(8, 15, 32, 1);
}

.service-card-media {
  position: relative;
  padding: 0;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.08) 12%, rgba(4, 12, 24, 0.52) 100%);
}

.service-card-media img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card-media-wide img {
  height: 245px;
}

.service-neo-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.service-card-content {
  padding: 1.3rem 1.3rem 1.4rem;
}

.service-icon-wrap {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  color: #dbeafe;
  font-size: 1rem;
}

.service-card-content h3 {
  margin-top: 0.7rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.18;
}

.service-card-content ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.42rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.service-card-content ul li {
  position: relative;
  padding-left: 1rem;
}

.service-card-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #93c5fd;
}

.service-card-content-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 1.8rem;
}

.service-inline-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: min(100%, 34rem);
}

.service-insurance-list {
  display: block;
  columns: 2;
  column-gap: 1.2rem;
}

.service-insurance-list li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}

@media (max-width: 1023px) {
  .about-premium-shell {
    padding: clamp(1.05rem, 2.2vw, 1.4rem);
  }

  .about-premium-shell::before {
    left: -1.2rem;
    top: 7.2rem;
  }

  .about-primary-media {
    height: clamp(22rem, 65vw, 28rem);
  }

  .about-experience-card {
    left: 0.75rem;
    top: 0.9rem;
  }

  .about-secondary-media {
    right: 0.55rem;
    bottom: 0.75rem;
    width: clamp(10.5rem, 37vw, 14rem);
  }

  .about-copy-col {
    padding-right: 0;
  }

  .about-copy-col h2 {
    max-width: 100%;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-content-grid p {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
  }

  .about-grid-box,
  .about-grid-dot {
    display: none;
  }

  .about-cta-row {
    margin-top: 1.6rem;
  }

  .service-insurance-list {
    columns: 1;
  }

  .service-inline-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {
  .about-premium-shell {
    border-radius: 1.4rem;
    padding: 0.95rem;
  }

  .about-premium-shell::before {
    display: none;
  }

  .about-primary-media {
    height: 21.3rem;
    border-radius: 1.1rem;
  }

  .about-experience-card {
    left: 0.6rem;
    top: 0.7rem;
    width: min(9.6rem, 56%);
    padding: 1rem 0.9rem;
    border-radius: 0.9rem;
  }

  .about-exp-text {
    margin-top: 0.48rem;
    font-size: 0.82rem;
  }

  .about-secondary-media {
    right: 0.35rem;
    bottom: 0.45rem;
    width: min(48%, 10.8rem);
    border-width: 4px;
    border-radius: 0.9rem;
  }

  .about-secondary-media img {
    height: 8.6rem;
  }

  .about-ghost-title {
    top: -0.35rem;
  }

  .about-kicker {
    margin-top: 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
  }

  .about-copy-col h2 {
    margin-top: 0.75rem;
    font-size: clamp(2rem, 8.9vw, 2.5rem);
    line-height: 1.15;
  }

  .about-content-grid p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .about-feature-list li {
    font-size: 0.98rem;
  }

  .about-cta-row {
    margin-top: 1.35rem;
  }

  .about-read-more {
    width: 100%;
    max-width: 13rem;
  }

  .services-shell {
    padding-block: 2.6rem 3rem;
  }

  .service-card-media img {
    height: 170px;
  }

  .service-card-media-wide img {
    height: 208px;
  }

  .service-card-content h3 {
    font-size: 1.35rem;
  }
}

.our-work-slider {
  margin-inline: -0.35rem;
}

.our-work-slider .slick-slide {
  padding: 0.35rem;
}

.work-slide-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(37, 84, 166, 0.16);
  min-height: 310px;
  background: #dbeafe;
}

.work-slide-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.work-slide-card:hover img {
  transform: scale(1.06);
}

.work-slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.86) 76%);
}

.work-slide-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #2454a6;
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.55rem;
  text-transform: uppercase;
}

.work-slide-overlay h3 {
  margin-top: 0.55rem;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.our-work-slider .slick-dots li button:before {
  color: #2454a6;
  opacity: 0.35;
}

.our-work-slider .slick-dots li.slick-active button:before {
  color: #2454a6;
  opacity: 1;
}

.our-work-slider .slick-dots {
  bottom: -34px;
}

.our-work-slider .slick-prev,
.our-work-slider .slick-next {
  width: 36px;
  height: 36px;
  z-index: 2;
}

.our-work-slider .slick-prev:before,
.our-work-slider .slick-next:before {
  color: #2454a6;
  font-size: 32px;
  opacity: 0.95;
}

.work-mini-card {
  border: 1px solid rgba(37, 84, 166, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.7);
}

.work-mini-card h3 {
  margin-top: 0.6rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
}

.work-mini-card p {
  margin-top: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
}

.work-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(37, 84, 166, 0.2);
  background: rgba(59, 111, 196, 0.08);
  color: #1f4fa3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  text-transform: uppercase;
}

.work-counter-band {
  margin-top: 3.2rem;
}

.work-counter-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(110deg, #010b18 0%, #041325 52%, #07192f 100%);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-counter-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(300deg, rgba(59, 130, 246, 0.14), transparent 44%);
}

.work-counter-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(65deg, transparent 0 6%, rgba(255, 255, 255, 0.04) 6% 9%, transparent 9% 80%, rgba(255, 255, 255, 0.05) 80% 84%, transparent 84% 100%);
}

.work-counter-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.work-counter-icon {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.6rem;
  box-shadow: 0 14px 24px -20px rgba(255, 255, 255, 0.75);
}

.work-counter-copy {
  min-width: 0;
}

.work-counter-value {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.work-counter-label {
  margin: 0.6rem 0 0;
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-quote-shell {
  background: #f5f6f8;
  border: 1px solid #e6eaf0;
  padding: clamp(1.2rem, 2.6vw, 2rem);
}

.contact-quote-grid {
  display: grid;
  gap: 1.7rem;
  grid-template-columns: 1.06fr 0.9fr;
  align-items: stretch;
}

.contact-quote-form-wrap {
  position: relative;
  padding: clamp(0.6rem, 1.4vw, 1.2rem);
}

.contact-quote-ghost {
  position: absolute;
  left: 0.7rem;
  top: 0;
  margin: 0;
  color: rgba(15, 23, 42, 0.045);
  font-size: clamp(4rem, 7.7vw, 6.7rem);
  font-weight: 700;
  line-height: 0.9;
  pointer-events: none;
}

.contact-quote-kicker {
  position: relative;
  margin: 1.7rem 0 0;
  color: #1f2937;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-quote-form-wrap h2 {
  position: relative;
  margin-top: 1rem;
  color: #1e293b;
  font-size: clamp(2.05rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.contact-quote-form {
  margin-top: 1.9rem;
  display: grid;
  gap: 1rem;
}

.contact-quote-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-quote-form input,
.contact-quote-form textarea {
  width: 100%;
  border: 1px solid #d9dee6;
  background: #eceef2;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.98rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-quote-form textarea {
  resize: vertical;
  min-height: 9.4rem;
}

.contact-quote-form input::placeholder,
.contact-quote-form textarea::placeholder {
  color: #6b7280;
}

.contact-quote-form input:focus,
.contact-quote-form textarea:focus {
  border-color: #1e40af;
  background: #f8fafc;
}

.contact-quote-form button {
  width: fit-content;
  min-width: 11.2rem;
  background: #1f2937;
  color: #ffffff;
  border: 1px solid #1f2937;
  padding: 0.95rem 1.35rem;
  font-size: 1.03rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-quote-form button:hover {
  transform: translateY(-2px);
  background: #0f172a;
  box-shadow: 0 16px 22px -18px rgba(15, 23, 42, 0.8);
}

.contact-quote-media {
  overflow: hidden;
  min-height: 33rem;
}

.contact-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-page-main {
  position: relative;
}

.contact-stage-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #e3e8ef;
  background: #f5f6f8;
  padding: clamp(1.4rem, 2.9vw, 2.3rem) clamp(0.9rem, 2.4vw, 1.45rem) clamp(1.3rem, 2.8vw, 2.15rem);
}

.contact-stage-head {
  position: relative;
  text-align: center;
 margin-bottom: -52px;
    z-index: 99;
}

.contact-stage-ghost {
  margin: 0;
  color: rgba(15, 23, 42, 0.04);
  font-size: clamp(3.5rem, 9.2vw, 6.8rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.contact-stage-head h1 {
  position: relative;
  z-index: 1;
  margin: clamp(-1.15rem, -2vw, -0.7rem) 0 0;
  color: #1a2943;
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.contact-stage-ring {
  position: absolute;
  top: 30%;
  left: 3.8%;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 999px;
  border: 6px solid rgba(100, 116, 139, 0.13);
  pointer-events: none;
}

.contact-stage-ring-two {
  top: 37%;
  left: 49%;
  width: 3.3rem;
  height: 3.3rem;
  border-width: 4px;
  opacity: 0.48;
}

.contact-stage-doodle {
  position: absolute;
  right: 2.6%;
  top: 43%;
  width: 9rem;
  height: 5.8rem;
  border: 4px solid rgba(148, 163, 184, 0.55);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 98% 0;
  transform: rotate(18deg);
  pointer-events: none;
}

.contact-stage-doodle::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  bottom: -0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 4px solid rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

.contact-overlay-wrap {
  position: relative;
  max-width: 82rem;
  margin: 0 auto;
  min-height: clamp(25rem, 40vw, 32rem);
  padding: clamp(0.8rem, 1.6vw, 1.3rem) 0;
}

.contact-center-media {
  position: relative;
  z-index: 1;
  width: clamp(24rem, 36vw, 34.5rem);
  margin: 0 auto;
  height: clamp(21rem, 32vw, 27.2rem);
  overflow: hidden;
  border: 1px solid #d7dde8;
  border-radius: 0.6rem;
  box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.8);
}

.contact-center-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-card,
.contact-form-card {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(18.8rem, 25.5vw, 23.5rem);
  border-radius: 0.6rem;
}

.contact-info-card {
  left: 50%;
  transform: translate(-160%, -50%);
  background: linear-gradient(152deg, #101927, #1f324f 92%);
  color: #f8fafc;
  padding: clamp(1.15rem, 2.2vw, 1.85rem);
  box-shadow: 0 24px 40px -30px rgba(15, 23, 42, 0.95);
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
}

.contact-info-item + .contact-info-item {
  margin-top: 1.15rem;
}

.contact-info-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #16253b;
  font-size: 0.88rem;
}

.contact-info-label {
  margin: 0 0 0.32rem;
  color: #96a9c8;
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-info-card a,
.contact-info-card p:last-child {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #c9ddff;
}

.contact-form-card {
  left: 50%;
  right: auto;
  transform: translate(50%, -50%);
  border: 1px solid #ced5e0;
  background: #f3f4f6;
  padding: clamp(1.05rem, 2.1vw, 1.55rem);
  box-shadow: 0 20px 36px -32px rgba(15, 23, 42, 0.8);
}

.contact-form-card h2 {
  margin: 0;
  color: #1c2f50;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 800;
}

.contact-form-card-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.contact-form-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.contact-form-card-form input,
.contact-form-card-form textarea {
  width: 100%;
  border: 1px solid #c9d0da;
  background: #f7f8fa;
  color: #1f2937;
  padding: 0.74rem 0.82rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card-form input::placeholder,
.contact-form-card-form textarea::placeholder {
  color: #7b8798;
}

.contact-form-card-form input:focus,
.contact-form-card-form textarea:focus {
  border-color: #2454a6;
  box-shadow: 0 0 0 3px rgba(59, 111, 196, 0.15);
}

.contact-form-card-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.contact-form-card-form button {
  width: fit-content;
  min-width: 7rem;
  background: #182436;
  color: #ffffff;
  border: 1px solid #182436;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 0.55rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form-card-form button:hover {
  transform: translateY(-2px);
  background: #0f172a;
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .contact-overlay-wrap {
    max-width: 72rem;
  }

  .contact-center-media {
    width: clamp(22.5rem, 37vw, 31rem);
  }

  .contact-info-card {
    transform: translate(-116%, -50%);
  }

  .contact-form-card {
    transform: translate(16%, -50%);
  }
}

.contact-map-shell {
  overflow: hidden;
  border: 1px solid #d8e2f0;
  background: #dce8f4;
}

.contact-map-shell iframe {
  display: block;
  width: 100%;
  height: clamp(21rem, 43vw, 34rem);
  border: 0;
}

.trusted-clients-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
  border-top: 1px solid #dce4f0;
  border-bottom: 1px solid #dce4f0;
  padding: 1.05rem 0;
}

.trusted-clients-title {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trusted-clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 2.2rem;
}

.trusted-clients-grid span {
  color: #1f2937;
  font-size: clamp(1.2rem, 2.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.74;
}

.contact-newsletter-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.45rem 2rem;
  border: 1px solid #dce5f1;
  background: linear-gradient(145deg, #f8fbff, #f1f5fb);
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.contact-newsletter-kicker {
  margin: 0;
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-newsletter-shell h2 {
  margin: 0.45rem 0 0;
  color: #1e293b;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
}

.contact-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: min(100%, 28.5rem);
  background: #152234;
  border: 1px solid #152234;
  padding: 0.45rem;
}

.contact-newsletter-form input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: #f8fafc;
  font-size: 0.92rem;
  padding: 0.62rem 0.72rem;
}

.contact-newsletter-form input::placeholder {
  color: #b2c1d8;
}

.contact-newsletter-form button {
  border: 0;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.portal-network-shell {
  border: 1px solid #dce5f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: clamp(1.3rem, 2.7vw, 2.3rem);
}

.portal-network-head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.portal-network-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  background: #dbe7fa;
  color: #214ea3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-network-head h2 {
  margin: 1.05rem 0 0;
  color: #0b2552;
  font-size: clamp(1.95rem, 4vw, 3.05rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.portal-network-head p:last-child {
  margin: 0.9rem auto 0;
  max-width: 38ch;
  color: #54647f;
  font-size: 1.02rem;
  line-height: 1.7;
}

.portal-network-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.portal-network-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d5e2f6;
  background: #ffffff;
  min-height: 20.2rem;
  padding: 1.45rem 1.05rem 1.25rem;
  text-align: center;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portal-network-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(13, 33, 74, 0.92), rgba(31, 79, 163, 0.88));
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 1;
}

.portal-network-card:hover {
  transform: translateY(-6px);
  border-color: #abc2e9;
  box-shadow: 0 22px 34px -30px rgba(25, 41, 73, 0.85);
}

.portal-network-card:hover::before,
.portal-network-card:focus-within::before {
  opacity: 1;
}

.portal-network-logo {
  position: relative;
  z-index: 2;
  /* width: 5.2rem;
  height: 5.2rem; */
  border-radius: 1rem;
  /* border: 1px solid #dbe6f7;
  background: linear-gradient(145deg, #f8fbff, #edf3fc); */
  color: #173d86;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.portal-network-logo img {
    width: 7.2rem;
    height: 7.2rem;
    object-fit: contain;
}
.portal-network-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #11264c;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portal-network-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #60708a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.portal-network-card-link {
  text-decoration: none;
  cursor: pointer;
}

.portal-network-card-link:focus-visible {
  outline: 2px solid #214ea3;
  outline-offset: 2px;
}

.portal-network-card:hover .portal-network-logo,
.portal-network-card:focus-within .portal-network-logo {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  color: #f8fbff;
}

.portal-network-card:hover h3,
.portal-network-card:focus-within h3 {
  color: #ffffff;
}

.portal-network-card:hover p,
.portal-network-card:focus-within p {
  color: rgba(230, 239, 255, 0.93);
}

.portal-network-arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.17);
  color: #ffffff;
  font-size: 0.84rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.portal-network-card:hover .portal-network-arrow,
.portal-network-card:focus-within .portal-network-arrow,
.portal-network-arrow:focus-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portal-network-arrow:hover,
.portal-network-arrow:focus-visible {
  background: #ffffff;
  color: #173d86;
}

@media (max-width: 1279px) {
  .portal-network-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-network-card {
    min-height: 18.4rem;
  }
}

@media (max-width: 767px) {
  .portal-network-head p:last-child {
    font-size: 0.94rem;
  }

  .portal-network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .portal-network-card {
    min-height: 16rem;
    padding: 1.1rem 0.8rem 1rem;
  }

  .portal-network-logo {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 0.9rem;
  }

  .portal-network-card h3 {
    font-size: 0.86rem;
  }

  .portal-network-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .portal-network-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
    width: 2.1rem;
    height: 2.1rem;
    top: 0.7rem;
    right: 0.7rem;
    border-color: rgba(17, 38, 76, 0.18);
    background: rgba(23, 61, 134, 0.08);
    color: #173d86;
  }
}

@media (max-width: 520px) {
  .portal-network-grid {
    grid-template-columns: 1fr;
  }
}

.business-goal-shell {
  background: #f5f6f8;
  padding: clamp(1.1rem, 2.3vw, 2rem);
}

.business-goal-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2rem);
}

.business-goal-copy {
  position: relative;
  padding: clamp(0.5rem, 1.7vw, 1.2rem);
}

.business-goal-ghost {
  position: absolute;
  left: 0.7rem;
  top: -0.25rem;
  margin: 0;
  color: rgba(15, 23, 42, 0.038);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.9;
  pointer-events: none;
}

.business-goal-kicker {
  position: relative;
  margin: 0.7rem 0 0;
  color: #1f2937;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.business-goal-copy h2 {
  position: relative;
  margin-top: 0.9rem;
  color: #1e293b;
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  /* max-width: 12ch; */
}

.business-goal-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.15rem;
}

.business-goal-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.business-goal-point-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eceff3;
  color: #1e293b;
  font-size: 1rem;
}

.business-goal-point h3 {
  margin: 0;
  color: #1f2937;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.business-goal-point p {
  margin: 0.45rem 0 0;
  color: #5b6678;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42ch;
}

.business-goal-actions {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.business-goal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.1rem;
  background: #1f2937;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.86rem 1.3rem;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.business-goal-btn:hover {
  transform: translateY(-2px);
  background: #0f172a;
  box-shadow: 0 14px 20px -16px rgba(15, 23, 42, 0.85);
}

.business-goal-play {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef2f6;
  color: #1f2937;
  font-size: 1.05rem;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.business-goal-play:hover {
  transform: translateY(-2px);
  background: #1f2937;
  color: #ffffff;
}

.business-goal-media {
  position: relative;
  min-height: clamp(22rem, 44vw, 30rem);
}

.business-goal-main-media {
  position: relative;
  width: 82%;
  margin-left: auto;
  overflow: hidden;
  height: clamp(22rem, 40vw, 28rem);
}

.business-goal-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-goal-float-media {
  position: absolute;
  left: 0;
  bottom: 1.9rem;
  width: min(52%, 16rem);
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 35px -24px rgba(15, 23, 42, 0.6);
}

.business-goal-float-media img {
  width: 100%;
  height: clamp(15rem, 28vw, 19rem);
  object-fit: cover;
}

#services article,
#why-choose-us article,
#contact article,
#about .rounded-2xl {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#services article:hover,
#why-choose-us article:hover,
#contact article:hover,
#about .rounded-2xl:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px -26px rgba(15, 23, 42, 0.85);
  border-color: rgba(96, 165, 250, 0.5);
}

#services article li,
#our-work .work-mini-card p,
#why-choose-us article p {
  transition: transform 0.25s ease, color 0.25s ease;
}

#services article:hover li {
  transform: translateX(3px);
}

/* Flat section style requested by user */
main .rounded-3xl,
main .rounded-2xl,
main .rounded-xl,
main .section-shell,
main .about-premium-shell,
main .services-shell,
main .service-neo-card,
main .work-slide-card,
main .work-counter-shell,
main #about .about-primary-media,
main #about .about-secondary-media,
main #about .about-experience-card,
main #about .about-read-more {
  border-radius: 0 !important;
}

main .section-shell,
main .about-premium-shell,
main .service-neo-card,
main .work-slide-card,
main .work-counter-shell,
main #why-choose-us article,
main #contact article,
main #contact .rounded-2xl,
main #why-choose-us .reveal.mt-8,
main #about .about-primary-media,
main #about .about-secondary-media {
  border: 0 !important;
}

main #about .about-grid-box,
main #about .about-grid-dot {
  display: none !important;
}

@media (max-width: 1023px) {
  .work-counter-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-quote-grid {
    grid-template-columns: 1fr;
  }

  .contact-quote-form-wrap {
    padding: 0.4rem;
  }

  .contact-quote-media {
    min-height: 24rem;
  }

  .business-goal-grid {
    grid-template-columns: 1fr;
  }

  .business-goal-copy h2 {
    max-width: 100%;
  }

  .business-goal-main-media {
    width: 88%;
  }

  .business-goal-float-media {
    width: min(50%, 14.2rem);
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .work-slide-card,
  .work-slide-card img {
    height: 255px;
    min-height: 255px;
  }

  .our-work-slider .slick-prev {
    left: -4px;
  }

  .our-work-slider .slick-next {
    right: -4px;
  }

  .work-counter-band {
    margin-top: 2.7rem;
  }

  .work-counter-shell {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    border-radius: 1rem;
  }

  .work-counter-item {
    gap: 0.85rem;
  }

  .work-counter-icon {
    width: 3.7rem;
    height: 3.7rem;
    font-size: 1.25rem;
  }

  .work-counter-value {
    font-size: 2rem;
  }

  .work-counter-label {
    font-size: 0.78rem;
  }

  .contact-quote-shell {
    padding: 1rem;
  }

  .contact-quote-ghost {
    left: 0.4rem;
    font-size: 4rem;
  }

  .contact-quote-kicker {
    margin-top: 1.35rem;
    font-size: 0.64rem;
  }

  .contact-quote-form-wrap h2 {
    font-size: 2rem;
  }

  .contact-quote-form {
    margin-top: 1.35rem;
    gap: 0.8rem;
  }

  .contact-quote-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-quote-form input,
  .contact-quote-form textarea {
    padding: 0.86rem 0.9rem;
    font-size: 0.95rem;
  }

  .contact-quote-form textarea {
    min-height: 8rem;
  }

  .contact-quote-form button {
    width: 100%;
  }

  .contact-quote-media {
    min-height: 18rem;
  }

  .business-goal-shell {
    padding: 0.95rem;
  }

  .business-goal-copy {
    padding: 0.2rem;
  }

  .business-goal-ghost {
    font-size: 3.5rem;
    left: 0.1rem;
    top: 0;
  }

  .business-goal-kicker {
    margin-top: 1rem;
    font-size: 0.65rem;
  }

  .business-goal-copy h2 {
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1.15;
  }

  .business-goal-point {
    gap: 0.7rem;
  }

  .business-goal-point-icon {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.85rem;
  }

  .business-goal-point h3 {
    font-size: 1.05rem;
  }

  .business-goal-point p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .business-goal-actions {
    margin-top: 1.4rem;
  }

  .business-goal-btn {
    min-width: 8.4rem;
    font-size: 0.9rem;
    padding: 0.78rem 1.1rem;
  }

  .business-goal-play {
    width: 3.35rem;
    height: 3.35rem;
  }

  .business-goal-media {
    min-height: 18.8rem;
  }

  .business-goal-main-media {
    width: 92%;
    height: 18.8rem;
  }

  .business-goal-float-media {
    width: min(56%, 11rem);
    left: 0.2rem;
    bottom: 0.65rem;
    border-width: 4px;
  }

  .business-goal-float-media img {
    height: 10.4rem;
  }
}

@media (max-width: 1023px) {
  .contact-stage-shell {
    padding: 1.15rem 0.95rem 1.25rem;
  }

  .contact-stage-doodle,
  .contact-stage-ring-two {
    display: none;
  }

  .contact-stage-ring {
    top: 15%;
    left: 1.2rem;
    width: 4.25rem;
    height: 4.25rem;
    border-width: 4px;
  }

  .contact-overlay-wrap {
    min-height: 0;
    display: grid;
    gap: 0.95rem;
    padding: 0;
  }

  .contact-info-card,
  .contact-form-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .contact-center-media {
    width: 100%;
    order: 1;
    height: clamp(18rem, 56vw, 22.8rem);
  }

  .contact-info-card {
    order: 2;
  }

  .contact-form-card {
    order: 3;
  }

  .contact-newsletter-shell {
    grid-template-columns: 1fr;
  }

  .contact-newsletter-form {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-stage-shell {
    padding: 1rem 0.82rem;
  }

  .contact-stage-ring,
  .contact-stage-doodle {
    display: none;
  }

  .contact-stage-ghost {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .contact-stage-head h1 {
    font-size: clamp(1.76rem, 8.7vw, 2.25rem);
  }

  .contact-info-card,
  .contact-form-card {
    padding: 0.95rem;
    border-radius: 0.5rem;
  }

  .contact-info-item + .contact-info-item {
    margin-top: 0.9rem;
  }

  .contact-info-card a,
  .contact-info-card p:last-child {
    font-size: 0.98rem;
  }

  .contact-form-card h2 {
    font-size: 1.33rem;
  }

  .contact-form-card-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card-form button {
    width: 100%;
  }

  .trusted-clients-shell {
    align-items: flex-start;
  }

  .trusted-clients-grid {
    gap: 0.45rem 1.2rem;
  }

  .contact-newsletter-shell h2 {
    font-size: clamp(1.45rem, 9vw, 2rem);
  }

  .contact-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    padding: 0.52rem;
    gap: 0.5rem;
  }

  .contact-newsletter-form button {
    width: 100%;
  }
}

.insurance-page-main {
  background: #f4f6f8;
}

.insurance-hero-shell {
  position: relative;
  text-align: center;
  padding: clamp(1.2rem, 2.4vw, 1.9rem) 0 0.2rem;
}

.insurance-hero-ghost {
  margin: 0;
  color: rgba(15, 23, 42, 0.04);
  font-size: clamp(3.2rem, 11vw, 7rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.035em;
}

.insurance-hero-shell h1 {
  margin: clamp(-0.9rem, -1.7vw, -0.55rem) 0 0;
  color: #1b2c46;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
}

.insurance-hero-shell p:last-child {
  margin: 0.8rem auto 0;
  max-width: 58ch;
  color: #5d6879;
  font-size: 1rem;
  line-height: 1.65;
}

.insurance-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #d9dee5;
  border: 1px solid #d0d7e1;
}

.insurance-mosaic-card,
.insurance-mosaic-image {
  min-height: 17.2rem;
  background: #ffffff;
}

.insurance-mosaic-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.15rem;
}

.insurance-mosaic-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid #d8e0ec;
  color: #1f334f;
  font-size: 1.05rem;
}

.insurance-mosaic-card h3 {
  margin: 1rem 0 0;
  color: #1b2c46;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
}

.insurance-mosaic-card p {
  margin: 0.8rem 0 0;
  color: #5f6c80;
  font-size: 0.98rem;
  line-height: 1.6;
}

.insurance-mosaic-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #162742;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.insurance-mosaic-card a:hover {
  color: #2454a6;
}

.insurance-mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insurance-steps-wrap {
  background: linear-gradient(145deg, #0d1828, #182d45 54%, #1e334f);
}

.insurance-steps-kicker {
  margin: 0;
  color: #a8bfdc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insurance-steps-wrap h2 {
  margin: 0.7rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.insurance-steps-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.insurance-step-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.insurance-step-icon {
  width: 3.05rem;
  height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #dbeafe;
  font-size: 1rem;
}

.insurance-step-number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 213, 225, 0.48);
  color: #dbeafe;
  font-size: 0.68rem;
  font-weight: 800;
}

.insurance-step-copy {
  background: rgba(226, 232, 240, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.14);
  padding: 0.95rem 0.95rem 0.88rem;
}

.insurance-step-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.insurance-step-copy p {
  margin: 0.45rem 0 0;
  color: #c7d2e5;
  font-size: 0.88rem;
  line-height: 1.55;
}

.insurance-steps-media {
  overflow: hidden;
  border-radius: 0.5rem;
}

.insurance-steps-media img {
  width: 100%;
  height: clamp(22rem, 44vw, 30rem);
  object-fit: cover;
}

.insurance-faq-shell {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.2rem, 2.3vw, 1.8rem);
}

.insurance-faq-kicker {
  margin: 0;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insurance-faq-shell h2,
.insurance-testimonial-shell h2 {
  margin: 0.7rem 0 0;
  color: #1b2c46;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.insurance-faq-media {
  overflow: hidden;
}

.insurance-faq-media img {
  width: 100%;
  height: clamp(20rem, 38vw, 28rem);
  object-fit: cover;
}

.insurance-faq-list details {
  background: #f7f9fc;
  border: 1px solid #dbe3ef;
  padding: 0.92rem 1rem;
}

.insurance-faq-list details + details {
  margin-top: 0.68rem;
}

.insurance-faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #12243f;
  font-size: 0.95rem;
  font-weight: 700;
}

.insurance-faq-list summary::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2454a6;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.insurance-faq-list summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 1rem;
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  color: #5f6c80;
  font-size: 0.78rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.insurance-faq-list details[open] {
  background: #ffffff;
  border-color: #cfdced;
}

.insurance-faq-list details[open] summary::after {
  content: "\f068";
  color: #2454a6;
}

.insurance-faq-list summary::-webkit-details-marker {
  display: none;
}

.insurance-faq-list p {
  margin: 0.7rem 0 0;
  color: #5f6c80;
  font-size: 0.88rem;
  line-height: 1.6;
}

.insurance-trusted-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 2rem;
  border-top: 1px solid #dce4f0;
  border-bottom: 1px solid #dce4f0;
  padding: 1rem 0;
}

.insurance-trusted-title {
  margin: 0;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insurance-trusted-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
}

.insurance-trusted-grid span {
  color: #1f2937;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  opacity: 0.76;
}

.insurance-testimonial-shell {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
}

.insurance-testimonial-card {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  border: 1px solid #dee6f1;
  background: #ffffff;
  padding: 0.75rem;
}

.insurance-testimonial-card img {
  width: 100%;
  height: 8.9rem;
  object-fit: cover;
}

.insurance-testimonial-card h3 {
  margin: 0.15rem 0 0;
  color: #1b2c46;
  font-size: 1.2rem;
  font-weight: 700;
}

.insurance-role {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.insurance-copy {
  margin: 0.7rem 0 0;
  color: #5f6c80;
  font-size: 0.87rem;
  line-height: 1.58;
}

.insurance-brand {
  margin: 0.75rem 0 0;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 800;
}

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

  .insurance-mosaic-card,
  .insurance-mosaic-image {
    min-height: 15.8rem;
  }
}

@media (max-width: 1023px) {
  .insurance-hero-shell p:last-child {
    font-size: 0.94rem;
  }

  .insurance-steps-wrap .mx-auto {
    grid-template-columns: 1fr;
  }

  .insurance-steps-media img {
    height: 20rem;
  }

  .insurance-faq-shell .grid {
    grid-template-columns: 1fr;
  }

  .insurance-faq-media img {
    height: 18rem;
  }

  .insurance-testimonial-card {
    grid-template-columns: 6.8rem 1fr;
  }

  .insurance-testimonial-card img {
    height: 7.8rem;
  }
}

@media (max-width: 767px) {
  .insurance-mosaic {
    grid-template-columns: 1fr;
  }

  .insurance-mosaic-card h3 {
    font-size: 1.38rem;
  }

  .insurance-mosaic-card p {
    font-size: 0.9rem;
  }

  .insurance-step-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .insurance-step-icon,
  .insurance-step-number {
    justify-self: start;
  }

  .insurance-trusted-shell {
    align-items: flex-start;
  }

  .insurance-testimonial-shell .mt-8.grid {
    grid-template-columns: 1fr;
  }

  .insurance-testimonial-card {
    grid-template-columns: 1fr;
  }

  .insurance-testimonial-card img {
    height: 13rem;
  }
}

/* .sticky-scrolled {
  box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.6);
  border-color: rgba(15, 23, 42, 0.12);
} */

#main-header.sticky-scrolled > div {
  background: #141f31;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 36px -30px rgba(15, 23, 42, 0.75);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#main-header.sticky-scrolled .nav-link,
#main-header.sticky-scrolled #services-desktop-toggle {
  color: #ffffff;
}

#main-header.sticky-scrolled .nav-link:hover,
#main-header.sticky-scrolled #services-desktop-toggle:hover {
  color: #eaf1ff;
}

#main-header.sticky-scrolled #menu-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(15, 23, 42, 0.2);
}

#main-header.sticky-scrolled .header-cta .open-consultation-modal {
  background: #ffffff;
  color: #2454a6;
  border: 1px solid #ffffff;
}

#main-header.sticky-scrolled .header-cta .open-consultation-modal:hover {
  background: #eaf1ff;
  color: #2454a6;
}

@media (pointer: fine) {
  body.cursor-active {
    cursor: none;
  }

  body.cursor-active .cursor-dot,
  body.cursor-active .cursor-ring {
    opacity: 1;
  }
}

.about-page-main {
  background: #f2f5f8;
}

.about-stage-shell {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1.2rem;
  background: radial-gradient(circle at 82% 12%, rgba(36, 84, 166, 0.32), transparent 35%),
    radial-gradient(circle at 8% 78%, rgba(59, 111, 196, 0.22), transparent 40%),
    linear-gradient(135deg, #071424, #0c2442 46%, #132f53 100%);
  color: #ffffff;
}

.about-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px),
    linear-gradient(35deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 22% 100%, 100% 30%;
  opacity: 0.3;
  pointer-events: none;
}

.about-stage-shell > * {
  position: relative;
  z-index: 1;
}

.about-stage-kicker {
  margin: 0;
  color: #99b8eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-stage-shell h1 {
  margin: 0.75rem 0 0;
  max-width: 22ch;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-stage-breadcrumb {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d4e2fb;
  font-size: 0.84rem;
}

.about-stage-breadcrumb a {
  color: #e8f0ff;
  text-decoration: none;
}

.about-stage-breadcrumb p {
  margin: 0;
}

.about-company-shell {
  border: 1px solid #dde5f0;
  background: #ffffff;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.about-company-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.about-company-media {
  position: relative;
  padding-bottom: 0.5rem;
}

.about-company-mainimg {
  overflow: hidden;
}

.about-company-mainimg img {
  width: 100%;
  height: clamp(23rem, 42vw, 33rem);
  object-fit: cover;
}

.about-company-badge {
  position: absolute;
  left: -0.65rem;
  bottom: 0;
  width: min(11rem, 80%);
  background: linear-gradient(150deg, #2454a6, #2d68c5);
  color: #ffffff;
  padding: 1rem 0.95rem;
  box-shadow: 0 18px 34px -22px rgba(36, 84, 166, 0.86);
}

.about-company-badge-year {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.about-company-badge-value {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.about-company-badge-copy {
  margin: 0.36rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #e6efff;
}

.about-company-copy h2 {
  margin: 0.85rem 0 0;
  color: #111f37;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.about-company-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36, 84, 166, 0.18);
  background: #edf3ff;
  color: #2454a6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.66rem;
}

.about-company-metric {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
}

.about-company-metric-value {
  margin: 0;
  color: #112647;
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
}

.about-company-metric-copy {
  margin: 0;
  color: #617088;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-company-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.95rem;
}

.about-company-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #2a3b57;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-company-list i {
  margin-top: 0.18rem;
  color: #2454a6;
}

.about-company-btn {
  margin-top: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.2rem;
  background: #102445;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.84rem 1.2rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.about-company-btn:hover {
  transform: translateY(-2px);
  background: #2454a6;
}

.about-service-band {
  background: #e3e8ee;
  padding: 2.8rem 0;
}

.about-service-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
}

.about-service-head h2 {
  margin: 0.85rem 0 0;
  color: #111f37;
  font-size: clamp(2rem, 3.9vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.about-service-head p:last-child {
  margin: 0;
  color: #5f6f86;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-service-card {
  border: 1px solid #d5deea;
  background: #ffffff;
  padding: 1.2rem 1rem 1.05rem;
}

.about-service-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e2ef;
  color: #1f3659;
  font-size: 1rem;
}

.about-service-card h3 {
  margin: 0.9rem 0 0;
  color: #132441;
  font-size: 1.23rem;
  font-weight: 700;
}

.about-service-card p {
  margin: 0.65rem 0 0;
  color: #627289;
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-service-card a {
  margin-top: 0.9rem;
  display: inline-flex;
  color: #132441;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.about-service-card a:hover {
  color: #2454a6;
}

.about-counter-strip {
  background: radial-gradient(circle at 16% 50%, rgba(46, 110, 198, 0.28), transparent 42%),
    linear-gradient(135deg, #092036, #123252 48%, #1d4c7b);
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.about-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-counter-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  background: #f8fbff;
  padding: 1rem 0.95rem;
}

.about-counter-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1b457e, #2454a6);
  color: #e4efff;
  font-size: 0.95rem;
}

.about-counter-value {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 3.3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
}

.about-counter-label {
  margin: 0.25rem 0 0;
  color: #5f6f86;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-value-shell {
  border: 1px solid #dde6f1;
  background: #ffffff;
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
}

.about-value-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
  align-items: end;
}

.about-value-top h2 {
  margin: 0.88rem 0 0;
  color: #111f37;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 17ch;
}

.about-value-top p:last-child {
  margin: 0.82rem 0 0;
  color: #5f6f86;
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-value-progress-wrap {
  display: grid;
  gap: 0.7rem;
}

.about-value-progress-item {
  display: grid;
  gap: 0.36rem;
}

.about-value-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.about-value-progress-head p {
  margin: 0;
  color: #102445;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-value-progress-head span {
  color: #2454a6;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-value-progress-bar {
  height: 0.33rem;
  background: #d6e0ef;
  overflow: hidden;
}

.about-value-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2454a6, #3b6fc4);
  width: 0;
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-value-bottom {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.about-value-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 0.9rem;
  align-content: center;
  padding: clamp(1.2rem, 2.8vw, 2.1rem);
  background: radial-gradient(circle at 16% 50%, rgba(59, 111, 196, 0.28), transparent 45%),
    linear-gradient(135deg, #0e2842, #12324f 45%, #1c4875);
}

.about-value-stats article p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.about-value-stats article span {
  margin-top: 0.36rem;
  display: block;
  color: #d7e5fb;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-value-image {
  overflow: hidden;
}

.about-value-image img {
  width: 100%;
  height: 100%;
  min-height: 21.5rem;
  object-fit: cover;
}

.about-testimonial-shell {
  background: #d5e3ea;
  padding: clamp(1.1rem, 2.4vw, 1.9rem);
}

.about-testimonial-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) auto;
  align-items: end;
  gap: 1.1rem;
}

.about-testimonial-head h2 {
  margin: 0.8rem 0 0;
  color: #0f1f37;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.about-testimonial-head > p {
  margin: 0;
  color: #5f6f86;
  font-size: 0.92rem;
  line-height: 1.68;
}

.about-testimonial-rating {
  background: #0f233f;
  color: #ffffff;
  padding: 0.8rem 0.82rem;
  min-width: 9rem;
}

.about-testimonial-rating p {
  margin: 0;
  color: #b9cbea;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-testimonial-rating h3 {
  margin: 0.35rem 0 0;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.about-testimonial-rating h3 span {
  font-size: 1rem;
  color: #b9cbea;
}

.about-testimonial-rating div {
  margin-top: 0.45rem;
  color: #ffcc66;
  font-size: 0.75rem;
  display: flex;
  gap: 0.2rem;
}

.about-testimonial-slider {
  margin-top: 1.3rem;
  position: relative;
}

.about-testimonial-viewport {
  overflow: hidden;
}

.about-testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.about-testimonial-card {
  margin-top: 0;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1rem;
  background: #f8fbfe;
  border: 1px solid #cfdbe9;
  padding: 0.75rem;
}

.about-testimonial-media {
  overflow: hidden;
}

.about-testimonial-media img {
  width: 100%;
  height: 100%;
  min-height: 13.5rem;
  object-fit: cover;
}

.about-testimonial-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-testimonial-stars {
  margin: 0.12rem 0 0;
  color: #f6bc4a;
  font-size: 0.74rem;
  display: flex;
  gap: 0.2rem;
}

.about-testimonial-quote {
  margin: 0.72rem 0 0;
  color: #4f6079;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 48ch;
}

.about-testimonial-copy h3 {
  margin: 1rem 0 0;
  color: #102445;
  font-size: 1.12rem;
  font-weight: 800;
}

.about-testimonial-role {
  margin: 0.32rem 0 0;
  color: #657792;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-testimonial-controls {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.about-testimonial-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.about-testimonial-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #9eb4cf;
  border: 0;
  transition: width 0.22s ease, background 0.22s ease;
}

.about-testimonial-dots button.is-active {
  width: 1.6rem;
  background: #102445;
}

.about-testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.about-testimonial-nav button {
  width: 2rem;
  height: 2rem;
  border: 1px solid #c9d7e8;
  background: #ffffff;
  color: #102445;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-testimonial-nav button:hover {
  background: #102445;
  border-color: #102445;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .about-testimonial-track {
    transition: none;
  }
}

.about-brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #1d4a77, #2454a6 52%, #2d67c2);
}

.about-brand-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  background: rgba(255, 255, 255, 0.16);
  color: #eff5ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

  .about-testimonial-head {
    grid-template-columns: 1fr 1fr;
  }

  .about-testimonial-rating {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 1023px) {
  .about-company-grid,
  .about-service-head,
  .about-value-top,
  .about-value-bottom,
  .about-testimonial-head {
    grid-template-columns: 1fr;
  }

  .about-company-copy h2,
  .about-service-head h2,
  .about-value-top h2,
  .about-testimonial-head h2 {
    max-width: 100%;
  }

  .about-company-list {
    grid-template-columns: 1fr;
  }

  .about-counter-grid {
    grid-template-columns: 1fr;
  }

  .about-value-image img {
    min-height: 18rem;
  }

  .about-testimonial-card {
    grid-template-columns: 1fr;
  }

  .about-testimonial-media img {
    min-height: 16rem;
  }

  .about-brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-stage-shell {
    min-height: 14.8rem;
    padding: 1.6rem 0.95rem;
  }

  .about-stage-kicker {
    font-size: 0.66rem;
  }

  .about-stage-breadcrumb {
    font-size: 0.76rem;
  }

  .about-company-mainimg img {
    height: 20rem;
  }

  .about-company-badge {
    left: 0.55rem;
    bottom: 0.55rem;
    width: min(9.8rem, 64%);
    padding: 0.82rem 0.75rem;
  }

  .about-company-metric {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .about-service-band {
    padding: 2rem 0;
  }

  .about-service-grid,
  .about-value-stats,
  .about-brand-strip {
    grid-template-columns: 1fr;
  }

  .about-counter-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-testimonial-rating {
    width: 100%;
  }

  .about-testimonial-media img {
    min-height: 13.2rem;
  }

  .about-testimonial-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .about-testimonial-nav {
    justify-content: flex-start;
  }
}

.compliance-page-main {
  background: #f4f6f8;
}

.compliance-page-banner {
  width: 100%;
}

.compliance-page-banner-inner {
  position: relative;
  min-height: clamp(16rem, 34vw, 24rem);
  display: grid;
  align-items: center;
  background-image: linear-gradient(108deg, rgba(6, 14, 28, 0.86) 16%, rgba(16, 40, 72, 0.62) 58%, rgba(9, 25, 48, 0.88) 100%),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=80');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.compliance-page-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.22;
}

.compliance-page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.compliance-page-banner-content p {
  margin: 0;
  color: #c8dbfb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.compliance-page-banner-content h1 {
  margin: 0.86rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.9vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.blog-zigzag-head {
  text-align: center;
}

.blog-zigzag-head p {
  margin: 0;
  color: #2a508e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-zigzag-head h2 {
  margin: 0.8rem 0 0;
  color: #132544;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.blog-zigzag-head span {
  margin-top: 0.72rem;
  display: block;
  color: #5b6b80;
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-zigzag-wrap {
  background: linear-gradient(135deg, #132a50 0%, #1a3768 56%, #1f427b 100%);
  padding: clamp(1rem, 2.2vw, 1.55rem) 0;
}

.blog-zigzag-list {
  display: grid;
  gap: 1rem;
}

.blog-zigzag-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: clamp(15rem, 28vw, 22rem);
  background: #f7f9fd;
  border: 1px solid #d9e3f1;
  box-shadow: 0 24px 38px -34px rgba(8, 19, 35, 0.72);
  overflow: hidden;
}

.blog-zigzag-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(244, 247, 252, 0.34) 0%, rgba(244, 247, 252, 0.16) 34%, rgba(244, 247, 252, 0) 76%),
    radial-gradient(circle at 10% 78%, rgba(243, 246, 251, 0.32) 0%, rgba(243, 246, 251, 0.14) 24%, rgba(243, 246, 251, 0) 60%);
}

.blog-zigzag-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.blog-zigzag-card:hover img {
  transform: scale(1.05);
}

.blog-zigzag-card.blog-zigzag-card-even img {
  order: 2;
}

.blog-zigzag-card.blog-zigzag-card-even .blog-zigzag-content {
  order: 1;
}

.blog-zigzag-card.blog-zigzag-card-even::before {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(244, 247, 252, 0.34) 0%, rgba(244, 247, 252, 0.16) 34%, rgba(244, 247, 252, 0) 76%),
    radial-gradient(circle at 90% 78%, rgba(243, 246, 251, 0.32) 0%, rgba(243, 246, 251, 0.14) 24%, rgba(243, 246, 251, 0) 60%);
}

.blog-zigzag-content {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 1.95rem);
  background: linear-gradient(180deg, #f8fafd 0%, #f2f6fb 100%);
}

.blog-zigzag-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, rgba(247, 250, 253, 0.02) 0%, rgba(247, 250, 253, 0.24) 56%, rgba(255, 255, 255, 0.62) 100%);
}

.blog-zigzag-card.blog-zigzag-card-even .blog-zigzag-content::before {
  background: linear-gradient(270deg, rgba(247, 250, 253, 0.02) 0%, rgba(247, 250, 253, 0.24) 56%, rgba(255, 255, 255, 0.62) 100%);
}

.blog-zigzag-content > * {
  position: relative;
  z-index: 1;
}

.blog-zigzag-content p {
  margin: 0;
  width: fit-content;
  border: 1px solid #c8d6ea;
  background: #e8f0fb;
  color: #2a508e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
}

.blog-zigzag-content h3 {
  margin: 0.62rem 0 0;
  color: #1a345d;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.blog-zigzag-content span {
  margin-top: 0.55rem;
  display: block;
  color: #55657e;
  font-size: 0.91rem;
  line-height: 1.66;
}

.blog-zigzag-points {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.blog-zigzag-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #3f4f67;
  font-size: 0.84rem;
  line-height: 1.5;
}

.blog-zigzag-points li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0.14rem;
  color: #2b67bc;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
}

.blog-zigzag-content a {
  margin-top: 0.88rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #173867;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.02rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.blog-zigzag-content a:hover {
  background: #2454a6;
  transform: translateY(-1px);
}

@media (max-width: 1023px) {
  .blog-zigzag-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-zigzag-card img,
  .blog-zigzag-card.blog-zigzag-card-even img,
  .blog-zigzag-card.blog-zigzag-card-even .blog-zigzag-content {
    order: initial;
  }

  .blog-zigzag-card img {
    height: 13.6rem;
    min-height: 13.6rem;
  }

  .blog-zigzag-card::before,
  .blog-zigzag-card.blog-zigzag-card-even::before,
  .blog-zigzag-content::before,
  .blog-zigzag-card.blog-zigzag-card-even .blog-zigzag-content::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-zigzag-wrap {
    padding: 0.72rem 0;
  }

  .blog-zigzag-list {
    gap: 0.86rem;
  }

  .blog-zigzag-card img {
    height: 11.9rem;
    min-height: 11.9rem;
  }

  .blog-zigzag-content {
    padding: 0.88rem;
  }

  .blog-zigzag-content h3 {
    font-size: 1.1rem;
  }

  .blog-zigzag-content span {
    font-size: 0.8rem;
    line-height: 1.55;
  }
}

.compliance-hero-wrap {
  position: relative;
}

.compliance-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
  align-items: stretch;
}

.compliance-hero-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(152, 176, 211, 0.35);
  background: radial-gradient(circle at 88% 16%, rgba(70, 129, 211, 0.36), transparent 38%),
    linear-gradient(145deg, #112746 0%, #183b68 56%, #214a83 100%);
  color: #ffffff;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.compliance-hero-kicker {
  margin: 0;
  color: #c5daf8;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compliance-hero-copy h2 {
  margin: 0.78rem 0 0;
  max-width: 14ch;
  font-size: clamp(2rem, 3.9vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.compliance-hero-copy > p {
  margin: 0.92rem 0 0;
  max-width: 48ch;
  color: #d7e5fc;
  font-size: 0.95rem;
  line-height: 1.68;
}

.compliance-hero-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.compliance-hero-pills span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(226, 236, 251, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf2ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.58rem;
}

.compliance-hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.compliance-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.2rem;
  border: 1px solid #dde7f8;
  background: #ffffff;
  color: #1b3a67;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.72rem 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.compliance-hero-btn:hover {
  transform: translateY(-2px);
}

.compliance-hero-btn-alt {
  background: transparent;
  color: #e8f1ff;
  border-color: rgba(227, 237, 252, 0.5);
}

.compliance-hero-btn-alt:hover {
  background: rgba(255, 255, 255, 0.1);
}

.compliance-hero-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.compliance-hero-tile {
  border: 1px solid #d4dfef;
  background: #ffffff;
  padding: 1rem 0.95rem 0.9rem;
  box-shadow: 0 18px 30px -28px rgba(17, 39, 70, 0.58);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.compliance-hero-tile:hover {
  transform: translateY(-4px);
  border-color: #9eb6d9;
  box-shadow: 0 26px 38px -30px rgba(17, 39, 70, 0.7);
}

.compliance-hero-tile:nth-child(2),
.compliance-hero-tile:nth-child(4) {
  margin-top: 1rem;
}

.compliance-hero-tile-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2deef;
  background: #f7faff;
  color: #1b355b;
  font-size: 0.93rem;
}

.compliance-hero-tile h3 {
  margin: 0.72rem 0 0;
  color: #1b2c46;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.compliance-hero-tile p {
  margin: 0.5rem 0 0;
  color: #5e6a7d;
  font-size: 0.87rem;
  line-height: 1.58;
}

.compliance-service-wrap {
  position: relative;
  background: #ffffff;
  border-top: 1px solid #dee6f1;
  border-bottom: 1px solid #deE6f1;
  padding: 2.7rem 0;
}

.compliance-scope-head p {
  margin: 0;
  color: #2454a6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.compliance-scope-head h2 {
  margin: 0.78rem 0 0;
  color: #1b2c46;
  font-size: clamp(2rem, 3.9vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.compliance-scope-head span {
  margin: 0.78rem auto 0;
  max-width: 48ch;
  display: block;
  color: #607089;
  font-size: 0.95rem;
  line-height: 1.66;
}

.compliance-scope-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.compliance-scope-card {
  position: relative;
  border: 1px solid #d9e3f1;
  background: linear-gradient(170deg, #ffffff 0%, #f7faff 100%);
  padding: 1rem 1rem 0.92rem;
  overflow: hidden;
}

.compliance-scope-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: linear-gradient(135deg, rgba(36, 84, 166, 0.16), transparent 70%);
  pointer-events: none;
}

.compliance-scope-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.compliance-scope-no {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9bb4da;
  background: #eaf2fe;
  color: #204176;
  font-size: 0.72rem;
  font-weight: 800;
}

.compliance-scope-top h3 {
  margin: 0;
  color: #1b2c46;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.compliance-scope-card ul {
  margin-top: 0.72rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.compliance-scope-card li {
  position: relative;
  padding-left: 0.95rem;
  color: #5f6e85;
  font-size: 0.86rem;
  line-height: 1.56;
}

.compliance-scope-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #2454a6;
}

.compliance-section-head p {
  margin: 0;
  color: #2454a6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.compliance-section-head h2 {
  margin: 0.8rem 0 0;
  color: #1b2c46;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.compliance-section-head span {
  margin: 0.85rem auto 0;
  max-width: 62ch;
  display: block;
  color: #607089;
  font-size: 0.95rem;
  line-height: 1.66;
}

.compliance-process-wrap {
  background-image: linear-gradient(145deg, rgba(11, 23, 40, 0.84), rgba(22, 45, 74, 0.82) 55%, rgba(26, 55, 89, 0.84)),
    url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.compliance-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.compliance-process-kicker {
  margin: 0;
  color: #a7c0dd;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.compliance-process-wrap h2 {
  margin: 0.72rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.compliance-process-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.compliance-process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  border: 1px solid rgba(226, 232, 240, 0.16);
  background: rgba(226, 232, 240, 0.1);
  padding: 0.78rem 0.8rem;
}

.compliance-process-list article span {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 213, 225, 0.45);
  color: #dbeafe;
  font-size: 0.72rem;
  font-weight: 800;
}

.compliance-process-list h3 {
  margin: 0.1rem 0 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.compliance-process-list p {
  margin: 0.38rem 0 0;
  color: #c6d2e6;
  font-size: 0.84rem;
  line-height: 1.54;
}

.compliance-process-media {
  overflow: hidden;
}

.compliance-process-media img {
  width: 100%;
  height: clamp(21rem, 40vw, 28rem);
  object-fit: cover;
}

.compliance-industry-shell {
  border: 1px solid #dfe7f2;
  background: #ffffff;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
}

.compliance-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.88rem;
}

.compliance-industry-grid article {
  border: 1px solid #dbe3ef;
  background: #f9fbff;
  padding: 1rem 0.9rem 0.9rem;
}

.compliance-industry-grid i {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e2ef;
  color: #1f3558;
  font-size: 0.85rem;
}

.compliance-industry-grid h3 {
  margin: 0.75rem 0 0;
  color: #1b2c46;
  font-size: 1rem;
  font-weight: 800;
}

.compliance-industry-grid p {
  margin: 0.48rem 0 0;
  color: #5f6e85;
  font-size: 0.86rem;
  line-height: 1.57;
}

.compliance-faq-shell {
  border: 1px solid #e1e8f3;
  background: #ffffff;
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
}

.compliance-faq-kicker {
  margin: 0;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compliance-faq-shell h2 {
  margin: 0.7rem 0 0;
  color: #1b2c46;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.16;
}

.compliance-faq-list details {
  background: #f7f9fc;
  border: 1px solid #dbe3ef;
  padding: 0.92rem 1rem;
}

.compliance-faq-list details + details {
  margin-top: 0.68rem;
}

.compliance-faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #12243f;
  font-size: 0.95rem;
  font-weight: 700;
}

.compliance-faq-list summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 1rem;
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  color: #5f6c80;
  font-size: 0.78rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.compliance-faq-list details[open] {
  background: #ffffff;
  border-color: #cfdced;
}

.compliance-faq-list details[open] summary::after {
  content: "\f068";
  color: #2454a6;
}

.compliance-faq-list summary::-webkit-details-marker {
  display: none;
}

.compliance-faq-list p {
  margin: 0.68rem 0 0;
  color: #5f6c80;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 1279px) {
  .compliance-hero-grid {
    grid-template-columns: 1fr;
  }

  .compliance-hero-tile:nth-child(2),
  .compliance-hero-tile:nth-child(4) {
    margin-top: 0;
  }

  .compliance-scope-matrix,
  .compliance-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .compliance-hero-copy h2 {
    max-width: 100%;
  }

  .compliance-process-wrap {
    background-attachment: scroll;
  }

  .compliance-process-grid {
    grid-template-columns: 1fr;
  }

  .compliance-process-media img {
    height: 19rem;
  }
}

@media (max-width: 767px) {
  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(18px);
  }

  .reveal.reveal-left.show,
  .reveal.reveal-right.show {
    animation: revealPop 0.65s ease both;
  }

  .compliance-page-banner-inner {
    min-height: 13.2rem;
  }

  .compliance-page-banner-content p {
    font-size: 0.67rem;
  }

  .compliance-hero-board,
  .compliance-scope-matrix,
  .compliance-industry-grid {
    grid-template-columns: 1fr;
  }

  .compliance-service-wrap {
    padding: 2rem 0;
  }

  .compliance-hero-copy {
    padding: 1rem 0.9rem;
  }

  .compliance-hero-copy > p {
    font-size: 0.89rem;
  }

  .compliance-hero-pills span {
    font-size: 0.68rem;
  }

  .compliance-hero-actions {
    flex-direction: column;
  }

  .compliance-hero-btn {
    width: 100%;
  }

  .compliance-scope-top {
    align-items: flex-start;
  }

  .compliance-process-list article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .compliance-process-list article span {
    justify-self: start;
  }
}

.scroll-teddy-widget {
  position: fixed;
  right: clamp(0.1rem, 0.5vw, 0.35rem);
  top: 50vh;
  z-index: 58;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transform: translateX(125%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 0.75, 0.25, 1), opacity 0.4s ease, top 0.12s linear;
  will-change: transform, opacity, top;
}

.scroll-teddy-widget.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-teddy-figure {
  position: relative;
  width: 4.25rem;
  height: 4.95rem;
  border-radius: 2.1rem 2.1rem 1.7rem 1.7rem;
  background: linear-gradient(180deg, #d89a5c 0%, #ca7f45 74%);
  box-shadow: 0 14px 26px -16px rgba(26, 44, 68, 0.7), inset 0 -0.4rem 0 rgba(114, 58, 24, 0.24);
  flex: 0 0 auto;
}

.scroll-teddy-ear {
  position: absolute;
  top: -0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #ca7f45;
  box-shadow: inset 0 0 0 0.28rem #ebba87;
}

.scroll-teddy-ear.left {
  left: 0.28rem;
}

.scroll-teddy-ear.right {
  right: 0.28rem;
}

.scroll-teddy-eye {
  position: absolute;
  top: 1.45rem;
  width: 0.27rem;
  height: 0.27rem;
  border-radius: 999px;
  background: #2b1a10;
}

.scroll-teddy-eye.left {
  left: 1.65rem;
}

.scroll-teddy-eye.right {
  right: 1.65rem;
}

.scroll-teddy-nose {
  position: absolute;
  top: 1.78rem;
  left: 50%;
  width: 0.42rem;
  height: 0.32rem;
  transform: translateX(-50%);
  border-radius: 0.3rem;
  background: #2b1a10;
}

.scroll-teddy-mouth {
  position: absolute;
  top: 2.05rem;
  left: 50%;
  width: 1rem;
  height: 0.48rem;
  transform: translateX(-50%);
  border: 0.1rem solid #8f5532;
  border-top: 0;
  border-radius: 0 0 0.8rem 0.8rem;
}

.scroll-teddy-belly {
  position: absolute;
  left: 50%;
  bottom: 0.48rem;
  width: 1.95rem;
  height: 1.65rem;
  transform: translateX(-50%);
  border-radius: 1.1rem;
  background: #f0c797;
}

.scroll-teddy-paw {
  position: absolute;
  bottom: 0.72rem;
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 999px;
  background: #b96f39;
}

.scroll-teddy-paw.left {
  left: -0.2rem;
}

.scroll-teddy-paw.right {
  right: -0.2rem;
}

.scroll-teddy-board {
  position: relative;
  margin-left: -0.25rem;
  margin-bottom: 0;
  padding: 0.52rem 0.72rem 0.62rem;
  min-width: 13rem;
  border: 0.16rem solid #1f3558;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #fff8dd 0%, #fbe8a9 100%);
  box-shadow: 0 14px 24px -16px rgba(26, 44, 68, 0.72);
}

.scroll-teddy-board::before,
.scroll-teddy-board::after {
  content: "";
  position: absolute;
  left: -0.65rem;
  width: 0.65rem;
  height: 0.15rem;
  background: #1f3558;
  border-radius: 999px;
}

.scroll-teddy-board::before {
  top: 0.95rem;
}

.scroll-teddy-board::after {
  bottom: 0.95rem;
}

.scroll-teddy-board-label {
  display: block;
  margin: 0;
  color: #3b4a5f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.scroll-teddy-board-note {
  margin: 0.24rem 0 0;
  color: #1f3558;
  font-size: 0.7rem;
  line-height: 1.35;
  font-weight: 700;
}

.scroll-teddy-board-actions {
  margin-top: 0.42rem;
  display: grid;
  gap: 0.3rem;
}

.scroll-teddy-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.52rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.scroll-teddy-action i {
  font-size: 0.74rem;
}

.scroll-teddy-action-call {
  justify-content: center;
  padding: 0.34rem 0.5rem;
  background: #1f4fa3;
  color: #ffffff;
  box-shadow: 0 6px 14px -9px rgba(17, 24, 39, 0.9);
}

.scroll-teddy-action-call span {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.scroll-teddy-action-wa {
  justify-content: center;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(22, 163, 74, 0.36);
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.scroll-teddy-action-wa span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.scroll-teddy-action:hover {
  transform: translateY(-1px);
}

.scroll-teddy-action-call:hover {
  background: #143e84;
  color: #ffffff;
}

.scroll-teddy-action-wa:hover {
  background: rgba(22, 163, 74, 0.2);
  color: #166534;
}

.scroll-teddy-widget.is-waving .scroll-teddy-board {
  animation: teddyBoardWave 0.9s ease-in-out 1;
}

@keyframes teddyBoardWave {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-4deg);
  }

  55% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-2deg);
  }
}

@media (max-width: 767px) {
  .scroll-teddy-figure {
    width: 3.7rem;
    height: 4.3rem;
  }

  .scroll-teddy-board {
    min-width: 11.2rem;
    padding: 0.4rem 0.56rem 0.5rem;
    margin-bottom: 0;
  }

  .scroll-teddy-board-label {
    font-size: 0.58rem;
  }

  .scroll-teddy-board-note {
    font-size: 0.63rem;
  }

  .scroll-teddy-action-call span,
  .scroll-teddy-action-wa span {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-teddy-widget {
    transition: opacity 0.2s ease, top 0.12s linear;
    transform: none;
  }

  .scroll-teddy-widget:not(.is-visible) {
    opacity: 0;
    pointer-events: none;
  }

  .scroll-teddy-widget.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .scroll-teddy-widget.is-waving .scroll-teddy-board {
    animation: none;
  }
}
