/*
  PC Scientist – assets/css/style.css

  1) Theme base (variables, reset, typography, utilities, template components)
  2) PC Scientist overrides (search for "PC Scientist" section banners)
     - Wireframe / location UI, modals, contact lab, hero, home sections
     - Retro theme: body.pcs-site--retro, body.pcs-hub--retro, contact page
  3) Source map comment is at end of file

  Keep cascade order: base theme first, then appended overrides below.
*/
:root {
  --kumbh: "Kumbh Sans";
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #ffffff;
  --sub-bg: #f3f7fb;
  --heading-color: #0f0d1d;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
  --border-1px: 1px solid #eaecf0;
  --border-2px: 2px solid #eaecf0;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
  /* Blue top accent on large bordered panels (see PCS panel strip block in this file) */
  --pcs-panel-top-strip-h: 3px;
  --pcs-panel-top-strip-bg: linear-gradient(
    90deg,
    rgba(60, 114, 252, 0.2) 0%,
    #3c72fc 42%,
    rgba(130, 180, 255, 0.65) 100%
  );
  /* Quote CTA band: bright strip along bottom edge (hero-style accent) */
  --pcs-quote-bottom-strip-h: 3px;
  --pcs-quote-bottom-strip-bg: linear-gradient(
    90deg,
    rgba(186, 230, 253, 0.98) 0%,
    #38bdf8 38%,
    #7dd3fc 68%,
    rgba(14, 165, 233, 0.92) 100%
  );
  /* Quote CTA card corners (matches hub / retro quote card) */
  --pcs-quote-card-radius: 22px;
}

:root[data-theme=dark] {
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #151327;
  --sub-bg: #16142c;
  --heading-color: #fff;
  --paragraph: rgba(255, 255, 255, 0.8);
  --span: rgba(255, 255, 255, 0.8);
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
}

:root[data-theme=dark] .light-area {
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #ffffff;
  --sub-bg: #f3f7fb;
  --heading-color: #0f0d1d;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.menu-logo {
  height: 65px;
}

.text-white {
  color:#fff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,.6);

  /* remove these two lines if they exist */
  font-family: inherit;
  font-weight: inherit;
}

/* Mobile menu Fixed margin by making this as comments
@media (max-width: 991px) {
  .banner-two__content, .banner-three__content {
    padding: 150px 0;
  }
}
*/
/* End Of Mods */

body {
  margin: 0;
  padding: 0;
  font-family: var(--kumbh);
  color: var(--paragraph);
  background-color: var(--main-bg);
  line-height: 28px;
  font-weight: 400;
}

.bgb {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: var(--kumbh);
}

h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 100px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

p {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 16px;
}

span {
  display: inline-block;
  color: var(--span);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
}

a:hover {
  color: var(--heading-color);
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}

::placeholder {
  color: var(--span);
}

::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
  .pb-120 {
    padding-bottom: 60px;
  }
  .mt-120 {
    margin-top: 60px;
  }
  .mb-120 {
    margin-bottom: 60px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .mt-100 {
    margin-top: 50px;
  }
  .mb-100 {
    margin-bottom: 50px;
  }
  .pt-60 {
    padding-top: 30px;
  }
  .pb-60 {
    padding-bottom: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
}
.bor {
  border: 1px solid var(--border);
}

.bor-top {
  border-top: 1px solid var(--border);
}

.bor-left {
  border-left: 1px solid var(--border);
}

.bor-bottom {
  border-bottom: 1px solid var(--border);
}

.bor-right {
  border-right: 1px solid var(--border);
}

.border-none {
  border: none !important;
}

.text-justify {
  text-align: justify;
}

.image img {
  width: 100%;
}

.primary-color {
  color: var(--primary-color) !important;
}

.primary-hover:hover {
  color: var(--primary-color) !important;
}

.primary-bg {
  background-color: var(--primary-color) !important;
}

.gradient-bg {
  background: var(--gradient-bg) !important;
}

.secondary-color {
  color: var(--secondary-color);
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.sub-bg {
  background-color: var(--sub-bg);
}

.sm-font {
  font-size: 14px !important;
}

.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition {
  transition: var(--transition);
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.overlay, .banner-video__wrp, .brand-three-area, .case__image, .banner__inner-page, .header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}
.overlay::before, .banner-video__wrp::before, .brand-three-area::before, .case__image::before, .banner__inner-page::before, .header__main .main-menu ul li .sub-menu.menu-image .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nice-select {
  width: 100%;
  border-radius: 10px;
  height: 50px;
  line-height: 50px;
}
.nice-select:focus {
  border: 1px solid var(--primary-color);
}
.nice-select .list {
  width: 100%;
}

.star i {
  color: var(--primary-color);
}
.star i.disable {
  color: var(--span);
  opacity: 40%;
}

.pegi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pegi a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--sub-bg);
  color: var(--heading-color);
  font-weight: 700;
  border-radius: 0;
}
.pegi a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.pegi a:hover i {
  color: var(--white) !important;
}
.pegi a.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.accordion .accordion-item {
  border: var(--border-1px);
  border-radius: 0px;
  margin-bottom: 10px;
}
.accordion .accordion-item.dark-mode {
  background-color: var(--secondary-color);
}
.accordion .accordion-item h2 button {
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 20px 30px;
}
.accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.accordion .accordion-item .accordion-body p {
  color: var(--paragraph);
}
.accordion .accordion-button {
  background-color: transparent;
  color: var(--primary-color);
}
.accordion .accordion-button::after {
  display: none;
}
.accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 20px;
  right: 25px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--white);
  background-color: var(--primary-color);
  text-align: center;
  transition: var(--transition);
}
.accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--heading-color);
}
.accordion .accordion-button.collapsed::before {
  content: "+";
  background-color: var(--sub-bg);
  color: var(--primary-color);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(60, 114, 252, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

/* Search overlay: no tech jargon hint (elderly-friendly copy, readable on blue scrim) */
.search-wrap .pcs-search-hint {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  padding: 0 20px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
}
.search-wrap .pcs-search-hint strong {
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .search-wrap .pcs-search-hint {
    font-size: 1.0625rem;
  }
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: transparent;
  font-size: 25px;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--white);
}

input.main-search-input::placeholder {
  color: var(--white);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
}

/* .pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
}

.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}
.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
}
#preloader:after {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: var(--black);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  bottom: 0;
}
#preloader:before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: var(--black);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
#preloader.isdone:after {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
#preloader.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.loading {
  position: fixed;
  width: 100%;
  text-align: center;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 400;
  font-size: 24px;
  text-transform: lowercase;
  letter-spacing: 5px;
  z-index: 9999999999;
}
.loading span {
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}
.loading span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loading span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loading span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: hidden;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  pointer-events: none !important;
  background-color: var(--primary-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  pointer-events: none !important;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  transition: var(--transition);
}
.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: var(--transition);
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-one {
  padding: 15px 25px;
  background: var(--gradient-bg);
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
}
.btn-one i {
  margin-left: 8px;
  transition: var(--transition);
}
@media (max-width: 575px) {
  .btn-one i {
    margin-left: 3px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .btn-one {
    padding: 8px 18px;
    font-size: 14px;
  }
}
.btn-one::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}
.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}
.btn-one:hover {
  color: var(--white);
}
.btn-one:hover::before {
  height: 100%;
}
.btn-one:hover::after {
  height: 100%;
}
.btn-one:hover i {
  transform: translate(5px);
}

button.btn-one.pcs-open-cta-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  cursor: pointer;
}

.read-more-btn {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--paragraph);
}
.read-more-btn i {
  margin-left: 5px;
  transition: var(--transition);
}
.read-more-btn:hover {
  color: var(--primary-color);
}
.read-more-btn:hover i {
  color: var(--primary-color);
  margin-left: 10px;
}

.arry-prev, .arry-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--primary-color);
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  font-size: 20px;
}
.arry-prev:hover, .arry-next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.arry-prev.active, .active.arry-next {
  background-color: var(--primary-color);
  color: var(--white);
}

.dot .swiper-pagination-bullet, .dot-light .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.6s;
  background-color: transparent;
  opacity: 1;
  position: relative;
  border: 1px solid transparent;
}
.dot .swiper-pagination-bullet::before, .dot-light .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: 0.6s;
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active, .dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--primary-color);
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before, .dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}

.dot-light .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid transparent;
}
.dot-light .swiper-pagination-bullet::before {
  background-color: var(--white);
}
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}

.video-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 2;
}
.video-btn a {
  position: relative;
  color: var(--white);
  font-size: 20px;
  z-index: 1;
  background: var(--gradient-bg);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
}
.video-btn.video-pulse::after, .video-btn.video-pulse::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid var(--primary-color);
  opacity: 0.7;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: video-animation;
  animation-name: video-animation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.video-btn.video-pulse::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.progress-area .progress {
  background-color: var(--border);
  height: 12px;
  border-radius: 0px;
}
.progress-area .progress.dark-mode {
  background-color: var(--secondary-color);
}
.progress-area .progress .progress-bar {
  background-color: var(--primary-color);
}
.progress__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress__title span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.logo {
  display: block;
  width: 350px;
}
.logo img {
  width: 100%;
}

.header-top {
  padding: 16px 0;
  overflow: hidden;
  background-color: var(--heading-color);
}
.header-top .header-top-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .header-top-wrp .info {
  color: var(--white);
}
.header-top .header-top-wrp .info span {
  color: var(--white);
}
.header-top .header-top-wrp .info a {
  transition: var(--transition);
  color: var(--white);
  font-size: 15px;
}
.header-top .header-top-wrp .info a:hover {
  color: var(--primary-color);
}
.header-top .header-top-wrp .info i {
  color: var(--primary-color);
  padding-right: 5px;
}
.header-top .header-top-wrp .info li {
  float: left;
  line-height: 0;
}
.header-top .header-top-wrp .link-info {
  position: relative;
  z-index: 2;
}
.header-top .header-top-wrp .link-info li {
  float: left;
  line-height: 0;
}
.header-top .header-top-wrp .link-info li a {
  width: 37px;
  color: var(--white);
  text-align: center;
}
.header-top .header-top-wrp .link-info li a:hover {
  color: var(--primary-color);
}

.header-area {
  position: relative;
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}
.pcs-header-fixed-spacer {
  width: 100%;
  pointer-events: none;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .header-area {
    transition-duration: 0.01ms !important;
  }
  .header-area.menu-fixed {
    animation: none !important;
  }
}
.header-area::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(270deg, #3c72fc 6.32%, #00060c 216.42%);
  height: 100%;
  content: "";
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
@media (max-width: 1199px) {
  .header-area::after {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .header-area::after {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .header-area::after {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .header-area::after {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .header-area::after {
    width: 70%;
  }
}

/* Dark header chrome uses its own background — drop the legacy left gradient band */
.header-area.header-two-area::after,
.header-area.header-three-area::after {
  display: none !important;
}

@keyframes pcs-header-fixed-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header-area.menu-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1200;
  box-shadow: var(--shadow);
  animation: pcs-header-fixed-fade-in 0.45s ease both;
}
.header-area.menu-fixed .mega-menu {
  top: 105px !important;
}
.header__container {
  max-width: 1350px;
  padding: 0 15px;
}
.header__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header__main .main-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__main .main-menu ul li {
  position: relative;
}
.header__main .main-menu ul li.has-megamenu {
  position: static;
}
.header__main .main-menu ul li.has-megamenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}
.header__main .main-menu ul li a {
  font-weight: 600;
  padding: 40px 0;
}
.header__main .main-menu ul li a i {
  font-size: 12px;
  transition: var(--transition);
}

/* Nav search: SVG used fill="#fff" and disappeared on the light header bar. Match link contrast; two/three headers keep white nav links. */
.header__main .main-menu ul li a.search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__main .main-menu ul li a.search-trigger svg path {
  fill: currentColor;
}
.header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger {
  color: var(--heading-color);
}
.header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:hover,
.header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:focus-visible {
  color: var(--primary-color);
}
body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger {
  color: var(--pcs-ct-walnut-deep);
}
body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:hover,
body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:focus-visible {
  color: var(--pcs-ct-blue);
}
body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger {
  color: var(--pcs-hub-walnut-deep);
}
body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:hover,
body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a.search-trigger:focus-visible {
  color: var(--pcs-hub-retro-blue);
}

.header__main .main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 105px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  width: 250px;
  border: var(--border-1px);
  box-shadow: var(--shadow);
  background-color: var(--white);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.header__main .main-menu ul li .sub-menu.mega-menu {
  max-width: 1170px;
  width: 100%;
  left: 50%;
  top: 105px;
  transform: translateX(-50%) translateY(10px);
  padding: 30px;
}
.header__main .main-menu ul li .sub-menu.mega-menu li {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
}
.header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}
.header__main .main-menu ul li .sub-menu.menu-image .image::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.header__main .main-menu ul li .sub-menu.menu-image .image h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}
.header__main .main-menu ul li .sub-menu.menu-image .image .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 20px;
}
.header__main .main-menu ul li .sub-menu.menu-image .image .btn__group .btn-one {
  color: var(--white) !important;
}
.header__main .main-menu ul li .sub-menu.menu-image .image:hover .btn__group {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header__main .main-menu ul li .sub-menu li {
  width: 100%;
}
.header__main .main-menu ul li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.header__main .main-menu ul li .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--heading-color) !important;
}
.header__main .main-menu ul li .sub-menu li a:hover {
  padding-left: 25px;
  color: var(--primary-color) !important;
}
.header__main .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header__main .main-menu ul li:hover:hover a {
  color: var(--primary-color);
}
.header__main .main-menu ul li:hover:hover i {
  transform: rotate(-180deg);
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .header__main {
    padding: 15px 0;
  }
}
.header__main button.bars {
  background: transparent;
  border: none;
  /* Avoid `font: inherit` here: it makes the icon child inherit the body/text font, so Font Awesome’s ::before shows a missing glyph. */
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* Menu icon: CSS bars (no icon font, no SVG stroke quirks, matches meanmenu-style lines) */
.header__main .bars .pcs-hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 26px;
  box-sizing: content-box;
  vertical-align: middle;
  font-size: 18px;
  cursor: pointer;
  color: var(--paragraph);
  padding: 10px;
  border-radius: 10px;
  border: var(--border-1px);
}
.header__main .bars .pcs-hamburger-bar {
  display: block;
  height: 5px;
  width: 100%;
  background-color: currentColor;
  border-radius: 2px;
}
.header__main .bars i {
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  color: var(--paragraph);
  padding: 10px;
  border-radius: 10px;
  border: var(--border-1px);
}
.header-two-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header-two-area:after {
  display: none;
}
.header-two-area.menu-fixed {
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  border-bottom: none;
}

/* Narrow viewports use the hamburger bar: keep a solid bar so the hero cannot show through fixed nav */
@media (max-width: 991.98px) {
  .header-two-area {
    background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
  }
}
.header-two-area .header__main .main-menu ul li a {
  color: var(--white);
}
.header-two-area .header__main .bars i,
.header-two-area .header__main .bars .pcs-hamburger-icon {
  color: var(--white);
}

/* Home + individual service pages (not the Technology Services hub): lock menu icon to white on dark header-two chrome */
body.pcs-home .header-two-area .header__main .bars .pcs-hamburger-icon,
body.pcs-home .header-two-area .header__main .bars i,
body.pcs-svc-page .header-two-area .header__main .bars .pcs-hamburger-icon,
body.pcs-svc-page .header-two-area .header__main .bars i {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
body.pcs-home .header-two-area .header__main .bars .pcs-hamburger-bar,
body.pcs-svc-page .header-two-area .header__main .bars .pcs-hamburger-bar {
  background-color: #ffffff;
}

/* Home only: same band color as .faq-area.sub-bg (background only; no .sub-bg on markup). */
body.pcs-home section.quote-area {
  background-color: var(--sub-bg);
}

.header-three-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header-three-area:after {
  display: none;
}
.header-three-area.menu-fixed {
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  border-bottom: none;
}
.header-three-area .header__main .main-menu ul li a {
  color: var(--white);
  position: relative;
}
.header-three-area .header__main .main-menu ul li a::after {
  position: absolute;
  content: "";
  background: linear-gradient(0.49deg, #3c72fc -126.52%, rgba(60, 114, 252, 0) 92.35%);
  width: 85px;
  height: 100%;
  bottom: 0;
  left: -20px;
  opacity: 0;
  visibility: hidden;
}
.header-three-area .header__main .main-menu ul li a.search-trigger::after {
  display: none;
}
.header-three-area .header__main .main-menu ul li:hover a {
  color: var(--white);
}
.header-three-area .header__main .main-menu ul li:hover a::after {
  opacity: 1;
  visibility: visible;
}
.header-three-area .header__main .main-menu .sub-menu {
  left: -20px;
}
.header-three-area .header__main .main-menu .sub-menu a::after {
  display: none;
}
.header-three-area .header__main .bars i,
.header-three-area .header__main .bars .pcs-hamburger-icon {
  color: var(--white);
}

/*
 * Retro / hub inner pages: .header-area (not two/three) keeps gray nav chrome from --paragraph.
 * On mobile the blue header strip reads dark; use a light icon. When .menu-fixed, the bar is white again.
 */
@media (max-width: 991.98px) {
  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area):not(.menu-fixed) .header__main .bars .pcs-hamburger-icon,
  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area):not(.menu-fixed) .header__main .bars i,
  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area):not(.menu-fixed) .header__main .bars .pcs-hamburger-icon,
  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area):not(.menu-fixed) .header__main .bars i {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
  }

  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area).menu-fixed .header__main .bars .pcs-hamburger-icon,
  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area).menu-fixed .header__main .bars i {
    color: var(--pcs-ct-walnut-deep);
    border-color: rgba(44, 36, 28, 0.2);
  }

  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area).menu-fixed .header__main .bars .pcs-hamburger-icon,
  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area).menu-fixed .header__main .bars i {
    color: var(--pcs-hub-walnut-deep);
    border-color: rgba(44, 36, 28, 0.2);
  }
}

.mean-nav .mega-menu .image {
  padding: 20px;
  border: var(--border-1px);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
.mean-nav .mega-menu .image h6 {
  margin-top: 20px;
}
.mean-nav .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mean-nav .btn__group a {
  text-align: center !important;
}

/* Mobile drawer: transform + opacity (compositor-friendly). Dim uses body #pcsSidebarBackdrop (see script.js). */
.sidebar-area {
  --pcs-drawer-pad: clamp(14px, 4.5vw, 28px);
  --pcs-drawer-gap: clamp(8px, 2vw, 12px);
  --pcs-drawer-radius: 14px;
  --pcs-drawer-row: rgba(255, 255, 255, 0.07);
  --pcs-drawer-row-border: rgba(255, 255, 255, 0.1);
  --pcs-drawer-accent: rgba(60, 114, 252, 0.3);
  position: fixed;
  top: 0;
  right: 0px;
  width: min(420px, 100%);
  max-width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: linear-gradient(165deg, #15162e 0%, #0f1022 42%, #080914 100%);
  background-color: #0f1022;
  padding: var(--pcs-drawer-pad);
  padding-top: calc(var(--pcs-drawer-pad) + 2px);
  z-index: 9999;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backface-visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0s;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}
.sidebar-area p {
  color: var(--white);
}
.sidebar-area .info {
  border-top: none;
}
.sidebar-area .info li {
  font-size: clamp(14px, 3.6vw, 15px);
  line-height: 1.45;
}
.sidebar-area .info li i {
  margin-right: 8px;
}
.sidebar-area .info li a {
  color: var(--white);
}
/* Backdrop is #pcsSidebarBackdrop (fixed on body) so it is not clipped by overflow-x and is not tied to the panel transform. */
.sidebar-area .sidebar__overlay {
  display: none;
}
.sidebar-area #closeButton {
  position: absolute;
  right: var(--pcs-drawer-pad);
  top: var(--pcs-drawer-pad);
  z-index: 12;
  width: clamp(40px, 11vw, 44px);
  height: clamp(40px, 11vw, 44px);
  line-height: 1;
  text-align: center;
  font-size: clamp(18px, 4.5vw, 20px);
  background-color: var(--primary-color);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(60, 114, 252, 0.45);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sidebar-area #closeButton:hover {
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(60, 114, 252, 0.55);
}
.sidebar-area #closeButton:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.sidebar-area a.btn-one.w-100 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: none;
}
.sidebar-area .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--primary-color);
  margin-right: 10px;
}
.sidebar-area .social-icon a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border: 1px solid var(--primary-color);
}
.sidebar-area.sidebar__hide {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0.35s;
}

.sidebar-area:not(.sidebar__hide) {
  z-index: 10050;
}

body.pcs-sidebar-open {
  overflow: hidden;
}

body.pcs-sidebar-open .pcs-sticky-tab {
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-area,
  #pcsSidebarBackdrop.pcs-sidebar-backdrop {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* Injected by script.js when the mobile menu opens */
#pcsSidebarBackdrop.pcs-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0.32s;
}

#pcsSidebarBackdrop.pcs-sidebar-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10040;
  transition: opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0s;
}
.sidebar-area .sidebar__search {
  position: relative;
}
.sidebar-area .sidebar__search input {
  width: 100%;
  padding: 12px 44px 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--pcs-drawer-row-border);
  background: rgba(255, 255, 255, 0.97);
  font-size: clamp(15px, 3.8vw, 16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sidebar-area .sidebar__search input:focus {
  border-color: rgba(60, 114, 252, 0.65);
  box-shadow: 0 0 0 3px rgba(60, 114, 252, 0.25);
}
.sidebar-area .sidebar__search i {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--heading-color);
  opacity: 0.75;
  font-size: 16px;
}

.mobile-menu .meanmenu-reveal {
  display: none !important;
}
.mobile-menu.mean-container .mean-nav > ul {
  width: 100%;
  display: block !important;
}
.mobile-menu ul li a i {
  display: none;
}

/* ---------- PC Scientist mobile drawer: list UI (meanmenu inside .sidebar-area) ---------- */
.sidebar-area [class*="wow"] {
  animation: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.sidebar-area > a:has(.menu-logo) {
  display: block;
  padding-right: calc(clamp(40px, 11vw, 44px) + var(--pcs-drawer-pad));
  margin-bottom: clamp(12px, 3vw, 18px);
}

.sidebar-area > a.btn-one {
  width: 100%;
  justify-content: center;
  margin-top: var(--pcs-drawer-gap);
  margin-bottom: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: clamp(14px, 3.5vw, 16px);
  box-shadow: 0 6px 22px rgba(60, 114, 252, 0.35);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sidebar-area > a.btn-one:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(60, 114, 252, 0.42);
}

.sidebar-area .mobile-menu.mean-container {
  overflow: visible !important;
  margin-top: clamp(16px, 4vw, 22px);
}

.sidebar-area .mobile-menu.overflow-hidden {
  overflow: visible !important;
  max-height: none !important;
}

.sidebar-area .mean-nav > ul,
.sidebar-area .mean-nav ul:first-child {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.sidebar-area .mean-nav ul ul {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
}

.sidebar-area .mean-bar {
  float: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.sidebar-area .mean-bar,
.sidebar-area .mean-bar * {
  box-sizing: border-box !important;
}

.sidebar-area .mean-nav {
  float: none !important;
  width: 100% !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sidebar-area .mean-nav::before {
  content: "Menu";
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
  padding-left: 4px;
}

.sidebar-area .mean-nav > ul {
  display: flex !important;
  flex-direction: column;
  gap: var(--pcs-drawer-gap);
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}

.sidebar-area .mean-nav ul li {
  float: none !important;
  width: 100% !important;
  position: relative;
  margin: 0 !important;
}

.sidebar-area .mean-nav ul li > a:not(.mean-expand) {
  float: none !important;
  width: 100% !important;
  position: relative;
  display: flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 14px 44px 14px 16px !important;
  border: 1px solid var(--pcs-drawer-row-border) !important;
  border-top: 1px solid var(--pcs-drawer-row-border) !important;
  border-radius: var(--pcs-drawer-radius) !important;
  background: var(--pcs-drawer-row) !important;
  color: #fff !important;
  font-size: clamp(15px, 3.8vw, 17px) !important;
  font-weight: 600 !important;
  text-align: left !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.sidebar-area .mean-nav > ul > li:not(:has(> ul)) > a:not(.mean-expand) {
  padding-right: 16px !important;
}

.sidebar-area .mean-nav ul li > a:not(.mean-expand):hover,
.sidebar-area .mean-nav ul li > a:not(.mean-expand):focus-visible {
  background: var(--pcs-drawer-accent) !important;
  border-color: rgba(60, 114, 252, 0.45) !important;
  color: #fff !important;
}

.sidebar-area .mean-nav ul li > a:not(.mean-expand):focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

/* Current page row: vertical blue strip + slightly stronger fill */
.sidebar-area .mean-nav ul li > a:not(.mean-expand).pcs-nav-current {
  padding-left: 22px !important;
  background: rgba(60, 114, 252, 0.22) !important;
  border-color: rgba(60, 114, 252, 0.48) !important;
}
.sidebar-area .mean-nav ul li > a:not(.mean-expand).pcs-nav-current::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: calc(100% - 22px);
  max-height: 34px;
  border-radius: 4px;
  background: linear-gradient(180deg, #8eb4ff, var(--primary-color));
  box-shadow: 0 0 14px rgba(60, 114, 252, 0.65);
  pointer-events: none;
}
.sidebar-area .mean-nav ul li > a:not(.mean-expand).pcs-nav-current:hover,
.sidebar-area .mean-nav ul li > a:not(.mean-expand).pcs-nav-current:focus-visible {
  background: rgba(60, 114, 252, 0.32) !important;
  border-color: rgba(60, 114, 252, 0.62) !important;
}

.sidebar-area .mean-nav ul ul li > a:not(.mean-expand).pcs-nav-current {
  padding-left: 22px !important;
}
.sidebar-area .mean-nav ul ul li > a:not(.mean-expand).pcs-nav-current::before {
  left: 6px;
  height: calc(100% - 14px);
  max-height: 28px;
}

.sidebar-area .mean-nav a.mean-expand {
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  min-height: 32px !important;
  height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 8px 0 !important;
  float: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  background: rgba(60, 114, 252, 0.92) !important;
  color: #fff !important;
  border: none !important;
  text-align: center !important;
  transition: background-color 0.18s ease, transform 0.18s ease !important;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}

.sidebar-area .mean-nav a.mean-expand:hover,
.sidebar-area .mean-nav a.mean-expand:focus-visible {
  background: #4d82fd !important;
}

.sidebar-area .mean-nav a.mean-expand:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.sidebar-area .mean-nav ul ul {
  margin: 6px 0 4px 0 !important;
  padding: 6px !important;
  border-radius: calc(var(--pcs-drawer-radius) - 2px);
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.sidebar-area .mean-nav ul ul li > a:not(.mean-expand) {
  padding: 11px 14px !important;
  font-size: clamp(14px, 3.5vw, 15px) !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.sidebar-area ul.info {
  list-style: none;
  margin: clamp(20px, 5vw, 28px) 0 0;
  padding: clamp(14px, 3.5vw, 18px);
  border-radius: var(--pcs-drawer-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pcs-drawer-row-border);
}

.sidebar-area ul.info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  margin: 0;
  border: 0;
}

.sidebar-area ul.info li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-area ul.info li i {
  margin-top: 3px;
  flex-shrink: 0;
}

.sidebar-area ul.info li a {
  word-break: break-word;
}

.sidebar-area .social-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(14px, 3.5vw, 20px);
}

.sidebar-area .social-icon a {
  margin-right: 0 !important;
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sidebar-area .social-icon a:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-area > a.btn-one:hover,
  .sidebar-area .social-icon a:hover {
    transform: none;
  }
}

.banner-area, .banner-two-area {
  overflow: hidden;
  position: relative;
}
.banner__dot-wrp {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
.banner__shape-left1 {
  position: absolute;
  top: 30px;
  left: 0;
}
.banner__shape-left2 {
  position: absolute;
  top: 60px;
  left: 0;
}
.banner__shape-left3 {
  position: absolute;
  bottom: 0px;
  left: 0;
}
.banner__shape-right1 {
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media (max-width: 767px) {
  .banner__shape-right1 {
    display: none;
  }
}
.banner__shape-right2 {
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media (max-width: 767px) {
  .banner__shape-right2 {
    display: none;
  }
}
.banner__line {
  position: absolute;
  bottom: 25%;
  left: 33%;
  z-index: 2;
}
.banner__right-line1, .banner__right-line4, .banner__right-line3, .banner__right-line2 {
  position: absolute;
  top: -65px;
  right: 0;
}
.banner__content, .banner-two__content, .banner-three__content {
  max-width: 770px;
  padding: 218px 0;
  position: relative;
}
@media (max-width: 991px) {
  .banner__content, .banner-two__content, .banner-three__content {
    padding: 100px 0;
  }
}
.banner__content h4, .banner-two__content h4, .banner-three__content h4 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}
.banner__content h4 svg, .banner-two__content h4 svg, .banner-three__content h4 svg {
  margin-top: -4px;
}
.banner__content h1, .banner-two__content h1, .banner-three__content h1 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .banner__content h1, .banner-two__content h1, .banner-three__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .banner__content h1, .banner-two__content h1, .banner-three__content h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .banner__content h1, .banner-two__content h1, .banner-three__content h1 {
    font-size: 35px;
    line-height: 50px;
  }
}
.banner__content p, .banner-two__content p, .banner-three__content p {
  color: var(--white);
  opacity: 90%;
}

.banner-three__content h4 {
  margin-top: -100px;
}


.banner__slider .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 9s ease-out 0s;
  -moz-transition: all 9s ease-out 0s;
  -ms-transition: all 9s ease-out 0s;
  -o-transition: all 9s ease-out 0s;
  transition: all 9s ease-out 0s;
}
.banner__slider .swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  transform: scale(1.3);
}
.banner-two__shape1 {
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 575px) {
  .banner-two__shape1 {
    display: none;
  }
}
.banner-two__shape2 {
  position: absolute;
  right: 0;
  top: 130px;
}
@media (max-width: 575px) {
  .banner-two__shape2 {
    display: none;
  }
}
.banner-two__line-left {
  position: absolute;
  left: 0;
  top: 100px;
}
.banner-two__circle-solid {
  position: absolute;
  bottom: -80px;
  left: -100px;
}
.banner-two__circle-regular {
  position: absolute;
  bottom: -80px;
  left: -100px;
}
.banner-two__right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-two__line {
  position: absolute;
  left: 17%;
  top: 25%;
  z-index: 2;
}
@media (max-width: 575px) {
  .banner-two__line {
    display: none;
  }
}
.banner-two__dot-wrp {
  bottom: 120px;
}
.banner-two__content, .banner-three__content {
  max-width: 950px;
  margin: 0 auto;
  padding: 250px 0;
}
.banner-two__content h1, .banner-three__content h1 {
  font-size: 90px;
  line-height: 100px;
}
@media (max-width: 991px) {
  .banner-two__content h1, .banner-three__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .banner-two__content h1, .banner-three__content h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.banner-two__content h4, .banner-three__content h4 {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 0px 15px;
}
@media (max-width: 575px) {
  .banner-two__content h4, .banner-three__content h4 {
    padding: 0px 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .banner-two__content p, .banner-three__content p {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .banner-two__content .btn-one, .banner-three__content .btn-one {
    margin-top: 30px;
  }
}
.banner-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  padding-top: 250px;
  padding-bottom: 200px;
}
/* Below lg (<992px): iPad portrait, Surface Pro portrait, Duo - avoid legacy desktop pads */
@media (max-width: 991.98px) {
  .banner-three-area {
    padding-top: clamp(54px, 9.5vh, 104px);
    padding-bottom: clamp(42px, 8vh, 84px);
  }
}
@media (max-width: 767px) {
  .banner-three-area {
    padding-top: clamp(48px, 11vh, 80px);
    padding-bottom: clamp(38px, 9vh, 68px);
  }
}

/*
 * `.header-two-area` is position:fixed on home + scientist pages; hero must start below the bar
 * (prevents slider / shapes from sitting under the logo and menu on Surface Duo and similar).
 */
@media (max-width: 991.98px) {
  body.pcs-home main > .banner-three-area:first-child,
  body.pcs-svc-page main > .banner-three-area:first-child {
    padding-top: max(
      clamp(54px, 9.5vh, 104px),
      calc(env(safe-area-inset-top, 0px) + clamp(90px, 25vw, 124px))
    );
  }
}

@media (max-width: 767px) {
  body.pcs-home main > .banner-three-area:first-child,
  body.pcs-svc-page main > .banner-three-area:first-child {
    padding-top: max(
      clamp(48px, 11vh, 80px),
      calc(env(safe-area-inset-top, 0px) + clamp(86px, 24vw, 118px))
    );
  }
}

.banner-three__bg {
  position: absolute;
  left: 20px;
  bottom: 80px;
  z-index: -1;
}
.banner-three__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner-three__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 90%;
}
.banner-three__shape-right img {
  height: 100%;
}
.banner-three__content {
  max-width: 100%;
}
@media (max-width: 991px) {
  .banner-three__content {
    margin-top: clamp(16px, 4.8vh, 40px);
  }
}
@media (max-width: 575px) {
  .banner-three__content {
    margin-top: clamp(12px, 4.2vh, 32px);
  }
}
@media (max-width: 575px) {
  .banner-three__content h4 {
    font-size: 12px;
  }
}
.banner-three__container {
  max-width: 1350px;
  padding: 30px;
  margin: 0 auto;
}
.banner-three__video-btn a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary-color);
  font-size: 16px;
}
.banner-three__info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.banner__inner-page {
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
}
.banner__inner-page .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page::before {
  background: linear-gradient(270.07deg, #002b98 0.07%, #00060c 99.95%);
  z-index: -1;
  opacity: 0.75;
}
@media (max-width: 767px) {
  .banner__inner-page {
    padding: 80px 0;
  }
}
.banner__inner-page h2 {
  margin-bottom: 10px;
  color: var(--white);
}
.banner__inner-page span {
  color: var(--white);
  font-weight: 500;
}
.banner__inner-page span i {
  color: var(--white);
}
.banner__inner-page a {
  color: var(--white);
  font-weight: 500;
}
.banner__inner-page a:hover {
  color: var(--primary-color);
}

.section-header h5 {
  color: var(--primary-color);
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-header h5 svg,
.section-header h5 img {
  margin-top: -5px;
}
@media (max-width: 767px) {
  .section-header h5 {
    padding-bottom: 5px;
  }
}
.section-header h2 {
  text-transform: capitalize;
}
.section-header p {
  margin-top: 30px;
}

.service-area {
  position: relative;
  overflow: hidden;
}
.service__shape {
  position: absolute;
  right: -100px;
  top: 80px;
  z-index: -1;
}
.service__icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--primary10);
  border-radius: 0px;
  transition: var(--transition);
}
.service__item {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  padding: 40px 30px;
  box-shadow: var(--shadow);
}
.service__item .service-shape {
  position: absolute;
  top: 22px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}
.service__item h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.service__item p {
  transition: var(--transition);
}
.service__item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-bg);
  transition: var(--transition);
  z-index: -1;
}
.service__item.active .service__icon {
  background-color: var(--white);
}
.service__item.active .service-shape {
  opacity: 0.5;
}
.service__item.active h4 a {
  color: var(--white);
}
.service__item.active p {
  color: var(--white);
  opacity: 90%;
}
.service__item.active::after {
  width: 100%;
  right: unset;
  left: 0;
}
.service-two-area, .project-three-area {
  overflow: hidden;
  position: relative;
}
.service-two__shape-left {
  position: absolute;
  left: 0;
  top: 0;
}
.service-two__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.service-two__content {
  position: relative;
  padding: 30px;
  padding-top: 0;
}
.service-two__content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  margin-bottom: 30px;
  margin-top: -35px;
  transition: 1s;
}
.service-two__content .shape {
  position: absolute;
  top: 35px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}
.service-two__content p {
  margin-top: 10px;
  margin-bottom: 20px;
}
.service-two__item {
  box-shadow: var(--shadow);
  background-color: var(--main-bg);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}
.service-two__item:hover .icon {
  transform: rotateX(-360deg);
}
.service-two__item:hover .shape {
  opacity: 0.5;
}
.service-two__item:hover .read-more-btn {
  color: var(--primary-color);
}
.service-two__item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}
.service-two__slider .swiper-slide-active .icon {
  transform: rotateX(-360deg);
}
.service-two__slider .swiper-slide-active .shape {
  opacity: 0.5;
}
.service-two__slider .swiper-slide-active .read-more-btn {
  color: var(--primary-color);
}
.service-two__slider .swiper-slide-active .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}
.service-three-area {
  overflow: hidden;
  position: relative;
}
.service-three__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.service-three__image img {
  border-radius: 8px;
}
.service-three__content {
  background-color: var(--white);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  width: 85%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
  opacity: 1;
}
@media (max-width: 1399px) {
  .service-three__content {
    width: 95%;
  }
}
.service-three__content .icon {
  padding-right: 15px;
  margin-right: 15px;
  border-right: var(--border-1px);
}
.service-three__up-content {
  padding: 40px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: var(--transition);
  opacity: 0;
}
.service-three__up-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  background: linear-gradient(180deg, #3c72fc -93.57%, #00060c 228.57%);
  margin: 0 auto;
}
.service-three__item {
  position: relative;
  border-radius: 8px;
  z-index: 1;
}
.service-three__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #3c72fc -21.56%, #00060c 252.19%);
  border-radius: 8px;
  transition: var(--transition);
}
.service-three__item:hover .service-three__content {
  opacity: 0;
  bottom: 0;
}
.service-three__item:hover .service-three__up-content {
  opacity: 1;
}
.service-three__item:hover::before {
  height: 100%;
  bottom: 0;
  top: unset;
}
@media (max-width: 1199px) {
  .service-three__item {
    margin-bottom: 40px;
  }
}
.service-single-area {
  overflow: hidden;
}
.service-single__left-item .image {
  position: relative;
}
.service-single__left-item .title {
  font-size: 30px;
}
.service-single__left-item ul li {
  font-weight: 500;
  color: var(--heading-color);
}
.service-single__left-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.service-single__right-item .service-category li:hover {
  background-color: var(--primary-color) !important;
}
.service-single__right-item .service-category li:hover a {
  color: var(--white) !important;
}
.service-single__right-item .service-category li:hover i {
  color: var(--white) !important;
}
.service-single__right-item .service-category li.active {
  background-color: var(--primary-color) !important;
}
.service-single__right-item .service-category li.active a {
  color: var(--white) !important;
}
.service-single__right-item .service-category li.active i {
  color: var(--white) !important;
}
.about-area, .about-two-area {
  overflow: hidden;
  position: relative;
  padding-bottom: 240px;
}
.about__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.about__shape img {
  width: 100%;
  animation: sway_Y 5s linear infinite alternate;
}
.about__left-item, .about-two__left-item {
  position: relative;
}
@media (max-width: 1199px) {
  .about__left-item, .about-two__left-item {
    max-width: 580px;
    margin: 0 auto;
  }
}
.about__left-item .big-image, .about-two__left-item .big-image {
  max-width: 386px;
  position: relative;
  z-index: 1;
}
.about__left-item .sm-image, .about-two__left-item .sm-image {
  max-width: 295px;
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 2;
}
.about__left-item .sm-image .video__btn-wrp, .about-two__left-item .sm-image .video__btn-wrp {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__left-item .circle-shape, .about-two__left-item .circle-shape {
  position: absolute;
  top: 30px;
  right: 80px;
}
.about__right-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about__right-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  width: 100%;
  max-width: 80px;
  border-radius: 0;
  background-color: var(--primary10);
}
.about__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 575px) {
  .about__info {
    gap: 5px;
  }
}
.about-two-area {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .about-two-area {
    padding-bottom: 60px;
  }
}
.about-two__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.about-two__left-item .circle-shape {
  right: unset;
  left: -32%;
  top: 12%;
  animation: rotate 5s linear infinite;
}
.about-two__left-item .dots {
  position: absolute;
  right: 15%;
  top: 0;
}
.about-two__left-item .shape-halper {
  position: absolute;
  top: 28%;
  right: 26%;
}
.about-two__left-item .sm-image {
  bottom: 20px;
}
.about-two__right-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
}
.about-two__right-item ul li {
  color: var(--heading-color);
  font-weight: 600;
}
.about-two__right-item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.about-two__right-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.about-three-area {
  z-index: 1;
}
.about-three__box-up {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: -1;
}
.about-three__box-down {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
}
.about-three__info {
  max-width: 430px;
}
.about-three__info .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  width: 100%;
  max-width: 64px;
}
.about-three__left-item {
  max-width: 450px;
}
.about-three__left-item .about-call-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}
.about-three__left-item .about-call-icon span {
  width: 48px;
  height: 48px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
}
.about-three__image {
  max-width: 634px;
  float: right;
  z-index: 1;
}
.about-three__image .faq__line {
  left: 20% !important;
  z-index: -1;
  top: 10px;
}
.about-three__image .about-three-dot {
  position: absolute;
  left: 8%;
  bottom: 15%;
  z-index: -1;
}
.about-three__image .about-three-count {
  box-shadow: var(--shadow);
  width: 208px;
  position: absolute;
  top: 23%;
  left: 10px;
  background-color: var(--white);
  border-radius: 8px;
}
.about-three__image .about-three-count h3 {
  font-size: 28px;
  line-height: 40px;
}
.about-three__image .about-three-count h3 span {
  color: var(--secondary-color);
}
.about-three__image .about-three-count .icon {
  width: 40px;
}

.counter-area {
  position: relative;
}
.counter__shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.counter__wrp, .quote__wrp {
  overflow: hidden;
  padding: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: -120px;
  z-index: 2;
}
@media (max-width: 767px) {
  .counter__wrp, .quote__wrp {
    justify-content: center;
  }
}
.counter__item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.counter__item h3 {
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
}
.counter__item h3 span {
  color: var(--white);
}

.case-area {
  overflow: hidden;
}
.case__image {
  position: relative;
}
.case__image::before {
  background: linear-gradient(0deg, #0f0d1d 0%, rgba(15, 13, 29, 0) 125%);
}
.case__content {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 30px;
}
.case__btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}
.case__btn i {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  font-size: 20px;
  color: var(--secondary-color);
  color: var(--white);
  transition: var(--transition);
}
.case__btn::after {
  position: absolute;
  content: url(/assets/images/shape/case-btn-shape.png);
  right: -20px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.case__btn::before {
  position: absolute;
  content: url(/assets/images/shape/case-btn-shape.png);
  left: -20px;
  top: -28px;
  z-index: -1;
  transform: rotate(180deg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.case__btn:hover::before {
  left: -10px;
  top: -18px;
  opacity: 1;
  visibility: visible;
}
.case__btn:hover::after {
  right: -10px;
  top: -10px;
  opacity: 1;
  visibility: visible;
}
.case__btn:hover i {
  color: var(--primary-color);
  background: var(--white);
}
.case__item, .project-three__item {
  position: relative;
}
.case__item:hover .case__btn, .project-three__item:hover .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.case__slider {
  margin-left: 19%;
}
@media (max-width: 1600px) {
  .case__slider {
    margin-left: 12%;
  }
}
@media (max-width: 1399px) {
  .case__slider {
    margin-left: 10%;
  }
}
@media (max-width: 991px) {
  .case__slider {
    margin-left: 0%;
    padding: 0 12px;
  }
}
.case__slider .swiper-slide.swiper-slide-active .case__item .case__btn, .case__slider .swiper-slide.swiper-slide-active .project-three__item .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.case-two-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 420px;
}
.case-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.case-two__bg img {
  width: 100%;
}
.case-two__container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}
.case-two__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
.case-two__content span {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}
.case-two__btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--white);
  font-size: 20px;
  color: var(--white);
  z-index: 1;
}
.case-two__btn:hover {
  color: var(--primary-color);
  background-color: var(--white);
}
.case-two__item {
  position: relative;
  z-index: 1;
}
.case-two__item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  background: linear-gradient(0deg, #3c72fc 0%, rgba(0, 0, 0, 0) 100%);
  transition: var(--transition);
}
.case-two__item:hover::after {
  height: 100%;
}
.case-two__item:hover .case-two__content span {
  color: var(--white);
}
.case-three-area {
  overflow: hidden;
}
.case-single-area {
  overflow: hidden;
}
.case-single__title {
  font-size: 30px;
  line-height: 32px;
}
.case-single__item .case-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.case-single__item .case-date li {
  font-weight: 500;
  color: var(--heading-color);
}
.case-single__item .case-date li span {
  font-weight: 400;
  color: var(--primary-color);
}
.case-single__item .case-challenge-list {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.case-single__item .case-challenge li {
  font-weight: 500;
  color: var(--heading-color);
}
.case-single__item .case-challenge li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}

.choose-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.choose__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.choose__shape-right1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.choose__shape-right2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.choose__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: -1;
}
.choose__image img {
  height: 100%;
}
.choose__video-btn, .banner-video__video-btn, .service-single__video-btn {
  position: absolute;
  right: 20%;
  top: 45%;
  z-index: 2;
}
.choose__video-btn .video-btn a, .banner-video__video-btn .video-btn a, .service-single__video-btn .video-btn a {
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 25px;
}
@media (max-width: 991px) {
  .choose__video-btn, .banner-video__video-btn, .service-single__video-btn {
    right: 42%;
    top: 20%;
  }
}
@media (max-width: 450px) {
  .choose__video-btn, .banner-video__video-btn, .service-single__video-btn {
    right: 34%;
    top: 15%;
  }
}

.offer-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.offer__shadow {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.offer__shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}
.offer__shape-right {
  position: absolute;
  top: 0px;
  right: 0;
  opacity: 0.3;
}
.offer__icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 auto;
  background: linear-gradient(180deg, #3c72fc -210.71%, #00060c 100%);
  margin-top: -35px;
  transition: 1s;
}
.offer__item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  padding-top: 0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  .offer__item {
    margin-top: 30px;
  }
}
.offer__item .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.offer__item .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.offer__item:hover .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}
.offer__item:hover .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}
.offer__item:hover .offer__icon {
  background: var(--gradient-bg);
  transform: rotateY(360deg);
}
.offer__item:hover .offer__icon svg path {
  fill: #fff;
}

.brand__wrp {
  padding: 65px;
  background: var(--gradient-bg);
  margin-top: -85px;
  position: relative;
  z-index: 1;
}
.brand__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}
.brand__image {
  max-width: 175px;
}
.brand-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.brand-three-area::before {
  background-color: var(--heading-color);
  opacity: 0.9;
  z-index: -1;
}
.brand-three__shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__shape1 {
    display: none;
  }
}
.brand-three__line1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__line1 {
    display: none;
  }
}
.brand-three__shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__shape2 {
    display: none;
  }
}
.brand-three__line2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__line2 {
    display: none;
  }
}

.process-area {
  overflow: hidden;
}
.process__image {
  max-width: 178px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
}
.process__image img {
  width: 100%;
}
.process__image::after {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--primary-color);
  content: "";
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;
}
.process__image .process-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
.process__item {
  text-align: center;
  padding: 0 30px;
  position: relative;
}
@media (min-width: 992px) {
  .process__item {
    margin-bottom: 0px;
  }
}
.process__item .process-arry {
  position: absolute;
  top: 18%;
  right: -14%;
}
@media (max-width: 991px) {
  .process__item .process-arry {
    top: unset;
    right: unset;
    bottom: -110px;
    left: 40%;
  }
  .process__item .process-arry img {
    transform: rotate(90deg);
  }
}

.testimonial__arry-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
}
.testimonial__arry-btn::after {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  background-color: var(--primary-color);
  right: 0;
  top: 25px;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .testimonial__arry-btn::after {
    width: 30%;
  }
}
.testimonial__arry-btn::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  background-color: var(--primary-color);
  left: 0;
  top: 25px;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .testimonial__arry-btn::before {
    width: 30%;
  }
}
.testimonial__item {
  position: relative;
  padding: 40px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.testimonial__item .coma {
  position: absolute;
  top: 40px;
  right: 40px;
}
.testimonial-two-area {
  margin-top: -300px;
  position: relative;
  z-index: 1;
}
.testimonial-two__slider {
  padding: 20px 0;
}
.testimonial-two__item, .testimonial-three__item {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
}
.testimonial-two__item .coma, .testimonial-three__item .coma {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.testimonial-two__item.dark-mode, .dark-mode.testimonial-three__item {
  background-color: var(--sub-bg);
}
.testimonial-three-area {
  overflow: hidden;
}
.testimonial-three__wrp {
  margin-left: 19%;
  margin-right: -70px;
}
@media (max-width: 1399px) {
  .testimonial-three__wrp {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.testimonial-three__image {
  position: relative;
}
.testimonial-three__image svg {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate(-50%);
}
.testimonial-three__item {
  box-shadow: none;
}

.talk-us__item {
  background: var(--gradient-bg);
  padding: 60px;
}
.talk-us__item .section-header h5 {
  padding-bottom: 5px;
}
.talk-us__item .section-header h2 {
  font-size: 30px;
}
.talk-us__item form label {
  color: var(--white);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.talk-us__item form input {
  padding: 15px 20px;
  background-color: var(--white);
  border: none;
  outline: none;
  color: var(--paragraph);
  width: 100%;
}
.talk-us__item form textarea {
  padding: 15px 20px;
  background-color: var(--white);
  border: none;
  outline: none;
  color: var(--paragraph);
  width: 100%;
  height: 110px;
  resize: none;
}
.talk-us__item form button {
  padding: 15px 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  transition: var(--transition);
}
.talk-us__item form button:hover {
  opacity: 0.9;
}

.blog__image {
  position: relative;
  overflow: hidden;
}
.blog__image img {
  transition: var(--transition);
}
.blog__image .blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-bg);
  padding: 10px 22px;
}
.blog__image .blog-tag h3 {
  line-height: 22px;
  font-weight: 700;
}
.blog__image .blog-tag span {
  font-size: 12px;
  line-height: 22px;
}
.blog__content {
  padding: 30px;
}
.blog__content .blog-info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.blog__content .blog-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog__content .blog-info li a {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 22px;
}
.blog__content .blog-info li a:hover {
  color: var(--primary-color);
}
.blog__item, .blog-two__grid-item, .blog-two__list-item {
  box-shadow: var(--shadow);
}
.blog__item .read-more-btn, .blog-two__grid-item .read-more-btn, .blog-two__list-item .read-more-btn {
  color: var(--paragraph);
}
.blog__item:hover .read-more-btn, .blog-two__grid-item:hover .read-more-btn, .blog-two__list-item:hover .read-more-btn {
  color: var(--primary-color);
}
.blog__item:hover .read-more-btn i, .blog-two__grid-item:hover .read-more-btn i, .blog-two__list-item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}
.blog__item:hover .blog__image img, .blog-two__grid-item:hover .blog__image img, .blog-two__list-item:hover .blog__image img {
  transform: scale(1.1) rotate(3deg);
  filter: brightness(70%);
}
.blog-two-area {
  overflow: hidden;
}
.blog-two__grid-item, .blog-two__list-item {
  border: 1px solid var(--border);
  padding: 20px;
}
.blog-two__grid-item .blog__content, .blog-two__list-item .blog__content {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.blog-two__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .blog-two__list-item {
    flex-direction: column;
  }
}
.blog-two__list-item .blog__content {
  padding: 10px;
  flex-basis: 50%;
}
@media (max-width: 575px) {
  .blog-two__list-item .blog__content {
    flex-basis: 100%;
  }
}
.blog-single__title {
  font-size: 30px;
}
.blog-single__left-item:hover .image img {
  transform: scale(1) rotate(0deg);
}
.blog-single__left-item .fs-30 {
  font-size: 30px;
}
.blog-single__left-item .hilight-text {
  border-left: 4px solid var(--primary-color);
  padding: 40px;
}
.blog-single__left-item .hilight-text p {
  max-width: 650px;
  color: var(--heading-color);
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.blog-single__left-item .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.blog-single__left-item .tags-share {
  padding: 20px 0;
  border-top: var(--border-1px);
  border-bottom: var(--border-1px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blog-single__left-item .tags-share .tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__left-item .tags-share .tags strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .tags a {
  padding: 2px 15px;
  font-size: 14px;
  font-weight: 600;
  border: var(--border-1px);
  text-transform: capitalize;
}
.blog-single__left-item .tags-share .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__left-item .tags-share .share {
  display: flex;
  align-items: center;
}
.blog-single__left-item .tags-share .share strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .share a {
  font-size: 20px;
  color: var(--paragraph);
  margin-left: 20px;
}
.blog-single__left-item .tags-share .share a:hover {
  color: var(--primary-color);
}
.blog-single__left-item .tags-share .share a.active {
  color: var(--primary-color);
}
.blog-single__right-item .item, .service-single__right-item .item {
  padding: 30px;
}
.blog-single__right-item .item .title, .service-single__right-item .item .title {
  position: relative;
  margin-bottom: 35px;
  font-weight: 700;
}
.blog-single__right-item .item .title::after, .service-single__right-item .item .title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--primary-color);
}
.blog-single__right-item .item .serach-bar, .service-single__right-item .item .serach-bar {
  position: relative;
}
.blog-single__right-item .item .serach-bar input, .service-single__right-item .item .serach-bar input {
  width: 100%;
  border: var(--border-1px);
  padding: 16px;
}
.blog-single__right-item .item .serach-bar input:focus, .service-single__right-item .item .serach-bar input:focus {
  border: 1px solid rgba(13, 110, 253, 0.5);
}
.blog-single__right-item .item .serach-bar button, .service-single__right-item .item .serach-bar button {
  position: absolute;
  right: 15px;
  top: 18px;
  color: var(--span);
  background-color: var(--white);
}
.blog-single__right-item .item .category li, .service-single__right-item .item .category li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  transition: var(--transition);
}
.blog-single__right-item .item .category li span, .service-single__right-item .item .category li span {
  transition: var(--transition);
}
.blog-single__right-item .item .category li:hover a, .service-single__right-item .item .category li:hover a {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:hover span, .service-single__right-item .item .category li:hover span {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:not(:last-child), .service-single__right-item .item .category li:not(:last-child) {
  margin-bottom: 10px;
}
.blog-single__right-item .item .single-post li, .service-single__right-item .item .single-post li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__right-item .item .single-post li:not(:last-child), .service-single__right-item .item .single-post li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-single__right-item .item .single-post li span, .service-single__right-item .item .single-post li span {
  font-size: 14px;
}
.blog-single__right-item .item .tags, .service-single__right-item .item .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-single__right-item .item .tags a, .service-single__right-item .item .tags a {
  padding: 5px 14px;
  font-weight: 500;
  border: var(--border-1px);
  text-transform: capitalize;
  background-color: var(--white);
  font-size: 14px;
}
.blog-single__right-item .item .tags a:hover, .service-single__right-item .item .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__review .image {
  max-width: 96px;
  width: 100%;
}
.blog-single__review .reply {
  border-radius: 30px;
  padding: 0px 12px;
  font-weight: 500;
}

.team-area {
  overflow: hidden;
}
.team__share {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 991px) {
  .team__share {
    right: 20px;
  }
}
.team__share button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
}
.team__share ul {
  width: 40px;
  background: var(--gradient-bg);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 12px;
  border-radius: 40px;
  margin-bottom: 15px;
  display: none;
  transition: var(--transition);
}
.team__share ul li:not(:last-child) {
  margin-bottom: 5px;
}
.team__share ul li a {
  color: var(--white);
}
.team__share:hover ul {
  display: block;
}
.team__content {
  position: absolute;
  max-width: 270px;
  padding: 20px 30px;
  background: var(--gradient-bg);
  bottom: 0;
  left: 0;
  width: 100%;
}
.team__item {
  position: relative;
}
.team__item::before {
  transition: var(--transition);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(359.9deg, #00060c 0.09%, rgba(22, 36, 62, 0) 99.91%);
}
.team__item:hover::before {
  height: 100%;
  top: 0;
}
.team-single__image {
  overflow: hidden;
  position: relative;
}
.team-single__image img {
  width: 100%;
}
.team-single__image .team-info {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.team-single__image .team-info a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  color: var(--white);
  border: 1px solid var(--white);
}
.team-single__image .team-info a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.team-single__image .team-info a.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.team-single__info .skills .experience-title {
  font-weight: 400;
}
.team-single__info .skills .progress {
  height: 8px;
}
.team-single__info .skills .progress .progress-bar {
  background-color: var(--primary-color);
}

.faq-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* Same page band as .faq-area (--sub-bg). Never overflow:hidden here: it clips .quote__wrp (margin-bottom:-120px) that should overlap the footer. */
.quote-area.sub-bg {
  overflow: visible;
  position: relative;
  z-index: 1;
}
.faq__shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.faq__image {
  position: relative;
}
.faq__line {
  position: absolute;
  top: 30px;
  left: 30px;
}

.quote__wrp {
  display: block;
  padding: 60px;
  z-index: 1;
  margin-top: 0;
  margin-bottom: -120px;
}

/* Quote CTA: rounded card + bottom cyan strip follows corner curve */
.quote-area .quote__wrp {
  position: relative;
  border-radius: var(--pcs-quote-card-radius);
  overflow: hidden;
}

.quote-area .quote__wrp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--pcs-quote-bottom-strip-h);
  background: var(--pcs-quote-bottom-strip-bg);
  pointer-events: none;
  z-index: 4;
  border-radius: 0 0 var(--pcs-quote-card-radius) var(--pcs-quote-card-radius);
}

.quote__shape {
  position: absolute;
  left: 0;
  border-top: 0;
  z-index: -1;
}

.pricing-area {
  position: relative;
  z-index: 1;
}
.pricing__shape-up {
  position: absolute;
  top: -120px;
  left: 0;
  z-index: -1;
}
.pricing__shape-down {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
}
.pricing__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.pricing__item {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #3c72fc -1.09%, #00060c 175.27%);
  padding: 50px 40px;
}
.pricing__item .item-shape {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: -1;
}
.pricing__item ul {
  padding: 40px 0;
}
.pricing__item ul li {
  color: var(--white);
}
.pricing__item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing__item .pricing-head {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(227, 227, 227, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.pricing__item .pricing-head h2 {
  color: var(--white);
}
.pricing__item .pricing-head h2 span {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}
.pricing__item .pricing-icon {
  width: 94px;
  height: 90px;
  text-align: center;
  line-height: 90px;
}
.pricing__item .pricing-icon img {
  transition: 1s;
}
.pricing__item:hover .item-shape {
  animation: bobble 2s ease-in-out infinite alternate;
}
.pricing__item:hover .pricing-icon img {
  transform: rotateY(-360deg);
}

.project-three-area {
  padding-bottom: 240px;
  padding-top: 240px;
  margin-top: -120px;
}
.project-three__item .case__content {
  text-align: center;
}
.project-three__item .case__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  right: unset;
}

.banner-video-area {
  position: relative;
}
.banner-video__wrp {
  margin-top: -120px;
  z-index: 1;
}
.banner-video__wrp img {
  border-radius: 20px;
}
.banner-video__wrp::before {
  background-color: var(--heading-color);
  border-radius: 20px;
  opacity: 0.5;
}
.banner-video__video-btn, .service-single__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: unset;
}

.contact__left-item {
  padding: 50px;
}
.contact__left-item ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact__left-item ul li i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  display: block;
  position: relative;
}
.contact__left-item ul li i::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px dashed var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact__left-item .social a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--heading-color);
  margin-right: 5px;
}
.contact__left-item .social a:hover {
  color: var(--primary-color);
}
.contact__right-item {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .contact__right-item {
    padding-left: 0;
  }
}
.contact__form form .nice-select {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background-color: var(--sub-bg);
  margin-bottom: 30px;
  padding: 18px 20px;
  height: 70px;
  border-radius: 5px;
}
.contact__form form .nice-select .list {
  width: 100%;
}
.contact__form form label {
  font-family: var(--quicksand);
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 700;
}
.contact__form form input,
.contact__form form textarea {
  width: 100%;
  padding: 18px 20px;
  background-color: var(--sub-bg);
  border-radius: 4px;
  margin-bottom: 30px;
}
.contact__form form textarea {
  height: 200px;
}

.contact__map {
  margin-bottom: -10px;
}
.contact__map iframe {
  width: 100%;
  height: 600px;
}

.error__item {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.error__item h2 {
  font-size: 64px;
  line-height: 72px;
}
@media (max-width: 991px) {
  .error__item h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .error__item h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.footer-area, .footer-two-area {
  overflow: hidden;
  position: relative;
}
.footer__wrp {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 575px) {
  .footer__wrp {
    flex-direction: column;
    justify-content: left;
    align-items: unset;
  }
}
.footer__shape-solid-left {
  position: absolute;
  top: 0;
  left: 0;
}
.footer__shape-regular-left {
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .footer__shape-regular-left {
    display: none;
  }
}
.footer__shape-solid-right {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .footer__shape-solid-right {
    display: none;
  }
}
.footer__shape-regular-right {
  position: absolute;
  top: 30px;
  right: 0;
}
@media (max-width: 767px) {
  .footer__shape-regular-right {
    display: none;
  }
}
.footer__shadow-shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  animation: footer__shadow 10s linear infinite alternate;
}
.footer__item .logo {
  margin-top: -30px;
}
@media (max-width: 575px) {
  .footer__item .logo {
    margin-top: 0;
  }
}
.footer__item .footer-title {
  margin-bottom: 30px;
  color: var(--white);
}
.footer__item ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__item ul li a {
  color: var(--white);
  opacity: 0.8;
}
.footer__item ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer__item .footer-contact li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}
.footer__item .footer-contact li i {
  font-size: 24px;
}
.footer__item .footer-contact li h5 {
  color: var(--white);
}
.footer__item p {
  color: var(--white);
  opacity: 0.8;
}
.footer__item.item-big {
  max-width: 270px;
  width: 100%;
}
.footer__item.item-sm {
  max-width: 170px;
  width: 100%;
}
.footer__item .social-icon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__item .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  border: 1px solid rgba(227, 227, 227, 0.2);
  color: var(--white);
}
.footer__item .social-icon a:hover {
  background-color: var(--primary-color);
}
.footer__item .social-icon a.active {
  background-color: var(--primary-color);
}
.footer__copyright {
  position: relative;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 225, 0.2);
}
.footer__copyright p {
  color: var(--white);
  opacity: 0.8;
}
.footer__copyright a {
  color: var(--white);
  opacity: 0.8;
}
.footer__copyright a:hover {
  color: var(--primary-color);
}
.footer-two-area {
  padding-top: 120px;
}

/* PC Scientist: top-align all footer columns (avoid flex vertical centering stagger).
   Remove logo negative margin so column 1 shares the same top baseline as the rest. */
.footer-two-area .footer__wrp {
  align-items: flex-start;
}

.footer-two-area .footer__item .logo {
  margin-top: 0;
}

.footer-two-area .footer__item .footer-title {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(60, 114, 252, 0.35);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-two-area .footer__item ul li a {
  transition: color 0.2s ease, padding-left 0.2s ease, opacity 0.2s ease;
}

.footer-two-area .footer__item ul li a:hover {
  opacity: 1;
}

/* First column: keep socials tied to logo with steady spacing */
.footer-two-area .footer__item:first-child .social-icon {
  margin-top: 22px;
}

@keyframes sway {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.sway__animation {
  animation: sway 3s linear infinite alternate;
}

@keyframes swayX {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.sway__animationX {
  animation: swayX 3s linear infinite alternate;
}

@keyframes footer__shadow {
  0% {
    margin-left: -200px;
  }
  100% {
    margin-right: -200px;
  }
}
@keyframes sway_Y {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
.sway_Y__animation {
  animation: sway_Y 3s linear infinite alternate;
}

@keyframes sway_YY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.sway_Y__animationY {
  animation: sway_YY 3s linear infinite alternate;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}

@keyframes rotateY {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.animation__rotateY {
  animation: rotateY 40s linear infinite;
}

@keyframes bobble {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.1);
  }
}
.bobble__animation {
  animation: bobble 3s ease-in-out infinite alternate;
}

@-webkit-keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}




/* =========================================================
   PC Scientist – shared components (append block)

   Wireframe tokens, chips, media, widgets, service grid, region links,
   modals, contact lab, hero slider, home sections, NSW coverage, hubs,
   retro skins (pcs-site--retro, pcs-hub--retro), FAQ, footer disclaimer.

   Related: assets/css/mega-menu.css (navigation)
========================================================= */

:root{
  --pcs-navy: #0a1944;
  --pcs-navy-2:#132442;
  --pcs-purple:#6b6ce2;
  --pcs-slate:#8394a4;
  --pcs-border: rgba(19,36,66,.14);
  --pcs-shadow: 0 14px 35px rgba(10,25,68,.08);
  --pcs-shadow-hover: 0 18px 45px rgba(10,25,68,.14);
  --pcs-radius: 18px;
}

.pcs-wireframe{
  background:#fff;
}

/* Top text */
.pcs-kicker{
  display:inline-block;
  font-weight:800;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--pcs-purple);
  text-transform:uppercase;
  margin-bottom:10px;
}

.pcs-headline{
  color:var(--pcs-navy);
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 700;
}

.pcs-subhead{
  color:rgba(10,25,68,.75);
  font-size: 18px;
  line-height: 1.7;
  max-width: 820px;
}

/* Jump links (chips) */
.pcs-jumps{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pcs-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:1px solid var(--pcs-border);
  border-radius:999px;
  background:#fff;
  color:var(--pcs-navy-2);
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pcs-chip i{ color:var(--pcs-purple); }

.pcs-chip:hover{
  transform:translateY(-2px);
  box-shadow:var(--pcs-shadow);
  border-color:rgba(107,108,226,.35);
}

button.pcs-chip{
  font: inherit;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* Media area */
.pcs-media{
  background:#fff;
  border:1px solid var(--pcs-border);
  border-radius:var(--pcs-radius);
  box-shadow:var(--pcs-shadow);
  padding:18px;
}

.pcs-media-inner{
  border-radius:14px;
  overflow:hidden;
}

.pcs-media-inner img{
  width:100%;
  height:auto;
  display:block;
  transform:scale(1.01);
}

.pcs-media-caption{
  color:rgba(10,25,68,.70);
  font-weight:600;
  font-size:13px;
  margin-top:10px;
}

/* New content block inside media */
.pcs-media-copy{
  margin-top:16px;
  padding:14px 14px;
  border-radius:14px;
  border:1px dashed rgba(107,108,226,.35);
  background:rgba(107,108,226,.06);
}

.pcs-media-copy h3{
  font-size:18px;
  margin:0 0 6px 0;
  color:var(--pcs-navy);
  font-weight:900;
}

.pcs-media-copy p{
  margin:0;
  color:rgba(10,25,68,.78);
  font-weight:600;
  line-height:1.55;
}

/* Benefits list */
.pcs-benefits{
  list-style:none;
  padding-left:0;
  margin:16px 0 0 0;
  display:grid;
  gap:10px;
}

.pcs-benefits li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(10,25,68,.82);
  font-weight:700;
}

.pcs-benefits i{
  color:var(--pcs-purple);
  margin-top:3px;
}

/* Right column widgets wrapper */
.pcs-cause-right{
  display:grid;
  gap:14px;
}

/* Location sidebar cards: same top blue accent as intro / #pcs-services (background layers, rounded clip). */
body.pcs-site--retro .pcs-widget-card {
  border: 1px solid rgba(90, 80, 65, 0.16);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(165deg, #fffefb 0%, #f7f3ec 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-site--retro .pcs-widget-social__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--pcs-ct-walnut-deep);
  margin: 0 0 14px;
  text-align: center;
}

body.pcs-site--retro .pcs-widget-social__embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

body.pcs-site--retro .pcs-widget-social__embed .elfsight-app-f3ed5e7d-9f52-485d-956f-ab758503e170 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.pcs-site--retro .pcs-widget-social__embed .elfsight-app-f3ed5e7d-9f52-485d-956f-ab758503e170 > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* Hub / location sidebar: native Google reviews fit narrow column */
body.pcs-site--retro .pcs-widget-card--reviews {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

body.pcs-site--retro .pcs-widget-card--reviews .pcs-google-reviews {
  width: 100%;
  max-width: 100%;
}

body.pcs-site--retro .pcs-cause-right .pcs-widget-card--reviews {
  width: 100%;
}

body.pcs-site--retro .pcs-widget-card--reviews [class^="elfsight-app-"] {
  min-height: 100px;
  border-radius: 14px;
  overflow: hidden;
}

body.pcs-site--retro .pcs-widget-social__embed iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  /* Elfsight often reserves a tall iframe with empty footer; cap height so the column stays tighter */
  max-height: min(520px, 62vh);
}

.pcs-widget-card{
  background:#fff;
  border:1px solid var(--pcs-border);
  border-radius:var(--pcs-radius);
  box-shadow:var(--pcs-shadow);
  padding:16px;
}

/* Location sidebar: Get a free Quote | Call | Request a Call Back + sliding Elfsight panes */
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-shell {
  width: 100%;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0 0 14px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(90, 80, 65, 0.08);
  border: 1px solid rgba(90, 80, 65, 0.14);
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch__seg {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(0.62rem, 2.05vw, 0.76rem);
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 5px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--pcs-ct-muted, #5c5346);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch__seg:hover {
  color: var(--pcs-ct-walnut-deep, #2e2a22);
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch__seg.is-active {
  background: #fffefb;
  color: var(--pcs-ct-walnut-deep, #2e2a22);
  box-shadow: 0 2px 10px rgba(42, 36, 28, 0.08);
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch__seg--link {
  color: inherit;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-viewport {
  position: relative;
  width: 100%;
  /* Clip off-screen hidden panes; do not use a 0-height hidden pane or Elfsight measures wrong and squishes the iframe */
  overflow: hidden;
}

/* No transform on this track - transforms blur Elfsight iframes and shrink logos */
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-track {
  display: block;
  width: 100%;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane {
  width: 100%;
  box-sizing: border-box;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane:not(.is-active) {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane.is-active {
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
  transition: opacity 0.28s ease;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane [class^="elfsight-app-"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* Request a Call Back: keep the native callback panel centered inside the switcher. */
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form__title,
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form__intro,
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form__logo,
body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form__fineprint {
  text-align: center;
}

body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane[data-pcs-form-panel="callback"] .pcs-native-callback-form__logo {
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  body:is(.pcs-site--retro, .pcs-contact-page--retro) .pcs-form-switch-pane.is-active {
    transition: none;
  }
}

.pcs-widget-title{
  font-weight:900;
  color:var(--pcs-navy);
  margin-bottom:10px;
}

/* Below fold cards */
.pcs-body-card,
.pcs-proof{
  background:#fff;
  border:1px solid var(--pcs-border);
  border-radius:var(--pcs-radius);
  box-shadow:var(--pcs-shadow);
  padding:22px;
}

.pcs-body-card h3,
.pcs-proof h3{
  margin:0 0 10px 0;
  color:var(--pcs-navy);
  font-weight:900;
}

.pcs-body-card p,
.pcs-proof p{
  color:rgba(10,25,68,.80);
  font-weight:600;
  line-height:1.7;
}

/* Service grid section */
.pcs-services{
  margin-top:34px;
}

.pcs-section-title{
  margin:0 0 6px 0;
  color:var(--pcs-navy);
  font-weight:900;
}

.pcs-section-subtitle{
  margin:0 0 14px 0;
  color:rgba(10,25,68,.78);
  font-weight:600;
}

/* ✅ Service card (your request) */
.pcs-service-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}

.pcs-service-card{
  grid-column:span 4;
  background:#FAFAFC; /* best for your theme */
  border:1px solid var(--pcs-border);
  border-radius:var(--pcs-radius);
  box-shadow:var(--pcs-shadow);
  padding:18px;
  text-decoration:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition:transform .20s ease, box-shadow .20s ease, border-color .20s ease;
  position:relative;
  overflow:hidden;
}

/* subtle “shine” like modern cards */
.pcs-service-card::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background:radial-gradient(circle at 30% 30%, rgba(107,108,226,.16), transparent 55%);
  transform:rotate(8deg);
  opacity:.9;
}

.pcs-service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--pcs-shadow-hover);
  border-color:rgba(107,108,226,.45);
}

.pcs-service-icon{
  width:48px;
  height:48px;
  min-width:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(107,108,226,.12);
  border:1px solid rgba(107,108,226,.25);
  position:relative;
  z-index:1;
}

.pcs-service-icon i{
  color:var(--pcs-purple);
  font-size:18px;
}

.pcs-service-text{
  position:relative;
  z-index:1;
}

.pcs-service-text h4{
  margin:0 0 4px 0;
  color:var(--pcs-navy);
  font-weight:900;
  font-size:16px;
}

.pcs-service-text p{
  margin:0;
  color:rgba(10,25,68,.75);
  font-weight:600;
  line-height:1.55;
  font-size:13px;
}

/* CTA strip under services */
.pcs-mini-cta{
  margin-top:16px;
  padding:16px;
  border-radius:var(--pcs-radius);
  border:1px solid rgba(107,108,226,.28);
  background:linear-gradient(135deg, rgba(107,108,226,.12), rgba(10,25,68,.04));
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.pcs-mini-cta strong{
  color:var(--pcs-navy);
  font-weight:900;
}

.pcs-mini-cta span{
  color:rgba(10,25,68,.78);
  font-weight:700;
}

/* FAQ */
.pcs-faq{
  margin-top:26px;
  background:#fff;
  border:1px solid var(--pcs-border);
  border-radius:var(--pcs-radius);
  box-shadow:var(--pcs-shadow);
  padding:18px;
}

.pcs-faq h3{
  margin:0 0 10px 0;
  color:var(--pcs-navy);
  font-weight:900;
}

.pcs-faq details{
  border-top:1px solid rgba(19,36,66,.10);
  padding:10px 0;
}

.pcs-faq details:first-of-type{ border-top:none; }

.pcs-faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--pcs-navy-2);
  list-style:none;
}

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

.pcs-faq summary::after{
  content:"+";
  float:right;
  color:var(--pcs-purple);
  font-weight:900;
}

.pcs-faq details[open] summary::after{
  content:"–";
}

.pcs-faq p{
  margin:10px 0 0 0;
  color:rgba(10,25,68,.78);
  font-weight:600;
  line-height:1.7;
}

/* Responsive */
@media (max-width: 991px){
  .pcs-subhead{ font-size:16px; }
  .pcs-service-card{ grid-column:span 6; }
}

@media (max-width: 575px){
  .pcs-service-card{ grid-column:span 12; }
  .pcs-media, .pcs-widget-card, .pcs-body-card, .pcs-proof{ padding:16px; }
}






/* =====================================
   SYDNEY REGION GRID – ALIGNED (NO RUMBLE)
===================================== */

.pcs-region-links__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

/* uniform card sizing */
.pcs-region-links__item{
  height:78px;
  min-height:78px;

  padding:0 22px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-radius:16px;
  background:#fff;

  border:1px solid rgba(18,34,65,.12);
  box-shadow:0 14px 34px rgba(18,34,65,.08);

  font-weight:800;
  font-size:16px;
  color:#122241;

  position:relative;
  overflow:hidden;

  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* accent stripe (palette: #6B6CE0 / #8494A7) */
.pcs-region-links__item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:8px;
  background:linear-gradient(180deg,#6B6CE0,#8494A7);
}

/* hover lift */
.pcs-region-links__item:hover{
  transform:translateY(-5px);
  border-color:rgba(107,108,224,.55);
  box-shadow:0 22px 60px rgba(18,34,65,.14);
}

/* arrow badge */
.pcs-region-links__arrow{
  width:38px;
  height:38px;
  min-width:38px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  background:rgba(107,108,224,.12);
  border:1px solid rgba(107,108,224,.25);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px){
  .pcs-region-links__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 560px){
  .pcs-region-links__grid{
    grid-template-columns:1fr;
  }
  .pcs-region-links__item{
    height:68px;
    min-height:68px;
    font-size:15px;
  }
}

/* NSW banner H1 size control (responsive) */
.banner__inner-page h1 {
  font-size: clamp(32px, 4vw, 64px); /* min, fluid, max */
  line-height: 1.05;
  margin: 0 0 10px;
}

/* SEO H1 Supporting Text – LEFT aligned (mobile-first + desktop) */
.pcs-h1-support{
  /* layout */
  max-width: 44rem;              /* ~704px for comfortable reading */
  margin: 14px 0 0;              /* align with H1 left edge */
  padding: 12px 16px 28px;

  /* typography */
  font-size: 1rem;               /* 16px base (mobile-friendly) */
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.2px;

  /* colors & contrast */
  color: rgba(255,255,255,0.96);
  text-align: left;
  text-decoration: none;

  /* readability over hero image */
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);

  /* subtle glass card for clarity (not intrusive) */
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* larger phones & tablets */
@media (min-width: 480px){
  .pcs-h1-support{
    font-size: 1.0625rem;        /* 17px */
    padding: 14px 18px 30px;
  }
}

/* desktop refinement (still LEFT aligned) */
@media (min-width: 992px){
  .pcs-h1-support{
    font-size: 1.125rem;         /* 18px */
    line-height: 1.8;
    padding: 16px 20px 32px;
    background: rgba(0,0,0,0.18);
  }
}

/* emphasis without hurting readability */
.pcs-h1-support strong{
  font-weight: 700;
  color: #ffffff;
}

/* accessibility: users who prefer less visual effects */
@media (prefers-reduced-transparency: reduce){
  .pcs-h1-support{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0,0,0,0.35);
  }
}















/*Modal*/
:root{
  --pc-navy:#122241;
  --pc-grey:#CDC9CD;
  --pc-accent:#6B6CE0;
  --pc-slate:#8494A7;
  --pc-white:#ffffff;
}

/* Overlay */
.pc-modal-overlay{
  position:fixed; inset:0;
  background: rgba(18,34,65,.70);
  backdrop-filter: blur(6px);
  opacity:0; visibility:hidden;
  pointer-events: none;
  transition: .18s ease;
  /* Above .sidebar-area (9999) and .mean-bar (999999) so close / overlay clicks are not stolen */
  z-index: 1000000;
}

/* Wrapper */
.pc-modal{
  position:fixed; inset:0;
  display:grid; place-items:center;
  padding:18px;
  opacity:0; visibility:hidden;
  pointer-events: none;
  transition:.18s ease;
  z-index: 1000001;
}

/* Card */
.pc-modal-card{
  position: relative;
  width:min(560px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border-radius: 22px;
  border: 1px solid rgba(107,108,224,.22);
  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.35) inset;
  overflow:hidden;
}

.pc-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 22px 22px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 3;
}

/* Header */
.pc-modal-header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 22px 10px;
}

.pc-modal-header h3{
  margin:0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--pc-navy);
}

.pc-modal-close{
  width:44px; height:44px;
  display:grid; place-items:center;
  border:none;
  border-radius: 14px;
  background: rgba(18,34,65,.06);
  color: var(--pc-navy);
  cursor:pointer;
  transition:.15s ease;
}
.pc-modal-close:hover{
  background: rgba(107,108,224,.14);
  transform: translateY(-1px);
}

/* Body */
.pc-modal-body{
  padding: 14px 22px 22px;
  display:grid;
  gap: 14px;
}

/* Button base */
button.pc-modal-btn{
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.pc-modal-btn{
  display:flex; align-items:center;
  gap: 14px;
  text-decoration:none;
  border-radius: 999px;
  padding: 16px 18px;
  border: 2px solid rgba(18,34,65,.14);
  background: rgba(255,255,255,.85);
  color: var(--pc-navy);
  transition: .15s ease;
}

.pc-modal-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(107,108,224,.35);
  box-shadow: 0 14px 28px rgba(18,34,65,.12);
}

.pc-modal .pc-modal-btn {
  position: relative;
  width: 100%;
  min-height: 84px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(107, 108, 224, 0.18);
  user-select: none;
}

.pc-modal .pc-modal-btn > * {
  pointer-events: none;
}

.pc-modal .pc-modal-btn:focus-visible {
  outline: 3px solid rgba(107, 108, 224, 0.45);
  outline-offset: 4px;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(18, 34, 65, 0.16);
}

.pc-modal .pc-modal-btn:active {
  transform: translateY(0) scale(0.99);
}

/* Icon bubble */
.pc-modal-icon{
  width:48px; height:48px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(107,108,224,.14);
  color: var(--pc-accent);
  flex: 0 0 48px;
  font-size: 18px;
}

/* Text stack */
.pc-modal-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.pc-modal-text strong{
  font-size: 18px;
  font-weight: 900;
}
.pc-modal-text small{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(18,34,65,.65);
  font-weight: 700;
}

/* Primary (accent gradient like your theme) */
.pc-modal-btn-primary{
  border: none;
  background: linear-gradient(90deg, var(--pc-accent), #4f57d6);
  color: #fff;
}
.pc-modal-btn-primary .pc-modal-icon{
  background: rgba(255,255,255,.18);
  color: #fff;
}
.pc-modal-btn-primary .pc-modal-text small{
  color: rgba(255,255,255,.85);
}

/* Secondary ghost */
.pc-modal-btn-ghost{
  background: rgba(255,255,255,.80);
}

/* Book online: second priority (below primary call) - accent frame, no full fill */
.pc-modal-btn-book{
  background: linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(107,108,224,.12) 100%);
  border: 2px solid rgba(107,108,224,.5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.6) inset,
    0 10px 28px rgba(107,108,224,.18);
}
.pc-modal-btn-book:hover{
  border-color: rgba(107,108,224,.72);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.7) inset,
    0 14px 34px rgba(107,108,224,.26);
}
.pc-modal-btn-book .pc-modal-icon{
  background: rgba(107,108,224,.24);
  box-shadow: 0 0 0 2px rgba(107,108,224,.18);
}

/* Heartbeat on discount line inside book CTA
   Default inherits parent text colour so contrast follows the button/surface.
   Modal book row (light card) keeps the periwinkle accent below. */
.pcs-offer-pulse{
  display: inline-block;
  font-weight: 900;
  color: inherit;
  transform-origin: center;
  animation: pcs-offer-heartbeat 2.1s ease-in-out infinite;
  will-change: transform;
}
.pc-modal-btn-book .pcs-offer-pulse,
.pc-modal-text .pcs-offer-pulse{
  color: #e24b4a;
}
@keyframes pcs-offer-heartbeat{
  0%, 28%, 100%{
    transform: scale(1);
    text-shadow: 0 0 0 transparent;
  }
  7%{
    transform: scale(1.12);
    text-shadow: 0 0 14px rgba(107,108,224,.35);
  }
  14%{
    transform: scale(1);
    text-shadow: 0 0 0 transparent;
  }
  21%{
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(107,108,224,.28);
  }
}
@media (prefers-reduced-motion: reduce){
  .pcs-offer-pulse{
    animation: none;
  }
}

/* Footnote */
.pc-modal-footnote{
  margin: 6px 4px 0;
  font-size: 13px;
  color: rgba(18,34,65,.70);
  font-weight: 700;
  text-align: center;
}

/* Open state */
.pc-modal.is-open,
.pc-modal-overlay.is-open{
  opacity:1; visibility:visible;
  pointer-events: auto;
}

.pc-modal.is-open{
  pointer-events: auto;
}

/* Lock background scroll while modal is open. Do not set height:100% here - it resets scrollTop to 0 on some browsers. */
html.pc-modal-lock,
body.pc-modal-lock,
body.modal-open{
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.pc-modal-lock > *:not(.pc-modal-overlay):not(.pc-modal){
  pointer-events: none;
  user-select: none;
}

/* reCAPTCHA challenge is injected on <body>; modal-lock must not block its clicks */
body.pc-modal-lock > div:has(iframe[src*="api2/bframe"]),
body.pc-modal-lock > div:has(iframe[title*="recaptcha challenge" i]) {
  pointer-events: auto !important;
  user-select: auto !important;
  z-index: 2147483646 !important;
}

body.pc-modal-lock iframe[src*="api2/bframe"],
body.pc-modal-lock iframe[title*="recaptcha challenge" i] {
  pointer-events: auto !important;
}

body.pc-modal-lock .pcs-sticky-tab {
  visibility: hidden;
  pointer-events: none;
}

.pc-modal.is-open{
  overscroll-behavior: contain;
}

.pc-modal.is-open .pc-modal-card,
.pc-modal.is-open .pc-modal-body{
  pointer-events: auto;
  user-select: auto;
  touch-action: pan-y;
}

/* Mobile */
@media (max-width:480px){
  .pc-modal-header h3{ font-size: 22px; }
  .pc-modal-btn{ padding: 14px 14px; }
  .pc-modal-icon{ width:44px; height:44px; }
  .pc-modal-text strong{ font-size: 16px; }
}





/* Modal 2 css */
/* Button layout - left aligned for readability */
.pc-modal-btn{
  display:flex;
  align-items:center;
  justify-content:flex-start;   /* IMPORTANT: left align */
  gap: 14px;
  padding: 18px 20px;          /* slightly bigger tap target */
}

/* Icon bubble stays fixed size */
.pc-modal-icon{
  width:52px;
  height:52px;
  flex: 0 0 52px;
  display:grid;
  place-items:center;
  border-radius:999px;
  font-size:20px;
}

/* Text block - left aligned, readable */
.pc-modal-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;      /* IMPORTANT */
  text-align:left;             /* IMPORTANT */
  line-height:1.15;
}

/* Primary label - bigger and clearer */
.pc-modal-text strong{
  font-size: 20px;             /* bigger for elderly */
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* Helper line - still readable */
.pc-modal-text small{
  margin-top: 6px;
  font-size: 15px;             /* not too small */
  font-weight: 700;
  opacity: 0.85;
}

/* Header title - slightly larger and clearer */
.pc-modal-header h3{
  font-size: 34px;
  line-height: 1.1;
}

/* Footer note - readable */
.pc-modal-footnote{
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

/* Mobile tuning */
@media (max-width:480px){
  .pc-modal-header h3{ font-size: 24px; }
  .pc-modal-btn{ padding: 16px 16px; }
  .pc-modal-icon{ width:48px; height:48px; flex: 0 0 48px; }
  .pc-modal-text strong{ font-size: 18px; }
  .pc-modal-text small{ font-size: 14px; }
}

.pc-modal-btn-ghost{
  border: 2px solid rgba(18,34,65,.16);
  background: rgba(255,255,255,.92);
}

.pc-modal-btn-ghost:hover{
  border-color: rgba(107,108,224,.45);
  box-shadow: 0 12px 26px rgba(18,34,65,.10);
}

/* Modal 3 css */


/* Make ALL primary labels use accent colour */
.pc-modal-text strong {
  color: var(--pc-accent); /* same as Call now */
}

/* Keep helper text softer for readability */
.pc-modal-text small {
  color: rgba(18, 34, 65, 0.75);
}

/* Override for primary button (Call now) so it stays white */
.pc-modal-btn-primary .pc-modal-text strong,
.pc-modal-btn-primary .pc-modal-text small {
  color: #ffffff;
}





/* Modal 4 Lab and tube icon*/

/* Title wrap (tube + title aligned nicely) */
.pc-modal-titlewrap{
  display:flex;
  align-items:center;
  gap: 14px;
}

/* Tube canvas size */
.pc-tube-canvas{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(107,108,224,.10);
  box-shadow: 0 0 0 1px rgba(107,108,224,.18) inset;
}

/* Optional: subtle glow on open (feels premium) */
.pc-modal.is-open .pc-tube-canvas{
  animation: pcGlowPulse 1.6s ease-in-out infinite;
}

@keyframes pcGlowPulse{
  0%,100% { box-shadow: 0 0 0 1px rgba(107,108,224,.18) inset, 0 0 0 rgba(107,108,224,0); }
  50%     { box-shadow: 0 0 0 1px rgba(107,108,224,.26) inset, 0 0 18px rgba(107,108,224,.22); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .pc-modal.is-open .pc-tube-canvas{ animation: none; }
}

.pc-modal-btn-primary{ position: relative; overflow:hidden; }
.pc-modal-btn-primary::after{
  content:"";
  position:absolute; inset:-30% -60%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-40%);
  animation: pcScan 2.2s ease-in-out infinite;
}
@keyframes pcScan{
  0%{ transform: translateX(-40%) }
  100%{ transform: translateX(40%) }
}
@media (prefers-reduced-motion: reduce){
  .pc-modal-btn-primary::after{ animation:none; }
}







/* CALLBACK FORM MODAL  */

/* Form modal spacing */
.pc-modal-body-form{
  gap: 12px;
}

.pc-modal-formhint{
  margin: 0 6px 6px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: rgba(18,34,65,.78);
  text-align: left;
}

/* A soft container so the embedded form looks "built-in" */
.pc-elfsight-wrap{
  padding: 14px;
  border-radius: 18px;
  border: 2px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 22px rgba(18,34,65,.08);
}

/* Booking app iframe (CTA modal) */
.pc-booking-wrap{
  padding: 14px;
  border-radius: 18px;
  border: 2px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(18,34,65,.08);
}
.pc-booking-wrap iframe{
  display: block;
  width: 100%;
  height: 1000px;
  border: none;
  background: #fff;
  border-radius: 12px;
}

/* Two action buttons below the form */
.pc-modal-formactions{
  display:grid;
  gap: 12px;
  margin-top: 8px;
}

/* Smooth opening animation (silky) */
.pc-modal-card{
  transform: translateY(10px) scale(0.985);
  transition: transform .18s ease;
}
.pc-modal.is-open .pc-modal-card{
  transform: translateY(0) scale(1);
}




/* =========================
   CALLBACK MODAL - MOBILE FIRST
   Matches screenshot layout
========================= */

/* Make card behave like a phone-sheet but still nice on desktop */
.pc-modal-card{
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
}

/* Header stays pinned */
.pc-modal-header{
  flex: 0 0 auto;
}

/* Body scrolls if Elfsight is tall */
.pc-modal-body{
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Callback + quote form modals: tighter spacing like screenshot */
#callbackModal .pc-modal-body,
#quoteModal .pc-modal-body,
#bookModal .pc-modal-body{
  padding-top: 10px;
  gap: 12px;
}

/* Elfsight wrap: clean white container like screenshot */
.pc-elfsight-wrap{
  padding: 14px;
  border-radius: 18px;
  border: 2px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(18,34,65,.08);
}

/* Keep native contact cards readable inside the old modal wrapper. */
.pc-elfsight-wrap .pcs-native-callback-form,
.pc-elfsight-wrap .pcs-native-quote-form{
  width: 100%;
}

/* Buttons area like screenshot (Back + Prefer to call) */
.pc-modal-formactions{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

/* MOBILE: near full width, less padding around modal */
@media (max-width: 480px){
  .pc-modal{
    padding: 12px;
  }
  .pc-modal-card{
    width: 100%;
    border-radius: 22px;
  }
  .pc-modal-header{
    padding: 18px 18px 8px;
  }
  .pc-modal-body{
    padding: 10px 18px 18px;
  }
}

/*
  Tablet + desktop (Chrome DevTools: iPad Mini 768px and up): wider form modals.
  Phones (Pixel, iPhone presets under 768px): unchanged - same card width as before.
*/
@media (min-width: 768px){
  .pc-modal-card{
    width: min(620px, 100%);
  }
  #callbackModal .pc-modal-card,
  #quoteModal .pc-modal-card,
  #bookModal .pc-modal-card{
    width: min(960px, calc(100vw - 40px));
    max-height: min(92vh, 920px);
  }
  #callbackModal .pc-elfsight-wrap,
  #quoteModal .pc-elfsight-wrap,
  #bookModal .pc-booking-wrap{
    padding: 16px;
  }
}

/* Location pages: modal embeds delegate to the in-page switcher (no duplicate Elfsight mounts). */
#callbackModal .pc-elfsight-wrap--delegated,
#quoteModal .pc-elfsight-wrap--delegated{
  display: none;
}

.pcs-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pc-modal--native-quote {
  padding: 12px;
}

.pc-modal--native-quote .pc-modal-card {
  width: min(540px, calc(100vw - 24px));
  max-height: min(94vh, 980px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 34, 65, 0.08);
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(18, 34, 65, 0.28);
}

.pc-modal--native-quote .pc-modal-card::before {
  display: none;
}

.pc-modal--native-quote .pc-modal-header--native-quote {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 0;
}

.pc-modal--native-quote .pc-modal-close {
  width: 38px;
  height: 38px;
  border-color: rgba(18, 34, 65, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(18, 34, 65, 0.72);
  box-shadow: 0 8px 18px rgba(18, 34, 65, 0.12);
}

.pc-modal--native-quote .pc-modal-body {
  padding: 0;
}

.pc-native-quote-shell {
  overflow-x: clip;
  overflow-y: visible;
}

#quoteModal .pc-elfsight-wrap {
  padding: 14px;
}

#quoteModal .pc-elfsight-wrap .pcs-native-quote-form {
  box-shadow: none;
}

.pcs-native-quote-form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 34px 28px;
  border-radius: 16px;
  background: #ffffff;
  color: #171717;
  font-family: "Kumbh Sans", Arial, sans-serif;
  contain: layout paint;
}

.pc-modal--native-quote .pcs-native-quote-form {
  max-width: none;
  min-height: 100%;
  padding-top: 22px;
}

.pcs-native-quote-form__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.pcs-native-quote-form__logo img {
  display: block;
  width: min(380px, 92%);
  height: auto;
}

.pcs-native-quote-form__title {
  margin: 0;
  color: #111111;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

.pcs-native-quote-form__intro {
  margin: 14px 0 26px;
  color: #111111;
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.pcs-native-quote-form__form {
  margin: 0;
}

.pcs-native-quote-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pcs-native-quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.pcs-native-quote-form__field {
  display: grid;
  gap: 10px;
  margin: 0;
  color: #171717;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.pcs-native-quote-form__field > span:not(.pcs-native-quote-form__phone):not(.pcs-native-quote-form__flag) {
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #171717 !important;
  font-family: "Kumbh Sans", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.pcs-native-quote-form__field--wide {
  grid-column: 1 / -1;
}

.pcs-native-quote-form__field input,
.pcs-native-quote-form__field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
  color: #171717;
  font: inherit;
  font-weight: 400;
  outline: none;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-quote-form__field textarea {
  min-height: 88px;
  resize: vertical;
}

.pcs-native-quote-form__field input::placeholder,
.pcs-native-quote-form__field textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.pcs-native-quote-form__field input:focus,
.pcs-native-quote-form__field textarea:focus,
.pcs-native-quote-form__agree input:focus-visible,
.pcs-native-quote-form__dropzone:focus-within {
  border-color: #2684ff;
  box-shadow: 0 0 0 3px rgba(38, 132, 255, 0.16);
}

.pcs-native-quote-form__phone {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  min-height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-quote-form__phone:focus-within {
  border-color: #2684ff;
  box-shadow: 0 0 0 3px rgba(38, 132, 255, 0.16);
}

.pcs-native-quote-form__phone input {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pcs-native-quote-form__phone input:focus {
  box-shadow: none;
}

.pcs-native-quote-form__flag {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 44px;
  color: #111111 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.pcs-native-quote-form__attachments {
  margin-top: 22px;
}

.pcs-native-quote-form__label {
  display: block;
  margin-bottom: 6px;
  color: #171717;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.pcs-native-quote-form__attachments p {
  margin: 0 0 8px;
  color: #747474;
  font-size: 14px;
  line-height: 1.35;
}

.pcs-native-quote-form__dropzone {
  display: grid;
  place-items: center;
  min-height: 94px;
  margin: 0;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  background: #ffffff;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-quote-form__dropzone > span {
  display: inline-flex !important;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: auto !important;
  color: #5b5b5b !important;
  text-align: center;
}

.pcs-native-quote-form__dropzone:hover,
.pcs-native-quote-form__dropzone.is-dragover {
  border-color: #2684ff;
  background: rgba(38, 132, 255, 0.04);
}

.pcs-native-quote-form__dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pcs-native-quote-form__dropzone strong {
  display: inline !important;
  color: #1673d1;
  font-weight: 500;
}

.pcs-native-quote-form__filemeta {
  margin-top: 7px !important;
  font-size: 13px !important;
}

.pcs-native-quote-form__agree {
  display: flex !important;
  gap: 10px;
  justify-content: flex-start;
  align-items: start;
  margin: 22px 0 24px;
  color: #171717;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

.pcs-native-quote-form__agree input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  accent-color: #2684ff;
}

.pcs-native-quote-form__agree span {
  display: inline !important;
  width: auto !important;
  min-width: 0;
  color: #171717 !important;
  line-height: inherit;
  text-align: left !important;
  white-space: normal;
}

.pcs-native-quote-form__agree a {
  display: inline !important;
  float: none !important;
  color: #111111;
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.pcs-native-quote-form__submit {
  display: block;
  min-width: 126px;
  min-height: 52px;
  margin: 0 auto;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  background: #2583f3;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  box-shadow: 0 10px 20px rgba(37, 131, 243, 0.2);
}

.pcs-native-quote-form__submit:hover {
  transform: translateY(-1px);
  background: #116fdb;
  box-shadow: 0 14px 24px rgba(37, 131, 243, 0.28);
}

.pcs-native-quote-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.pcs-native-quote-form__status {
  min-height: 20px;
  margin: 16px 0 0;
  color: #116fdb;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.pcs-native-quote-form__status.is-error {
  color: #b42318;
}

.pcs-native-quote-form__status.is-success {
  color: #067647;
}

.pcs-native-quote-form__fineprint {
  margin: 12px 0 0;
  color: #747474;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 620px) {
  .pcs-native-quote-form {
    padding: 22px 18px 24px;
  }

  .pc-modal--native-quote .pcs-native-quote-form {
    padding-top: 24px;
  }

  .pcs-native-quote-form__title {
    font-size: 32px;
  }

  .pcs-native-quote-form__intro {
    font-size: 16px;
  }

  .pcs-native-quote-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .pc-modal--native-quote {
    padding: 8px;
  }

  .pc-modal--native-quote .pc-modal-card {
    width: calc(100vw - 16px);
    border-radius: 14px;
  }

  .pcs-native-quote-form {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pcs-native-quote-form__title {
    font-size: 30px;
  }

  .pcs-native-quote-form__field,
  .pcs-native-quote-form__label,
  .pcs-native-quote-form__agree {
    font-size: 15px;
  }
}

.pc-native-callback-shell {
  overflow-x: clip;
  overflow-y: visible;
}

#callbackModal .pc-elfsight-wrap {
  padding: 14px;
}

.pcs-native-callback-form {
  --pcs-callback-input-height: 62px;
  --pcs-callback-input-padding-x: 22px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 28px 26px;
  border-radius: 16px;
  background: #ffffff;
  color: #171717;
  font-family: "Kumbh Sans", Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: clip;
}

.pcs-native-callback-form__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.pcs-native-callback-form__logo img {
  display: block;
  width: min(320px, 88%);
  height: auto;
}

.pcs-native-callback-form__title {
  margin: 0;
  color: #111111;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.pcs-native-callback-form__intro {
  margin: 14px 0 28px;
  color: #111111;
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.pcs-native-callback-form__form {
  margin: 0;
}

.pcs-native-callback-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pcs-native-callback-form__trap-input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pcs-form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 0.5rem;
  clear: both;
  position: relative;
  isolation: isolate;
}

.pcs-form-recaptcha-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.pcs-form-recaptcha__label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4d5f75;
}

/* Clip reCAPTCHA iframe to its box so the invisible hit area cannot cover Submit */
.pcs-form-recaptcha {
  display: block;
  width: 304px;
  max-width: 100%;
  min-height: 78px;
  height: 78px;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  contain: layout style paint;
}

.pcs-form-recaptcha > div {
  max-height: 78px !important;
}

.pcs-form-recaptcha iframe {
  display: block;
  max-height: 78px;
  max-width: 100%;
}

.pcs-form-submit-row .pcs-native-callback-form__submit,
.pcs-form-submit-row .pcs-native-quote-form__submit {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: 0;
  pointer-events: auto;
  touch-action: manipulation;
}

/* Form modals: scroll inside the card; reCAPTCHA challenge iframe is on body (see .pc-modal-lock rules) */
#callbackModal.is-open .pc-modal-card,
#quoteModal.is-open .pc-modal-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#callbackModal.is-open .pc-modal-body,
#quoteModal.is-open .pc-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

#callbackModal.is-open .pc-elfsight-wrap,
#quoteModal.is-open .pc-elfsight-wrap,
#callbackModal.is-open .pcs-native-callback-form,
#quoteModal.is-open .pcs-native-quote-form,
#callbackModal.is-open .pcs-native-callback-form__form,
#quoteModal.is-open .pcs-native-quote-form__form {
  overflow: visible;
}

#callbackModal.is-open .pcs-form-recaptcha,
#quoteModal.is-open .pcs-form-recaptcha {
  overflow: hidden;
}

@media (max-width: 480px) {
  .pcs-form-submit-row {
    gap: 1.5rem;
  }

  .pcs-form-recaptcha {
    width: min(304px, 100%);
  }
}

/* Contact + location hub tab panels: keep reCAPTCHA visible when switching quote/callback */
.pc-contactlab__panelview.is-active .pc-contactlab__formwrap,
.pc-contactlab__panelview[aria-hidden="false"] .pc-contactlab__formwrap,
.pcs-form-switch-pane.is-active .pcs-native-callback-form,
.pcs-form-switch-pane.is-active .pcs-native-quote-form,
.pcs-ab-dual-form__panels .pc-contactlab__panelview.is-active {
  overflow: visible;
}

.pcs-native-callback-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  width: 100%;
  min-width: 0;
}

.pcs-native-callback-form__field {
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  color: #171717;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.pcs-native-callback-form__field > span:not(.pcs-native-callback-form__phone):not(.pcs-native-callback-form__flag) {
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #171717 !important;
  font-family: "Kumbh Sans", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.pcs-native-callback-form__field--wide {
  grid-column: 1 / -1;
}

/* Phone full width; name + email and date + time share one row each */
.pcs-native-callback-form__field--wide:has(input[name="name"]),
.pcs-native-callback-form__field--wide:has(input[name="email"]),
.pcs-native-callback-form__field--date,
.pcs-native-callback-form__field--time,
.pcs-native-callback-form__field:has(input[name="best_date"]),
.pcs-native-callback-form__field:has(input[name="preferred_time"]) {
  grid-column: auto;
}

.pcs-native-callback-form__field input,
.pcs-native-callback-form__field select {
  box-sizing: border-box;
  width: 100%;
  height: var(--pcs-callback-input-height);
  min-height: var(--pcs-callback-input-height);
  max-height: var(--pcs-callback-input-height);
  padding: 0 var(--pcs-callback-input-padding-x);
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  background: #ffffff;
  color: #171717;
  font: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  outline: none;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-callback-form__input-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: var(--pcs-callback-input-height);
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-callback-form__input-wrap:focus-within {
  border-color: #8b73f7;
  box-shadow: 0 0 0 3px rgba(139, 115, 247, 0.16);
}

.pcs-native-callback-form__input-wrap > input {
  height: 100%;
  min-height: 0;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.pcs-native-callback-form__ph {
  display: none;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8e8e8e;
  font-family: "Kumbh Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}

.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) .pcs-native-callback-form__ph {
  display: block;
}

.pcs-native-callback-form__input-wrap > i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #171717;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

/* Date/time inside JS wrapper: borderless fill (border lives on __input-wrap, like phone). */
.pcs-native-callback-form__input-wrap input[type="date"],
.pcs-native-callback-form__input-wrap input[type="time"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 0 48px 0 var(--pcs-callback-input-padding-x);
  border: 0;
  border-radius: 0;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  color: #171717;
  background-color: transparent;
  color-scheme: light;
  -webkit-text-fill-color: #171717;
  font-family: "Kumbh Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
  box-shadow: none;
}

/* Date/time before JS wrap (fallback): bordered like other inputs */
.pcs-native-callback-form__field > input[type="date"],
.pcs-native-callback-form__field > input[type="time"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: var(--pcs-callback-input-height);
  min-height: var(--pcs-callback-input-height);
  max-height: var(--pcs-callback-input-height);
  padding: 0 48px 0 var(--pcs-callback-input-padding-x);
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  color: #171717;
  background-color: #ffffff;
  color-scheme: light;
  -webkit-text-fill-color: #171717;
  font-family: "Kumbh Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
}

.pcs-native-callback-form__field input[type="date"]::-webkit-date-and-time-value,
.pcs-native-callback-form__field input[type="time"]::-webkit-date-and-time-value,
.pcs-native-callback-form__input-wrap input[type="date"]::-webkit-date-and-time-value,
.pcs-native-callback-form__input-wrap input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 0;
  color: #171717;
  -webkit-text-fill-color: #171717;
}

.pcs-native-callback-form__field input[type="date"]::-webkit-datetime-edit,
.pcs-native-callback-form__field input[type="time"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap input[type="date"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap input[type="time"]::-webkit-datetime-edit {
  display: inline-flex;
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: 0;
  color: #171717;
  -webkit-text-fill-color: #171717;
}

.pcs-native-callback-form__field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.pcs-native-callback-form__field input[type="time"]::-webkit-datetime-edit-fields-wrapper,
.pcs-native-callback-form__input-wrap input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.pcs-native-callback-form__input-wrap input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

/* Hide native empty date/time text so custom placeholder shows (mobile + desktop) */
.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="date"],
.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="time"] {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="date"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="time"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="date"]::-webkit-date-and-time-value,
.pcs-native-callback-form__input-wrap.is-empty:not(.is-focused) input[type="time"]::-webkit-date-and-time-value {
  opacity: 0;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pcs-native-callback-form__input-wrap.has-value input[type="date"],
.pcs-native-callback-form__input-wrap.has-value input[type="time"] {
  color: #171717;
  -webkit-text-fill-color: #171717;
}

.pcs-native-callback-form__input-wrap.has-value input[type="date"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap.has-value input[type="time"]::-webkit-datetime-edit,
.pcs-native-callback-form__input-wrap.has-value input[type="date"]::-webkit-date-and-time-value,
.pcs-native-callback-form__input-wrap.has-value input[type="time"]::-webkit-date-and-time-value {
  opacity: 1;
  color: #171717;
  -webkit-text-fill-color: #171717;
}

@media (max-width: 767.98px) {
  .pcs-native-callback-form {
    --pcs-callback-input-height: 54px;
    --pcs-callback-input-padding-x: 14px;
  }

  .pcs-native-callback-form__field--date,
  .pcs-native-callback-form__field--time,
  .pcs-native-callback-form__field:has(input[name="best_date"]),
  .pcs-native-callback-form__field:has(input[name="preferred_time"]) {
    grid-column: 1 / -1;
  }

  .pcs-native-callback-form__field > input[type="date"],
  .pcs-native-callback-form__field > input[type="time"],
  .pcs-native-callback-form__input-wrap input[type="date"],
  .pcs-native-callback-form__input-wrap input[type="time"] {
    padding: 0 44px 0 var(--pcs-callback-input-padding-x);
    font-size: 16px;
  }

  .pcs-native-callback-form__field > input[type="date"],
  .pcs-native-callback-form__field > input[type="time"] {
    height: var(--pcs-callback-input-height);
    min-height: var(--pcs-callback-input-height);
    max-height: var(--pcs-callback-input-height);
  }

  .pcs-native-callback-form__ph {
    left: 14px;
    font-size: 16px;
  }

  .pcs-native-callback-form__input-wrap > i {
    right: 14px;
    font-size: 17px;
  }
}

.pcs-native-callback-form__field input[type="date"]::-webkit-calendar-picker-indicator,
.pcs-native-callback-form__field input[type="time"]::-webkit-calendar-picker-indicator,
.pcs-native-callback-form__input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.pcs-native-callback-form__input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.pcs-native-callback-form__field > input[type="date"],
.pcs-native-callback-form__field > input[type="time"],
.pcs-native-callback-form__input-wrap input[type="date"],
.pcs-native-callback-form__input-wrap input[type="time"] {
  position: relative;
  z-index: 1;
}

.pcs-native-callback-form__input-wrap input[type="date"]:focus,
.pcs-native-callback-form__input-wrap input[type="time"]:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

@media (prefers-color-scheme: dark) {
  .pcs-native-callback-form__field input[type="date"],
  .pcs-native-callback-form__field input[type="time"],
  .pcs-native-callback-form__input-wrap input[type="date"],
  .pcs-native-callback-form__input-wrap input[type="time"] {
    color-scheme: light;
    background-color: #ffffff;
    color: #171717;
    -webkit-text-fill-color: #171717;
  }
}

#callbackModal .pcs-native-callback-form__field--date,
#callbackModal .pcs-native-callback-form__field--time {
  gap: 8px;
}

#callbackModal .pcs-native-callback-form__grid {
  gap: 18px 26px;
}

.pcs-native-callback-form__field select {
  appearance: auto;
  color: #7a7a7a;
}

.pcs-native-callback-form__field input::placeholder {
  color: #8e8e8e;
  opacity: 1;
}

.pcs-native-callback-form__field input:focus,
.pcs-native-callback-form__field select:focus,
.pcs-native-callback-form__agree input:focus-visible {
  border-color: #8b73f7;
  box-shadow: 0 0 0 3px rgba(139, 115, 247, 0.16);
}

.pcs-native-callback-form__phone {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  height: var(--pcs-callback-input-height);
  min-height: var(--pcs-callback-input-height);
  max-height: var(--pcs-callback-input-height);
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.pcs-native-callback-form__phone:focus-within {
  border-color: #8b73f7;
  box-shadow: 0 0 0 3px rgba(139, 115, 247, 0.16);
}

.pcs-native-callback-form__phone input {
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 0 var(--pcs-callback-input-padding-x);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pcs-native-callback-form__phone input:focus {
  box-shadow: none;
}

.pcs-native-callback-form__flag {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 100%;
  color: #111111 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.pcs-native-callback-form__agree {
  display: flex !important;
  gap: 12px;
  justify-content: flex-start;
  align-items: start;
  margin: 26px 0 28px;
  color: #171717;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

.pcs-native-callback-form__agree input {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 2px 0 0;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  accent-color: #8b73f7;
}

.pcs-native-callback-form__agree span {
  display: inline !important;
  width: auto !important;
  min-width: 0;
  color: #171717 !important;
  line-height: inherit;
  text-align: left !important;
  white-space: normal;
}

.pcs-native-callback-form__agree a {
  display: inline !important;
  float: none !important;
  color: #111111;
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.pcs-native-callback-form__submit {
  display: block;
  width: 100%;
  min-height: 58px;
  margin: 0 auto;
  padding: 15px 32px;
  border: 0;
  border-radius: 5px;
  background: #927cf5;
  color: #111111;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pcs-native-callback-form__submit:hover {
  transform: translateY(-1px);
  background: #8068f0;
  box-shadow: 0 14px 24px rgba(128, 104, 240, 0.22);
}

.pcs-native-callback-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.pcs-native-callback-form__status {
  min-height: 20px;
  margin: 16px 0 0;
  color: #6951d8;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.pcs-native-callback-form__status.is-error {
  color: #b42318;
}

.pcs-native-callback-form__status.is-success {
  color: #067647;
}

.pcs-native-callback-form__fineprint {
  margin: 22px 0 0;
  color: #747474;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 620px) {
  .pcs-native-callback-form {
    --pcs-callback-input-height: 54px;
    --pcs-callback-input-padding-x: 14px;
    padding: 22px 18px 24px;
  }

  .pcs-native-callback-form__title {
    font-size: 32px;
  }

  .pcs-native-callback-form__intro {
    font-size: 16px;
  }

  .pcs-native-callback-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Native callback / quote forms: responsive hardening for phones, tablets, laptops, monitors, and TV-size screens. */
#callbackModal,
#quoteModal {
  padding: clamp(8px, 2vw, 32px);
}

#callbackModal .pc-modal-card,
#quoteModal .pc-modal-card {
  width: min(100%, calc(100vw - clamp(16px, 4vw, 72px)));
  max-width: 960px;
  max-height: min(92vh, 980px);
  max-height: min(92dvh, 980px);
}

#callbackModal .pc-modal-body,
#quoteModal .pc-modal-body {
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
}

#callbackModal .pc-elfsight-wrap,
#quoteModal .pc-elfsight-wrap,
.pc-native-callback-shell,
.pc-native-quote-shell {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

.pcs-native-quote-form,
.pcs-native-callback-form {
  box-sizing: border-box;
}

.pcs-native-quote-form__logo img {
  width: clamp(220px, 42vw, 380px);
  max-width: 92%;
}

.pcs-native-callback-form__logo img {
  width: clamp(220px, 36vw, 340px);
  max-width: 88%;
}

.pcs-native-quote-form__title,
.pcs-native-callback-form__title {
  font-size: clamp(28px, 3.2vw, 36px);
}

.pcs-native-quote-form__intro,
.pcs-native-callback-form__intro {
  font-size: clamp(15px, 1.4vw, 18px);
}

.pcs-native-quote-form__field input,
.pcs-native-quote-form__field textarea,
.pcs-native-callback-form__field input,
.pcs-native-callback-form__field select {
  font-size: clamp(16px, 1.1vw, 18px);
}

@media (min-width: 1440px) {
  #callbackModal .pc-modal-card,
  #quoteModal .pc-modal-card {
    max-width: 1040px;
    max-height: min(90vh, 1040px);
    max-height: min(90dvh, 1040px);
  }
}

@media (min-width: 2560px) {
  #callbackModal .pc-modal-card,
  #quoteModal .pc-modal-card {
    max-width: 1120px;
  }
}

@media (max-width: 767.98px) {
  #callbackModal,
  #quoteModal {
    padding: 10px;
  }

  #callbackModal .pc-modal-card,
  #quoteModal .pc-modal-card {
    width: min(100%, calc(100vw - 20px));
    max-height: min(94vh, 980px);
    max-height: min(94dvh, 980px);
    border-radius: 18px;
  }

  #callbackModal .pc-modal-header,
  #quoteModal .pc-modal-header {
    padding: 16px 16px 8px;
  }

  #callbackModal .pc-modal-body,
  #quoteModal .pc-modal-body {
    padding: 10px 14px 16px;
  }

  #callbackModal .pc-elfsight-wrap,
  #quoteModal .pc-elfsight-wrap {
    padding: 10px;
    border-radius: 14px;
  }

  .pcs-native-quote-form,
  .pcs-native-callback-form {
    padding: 20px 14px 22px;
  }

  .pcs-native-quote-form__grid,
  .pcs-native-callback-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pcs-native-quote-form__agree,
  .pcs-native-callback-form__agree {
    font-size: 15px;
  }
}

@media (max-width: 374px) {
  #callbackModal,
  #quoteModal {
    padding: 6px;
  }

  #callbackModal .pc-modal-card,
  #quoteModal .pc-modal-card {
    width: calc(100vw - 12px);
    border-radius: 14px;
  }

  #callbackModal .pc-modal-header h3,
  #quoteModal .pc-modal-header h3 {
    font-size: 22px;
  }

  #callbackModal .pc-tube-canvas,
  #quoteModal .pc-tube-canvas {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .pcs-native-quote-form,
  .pcs-native-callback-form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pcs-native-quote-form__logo img,
  .pcs-native-callback-form__logo img {
    width: min(220px, 86vw);
  }

  .pcs-native-quote-form__phone,
  .pcs-native-callback-form__phone {
    min-width: 0;
  }

  .pcs-native-quote-form__flag,
  .pcs-native-callback-form__flag {
    min-width: 52px;
  }

  .pcs-native-quote-form__agree a,
  .pcs-native-callback-form__agree a {
    white-space: normal;
  }
}












/* ============================= */
/* PC SCIENTIST: CONTACT LAB CSS */
/* Bento, tactile UI, mobile-first */
/* ============================= */

:root{
  --pc-navy:#122241;
  --pc-accent:#6B6CE0;
  --pc-slate:#8494A7;
  --pc-white:#ffffff;
  --pc-ink: rgba(18,34,65,.92);
  --pc-soft: rgba(255,255,255,.08);
  --pc-contact-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pc-contact-dur: 0.22s;
  --pc-contact-raise: -2px;
}

/* Section base */
.pc-contactlab{
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  --pc-contactlab-parallax-y: 0px;
}

/* Ambient background (subtle tech/lab feel, light parallax via --pc-contactlab-parallax-y) */
.pc-contactlab__bg{
  position:absolute; inset:-40px;
  background:
    radial-gradient(900px 600px at 12% 10%, rgba(107,108,224,.18), transparent 60%),
    radial-gradient(900px 600px at 92% 80%, rgba(18,34,65,.20), transparent 60%),
    linear-gradient(180deg, rgba(18,34,65,.06), rgba(18,34,65,.02));
  filter: saturate(1.05);
  transform: translate3d(0, var(--pc-contactlab-parallax-y), 0);
  will-change: transform;
  pointer-events: none;
}

/* Grid */
.pc-contactlab__grid{
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

/* Panels */
.pc-contactlab__panel{
  border-radius: 22px;
  border: 1px solid rgba(107,108,224,.16);
  box-shadow:
    0 20px 55px rgba(0,0,0,.14),
    0 0 0 1px rgba(255,255,255,.22) inset;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
}

/* Form panel spacing */
.pc-contactlab__panel--form{
  padding: 18px;
}

/* Info panel */
.pc-contactlab__panel--info{
  padding: 18px;
  background:
    radial-gradient(850px 500px at 50% 0%, rgba(107,108,224,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
}

/* Header */
.pc-contactlab__head{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 6px 6px 12px;
}

.pc-contactlab__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--pc-navy);
  font-size: 22px;
  line-height: 1.1;
}

.pc-contactlab__formhead{
  margin-bottom: 4px;
}

.pc-contactlab__lede{
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(18,34,65,.72);
}

.pc-contactlab__sub{
  margin: 6px 0 0;
  color: rgba(18,34,65,.72);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

/* Lab mark (tube) */
.pc-labmark{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(107,108,224,.10);
  box-shadow: 0 0 0 1px rgba(107,108,224,.18) inset;
  display: grid;
  place-items: center;
}
.pc-labmark__c{
  width: 46px;
  height: 46px;
  display:block;
}

/* Elfsight container: makes it look embedded */
.pc-contactlab__formwrap{ padding: 8px 6px 12px; }
.pc-elfsight-shell{
  border-radius: 18px;
  border: 2px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.88); /* helps when Elfsight is transparent */
  padding: 14px;
  box-shadow: 0 12px 26px rgba(18,34,65,.08);
}

/* Note */
.pc-contactlab__note{
  margin: 12px 4px 0;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(18,34,65,.72);
}

/* Info header */
.pc-contactlab__infohead{
  padding: 8px 6px 12px;
}
.pc-contactlab__infotitle{
  margin: 0;
  font-weight: 900;
  color: var(--pc-navy);
  font-size: 20px;
  line-height: 1.1;
}
.pc-contactlab__infotext{
  margin: 8px 0 0;
  font-weight: 700;
  color: rgba(18,34,65,.70);
  font-size: 14px;
  line-height: 1.35;
}

/* Cards */
.pc-contactlab__cards{
  display: grid;
  gap: 12px;
  padding: 0 6px 10px;
}

/* Bento: phone + trust full width on large screens; email + location pair */
.pc-contactlab__cards--bento{
  display: grid;
  gap: 12px;
}

@media (min-width: 992px){
  .pc-contactlab__cards--bento{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc-labcard--bento-feature{
    grid-column: 1 / -1;
  }
}

.pc-labcard{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.92);
  padding: 12px;
  box-shadow: 0 10px 20px rgba(18,34,65,.06);
  transition:
    box-shadow var(--pc-contact-dur) var(--pc-contact-ease),
    border-color var(--pc-contact-dur) var(--pc-contact-ease),
    transform var(--pc-contact-dur) var(--pc-contact-ease);
}

@media (hover: hover) and (pointer: fine){
  .pc-labcard:has(a.pc-labcard__value):hover{
    transform: translateY(var(--pc-contact-raise));
    box-shadow: 0 14px 28px rgba(18,34,65,.10);
    border-color: rgba(107,108,224,.22);
  }
}

.pc-labcard:focus-within{
  border-color: rgba(107,108,224,.35);
  box-shadow: 0 0 0 3px rgba(107,108,224,.15), 0 12px 24px rgba(18,34,65,.08);
}

.pc-labcard__icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(107,108,224,.10);
  box-shadow: 0 0 0 1px rgba(107,108,224,.18) inset;
  display: grid;
  place-items: center;
}
.pc-labicon{
  width: 48px;
  height: 48px;
  display:block;
}

.pc-labcard__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(18,34,65,.60);
  margin-bottom: 4px;
}

.pc-labcard__value{
  font-size: 16px;
  font-weight: 900;
  color: var(--pc-accent);
  text-decoration: none;
  word-break: break-word;
}
.pc-labcard__value--text{
  color: rgba(18,34,65,.88);
}

.pc-labcard__hint{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(18,34,65,.65);
}

/* Social (tactile chips) */
.pc-contactlab__social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 6px 14px;
}
.pc-socialbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18,34,65,.12);
  background: rgba(255,255,255,.92);
  color: rgba(18,34,65,.86);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  transition:
    background var(--pc-contact-dur) var(--pc-contact-ease),
    border-color var(--pc-contact-dur) var(--pc-contact-ease),
    transform var(--pc-contact-dur) var(--pc-contact-ease),
    box-shadow var(--pc-contact-dur) var(--pc-contact-ease);
}
.pc-socialbtn:hover{
  background: rgba(255,255,255,1);
  border-color: rgba(107,108,224,.28);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(18,34,65,.08);
}
.pc-socialbtn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(107,108,224,.25);
}
.pc-socialbtn:active{
  transform: translateY(0);
}

/* HUD strip */
.pc-hudstrip{
  margin: 6px 6px 0;
  border-radius: 18px;
  border: 1px solid rgba(18,34,65,.10);
  background: rgba(255,255,255,.86);
  padding: 10px;
  box-shadow: 0 10px 22px rgba(18,34,65,.06);
}
.pc-hudstrip__c{
  width: 100%;
  height: 54px;
  display:block;
}

/* Desktop layout */
@media (min-width: 992px){
  .pc-contactlab{ padding: 110px 0; }
  .pc-contactlab__grid{
    grid-template-columns: 1.25fr .85fr;
    align-items: start;
    gap: 20px;
  }

  .pc-contactlab__panel--form{ padding: 22px; }
  .pc-contactlab__panel--info{ padding: 22px; }

  .pc-contactlab__title{ font-size: 28px; }
  .pc-contactlab__infotitle{ font-size: 22px; }
  .pc-contactlab__lede{ font-size: 16px; }
}

/* Contact lab: dark theme (elevated light cards on dark body) */
:root[data-theme=dark] .pc-contactlab__panel{
  background: linear-gradient(180deg, rgba(34,32,52,.98), rgba(28,26,44,.96));
  border-color: rgba(107,108,224,.28);
  box-shadow:
    0 24px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.06) inset;
}
:root[data-theme=dark] .pc-contactlab__panel--info{
  background:
    radial-gradient(850px 500px at 50% 0%, rgba(107,108,224,.14), transparent 62%),
    linear-gradient(180deg, rgba(34,32,52,.98), rgba(28,26,44,.94));
}
:root[data-theme=dark] .pc-contactlab__title,
:root[data-theme=dark] .pc-contactlab__infotitle{
  color: rgba(248,250,252,.96);
}
:root[data-theme=dark] .pc-contactlab__lede,
:root[data-theme=dark] .pc-contactlab__infotext{
  color: rgba(226,232,240,.78);
}
:root[data-theme=dark] .pc-labcard{
  background: rgba(22,20,38,.85);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
:root[data-theme=dark] .pc-labcard__label{
  color: rgba(226,232,240,.55);
}
:root[data-theme=dark] .pc-labcard__value--text{
  color: rgba(248,250,252,.9);
}
:root[data-theme=dark] .pc-labcard__hint{
  color: rgba(203,213,225,.72);
}
:root[data-theme=dark] .pc-elfsight-shell{
  background: rgba(22,20,38,.75);
  border-color: rgba(255,255,255,.1);
}
:root[data-theme=dark] .pc-socialbtn{
  background: rgba(22,20,38,.75);
  border-color: rgba(255,255,255,.12);
  color: rgba(248,250,252,.88);
}
:root[data-theme=dark] .pc-hudstrip{
  background: rgba(22,20,38,.75);
  border-color: rgba(255,255,255,.08);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .pc-contactlab__bg{
    filter:none;
    transform: none !important;
    will-change: auto;
  }
  .pc-labcard,
  .pc-socialbtn,
  .pc-contactlab__cta{
    transition: none !important;
  }
  .pc-labcard:has(a.pc-labcard__value):hover{
    transform: none;
  }
  .pc-socialbtn:hover,
  .pc-contactlab__cta:hover{
    transform: none;
  }
  /* WOW.js: show contact lab content without scroll-in animation */
  .pc-contactlab .wow{
    visibility: visible !important;
    animation: none !important;
    animation-name: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================= */
/* HERO ILLUSTRATION SCALE FIX  */
/* ============================= */

.hero-illustration{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base (mobile-first) */
.hero-illustration img{
    padding-top: 50px;
    width: 110%;
    max-width: 520px;
    height: auto;
}

/* Tablets */
@media (min-width: 576px){
    .hero-illustration img{
        width: 115%;
        max-width: 600px;
    }
}

/* Small desktops */
@media (min-width: 992px){
    .hero-illustration img{
        width: 125%;
        max-width: 720px;
    }
}

/* Large desktops / hero sections */
@media (min-width: 1200px){
    .hero-illustration img{
        width: 135%;
        max-width: 820px;
    }
}

/* Extra-wide screens */
@media (min-width: 1400px){
    .hero-illustration img{
        width: 145%;
        max-width: 900px;
    }
}

.hero-illustration img{
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
}

  /* ✅ PC Scientist palette (matches your modal/tube theme) */
  :root{
    --pc-navy:#122241;
    --pc-accent:#6B6CE0;
  }

  /* ✅ Heading + icon layout */
  .pc-h2-lab{
    display:flex;
    align-items:center;
    gap: 12px;
  }

  /* ✅ Lab heading icon (visible on dark sections; replaces canvas-only box) */
  .pc-h2-lab-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    flex: 0 0 auto;
    color: #8eb4ff;
    font-size: 1.35rem;
    background: linear-gradient(155deg, rgba(60, 114, 252, 0.28) 0%, rgba(107, 108, 224, 0.12) 100%);
    box-shadow: 0 0 0 1px rgba(107, 108, 224, 0.35) inset, 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  /* ✅ Canvas micro animation sizing (mobile-first) */
  .pc-cpu-tube-canvas{
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(107,108,224,.10);
    box-shadow: 0 0 0 1px rgba(107,108,224,.18) inset;
    flex: 0 0 auto;
  }

  /* Desktop bump */
  @media (min-width: 992px){
    .pc-h2-lab-icon{ width: 62px; height: 62px; font-size: 1.5rem; }
    .pc-cpu-tube-canvas{ width: 62px; height: 62px; }
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .pc-cpu-tube-canvas{ background: rgba(107,108,224,.08); }
  }

/* ===== PC Scientist Hero Slider (mobile-first, no hover) ===== */
.pcs-hero-slider{
  position: relative;
  width: 100%;
  max-width: 720px;          /* desktop constraint (adjust) */
  margin-left: auto;
  margin-right: auto;
  margin-top: 33px;
  border-radius: 22px;
  overflow: hidden;

  /* matches your glassy theme */
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(107,108,224,.22);
}

.pcs-hero-track{
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 420ms cubic-bezier(.22,.9,.22,1);
  touch-action: pan-y; /* allows vertical scroll, but we handle horizontal swipe */
}

.pcs-hero-slide{
  flex: 0 0 100%;
  width: 100%;
}

.pcs-hero-slide img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* Increase height a bit for hero look */
  aspect-ratio: 1 / 1;       /* mobile: square-ish */
}

@media (min-width: 992px){
  .pcs-hero-slider{
    max-width: 860px;
  }
  .pcs-hero-slide img{
    aspect-ratio: 4 / 3;     /* desktop: more hero-friendly */
  }
}

/* Buttons (no hover): same vertical center for prev/next (top 50% + translateY) */
.pcs-hero-btn{
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 0;
  border-radius: 14px;
  cursor: pointer;

  background: rgba(18,34,65,.45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 5;
  pointer-events: auto;
  transform: translateY(-50%);
}

.pcs-hero-btn i{
  display: block;
  font-size: 18px;
  line-height: 1;
}

#pcsHeroPrev{ left: 10px; right: auto; }
#pcsHeroNext{ left: auto; right: 10px; }

/* Dots */
.pcs-hero-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}

.pcs-hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: rgba(255,255,255,.35);
}

.pcs-hero-dot.is-active{
  background: rgba(107,108,224,.95);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .pcs-hero-track{ transition: none; }
}

/* Mobile View Arrow button services */
#services-jump .arry-btn{
  position: relative;
  z-index: 9999;
}

#services-jump .arry-btn button{
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}

#services-jump .service-two__shape-left,
#services-jump .service-two__shape-right{
  pointer-events: none;
}

/* =========================
   Elder-friendly + SEO-safe CTA (no HTML change)
   - Big readable type
   - Better contrast
   - Centered + responsive sizing
========================= */

#services-jump .pcs-canvas-cta{
  /* Center the whole CTA block */
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;

  /* Mobile first sizing */
  min-height: 220px;
  padding: 0; /* content handles padding */
}

/* Content block: centered layout (mobile first) */
#services-jump .pcs-canvas-cta__content{
  max-width: 640px;
  margin: 0 auto;
  text-align: left; /* Elder-friendly: left aligned reads easier */
  padding: 22px 18px;
}

/* Badge stays near top but readable */
#services-jump .pcs-canvas-cta__badge{
  font-size: 13px;
  padding: 9px 12px;
}

/* Headline: bigger + clearer */
#services-jump .pcs-canvas-cta__title{
  font-size: clamp(22px, 4.8vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.2px;
  margin-top: 12px;
}

/* Body text: bigger, higher contrast, easier scanning */
#services-jump .pcs-canvas-cta__sub{
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}

/* Make the important line pop for urgency */
#services-jump .pcs-canvas-cta__sub strong{
  color: rgba(255,255,255,0.98);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(60,114,252,0.45);
  text-underline-offset: 3px;
}

/* Button: big tap target for elderly */
#services-jump .pcs-canvas-cta__btn{
  width: 100%;
  min-height: 56px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 14px;
  padding: 14px 18px;
}

/* Fineprint: still readable */
#services-jump .pcs-canvas-cta__fineprint{
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin-top: 12px;
}

/* Extra contrast improvement for elderly eyes */
#services-jump .pcs-canvas-cta{
  border-color: rgba(255,255,255,0.14);
}

/* Desktop: center the whole block + keep it tidy */
@media (min-width: 992px){
  #services-jump .pcs-canvas-cta{
    min-height: 260px;
  }

  #services-jump .pcs-canvas-cta__content{
    padding: 32px 34px;
  }

  /* Button on desktop can be inline but still big */
  #services-jump .pcs-canvas-cta__btn{
    width: auto;
    min-width: 260px;
  }
}

/* Very small phones */
@media (max-width: 360px){
  #services-jump .pcs-canvas-cta__content{
    padding: 18px 14px;
  }
  #services-jump .pcs-canvas-cta__btn{
    min-height: 54px;
    font-size: 15px;
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  #services-jump .pcs-canvas-cta::after{
    animation: none !important;
  }
}

/* ================================
   SAFE "CAN'T FIND SERVICE" CTA
   Mobile-first, elderly-friendly
================================ */

/* Outer container */
.pcs-help-cta{
  position: relative;
  margin: 48px auto 0;
  max-width: 960px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(800px 300px at 20% 20%, rgba(60,114,252,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.pcs-help-cta:not(.pcs-help-cta--home)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 22px 22px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 1;
}

/* Canvas layer (ALWAYS background only) */
.pcs-help-cta__canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}

/* Content layer */
.pcs-help-cta__content{
  position: relative;
  z-index: 2;
  padding: 24px 18px;
  max-width: 640px;
}

/* Badge */
.pcs-help-cta__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(0,0,0,0.25);
  color: #fff;
}

/* === Coolant micro-dot (replaces blue dot) === */

.pcs-help-cta__dot{
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0,255,160,0.12); /* tube glass */
  box-shadow:
    inset 0 0 0 2px rgba(0,255,160,0.35),
    0 0 8px rgba(0,255,160,0.25);
  overflow: hidden;
  flex-shrink: 0;
}

/* Canvas inside the dot */
.pcs-help-cta__dot canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* Title (elder-friendly) */
.pcs-help-cta__title{
  margin: 14px 0 8px;
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
}

/* Text */
.pcs-help-cta__text{
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

/* Button */
.pcs-help-cta__btn{
  width: 100%;
  min-height: 56px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 14px;
}

/* Fineprint */
.pcs-help-cta__fineprint{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* Desktop */
@media (min-width: 992px){
  .pcs-help-cta__content{
    padding: 32px;
  }
  .pcs-help-cta__btn{
    width: auto;
    min-width: 260px;
  }
}

/* CTA: Canvas-only animation mode (no CSS animations) */
.pcs-help-cta,
.pcs-help-cta *{
  animation: none !important;
  transition: none !important;
}

/* Canvas stays decorative + never blocks clicks */
.pcs-help-cta__canvas{ background: transparent !important; pointer-events: none !important; }

/* === Desktop: fill the section, no empty gaps === */
@media (min-width: 1400px){
  .pcs-help-cta{
    max-width: 1320px;  /* expand width */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .pcs-help-cta__content{
    max-width: 760px;   /* readable text column */
    padding: 48px;
  }
}

/* === Desktop: center CTA content horizontally === */
@media (min-width: 1200px){
  .pcs-help-cta{
    display: flex;
    align-items: center;       /* vertical centering */
    justify-content: center;   /* horizontal centering */
  }

  .pcs-help-cta__content{
    max-width: 760px;          /* readable line length */
    width: 100%;
    margin: 0 auto;            /* HARD center */
    padding: 48px 56px;
    text-align: left;          /* keep professional alignment */
  }
}

/* === Desktop: let content fill the CTA === */
@media (min-width: 1200px){
  .pcs-help-cta__content{
    max-width: none;      /* 🔴 this removes the gap */
    width: 100%;
    padding: 56px 72px;   /* keeps text comfortable */
  }
}

@media (min-width: 1200px){
  .pcs-help-cta__title,
  .pcs-help-cta__text{
    max-width: 980px;   /* readable, but fills space */
  }
}

/* --------------------------------------------------------------------------
   Home index only: richer "Not sure which service" CTA (pcs-help-cta--home)
   -------------------------------------------------------------------------- */

.pcs-help-cta--home {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(
    125deg,
    rgba(60, 114, 252, 0.42) 0%,
    rgba(132, 92, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(60, 114, 252, 0.22) 100%
  );
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: none;
}

.pcs-help-cta--home .pcs-help-cta__frame {
  position: relative;
  z-index: 2;
  border-radius: 23px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(16, 22, 52, 0.97) 0%,
    rgba(8, 10, 28, 0.96) 45%,
    rgba(14, 18, 44, 0.98) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pcs-help-cta--home .pcs-help-cta__frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(132, 92, 255, 0.35) 0%,
    #3c72fc 45%,
    rgba(100, 200, 255, 0.55) 100%
  );
  pointer-events: none;
  z-index: 4;
}

.pcs-help-cta--home .pcs-help-cta__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.5rem 1.25rem 1.65rem;
}

@media (min-width: 992px) {
  .pcs-help-cta--home .pcs-help-cta__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: 2rem 2.25rem;
    padding: 2rem 2.25rem 2rem;
    align-items: stretch;
  }
}

.pcs-help-cta--home .pcs-help-cta__content {
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
}

.pcs-help-cta--home .pcs-help-cta__title {
  margin-top: 12px;
}

.pcs-help-cta--home .pcs-help-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(60, 114, 252, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.pcs-help-cta--home button.pcs-help-cta__advice.pcs-open-cta-modal {
  margin: 1.15rem 0 0;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: #dbe8ff;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0%, rgba(60, 114, 252, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 42rem;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pcs-help-cta--home button.pcs-help-cta__advice.pcs-open-cta-modal:hover {
    border-color: rgba(160, 200, 255, 0.35);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }
}
.pcs-help-cta--home button.pcs-help-cta__advice.pcs-open-cta-modal:focus-visible {
  outline: 2px solid #9ec5ff;
  outline-offset: 3px;
}

button.pcs-help-cta__advice.pcs-help-cta__advice--hub.pcs-open-cta-modal {
  color: rgba(11, 18, 42, 0.88);
  background: linear-gradient(125deg, rgba(60, 114, 252, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
  border: 1px solid rgba(60, 114, 252, 0.22);
  border-radius: 12px;
  padding: 0.65rem 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  font-family: inherit;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  max-width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  button.pcs-help-cta__advice.pcs-help-cta__advice--hub.pcs-open-cta-modal:hover {
    border-color: rgba(60, 114, 252, 0.45);
    box-shadow: 0 8px 22px rgba(60, 114, 252, 0.15);
    transform: translateY(-1px);
  }
}
button.pcs-help-cta__advice.pcs-help-cta__advice--hub.pcs-open-cta-modal:focus-visible {
  outline: 2px solid #3c72fc;
  outline-offset: 2px;
}

@media (min-width: 576px) {
  .pcs-help-cta--home .pcs-help-cta__btn {
    width: auto;
    min-width: 280px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pcs-help-cta--home .pcs-help-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(60, 114, 252, 0.45);
    filter: saturate(1.05);
  }
}

.pcs-help-cta--home .pcs-help-cta__btn:focus-visible {
  outline: 2px solid #9ec5ff;
  outline-offset: 3px;
}

.pcs-help-cta--home .pcs-help-cta__fine-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 1rem;
}

.pcs-help-cta--home .pcs-help-cta__fine-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ec5ff;
  text-decoration: none;
}

.pcs-help-cta--home .pcs-help-cta__fine-link:hover {
  color: #c5d9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcs-help-cta--home .pcs-help-cta__fine-link:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.pcs-help-cta--home .pcs-help-cta__fine-link--btn {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.pcs-help-cta--home .pcs-help-cta__fine-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.55);
}

.pcs-help-cta--home .pcs-help-cta__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(60, 114, 252, 0.06) 100%
  );
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pcs-help-cta--home .pcs-help-cta__aside-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8eb6ff;
}

.pcs-help-cta--home .pcs-help-cta__aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pcs-help-cta--home .pcs-help-cta__aside-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.92);
}

.pcs-help-cta--home .pcs-help-cta__aside-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.05rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #a8c8ff;
  background: rgba(60, 114, 252, 0.2);
  border: 1px solid rgba(60, 114, 252, 0.28);
}

.pcs-help-cta--home .pcs-help-cta__aside-hub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: #e8f0ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(60, 114, 252, 0.18);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-help-cta--home .pcs-help-cta__aside-hub:hover {
    border-color: rgba(100, 160, 255, 0.45);
    background: rgba(60, 114, 252, 0.28);
    transform: translateY(-1px);
  }
}

.pcs-help-cta--home .pcs-help-cta__aside-hub:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 3px;
}

@media (min-width: 1200px) {
  .pcs-help-cta--home {
    display: block;
    max-width: 1140px;
  }

  .pcs-help-cta--home .pcs-help-cta__title,
  .pcs-help-cta--home .pcs-help-cta__text {
    max-width: 36rem;
  }
}

@media (min-width: 1400px) {
  .pcs-help-cta--home {
    max-width: 1200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcs-help-cta--home .pcs-help-cta__aside-hub {
    transition: none !important;
  }

  .pcs-help-cta--home .pcs-help-cta__aside-hub:hover {
    transform: none;
  }
}


/* WHY CHOOSE US – mobile first, big readable text, good spacing */
/* =========================================================
   PC SCIENTIST - WHY CHOOSE US (CLEAN REPLACEMENT)
   - No overrides
   - Kumbh Sans
   - Mobile: stacked and readable
   - Desktop: fixed 2-column cards, contained width
   ========================================================= */

:root{
  --pcs-accent: 90, 180, 255;            /* blue/teal */
  --pcs-text: rgba(255,255,255,0.96);
  --pcs-muted: rgba(255,255,255,0.78);
  --pcs-card: rgba(255,255,255,0.045);
  --pcs-border: rgba(255,255,255,0.12);
}

/* Wrap the entire cards area so it never bleeds into your video/image */
.pcs-benefits-wrap{
  width: 100%;
  max-width: 760px;     /* keeps cards inside the left column */
}

/* Grid */
.pcs-benefits-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

/* Card — row 1: icon + title; row 2: description full width */
.pcs-benefit{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;

  padding: 16px 16px;
  border-radius: 16px;

  background: var(--pcs-card);
  border: 1px solid var(--pcs-border);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Let title + desc participate in the card grid (icon | title / description) */
.pcs-benefit > div:not(.pcs-benefit__icon){
  display: contents;
}

/* Icon badge */
.pcs-benefit__icon{
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;

  background: radial-gradient(circle at 30% 25%,
    rgba(var(--pcs-accent), 0.18),
    rgba(255,255,255,0.03) 55%,
    rgba(0,0,0,0.10) 100%);

  border: 1px solid rgba(var(--pcs-accent), 0.18);

  box-shadow:
    0 12px 26px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);

  display: grid;
  place-items: center;
}

.pcs-icon-canvas{
  width: 32px;
  height: 32px;
  display: block;
}

/* Static Font Awesome replacement (e.g. home WHY CHOOSE US) - no canvas animation */
.pcs-benefit__icon .pcs-benefit__static-fa{
  font-size: 18px;
  line-height: 1;
  color: #3fe090;
}

/* Text */
.pcs-benefit__title{
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: var(--pcs-text);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 20px;      /* mobile readable */
  line-height: 1.15;
}

.pcs-benefit__desc{
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: var(--pcs-muted);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 62ch;
}

/* Desktop: fixed 2 columns, consistent sizing */
@media (min-width: 992px){

  .pcs-benefits-grid{
    grid-template-columns: repeat(2, 360px); /* fixed left/right cards */
    gap: 18px;
  }

  .pcs-benefit{
    min-height: 126px;
    padding: 16px 16px;
  }

  .pcs-benefit__title{
    font-size: 20px; /* balanced desktop size */
  }

  .pcs-benefit__desc{
    font-size: 15.5px;
    max-width: 44ch;  /* prevents long lines on desktop */
  }

  .pcs-benefit__icon{
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .pcs-icon-canvas{
    width: 28px;
    height: 28px;
  }

  .pcs-benefit__icon .pcs-benefit__static-fa{
    font-size: 17px;
  }
}

/* Big screens: slightly wider but still contained */
@media (min-width: 1400px){
  .pcs-benefits-wrap{ max-width: 820px; }
  .pcs-benefits-grid{ grid-template-columns: repeat(2, 390px); }
}

/* Why Choose Us — expand control */
.choose-area .pcs-benefits-more-wrap {
  max-width: 760px;
}
.pcs-benefits-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(155deg, rgba(60, 114, 252, 0.35) 0%, rgba(132, 92, 255, 0.12) 100%);
  border: 1px solid rgba(100, 160, 255, 0.38);
  border-radius: 999px;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.choose-area .pcs-benefits-more-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(150, 200, 255, 0.55);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(60, 114, 252, 0.25);
}
.choose-area .pcs-benefits-more-btn:focus-visible {
  outline: 2px solid #9ec5ff;
  outline-offset: 3px;
}
.pcs-benefits-more-btn .fa-chevron-down {
  font-size: 0.75em;
  opacity: 0.9;
  transition: transform 0.25s ease;
}
.pcs-benefits-more-btn[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

body.pcs-svc-page .pcs-benefits-more-btn--svc,
body.pcs-hub--retro .pcs-benefits-more-btn--hub {
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e8eeff;
  background: linear-gradient(165deg, rgba(22, 28, 54, 0.55) 0%, rgba(60, 114, 252, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
@media (hover: hover) and (pointer: fine) {
  body.pcs-svc-page .pcs-benefits-more-btn--svc:hover,
  body.pcs-hub--retro .pcs-benefits-more-btn--hub:hover {
    transform: translateY(-3px);
    border-color: rgba(120, 170, 255, 0.45);
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(60, 114, 252, 0.22);
  }
}

/* More benefits — Swiper (replaces collapse) */
.pcs-benefits-more-heading {
  margin: 0 0 0.5rem 0;
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.choose-area .pcs-benefits-more-heading { color: rgba(255, 255, 255, 0.9); }

.pcs-benefits-more-teaser {
  margin: 0;
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.choose-area .pcs-benefits-more-teaser { color: rgba(255, 255, 255, 0.88); }

.pcs-benefits-more-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .pcs-benefits-more-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.pcs-home .pcs-benefits-more-btn--home {
  text-transform: none;
  letter-spacing: 0.02em;
}

.pcs-benefits-more-slide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: left;
  width: 100%;
}
@media (min-width: 576px) {
  .pcs-benefits-more-slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Prev/next on left & right of slide area; dots below cards */
.pcs-benefits-more-swiper {
  position: relative;
  padding: 0 52px 2.35rem;
  box-sizing: border-box;
}

/* Swiper sets slide width in JS — do not set width:100% here (breaks slidesPerView:2 spacing) */
.pcs-benefits-more-swiper .swiper-slide {
  min-width: 0;
  box-sizing: border-box;
}

.pcs-benefits-more-prev,
.pcs-benefits-more-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 28, 0.55);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pcs-benefits-more-prev {
  left: 2px;
}
.pcs-benefits-more-next {
  right: 2px;
}
.pcs-benefits-more-prev:hover,
.pcs-benefits-more-next:hover {
  border-color: rgba(120, 170, 255, 0.5);
  background: rgba(60, 114, 252, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.pcs-benefits-more-prev:focus-visible,
.pcs-benefits-more-next:focus-visible {
  outline: 2px solid #9ec5ff;
  outline-offset: 3px;
}
.choose-area .pcs-benefits-more-prev,
.choose-area .pcs-benefits-more-next {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(100, 160, 255, 0.4);
}

.pcs-benefits-more-pagination.swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 22px;
  margin: 0;
  padding: 0;
}
.pcs-benefits-more-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  opacity: 0.45;
  background: rgba(255, 255, 255, 0.75);
}
.pcs-benefits-more-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #5b8cff;
  transform: scale(1.1);
}

body.pcs-svc-page .pcs-benefits-more-heading--svc,
body.pcs-hub--retro .pcs-benefits-more-heading--hub {
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #e8eeff;
}

body.pcs-svc-page .pcs-support-strip.pcs-support-strip--more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 1200px) {
  body.pcs-svc-page .pcs-support-strip.pcs-support-strip--more {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  body.pcs-svc-page .pcs-support-strip.pcs-support-strip--more {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us — inline CTA under benefits (home) */
.choose-area .pcs-choose-benefits-cta {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-top: 1.75rem;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}
@media (min-width: 1400px) {
  .choose-area .pcs-choose-benefits-cta {
    max-width: 820px;
  }
}
.choose-area .pcs-choose-benefits-cta__accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(60, 114, 252, 0.15) 0%,
    rgba(120, 200, 255, 0.9) 38%,
    rgba(160, 120, 255, 0.85) 72%,
    rgba(60, 114, 252, 0.2) 100%);
  opacity: 0.95;
}
.choose-area .pcs-choose-benefits-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 576px) {
  .choose-area .pcs-choose-benefits-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .choose-area .pcs-choose-benefits-cta__btn {
    width: 100%;
    justify-content: space-between;
  }
}
.choose-area .pcs-choose-benefits-cta__kicker {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.95);
  margin-bottom: 0.35rem;
}
.choose-area .pcs-choose-benefits-cta__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
}
.choose-area .pcs-choose-benefits-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  padding: 0.85rem 1.15rem 0.85rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #3c72fc 0%, #5a4fd6 48%, #4a8cff 100%);
  box-shadow:
    0 14px 36px rgba(60, 114, 252, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.choose-area .pcs-choose-benefits-cta__btn-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.choose-area .pcs-choose-benefits-cta__btn-shine::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 45%;
  height: 180%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: translateX(-20%) rotate(12deg);
  animation: pcs-choose-cta-shine 4.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .choose-area .pcs-choose-benefits-cta__btn-shine::after {
    animation: none;
  }
}
@keyframes pcs-choose-cta-shine {
  0%, 18% { transform: translateX(-40%) rotate(12deg); opacity: 0; }
  28% { opacity: 0.85; }
  45%, 100% { transform: translateX(220%) rotate(12deg); opacity: 0; }
}
.choose-area .pcs-choose-benefits-cta__btn-ico {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 1.05rem;
}
.choose-area .pcs-choose-benefits-cta__btn-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.choose-area .pcs-choose-benefits-cta__btn-label strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.choose-area .pcs-choose-benefits-cta__btn-label small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.03em;
}
.choose-area .pcs-choose-benefits-cta__btn-go {
  position: relative;
  z-index: 1;
  margin-left: 0.15rem;
  font-size: 1.15rem;
  opacity: 0.95;
  transition: transform 0.2s ease;
}
@media (min-width: 576px) {
  .choose-area .pcs-choose-benefits-cta__btn {
    padding-right: 1.35rem;
  }
}
.choose-area .pcs-choose-benefits-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 20px 44px rgba(60, 114, 252, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.choose-area .pcs-choose-benefits-cta__btn:hover .pcs-choose-benefits-cta__btn-go {
  transform: translateX(4px);
}
.choose-area .pcs-choose-benefits-cta__btn:focus-visible {
  outline: 2px solid #9ec5ff;
  outline-offset: 3px;
}

.pcs-banner-three-cta-col {
  margin-top: -30px;
}




























/* =========================================================
   FIX: Make NSW Coverage section ignore Home page theme
   Scope: .pcs-nsw-coverage (only affects this section)
   ========================================================= */

.pcs-nsw-coverage{
  /* force light section regardless of home theme */
  background: #f3f4f8 !important;
  color: #0f1226 !important;
}

/* kill “dark theme” / overlays coming from parent theme */
.pcs-nsw-coverage *{
  text-shadow: none !important;
}

.pcs-nsw-coverage a{
  color: inherit !important;
}

/* Title */
.pcs-nsw-coverage .pcs-region-links__title{
  color: #0f1226 !important;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.08;
}

/* Rule */
.pcs-nsw-coverage .pcs-region-links__rule{
  height: 2px;
  width: 100%;
  background: rgba(15,18,38,0.10);
  border-radius: 999px;
}

/* Grid */
.pcs-nsw-coverage .pcs-region-links__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  min-width: 0;
  width: 100%;
}

/* Cards */
.pcs-nsw-coverage .pcs-region-links__item{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding: 22px 26px;
  min-height: 84px;
  min-width: 0;

  background: #e9e9ee !important;
  border: 1px solid rgba(15,18,38,0.08);
  border-radius: 18px;

  text-decoration:none !important;
  color: #5a5a5a !important;
  font-weight: 700;
  font-size: 20px;

  position: relative;
  overflow: hidden;

  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* left purple accent */
.pcs-nsw-coverage .pcs-region-links__item::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 9px;
  background: linear-gradient(180deg,#6b6ce0,#4c4ed9);
  border-radius: 18px 0 0 18px;
}

/* Arrow circle + icon */
.pcs-nsw-coverage .pcs-region-links__arrow{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #dcdcf4 !important;

  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.pcs-nsw-coverage .pcs-region-links__arrow i{
  color:#2c2c2c !important;
}

/* Hover */
.pcs-nsw-coverage .pcs-region-links__item:hover{
  background:#e2e3f5 !important;
  color:#202235 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.pcs-nsw-coverage .pcs-region-links__item:hover .pcs-region-links__arrow i{
  color:#000 !important;
}

/* CTA */
.pcs-nsw-coverage .pcs-mini-cta{
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;

  background: linear-gradient(180deg, rgba(240,241,255,0.95), rgba(234,235,255,0.70)) !important;
  border: 1px solid rgba(107,108,224,0.25) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.pcs-nsw-coverage .pcs-mini-cta strong{
  color:#0f1226 !important;
  font-size: 20px;
  font-weight: 800;
}

.pcs-nsw-coverage .pcs-mini-cta span{
  color:#46526f !important;
  font-weight: 600;
}

/* Keep your blue buttons readable (home theme may invert them) */
.pcs-nsw-coverage .pcs-mini-cta .btn-one,
.pcs-nsw-coverage .pcs-mini-cta .btn-one.btn-two{
  color:#fff !important;
}

.pcs-nsw-coverage .pcs-mini-cta .btn-one i,
.pcs-nsw-coverage .pcs-mini-cta .btn-one.btn-two i{
  color:#fff !important;
}

/* Responsive */
@media (max-width: 991px){
  .pcs-nsw-coverage .pcs-region-links__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .pcs-nsw-coverage .pcs-mini-cta{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px){
  .pcs-nsw-coverage .pcs-region-links__grid{
    grid-template-columns: 1fr;
  }
  .pcs-nsw-coverage .pcs-region-links__item{
    padding: 18px;
    font-size: 18px;
    min-height: 76px;
  }
}


.pcs-nsw-coverage.sub-bg::before,
.pcs-nsw-coverage.faq-area::before{
  opacity: 0 !important;
  content: none !important;
}

/* ================================
   FORCE card text to be dark
   (Home page theme is overriding)
   ================================ */

.pcs-nsw-coverage .pcs-region-links__item,
.pcs-nsw-coverage .pcs-region-links__item span,
.pcs-nsw-coverage .pcs-region-links__item *:not(i) {
  color: #0f1226 !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* If your first span is the label (Sydney etc.) */
.pcs-nsw-coverage .pcs-region-links__item > span:first-child {
  color: #0f1226 !important;
  font-weight: 700 !important;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Keep arrow icon dark (already, but enforce) */
.pcs-nsw-coverage .pcs-region-links__arrow i,
.pcs-nsw-coverage .pcs-region-links__arrow i::before {
  color: #2c2c2c !important;
  opacity: 1 !important;
}

/* Service hub coverage CTA: quote link beside btn-one row */
.pcs-nsw-coverage .pcs-hub-coverage-quote-link {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 4px;
  color: #4c4ed9 !important;
  text-decoration: none;
  align-self: center;
}

.pcs-nsw-coverage .pcs-hub-coverage-quote-link:hover {
  text-decoration: underline;
  color: #3c54d0 !important;
}

/* Selling Points */
:root{
  --pcs-navy:#122241;
  --pcs-accent:#6B6CE0;
  --pcs-border:rgba(18,34,65,.10);
  --pcs-shadow:rgba(18,34,65,.06);
}

.pcs-mini,
.pcs-mini *{
  box-sizing:border-box;
}

.pcs-mini{
  width:100%;
  background:#fff;
  /* ✅ makes it not look like giant stretched rows */
  padding: 0;
}

/* ✅ Centered container so cards don't stretch across the whole page */
.pcs-mini__grid{
  width:100%;
  max-width: 1100px;     /* adjust: 980–1200 is ideal */
  margin: 0 auto;        /* center */
  padding: 0 14px;       /* mobile gutter */

  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Tablet */
@media (min-width:640px){
  .pcs-mini__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width:1024px){
  .pcs-mini__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ✅ Card: force box look */
.pcs-mini__card{
  border:1px solid var(--pcs-border);
  border-radius:18px;
  background:#fff;
  box-shadow: 0 10px 24px var(--pcs-shadow);

  padding:16px;
  min-width:0;

  /* prevents theme stretching weirdness */
  align-self: stretch;
}

/* Header row: icon + title same line */
.pcs-mini__head{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  margin-bottom:10px;
}

/* Icon */
.pcs-mini__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 44px;

  background: linear-gradient(145deg, rgba(107,108,224,.16), rgba(18,34,65,.04));
  border:1px solid rgba(107,108,224,.30);
}

.pcs-mini__icon i{
  font-size:16px;
  color:var(--pcs-accent);
}

/* Title */
.pcs-mini__title{
  margin:0;
  color:var(--pcs-navy);
  font-weight:800;
  line-height:1.05;

  font-size: clamp(10.8px, 0.75vw, 14px);

  white-space: normal;
  overflow-wrap: anywhere;
}

/* Mobile/tablet: allow wrap */
@media (max-width:1023px){
  .pcs-mini__title{
    white-space: normal;
  }
}

/* Description */
.pcs-mini__desc{
  margin:0;
  color:rgba(18,34,65,.80);
  font-size:13.5px;
  line-height:1.45;
  overflow-wrap:anywhere;
}

/* Subtle hover */
@media (hover:hover){
  .pcs-mini__card:hover{
    border-color: rgba(107,108,224,.32);
    box-shadow: 0 14px 34px rgba(18,34,65,.09);
  }
}

/* ================= DESKTOP COMPACT MODE ================= */
@media (min-width:1024px){

  .pcs-mini__grid{
    gap:14px; /* tighter grid */
  }

  .pcs-mini__card{
    padding:14px; /* tighter card padding */
  }

  .pcs-mini__head{
    gap:10px;
    margin-bottom:8px;
  }

  .pcs-mini__icon{
    width:40px;
    height:40px;
  }

  .pcs-mini__icon i{
    font-size:14px;
  }

  .pcs-mini__title{
    font-size: clamp(10.5px, 0.7vw, 13px);
    line-height:1.05;
  }

  .pcs-mini__desc{
    font-size:12.5px;
    line-height:1.35;
  }

}

/* ================= MOBILE ONLY (elder-friendly) ================= */
/* Desktop stays EXACTLY the same because this only applies below 640px */
@media (max-width: 639px){

  /* Give mobile some breathing room */
  .pcs-mini__grid{
    gap: 14px;
    padding: 0 16px;
  }

  /* Bigger tap targets + easier reading */
  .pcs-mini__card{
    padding: 18px;
    border-radius: 18px;
  }

  /* Header spacing */
  .pcs-mini__head{
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Larger icon for seniors */
  .pcs-mini__icon{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex: 0 0 52px;
  }

  .pcs-mini__icon i{
    font-size: 18px;
  }

  /* Title: larger + readable */
  .pcs-mini__title{
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.01em;

    /* keep it readable, allow wrap on small screens */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  /* Description: larger + comfortable line-height */
  .pcs-mini__desc{
    font-size: 15.5px;
    line-height: 1.55;
  }
}

/* ================= EXTRA SMALL PHONES (optional) ================= */
@media (max-width: 380px){
  .pcs-mini__card{ padding: 16px; }
  .pcs-mini__title{ font-size: 16px; }
  .pcs-mini__desc{ font-size: 15px; }
}

/* =========================================================
   PC Scientist – Universal Responsive Fix (Logo + Header + Hero)
========================================================= */

/* ---------- 0) Baseline hardening ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; }

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

/* Avoid tiny horizontal overflow (Edge/Windows + iOS quirks) */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

/* Fix 100vw overflow from Pace (vw includes scrollbar on some browsers) */
.pace.pace-inactive,
.pace.pace-inactive .pace-progress{
  width: 100% !important;
  max-width: 100% !important;
}

/* Clip decorative shapes so they never create horizontal scroll */
.banner-three-area,
.banner-three__container,
.service-two-area,
.about-two-area,
.choose-area,
.faq-area,
.footer-two-area,
.quote-area {
  overflow-x: hidden;
}
@supports (overflow: clip) {
  .banner-three-area,
  .banner-three__container,
  .service-two-area,
  .about-two-area,
  .choose-area,
  .faq-area,
  .footer-two-area,
  .quote-area {
    overflow-x: clip;
  }
}

/* Desktop: keep primary nav row from wrapping (Edge / wide breakpoints) */
@media (min-width: 992px) {
  .header__main {
    flex-wrap: nowrap !important;
    gap: 18px;
  }

  .main-menu ul {
    display: flex;
    flex-wrap: nowrap !important;
    white-space: nowrap;
  }

  .main-menu {
    min-width: 0;
  }
}

.header__main > * {
  min-width: 0;
}

/* ---------- 1) HEADER: stable across ALL sizes ---------- */

/* Your CSS sets .logo width:350px and header wrap → breaks on smaller phones. */
.header__main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important; /* key: stop iPhone-width wrap differences */
  gap: 14px;
  min-width: 0;
}

.logo{
  display: block;
  width: auto !important;       /* override the fixed 350px */
  flex: 1 1 auto;
  min-width: 0;                 /* allows shrinking instead of forcing wrap */
}

.logo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;

  /* Fluid logo width: small phones → big phones → tablets → desktop */
  /* Prevents wrap on iPhone 12/SE etc but still looks “big” on Pro Max */
  max-width: clamp(190px, 52vw, 360px);
}

/* Keep hamburger always on the right on mobile/tablet */
@media (max-width: 991.98px){
  .header__main{
    padding: 14px 0;
    position: relative;
    isolation: isolate;
  }

  /*
   * Ghost taps: the xl-only CTA row (.d-none.d-xl-flex) can still steal hits in the
   * hamburger zone (center of icon opens modal; corner opens menu). Kill its hit box
   * and any sibling overlay, then only logo + menu control accept pointer events.
   */
  .header__main .main-menu,
  .header__main .d-none.d-xl-flex{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    left: -9999px !important;
  }

  .header__main .d-none.d-xl-flex *,
  .header__main .main-menu * {
    pointer-events: none !important;
  }

  .header__main > *:not(.logo):not(.bars) {
    pointer-events: none !important;
  }

  .header__main .logo,
  .header__main .logo *,
  .header__main .bars,
  .header__main .bars * {
    pointer-events: auto !important;
  }

  .header__main .bars{
    flex: 0 0 auto;
    margin-left: auto; /* pin right */
    position: relative;
    z-index: 50;
    cursor: pointer;
  }

  /* Make sure logo never collides with hamburger button */
  .logo img{
    max-width: min(clamp(180px, 56vw, 320px), calc(100% - 72px));
  }
}

/* Below xl: header CTA must never win hit-testing over the menu icon (WOW / inline-flex quirks) */
@media (max-width: 1199.98px) {
  .header__main button.btn-one.pcs-open-cta-modal {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
}

/* Very small phones (SE / 320-ish): shrink slightly more to GUARANTEE no wrap */
@media (max-width: 360px){
  .logo img{
    max-width: min(clamp(165px, 58vw, 280px), calc(100% - 72px));
  }
}

/* Tablet range: allow a bit larger logo but keep layout stable */
@media (min-width: 768px) and (max-width: 991.98px){
  .logo img{
    max-width: min(clamp(240px, 40vw, 360px), calc(100% - 72px));
  }
}

/* Desktop: keep your nice large logo but let it scale instead of fixed 350px */
@media (min-width: 992px){
  .logo img{
    max-width: clamp(280px, 20vw, 420px);
  }
}

/* Sidebar (mobile off-canvas) logo */
.sidebar-area .menu-logo{
  width: 100%;
  max-width: min(280px, 82vw);
  height: auto;
}

/* ---------- 2) HERO: keep the same “look” across phones/tablets/desktops ---------- */

/* Your current mobile rule forces square images: aspect-ratio: 1/1.
   That’s why iPhone 12 vs 14 Pro Max looks different. */
.pcs-hero-slider{
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Stacked layouts only (<768): centered hero card. Tablets use two columns from `md`. */
@media (max-width: 767.98px){
  .pcs-hero-slider{
    /* consistent hero block size across ALL devices */
    width: 100%;
    max-width: min(620px, 100%) !important;

    /* key: lock the hero "card" feel so every phone looks the same */
    aspect-ratio: 16 / 10;
    height: auto !important;

    border-radius: 26px;
    overflow: hidden;
    margin-top: 18px; /* less “random gap” across devices */
  }

  /* Ensure track + slides fill the fixed aspect box */
  .pcs-hero-track,
  #pcsHeroTrack,
  .pcs-hero-slide{
    height: 100%;
  }

  /* Make images fill consistently and crop nicely */
  .pcs-hero-slide img{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: auto !important; /* overrides your 1/1 */
    display: block;
  }

  .pcs-hero-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 6;
  }
}

/* Hero slider arrows: below lg, true vertical center inside aspect-ratio slider (avoids WebKit drift). */
@media (max-width: 991.98px) {
  .banner-three-area .pcs-hero-slider > .pcs-hero-btn {
    top: 50%;
    bottom: auto;
    margin-top: 0;
    margin-bottom: 0;
    height: 44px;
    width: 44px;
    transform: translateY(-50%);
  }

  .banner-three-area #pcsHeroPrev {
    left: max(10px, env(safe-area-inset-left, 0px));
    right: auto !important;
  }

  .banner-three-area #pcsHeroNext {
    right: max(10px, env(safe-area-inset-right, 0px));
    left: auto !important;
  }
}

/*
 * Tablets (Bootstrap md-lg): reference layout - copy left / slider right, ~desktop slide proportions.
 */
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-three-area .pcs-hero-slider {
    max-width: 100% !important;
    width: 100%;
    aspect-ratio: auto;
    height: auto !important;
    margin-top: 0 !important;
    border-radius: 22px;
  }

  .banner-three-area .pcs-hero-track,
  .banner-three-area #pcsHeroTrack,
  .banner-three-area .pcs-hero-slide {
    height: auto;
  }

  .banner-three-area .pcs-hero-slide img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .banner-three-area .row.align-items-center {
    align-items: center !important;
  }

  #pcsHeroPrev {
    left: 10px;
  }

  .banner-three-area .pcs-hero-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    z-index: 6;
  }
}

/* Desktop hero: keep your design (right-side image, nice proportions) */
@media (min-width: 992px){
  .pcs-hero-slider{
    max-width: 860px !important;
    margin-top: 33px; /* keep your desktop spacing */
  }

  .pcs-hero-slide img{
    aspect-ratio: 4 / 3 !important; /* matches your existing desktop intent */
    height: auto !important;
  }
}

/* ---------- 3) HERO TEXT: fluid type so layout feels consistent ---------- */
.banner-three__content h1{
  font-size: clamp(30px, 6.2vw, 64px);
  line-height: 1.08;
}

.banner-three__content p{
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
}

/* Hero / banner: consistent shadow + heading weight when .text-white is used */
.text-white {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.85) !important;
  font-weight: inherit !important;
}

/* =========================================================
   HERO READABILITY UPGRADE (Mobile-first)
   Paste at VERY BOTTOM of style.css
========================================================= */

/* Stacked single-column layouts only (<768). Tablet md two-column keeps desktop-like copy rail. */
@media (max-width: 767.98px){

  /* 1) Make the hero content easier to read */
  .banner-three__content{
    max-width: 42ch;              /* stops wide “essay” lines */
    margin-inline: auto;
  }

  .banner-three__content h4{
    letter-spacing: .08em;
    font-size: 13px;
    opacity: .92;
  }

  /* 2) Headline: fixed rem — vw + max-height MQs caused resize when mobile URL bar shows/hides */
  .banner-three__content h1{
    font-size: 1.75rem !important;
    line-height: 1.10 !important;
    margin-bottom: 10px !important;
  }

  /* 3) Paragraph: reduce visual weight (this is the big one) */
  .banner-three__content p{
    font-size: 16px !important;
    line-height: 1.65 !important;
    opacity: .86;                 /* less “wall of text” */
    margin-top: 10px !important;
  }

  /* 4) Add “visual breathing room” before CTA */
  .banner-three__info{
    margin-top: 18px !important;
    gap: 14px !important;
    flex-wrap: wrap;
  }

  /* 5) Make the CTA feel primary and reduce clutter */
  .banner-three__info .btn-one{
    min-width: 190px;
    padding: 14px 18px;
    border-radius: 999px;
  }

  /* 6) Make the “How it works” look lighter (secondary action) */
  .banner-three__video-btn h5{
    font-size: 16px;
    opacity: .9;
  }

  /* 7) Slider: reduce dominance so text feels approachable */
  .pcs-hero-slider{
    margin-top: 14px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
  }
}

/* Header contact CTA: compact pill (matches locations hub / inner pages at xl+) */
@media (min-width: 1200px){
  /* Stop the CTA stretching to the phone column height (flex default is stretch; contact page label is taller) */
  .header__main > .d-none.d-xl-flex{
    align-items: center !important;
  }

  .header__main .btn-one.pcs-open-cta-modal{
    padding: 12px 18px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .header__main .btn-one.pcs-open-cta-modal i{
    margin-left: 10px !important;
  }
}

/*
 * Nest Hub (~1024x600), Nest Hub Max (~1280x800), and similar short-viewport desktops:
 * home hero uses huge desktop padding below md; compact nav avoids overlap with logo/phone.
 */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .header-two-area .header__main .main-menu ul,
  .header-three-area .header__main .main-menu ul,
  .header-area .header__main .main-menu ul {
    gap: 4px !important;
  }

  .header-two-area .header__main .main-menu ul li a,
  .header-three-area .header__main .main-menu ul li a,
  .header-area .header__main .main-menu ul li a {
    font-size: 14px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .header__main .main-menu ul li.ml-20 {
    margin-left: 10px !important;
  }

  .header-two-area .logo img {
    max-width: min(240px, 26vw) !important;
  }
}

@media (min-width: 992px) and (max-height: 860px) {
  .header-two-area .header__main .main-menu ul li a,
  .header-three-area .header__main .main-menu ul li a,
  .header-area .header__main .main-menu ul li a {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .banner-three-area {
    padding-top: clamp(86px, 13vh, 150px);
    padding-bottom: clamp(48px, 8vh, 96px);
  }

  .banner-three__container {
    padding: 18px 22px;
  }

  .banner-three__content h1 {
    font-size: clamp(28px, 3.9vw, 52px) !important;
    line-height: 1.12 !important;
  }

  body.pcs-svc-page .banner-three__content .pcs-svc-hero-title {
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.12;
  }

  .banner-three__content p,
  body.pcs-svc-page .banner-three__content .pcs-hero-copy {
    font-size: clamp(14px, 1.45vw, 17px);
    line-height: 1.52;
    margin-top: 8px !important;
  }

  .banner-three__content .mt-20 {
    margin-top: 10px !important;
  }

  .banner-three__content .mt-10 {
    margin-top: 6px !important;
  }

  .banner-three__info {
    margin-top: 14px !important;
    gap: 20px !important;
  }

  .banner-three-area .pcs-hero-slider {
    max-width: min(540px, 44vw) !important;
    margin-top: 8px !important;
  }

  .banner-three-area .pcs-hero-slide img {
    aspect-ratio: 16 / 10 !important;
  }

  .banner-three-area .row.align-items-center {
    align-items: flex-start !important;
  }

  body.pcs-site--retro .pcs-intro-hero,
  body.pcs-hub--retro .pcs-intro-hero {
    padding: clamp(14px, 2.4vw, 24px) clamp(14px, 2vw, 28px)
      clamp(16px, 2.8vw, 28px);
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg {
    max-height: min(320px, 42vh);
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-headline,
  body.pcs-hub--retro .pcs-intro-hero .pcs-headline {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  }
}

@media (min-width: 992px) and (max-height: 640px) {
  .header-two-area .header__main .main-menu ul li a,
  .header-three-area .header__main .main-menu ul li a,
  .header-area .header__main .main-menu ul li a {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .banner-three-area {
    padding-top: 68px;
    padding-bottom: 32px;
  }

  .banner-three__container {
    padding: 10px 16px;
  }

  .banner-three__content h4 {
    font-size: 11px !important;
    padding: 6px 11px !important;
    letter-spacing: 0.06em !important;
  }

  .banner-three__content h1 {
    font-size: clamp(26px, 3.5vw, 40px) !important;
    line-height: 1.08 !important;
  }

  body.pcs-svc-page .banner-three__content .pcs-svc-hero-title {
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.06;
  }

  .banner-three__content p,
  body.pcs-svc-page .banner-three__content .pcs-hero-copy {
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  .banner-three__info {
    margin-top: 10px !important;
    gap: 14px !important;
  }

  .banner-three__info .btn-one {
    padding: 10px 15px !important;
    font-size: 13px !important;
  }

  .banner-three-area .pcs-hero-slider {
    max-width: min(440px, 40vw) !important;
    margin-top: 4px !important;
  }

  .banner-three-area .pcs-hero-slide img {
    aspect-ratio: 3 / 2 !important;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg {
    max-height: min(220px, 36vh);
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-headline,
  body.pcs-hub--retro .pcs-intro-hero .pcs-headline {
    font-size: clamp(1.45rem, 3.5vw, 2.05rem);
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-kicker,
  body.pcs-hub--retro .pcs-intro-hero .pcs-kicker {
    font-size: 12px;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-subhead,
  body.pcs-hub--retro .pcs-intro-hero .pcs-subhead {
    font-size: clamp(14px, 1.35vw, 16px);
  }
}

/*
 * Portrait + stacked (<768): short foldables / phones - cap dominant slider card.
 */
@media (max-width: 767.98px) and (max-aspect-ratio: 1 / 1) {
  .banner-three__container {
    padding: 16px clamp(14px, 4vw, 26px);
  }

  .pcs-hero-slider {
    aspect-ratio: 16 / 11 !important;
    max-height: min(48vh, 460px);
    margin-top: 12px !important;
  }
}

/*
 * Portrait tablets (768-991): two-column banner - typography and intro tuning only (slider uses md banner rules).
 */
@media (min-width: 768px) and (max-width: 991.98px) and (max-aspect-ratio: 1 / 1) {
  .banner-three__container {
    padding: 18px clamp(16px, 3.5vw, 28px);
  }

  .banner-three__content h1 {
    font-size: clamp(24px, 6.4vw, 40px) !important;
    line-height: 1.1 !important;
  }

  .banner-three__content h4 {
    font-size: clamp(10.5px, 2.5vw, 13px);
  }

  body.pcs-svc-page .banner-three__content .pcs-svc-hero-title {
    font-size: clamp(24px, 5.8vw, 38px);
    line-height: 1.12;
  }

  body.pcs-svc-page .banner-three__content .pcs-hero-copy {
    font-size: clamp(15px, 3vw, 17px);
    line-height: 1.55;
    margin-top: 10px !important;
  }

  body.pcs-svc-page .banner-three__content .pcs-hero-kicker {
    font-size: 12px !important;
    padding: 6px 10px !important;
    margin-bottom: 10px !important;
  }

  body.pcs-site--retro .pcs-intro-hero,
  body.pcs-hub--retro .pcs-intro-hero {
    padding: clamp(14px, 3vw, 24px) clamp(14px, 2.6vw, 22px)
      clamp(16px, 3.2vw, 26px);
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg {
    max-height: min(420px, 52vh);
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-headline,
  body.pcs-hub--retro .pcs-intro-hero .pcs-headline {
    font-size: 1.75rem;
  }
}

/* Extra-tight portrait: short foldable / small tablet height (layout only — no typography) */
@media (max-width: 600px) and (max-aspect-ratio: 1 / 1) {
  .banner-three-area {
    padding-top: clamp(40px, 8.5vh, 60px);
    padding-bottom: clamp(28px, 7vh, 48px);
  }

  .pcs-hero-slider {
    max-height: min(40vh, 300px);
    margin-top: 8px !important;
  }

  .banner-three__info {
    margin-top: 12px !important;
    gap: 12px !important;
  }
}

/*
 * Narrow portrait phones (~580px and below): tighter hero layout above the fold.
 * Width-only MQ — max-height px tracked the mobile URL bar and flipped typography on scroll.
 */
@media (max-width: 580px) and (max-aspect-ratio: 1 / 1) {
  .header-two-area .header__main,
  .header-three-area .header__main,
  body.pcs-site--retro .header-area .header__main,
  body.pcs-hub--retro .header-area .header__main {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .banner-three-area {
    /* Do not shrink below fixed-header clearance; see body.pcs-home main > .banner-three-area rules */
    padding-top: max(
      clamp(32px, 5.5vh, 48px),
      calc(env(safe-area-inset-top, 0px) + clamp(86px, 24vw, 118px))
    ) !important;
    padding-bottom: clamp(20px, 4.2vh, 36px) !important;
  }

  .banner-three__container {
    padding: 8px 12px !important;
  }

  .banner-three__content {
    margin-top: 6px !important;
  }

  .banner-three__content.mt-25,
  .banner-three__content .mt-25 {
    margin-top: 10px !important;
  }

  .banner-three__content .mt-20 {
    margin-top: 6px !important;
  }

  .banner-three__content .mt-10 {
    margin-top: 5px !important;
  }

  /* Shorter slider card: do not mix max-height with aspect-ratio (breaks layout in WebKit). */
  .pcs-hero-slider {
    aspect-ratio: 16 / 11 !important;
    max-height: none !important;
    margin-top: 5px !important;
    border-radius: 18px !important;
    max-width: min(100%, 520px) !important;
  }

  .banner-three__content h4 {
    padding: 5px 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 6px !important;
  }

  body.pcs-svc-page .banner-three__content .pcs-hero-kicker {
    font-size: 10px !important;
    padding: 5px 10px !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.08em !important;
  }

  .banner-three__info {
    margin-top: 10px !important;
    gap: 10px !important;
  }

  .banner-three__info .btn-one {
    padding: 10px 14px !important;
    font-size: 13px !important;
    min-width: 0 !important;
  }

  .banner-three__video-btn h5 {
    font-size: 13px !important;
  }

  .banner-three__video-btn .video-btn,
  .banner-three__video-btn .video-btn a {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
  }

  body.pcs-site--retro .pcs-intro-hero,
  body.pcs-hub--retro .pcs-intro-hero {
    padding: 12px 14px 14px !important;
    margin-bottom: 4px !important;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host,
  body.pcs-hub--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg {
    max-height: min(160px, 26vh) !important;
  }

  .pcs-sticky-tab {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    gap: 0;
    right: calc(-24px + env(safe-area-inset-right, 0px));
  }

  .pcs-sticky-tab__icon {
    width: 18px;
    height: 18px;
  }
}

/* =========================================================
   HERO CTA ROW: keep "Get Help Now" + "How it Works" on ONE LINE
   Fixes iPhone 12 Pro / 390px widths without breaking desktop
========================================================= */

/* Small phones up to ~420px (iPhone 12/13/Pixel etc.) */
@media (max-width: 420px){

  /* Keep both CTAs on one row */
  .banner-three__info{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;     /* KEY: stop stacking */
    gap: 12px !important;
  }

  /* Let the main button shrink instead of forcing wrap */
  .banner-three__info .btn-one{
    flex: 1 1 auto !important;        /* allow shrinking */
    min-width: 0 !important;          /* important for flex shrink */
    padding: 12px 14px !important;    /* slightly smaller on small phones */
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  /* Keep the "How it Works" group compact */
  .banner-three__video-btn{
    flex: 0 0 auto !important;
    min-width: 0 !important;
    gap: 10px !important;
  }

  .banner-three__video-btn h5{
    font-size: 14px !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  /* Make the play button slightly smaller so it fits at 390px */
  .banner-three__video-btn .video-btn{
    width: 44px !important;
    height: 44px !important;
  }
  .banner-three__video-btn .video-btn a{
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
  }
}

/* Extra safety: very tiny phones (iPhone SE etc.) */
@media (max-width: 360px){
  .banner-three__info .btn-one{
    padding: 11px 12px !important;
    font-size: 13px !important;
  }
  .banner-three__video-btn h5{
    font-size: 13px !important;
  }
}

/* =========================================================
   HERO TOP LABEL (h4) RESPONSIVE FIX
   "Same-Day Onsite Computer Repairs Across NSW"
   Paste at VERY BOTTOM of style.css
========================================================= */

.banner-three__content h4{
  display: inline-flex;          /* keeps label sized to text */
  align-items: center;
  max-width: 100%;
  width: fit-content;
  box-sizing: border-box;

  /* allow it to wrap nicely instead of overflowing */
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;

  /* safer label proportions */
  padding: 8px 14px;
  border-radius: 8px;

  /* responsive type */
  font-size: clamp(11px, 2.4vw, 14px);
  line-height: 1.25;
  letter-spacing: .08em;
}

/* On small phones tighten it further so it never forces weird wrapping */
@media (max-width: 420px){
  .banner-three__content h4{
    padding: 7px 12px;
    font-size: clamp(10.5px, 3vw, 13px);
    letter-spacing: .06em;
  }
}

/* On larger phones like iPhone 14 Pro Max, keep it one clean line if possible */
@media (min-width: 421px) and (max-width: 575.98px){
  .banner-three__content h4{
    white-space: nowrap;        /* usually fits on these widths */
  }
}

/* =========================================================
   HERO CTA: FORCE SAME LINE ON ALL MOBILE SIZES
   Fixes devices where it still wraps (like your screenshot)
========================================================= */

/*
 * Tablet-width hero column (e.g. iPad Mini 768px): same CTA row as phones; avoids wrap in md column.
 */
@media (min-width: 601px) and (max-width: 991.98px){
  .banner-three__info{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: clamp(12px, 2vw, 22px) !important;
    width: 100%;
  }

  .banner-three__info > *{
    min-width: 0 !important;
  }

  .banner-three__info .btn-one{
    flex: 1 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    padding: 12px 16px !important;
    font-size: clamp(13px, 1.65vw, 15px) !important;
  }

  .banner-three__video-btn{
    flex: 0 0 auto !important;
    gap: clamp(10px, 1.4vw, 16px) !important;
  }

  .banner-three__video-btn h5{
    font-size: clamp(14px, 1.5vw, 17px) !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
}

/* All phones + small tablets */
@media (max-width: 600px){

  .banner-three__info{
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;     /* KEY */
    gap: 12px !important;
    width: 100%;
  }

  /* Make BOTH children allowed to shrink */
  .banner-three__info > *{
    min-width: 0 !important;
  }

  /* Main CTA button */
  .banner-three__info .btn-one{
    flex: 1 1 0% !important;          /* allow it to shrink */
    min-width: 0 !important;
    white-space: nowrap !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  /* "How it works" group */
  .banner-three__video-btn{
    flex: 0 1 auto !important;        /* can shrink too */
    min-width: 0 !important;
    gap: 10px !important;
    white-space: nowrap !important;
  }

  /* shrink the label a touch so it never forces wrap */
  .banner-three__video-btn h5{
    font-size: 14px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  /* shrink play circle slightly */
  .banner-three__video-btn .video-btn,
  .banner-three__video-btn .video-btn a{
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
  }
}

/* Ultra-small phones */
@media (max-width: 360px){
  .banner-three__info{
    gap: 10px !important;
  }
  .banner-three__info .btn-one{
    padding: 11px 12px !important;
    font-size: 13px !important;
  }
  .banner-three__video-btn h5{
    font-size: 13px !important;
  }
  .banner-three__video-btn .video-btn,
  .banner-three__video-btn .video-btn a{
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
}

/* =========================================================
   PC Scientist - Font + Banner Weight Fix (GLOBAL OVERRIDE)
   Paste at the VERY BOTTOM of style.css
========================================================= */

/* 1) Force Kumbh Sans everywhere (with sane fallbacks) */
:root{
  --kumbh: "Kumbh Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html, body{
  font-family: var(--kumbh) !important;
  /* prevent "fake bold" / synthetic weight in some browsers */
  font-synthesis-weight: none;
  font-synthesis-style: none;
  -webkit-text-size-adjust: 100%;
}

body,
button,
input,
textarea,
select{
  font-family: var(--kumbh) !important;
}

/* Headings + common text containers */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label,
.small, .lead{
  font-family: var(--kumbh) !important;
}

/* (Optional) If any component sets a different font explicitly, this forces inherit */
*[style*="font-family"]{
  font-family: var(--kumbh) !important;
}

/* 2) Match the lighter H1 weight you want (Image 2 style)
      Your template currently sets banner H1 to 700. We soften it. */
.banner__content h1,
.banner-two__content h1,
.banner-three__content h1,
.banner__inner-page h1{
  font-weight: 500 !important;   /* try 500 if you want even lighter */
  letter-spacing: -0.01em;       /* subtle: improves readability */
}

/* Sticky middle-right tab (half visible)
   Quiet on desktop until hover or keyboard focus - no slide, same docked position.
   Subtle infinite ring: opacity + transform only on ::before (cheap to paint). */
.pcs-sticky-tab{
  position: fixed;
  top: 50%;
  right: calc(-18px + env(safe-area-inset-right, 0px)); /* half-hidden */
  transform: translate3d(0, -50%, 0);
  z-index: 9999;

  height: 56px;
  padding: 0 14px 0 12px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: var(--primary-color, #3c72fc);
  color: #fff;

  box-shadow:
    0 12px 28px rgba(0,0,0,.30),
    0 0 0 6px rgba(60,114,252,.12);
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  overflow: visible;

  transition: opacity .2s ease, box-shadow .2s ease, filter .2s ease, background-color .2s ease;
}

/* iOS / touch: JS pins with visualViewport — no %-transform (breaks while address bar animates) */
.pcs-sticky-tab--vv-pinned{
  top: 0;
  transform: none !important;
  -webkit-transform: none !important;
  bottom: auto !important;
  margin: 0;
  isolation: auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32) !important;
  transition: opacity .2s ease, background-color .2s ease;
}

.pcs-sticky-tab--vv-pinned::before{
  display: none !important;
  animation: none !important;
}

/* Ring sits just outside the pill; z-index -1 keeps it under label/icon, not under page */
.pcs-sticky-tab::before{
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.28);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
  transform-origin: center;
  animation: pcsStickyTabRing 1s ease-out infinite;
}

@keyframes pcsStickyTabRing{
  0%, 100%{
    opacity: 0;
    transform: scale(1);
  }
  10%{
    opacity: .42;
    transform: scale(1);
  }
  36%{
    opacity: 0;
    transform: scale(1.09);
  }
  36.01%, 99.99%{
    opacity: 0;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .pcs-sticky-tab::before{
    animation: none;
    opacity: 0;
  }
}

/* JS one-frame toggle: restarts ring after bfcache / tab refocus without moving the button */
.pcs-sticky-tab--ring-reset::before{
  animation: none !important;
}

/* Mouse + fine pointer: recede while reading; pop when the user shows intent (hover / Tab). */
@media (hover: hover) and (pointer: fine){
  .pcs-sticky-tab{
    opacity: .84;
    filter: saturate(.92);
    background-color: rgba(60, 114, 252, .82);
    box-shadow:
      0 8px 18px rgba(0,0,0,.18),
      0 0 0 3px rgba(60,114,252,.08);
  }

  .pcs-sticky-tab:hover{
    opacity: 1;
    filter: none;
    background-color: var(--primary-color, #3c72fc);
    box-shadow:
      0 12px 28px rgba(0,0,0,.30),
      0 0 0 6px rgba(60,114,252,.12);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce){
  .pcs-sticky-tab,
  .pcs-sticky-tab:hover,
  .pcs-sticky-tab:focus-visible{
    transition: none;
  }
}

.pcs-sticky-tab__icon{
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.pcs-sticky-tab__text{
  font: 600 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
  white-space: nowrap;
}

.pcs-sticky-tab__text:empty{
  display: none;
}

.pcs-sticky-tab:has(.pcs-sticky-tab__text:empty){
  gap: 0;
}

.pcs-sticky-tab:focus{
  outline: none;
}
.pcs-sticky-tab:focus-visible{
  opacity: 1;
  filter: none;
  background-color: var(--primary-color, #3c72fc);
  box-shadow:
    0 12px 28px rgba(0,0,0,.30),
    0 0 0 6px rgba(60,114,252,.12);
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: 3px;
}

.pcs-sticky-tab:active{
  transform: translate3d(0, -50%, 0);
}

/* Touch phones: icon-only half-circle — keeps the phone glyph centred while scrolling */
@media (max-width: 767px) and (pointer: coarse){
  .pcs-sticky-tab{
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    justify-content: center;
    right: calc(-26px + env(safe-area-inset-right, 0px));
  }

  .pcs-sticky-tab__icon{
    display: block;
    margin: 0;
  }

  .pcs-sticky-tab::before{
    animation: none;
    opacity: 0;
  }
}

/* On very small screens: slightly smaller so it never feels chunky */
@media (max-width: 380px){
  .pcs-sticky-tab{
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    right: calc(-24px + env(safe-area-inset-right, 0px));
  }
  .pcs-sticky-tab__text{
    font-size: 13px;
  }
}

.pc-modal{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.96);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.pc-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.pc-modal-body{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pc-modal-footnote{
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}

/* Tagline directly under modal title (matches reference: regular weight, softer colour) */
.pc-modal-card > .pc-modal-footnote {
  font-style: normal;
  font-weight: 600;
  color: rgba(18, 34, 65, 0.72);
}

/* =========================================================
   THANK YOU (White Background + Floating Card + Black Text)
========================================================= */

/* ONLY affects the thank-you page */
body.pcs-thankyou-page{
  background: #ffffff;
}

/* Optional: if your theme forces dark backgrounds inside sections */
.pcs-thxW{
  padding: 56px 0;
  background: transparent !important;
}

/* Floating card */
.pcs-thxW__card{
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(18,34,65,.10);
  box-shadow:
    0 22px 60px rgba(18,34,65,.18),
    0 6px 18px rgba(18,34,65,.10);
  overflow: hidden;
}

/* Top animation area */
.pcs-thxW__animWrap{
  padding: 22px 18px 8px;
  display: flex;
  justify-content: center;
  background: radial-gradient(700px 260px at 50% 20%, rgba(107,108,224,.12), transparent 60%);
  border-bottom: 1px solid rgba(18,34,65,.08);
}

.pcs-thxW__anim{
  width: min(330px, 90vw);
  height: min(330px, 90vw);
  max-width: 380px;
  max-height: 380px;
}

/* Content */
.pcs-thxW__content{
  padding: 16px 18px 22px;
}

/* Black text system */
.pcs-thxW__kicker{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(107,108,224,.22);
  background: rgba(107,108,224,.08);
  color: rgba(18,34,65,.92);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pcs-thxW__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 5.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: rgba(18,34,65,.96);
}

.pcs-thxW__desc{
  margin: 0 0 14px;
  color: rgba(18,34,65,.78);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Micro promise line */
.pcs-thxW__micro{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(18,34,65,.04);
  border: 1px solid rgba(18,34,65,.10);
  color: rgba(18,34,65,.86);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.pcs-thxW__tick{
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(107,108,224,.16);
  color: rgba(18,34,65,.92);
  flex: 0 0 auto;
  margin-top: 1px;
}

/* Buttons (mobile-first full width) */
.pcs-thxW__actions{
  display: grid;
  gap: 12px;
}

.pcs-thxW__btn{
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pcs-thxW__btn:hover{
  transform: translateY(-1px);
}

.pcs-thxW__btnPrimary{
  color: #fff;
  background: linear-gradient(90deg, #6B6CE0, #3c72fc);
  box-shadow: 0 14px 26px rgba(60,114,252,.18);
}

.pcs-thxW__btnGhost{
  color: rgba(18,34,65,.92);
  background: #ffffff;
  border: 1px solid rgba(18,34,65,.14);
  box-shadow: 0 10px 18px rgba(18,34,65,.08);
}

/* Fine text + chip */
.pcs-thxW__fine{
  margin: 12px 0 0;
  color: rgba(18,34,65,.65);
  font-size: 13px;
  line-height: 1.4;
}

.pcs-thxW__chip{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(107,108,224,.10);
  border: 1px solid rgba(107,108,224,.20);
  color: rgba(18,34,65,.90);
  font-weight: 800;
  font-size: 13px;
}

/* Desktop polish */
@media (min-width: 860px){
  .pcs-thxW__content{ padding: 18px 26px 26px; }
  .pcs-thxW__animWrap{ padding: 28px 26px 10px; }
  .pcs-thxW__actions{
    grid-template-columns: 1fr 1fr;
  }
  .pcs-thxW__btnGhost{
    grid-column: 1 / -1;
  }
}

/* Reduced motion: keep Lottie still if you stop it in JS */
@media (prefers-reduced-motion: reduce){
  .pcs-thxW__btn{ transition: none !important; }
}

/* Dropdown Services Menu*/
.service-wrapeer-main-mega:hover .under-service{
  display: flex !important;
}

.under-service{
  position: absolute;
  left: 0;
  top: 90px;
  background: #fff;
  min-width: 320px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 5px;
  overflow: hidden;
  display: none !important;
  flex-direction: column;
  gap: 0 !important;
  align-items: flex-start !important;
  z-index: 9999 !important;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.25s ease;
}
.under-service.active{
  display: flex !important;
  max-height: 1000px;
  opacity: 1;
}

.under-service li , .under-service li a {
  width: 100% !important;
}
.under-service a {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.under-service a:hover {
  background: #f0f0f0;
}

.under-service.active {
  max-height: 1000px;
  opacity: 1;
}
.under-service a {
  padding: 12px !important;
  color: #000 !important;
  font-weight: 500 !important;
}
.under-service a:hover{
  color: #3c72fc !important;
}

@media (max-width: 768px) {
  .under-service {
    position: relative;
    top: 0;
  }
}
/* Dropdown Services Menu*/

/* Scientist lab-style checklist */

.service-two__content ul{
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.service-two__content ul li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* green scientist checkmark */
.service-two__content ul li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #22c55e; /* lab green */
  font-size: 16px;
}

.pcs-banner-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #d7e5ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pcs-banner-copy {
  max-width: 860px;
  margin: 22px auto 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
}
.service-two__content {
  position: relative;
}
.service-two__content p {
  margin-bottom: 0;
}
.pcs-feature-wrap {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 40, 72, 0.08);
}
.pcs-feature-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f78b7;
}
.pcs-feature-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pcs-feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--paragraph);
  font-weight: 500;
  word-break: break-word;
}
.pcs-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ec3e58;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
@media (max-width: 767.98px) {
  .pcs-banner-copy,
  .pcs-services-note p {
    font-size: 15px;
    line-height: 1.7;
  }
  .service-two__content {
    padding-top: 6px;
  }
  .pcs-feature-wrap {
    margin-top: 18px;
    padding-top: 16px;
  }
  .pcs-feature-list {
    gap: 9px;
  }
  .pcs-feature-list li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 24px;
  }
}
.pcs-services-note {
  max-width: 860px;
  margin: 0 auto 55px;
  text-align: center;
}
.pcs-services-note p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* =====================================
   PC Scientist Footer Disclaimer
===================================== */

.footer-two-area .pcs-footer-disclaimer {
  margin-top: 30px !important;
  padding-top: 10px;
}

.footer-two-area .pcs-footer-disclaimer__inner {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px;
  padding: 20px 22px;

  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.7;

  position: relative;
  overflow: hidden;
}

/* subtle blue glow matching theme */
.footer-two-area .pcs-footer-disclaimer__inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle at 20% 20%, rgba(60,114,252,0.25), transparent 40%),
  radial-gradient(circle at 80% 80%, rgba(60,114,252,0.15), transparent 45%);

  opacity: .35;
  pointer-events: none;
}

.footer-two-area .pcs-footer-disclaimer__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 14px 14px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 1;
}

.footer-two-area .pcs-footer-disclaimer__title {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 8px;
}

.footer-two-area .pcs-footer-disclaimer__title i {
  color: #3c72fc !important;
  font-size: 16px;
}

.footer-two-area .pcs-footer-disclaimer__text {
  margin: 0;
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px){

  .footer-two-area .pcs-footer-disclaimer__inner{
    padding: 18px 18px;
  }

  .footer-two-area .pcs-footer-disclaimer__text{
    font-size: 13px;
  }

}

.pcs-service-card.pcs-service-card--tall {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(18, 34, 65, 0.12);
  border-radius: 18px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pcs-service-card--tall {
  background:#ffffff;
  border:1px solid rgba(18,34,65,.08);
  border-radius:18px;
  box-shadow:0 6px 18px rgba(18,34,65,.04);
}

.pcs-service-card--tall:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(18,34,65,.08);
  border-color:rgba(107,108,224,.35);
}

.pcs-service-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

.pcs-service-card::before,
.pcs-service-card::after,
.pcs-service-card--tall::before,
.pcs-service-card--tall::after {
  display: none !important;
  background: none !important;
}

.pcs-service-card--tall:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 108, 224, 0.28);
  box-shadow: 0 14px 34px rgba(18, 34, 65, 0.06);
}

.pcs-service-card--tall .pcs-service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #6B6CE0;
  border-radius: 6px;
  margin-bottom: 18px;
  background: transparent;
  color: #6B6CE0;
}

.pcs-service-card--tall .pcs-service-icon i {
  color: #6B6CE0;
  font-size: 22px;
  line-height: 1;
}

.pcs-service-card--tall h4 {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 18px;
  color: #122241;
  letter-spacing: -0.02em;
}

.pcs-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.pcs-service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #122241;
  font-size: 16px;
}

.pcs-service-list li:last-child {
  margin-bottom: 0;
}

.pcs-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6B6CE0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.pcs-service-read {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 700;
  font-size: 17px;
  color: #6B6CE0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pcs-service-read i {
  color: #8494A7;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.pcs-service-card--tall:hover .pcs-service-read i {
  transform: translateX(4px);
}












/* ===== MINI WHY BASE ===== */
.pcs-mini--why{
  padding:0;
}

/* ===== MINI WHY - CARD GRID (screenshot style) ===== */
.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,246,240,.92));
  border:1px solid rgba(18,34,65,.10);
  border-radius:18px;
  box-shadow:0 14px 38px rgba(18,34,65,.06);
  padding:22px 22px 20px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:14px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(60,114,252,.95), rgba(156,224,255,.75));
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__icon{
  width:54px;
  height:54px;
  border-radius:14px;
  border:1px solid rgba(60,114,252,.35);
  background:radial-gradient(circle at 30% 30%, rgba(60,114,252,.20), rgba(60,114,252,.06));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.50);
  margin-top:10px;
  margin-bottom:16px;
  color:var(--primary-color);
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__icon i{
  font-size:18px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__title{
  margin:0;
  font-size:20px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:-0.2px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__list{
  display:none;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(18,34,65,.09);
  border-color:rgba(60,114,252,.22);
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card:focus-within{
  outline:2px solid rgba(60,114,252,.35);
  outline-offset:3px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__grid{
  gap:18px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card{
  min-height:126px;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card:has(.pcs-mini__title){
  justify-content:flex-start;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card > *{
  position:relative;
  z-index:1;
}

.pcs-mini--why.pcs-mini--why-cards .pcs-mini__card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  box-shadow:0 1px 0 rgba(255,255,255,.55) inset;
  pointer-events:none;
}

@media (max-width:1199px){
  .pcs-mini--why.pcs-mini--why-cards .pcs-mini__title{
    font-size:19px;
  }
}

@media (max-width:767px){
  .pcs-mini--why.pcs-mini--why-cards .pcs-mini__card{
    padding:24px 22px 22px;
    min-height:auto;
  }

  .pcs-mini--why.pcs-mini--why-cards .pcs-mini__icon{
    width:56px;
    height:56px;
  }
}

.pcs-mini--why .pcs-mini__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  width:100%;
  margin:0;
  padding:0;
  align-items:stretch;
}

.pcs-mini--why .pcs-mini__card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:22px;
  background:#ffffff;
  border:1px solid rgba(18,34,65,.12);
  border-radius:18px;
  box-shadow:none;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
  min-height:auto; /* remove tall cards */
}

.pcs-mini--why .pcs-mini__card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(18,34,65,.06);
  border-color:rgba(107,108,224,.28);
}

.pcs-mini--why .pcs-mini__icon{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #6B6CE0;
  border-radius:6px;
  margin-bottom:12px;
  color:#6B6CE0;
}

.pcs-mini--why .pcs-mini__icon i{
  font-size:18px;
  line-height:1;
}

.pcs-mini--why .pcs-mini__title{
  margin:0 0 12px;
  font-size:17px;
  line-height:1.25;
  font-weight:800;
  color:#122241;
}

.pcs-mini--why .pcs-mini__list{
  list-style:none;
  padding:0;
  margin:0;
  width:100%;
}

.pcs-mini--why .pcs-mini__list li{
  position:relative;
  padding-left:24px;
  margin-bottom:8px;
  line-height:1.45;
  color:#122241;
  font-size:14px;
}

.pcs-mini--why .pcs-mini__list li:last-child{
  margin-bottom:0;
}

.pcs-mini--why .pcs-mini__list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#6B6CE0;
  font-weight:700;
  font-size:15px;
  line-height:1.2;
}

/* ===== TABLET ===== */
@media (max-width:1199px){
  .pcs-mini--why .pcs-mini__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }

  .pcs-mini--why .pcs-mini__card{
    padding:24px;
  }

  .pcs-mini--why .pcs-mini__icon{
    width:48px;
    height:48px;
    margin-bottom:14px;
  }

  .pcs-mini--why .pcs-mini__icon i{
    font-size:19px;
  }

  .pcs-mini--why .pcs-mini__title{
    font-size:18px;
    line-height:1.3;
    margin-bottom:13px;
  }

  .pcs-mini--why .pcs-mini__list li{
    font-size:15px;
    line-height:1.55;
    margin-bottom:10px;
  }
}

/* ===== MOBILE (unchanged sizing) ===== */
@media (max-width:767px){
  .pcs-mini--why .pcs-mini__grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .pcs-mini--why .pcs-mini__card{
    padding:28px 24px 26px;
    border-radius:16px;
  }

  .pcs-mini--why .pcs-mini__icon{
    width:52px;
    height:52px;
    margin-bottom:16px;
  }

  .pcs-mini--why .pcs-mini__icon i{
    font-size:20px;
  }

  .pcs-mini--why .pcs-mini__title{
    font-size:19px;
    line-height:1.35;
    margin-bottom:14px;
  }

  .pcs-mini--why .pcs-mini__list li{
    font-size:16px;
    line-height:1.6;
    margin-bottom:12px;
    padding-left:28px;
  }

  .pcs-mini--why .pcs-mini__list li::before{
    font-size:17px;
  }
}

:root{
  --pcs-accent:#6B6CE0;
  --pcs-navy:#122241;
  --pcs-border:rgba(18,34,65,.12);
  --pcs-shadow:rgba(18,34,65,.06);
}

.pcs-mini,
.pcs-mini *{
  box-sizing:border-box;
}

.pcs-mini{
  width:100%;
  background:#fff;
  padding:0;
}

.pcs-mini__grid{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 14px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

@media (min-width:640px){
  .pcs-mini__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (min-width:1024px){
  .pcs-mini__grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

.pcs-mini__card{
  border:1px solid var(--pcs-border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px var(--pcs-shadow);
  padding:16px;
  min-width:0;
  align-self:stretch;
}

.pcs-mini--why{
  padding:0;
}

.pcs-mini--why .pcs-mini__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  width:100%;
  margin:0;
  padding:0;
  align-items:stretch;
  max-width:none;
}

.pcs-mini--why .pcs-mini__card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:22px;
  background:#fff;
  border:1px solid rgba(18,34,65,.12);
  border-radius:18px;
  box-shadow:none;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
  min-height:auto;
}

.pcs-mini--why .pcs-mini__card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(18,34,65,.06);
  border-color:rgba(107,108,224,.28);
}

.pcs-mini--why .pcs-mini__icon{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #6B6CE0;
  border-radius:12px;
  margin-bottom:12px;
  color:#6B6CE0;
  flex:0 0 46px;
}

.pcs-mini--why .pcs-mini__icon i{
  font-size:18px;
  line-height:1;
  color:#6B6CE0;
}

.pcs-mini--why .pcs-mini__title{
  margin:0 0 12px;
  font-size:17px;
  line-height:1.25;
  font-weight:800;
  color:#122241;
}

.pcs-mini--why .pcs-mini__list{
  list-style:none;
  padding:0;
  margin:0;
  width:100%;
}

.pcs-mini--why .pcs-mini__list li{
  position:relative;
  padding-left:24px;
  margin-bottom:8px;
  line-height:1.45;
  color:#122241;
  font-size:14px;
}

.pcs-mini--why .pcs-mini__list li:last-child{
  margin-bottom:0;
}

.pcs-mini--why .pcs-mini__list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#6B6CE0;
  font-weight:700;
  font-size:15px;
  line-height:1.2;
}

.pcs-service-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}

.pcs-service-card{
  grid-column:span 4;
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:24px 22px;
  border:1px solid rgba(18,34,65,.12);
  border-radius:22px;
  background:#fff;
  text-decoration:none;
  transition:all .25s ease;
  min-width:0;
}

.pcs-service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(107,108,224,.28);
  box-shadow:0 16px 38px rgba(18,34,65,.08);
}

.pcs-service-card--tall{
  min-height:100%;
}

.pcs-service-icon{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(107,108,224,.10);
  border:1px solid rgba(107,108,224,.25);
}

.pcs-service-icon i{
  color:#6B6CE0;
  font-size:22px;
}

.pcs-service-text{
  min-width:0;
}

.pcs-service-text h4{
  margin:0 0 8px;
  color:#122241;
  font-size:18px;
  line-height:1.35;
  font-weight:800;
}

.pcs-service-text p{
  margin:0;
  color:rgba(18,34,65,.82);
  font-size:15px;
  line-height:1.65;
}

@media (max-width:1199px){
  .pcs-mini--why .pcs-mini__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .pcs-service-card{
    grid-column:span 6;
  }
}

@media (max-width:767px){
  .pcs-mini--why .pcs-mini__grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .pcs-mini--why .pcs-mini__card{
    padding:24px;
  }

  .pcs-mini--why .pcs-mini__icon{
    width:52px;
    height:52px;
    margin-bottom:16px;
  }

  .pcs-mini--why .pcs-mini__title{
    font-size:19px;
    line-height:1.35;
  }

  .pcs-mini--why .pcs-mini__list li{
    font-size:16px;
    line-height:1.6;
    padding-left:28px;
  }

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

  .pcs-service-card{
    grid-column:span 1;
    padding:20px 18px;
  }
}







/* ============================= */
/* PC SCIENTIST CONTACT BENTO CTAs */
/* Phone-first grid, tactile states */
/* ============================= */

.pc-contactlab__form-top{
  margin-bottom: 8px;
}

/* Bento: row 1 full-width call; row 2 callback + quote */
.pc-contactlab__bento{
  display: grid;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-areas:
    "call"
    "callback"
    "quote";
}

@media (min-width: 768px){
  .pc-contactlab__bento{
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "call call"
      "callback quote";
  }
}

.pc-contactlab__bento-call{ grid-area: call; }
.pc-contactlab__bento-callback{ grid-area: callback; }
.pc-contactlab__bento-quote{ grid-area: quote; }

.pc-contactlab__cta {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 2px solid transparent;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  box-shadow: none;
  transition:
    background var(--pc-contact-dur) var(--pc-contact-ease),
    border-color var(--pc-contact-dur) var(--pc-contact-ease),
    box-shadow var(--pc-contact-dur) var(--pc-contact-ease),
    transform var(--pc-contact-dur) var(--pc-contact-ease);
}

@media (min-width: 768px){
  .pc-contactlab__cta{
    min-height: 60px;
    padding: 16px 20px;
  }
}

.pc-contactlab__cta-label{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
}

.pc-contactlab__cta-primary{
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.pc-contactlab__cta-meta{
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.92;
}

.pc-contactlab__cta i {
  font-size: 22px;
  flex-shrink: 0;
  width: 1.1em;
  text-align: center;
}

/* ============================= */
/* Contact CTA themes: data-cta-theme on .pc-contactlab__bento */
/* minimal = Flat 2.0 | retro = vintage bevel | neumorphic = soft UI */
/* ============================= */

/* --- minimal: Flat Design 2.0 --- */
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta{
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
  filter: none;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,23,42,.1);
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta:active{
  transform: translateY(0);
  transition-duration: 0.08s;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta:focus-visible{
  outline: 2px solid #6B6CE0;
  outline-offset: 3px;
}

.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-call{
  background: #15803d;
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-call i,
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-call .pc-contactlab__cta-primary,
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-call .pc-contactlab__cta-meta{
  color: #fff;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-call:hover{
  background: #166534;
  border-color: rgba(255,255,255,.12);
}

.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback{
  background: #2563eb;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback i,
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback .pc-contactlab__cta-primary,
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback .pc-contactlab__cta-meta{
  color: #fff;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback:hover{
  background: #1d4ed8;
}

.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote{
  background: #fff;
  border-color: #e2e8f0;
  color: #0f172a;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote i,
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary{
  color: #0f172a;
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta{
  color: rgba(15,23,42,.7);
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote:hover{
  background: #f8fafc;
  border-color: #cbd5e1;
}

.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-callback.is-active{
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px rgba(37,99,235,.3),
    0 10px 28px rgba(37,99,235,.12);
}
.pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote.is-active{
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px rgba(59,130,246,.22),
    0 10px 28px rgba(59,130,246,.08);
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote{
  background: rgba(30,41,59,.65);
  border-color: rgba(148,163,184,.35);
  color: rgba(248,250,252,.95);
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote i,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary{
  color: rgba(248,250,252,.95);
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta{
  color: rgba(226,232,240,.7);
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote:hover{
  background: rgba(51,65,85,.55);
  border-color: rgba(148,163,184,.5);
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta-quote.is-active{
  background: rgba(30,58,138,.35);
  border-color: #60a5fa;
}

/* --- neumorphic: soft extruded UI --- */
.pc-contactlab__bento[data-cta-theme="neumorphic"]{
  --nm-d: rgba(163, 177, 198, 0.48);
  --nm-l: rgba(255, 255, 255, 0.92);
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta{
  border: none;
  border-radius: 20px;
  filter: none;
  box-shadow:
    8px 8px 18px var(--nm-d),
    -8px -8px 18px var(--nm-l);
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta:hover{
  transform: translateY(-2px);
  box-shadow:
    10px 10px 22px var(--nm-d),
    -10px -10px 22px var(--nm-l);
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta:active{
  transform: translateY(0);
  box-shadow:
    inset 5px 5px 12px var(--nm-d),
    inset -4px -4px 12px var(--nm-l);
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta:focus-visible{
  outline: 2px solid #6B6CE0;
  outline-offset: 4px;
}

.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call{
  background: linear-gradient(145deg, #d8f5e4, #b8e8cc);
  color: #14532d;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call i{
  color: #15803d;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call .pc-contactlab__cta-primary{
  color: #14532d;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call .pc-contactlab__cta-meta{
  color: rgba(20,83,45,.72);
}

.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback{
  background: linear-gradient(145deg, #e0e9ff, #c7d7fe);
  color: #1e3a8a;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback i{
  color: #2563eb;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback .pc-contactlab__cta-primary{
  color: #1e3a8a;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback .pc-contactlab__cta-meta{
  color: rgba(30,58,138,.75);
}

.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote{
  background: linear-gradient(145deg, #f5f8ff, #e2ebfa);
  color: #172554;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote i,
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary{
  color: #1e3a8a;
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta{
  color: rgba(30,41,99,.72);
}

.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback.is-active{
  box-shadow:
    8px 8px 18px var(--nm-d),
    -8px -8px 18px var(--nm-l),
    0 0 0 3px rgba(37,99,235,.35);
}
.pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote.is-active{
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
  box-shadow:
    8px 8px 18px var(--nm-d),
    -8px -8px 18px var(--nm-l),
    0 0 0 3px rgba(14,165,233,.4);
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"]{
  --nm-d: rgba(0, 0, 0, 0.45);
  --nm-l: rgba(255, 255, 255, 0.06);
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call{
  background: linear-gradient(145deg, #1a3d2e, #0f291f);
  color: #d1fae5;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call i{
  color: #4ade80;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call .pc-contactlab__cta-primary,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call .pc-contactlab__cta-meta{
  color: #d1fae5;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-call .pc-contactlab__cta-meta{
  color: rgba(209,250,229,.75);
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback{
  background: linear-gradient(145deg, #1e2a4a, #152238);
  color: #dbeafe;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback i{
  color: #60a5fa;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback .pc-contactlab__cta-primary,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-callback .pc-contactlab__cta-meta{
  color: #e0e7ff;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote{
  background: linear-gradient(145deg, #243047, #1a2332);
  color: #e2e8f0;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote i,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary{
  color: #f1f5f9;
}
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta{
  color: rgba(226,232,240,.72);
}

/* --- retro: modern neubrutalist (flat fills, hard offset shadow, no glossy gradients) --- */
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta {
  border-radius: 14px;
  border-width: 3px;
  border-style: solid;
  filter: none;
  box-shadow: 5px 5px 0 #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-primary {
  letter-spacing: 0.02em;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-meta {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:hover {
  transform: translate(-2px, -2px);
  filter: none;
  box-shadow: 7px 7px 0 #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:active {
  transform: translate(2px, 2px);
  filter: none;
  box-shadow: 2px 2px 0 #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:focus-visible {
  outline: 3px solid var(--pcs-ct-blue, #3c72fc);
  outline-offset: 3px;
  box-shadow: 5px 5px 0 #1a1510;
}

/* Call */
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call {
  background: #3dd68c;
  border-color: #1a1510;
  color: #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call:hover {
  background: #5ae0a0;
  border-color: #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call i,
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call .pc-contactlab__cta-primary,
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call .pc-contactlab__cta-meta {
  color: #1a1510;
  text-shadow: none;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call:focus-visible {
  box-shadow: 5px 5px 0 #1a1510;
}

/* Callback */
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback {
  background: #5b8cff;
  border-color: #1a1510;
  color: #fff;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback:hover {
  background: #7aa3ff;
  border-color: #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback i,
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback .pc-contactlab__cta-primary,
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback .pc-contactlab__cta-meta {
  color: #fff;
  text-shadow: none;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback:focus-visible {
  box-shadow: 5px 5px 0 #1a1510;
}

/* Quote (same chrome as siblings; light surface) */
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote {
  background: #fffefb;
  border-color: #1a1510;
  color: #1a1510;
  box-shadow: 5px 5px 0 #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote:hover {
  background: #f7f4ee;
  border-color: #1a1510;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote i,
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary {
  color: #1a1510;
  text-shadow: none;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta {
  color: rgba(26, 21, 16, 0.72);
  text-shadow: none;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote:focus-visible {
  box-shadow: 5px 5px 0 #1a1510;
}

/* Selected mode (retro) */
.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback.is-active {
  border-color: #1a1510;
  box-shadow:
    5px 5px 0 #1a1510,
    0 0 0 3px #fbbf24;
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote.is-active {
  background: #dbeafe;
  border-color: #1a1510;
  box-shadow:
    5px 5px 0 #1a1510,
    0 0 0 3px var(--pcs-ct-blue, #3c72fc);
}

.pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote.is-active .pc-contactlab__cta-meta {
  color: rgba(26, 21, 16, 0.78);
}

/* Dark theme + retro */
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta {
  box-shadow: 5px 5px 0 #0f172a;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:hover {
  box-shadow: 7px 7px 0 #0f172a;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:active {
  box-shadow: 2px 2px 0 #0f172a;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call {
  background: #22c55e;
  border-color: #e2e8f0;
  color: #0f172a;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call i,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call .pc-contactlab__cta-primary,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-call .pc-contactlab__cta-meta {
  color: #0f172a;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-callback {
  background: #3c72fc;
  border-color: #e2e8f0;
  color: #fff;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote {
  background: rgba(30, 41, 59, 0.96);
  border-color: #e2e8f0;
  color: rgba(248, 250, 252, 0.96);
  box-shadow: 5px 5px 0 #020617;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote i,
:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote .pc-contactlab__cta-primary {
  color: rgba(248, 250, 252, 0.96);
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote .pc-contactlab__cta-meta {
  color: rgba(226, 232, 240, 0.75);
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote:hover {
  background: rgba(51, 65, 85, 0.95);
  border-color: #f1f5f9;
}

:root[data-theme=dark] .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta-quote.is-active {
  background: rgba(30, 58, 138, 0.55);
  border-color: #e2e8f0;
  box-shadow:
    5px 5px 0 #020617,
    0 0 0 3px #38bdf8;
}

@media (prefers-reduced-motion: reduce){
  .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:hover,
  .pc-contactlab__bento[data-cta-theme="retro"] .pc-contactlab__cta:active,
  .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta:hover,
  .pc-contactlab__bento[data-cta-theme="neumorphic"] .pc-contactlab__cta:active{
    transform: none;
    filter: none;
  }
  .pc-contactlab__bento[data-cta-theme="minimal"] .pc-contactlab__cta:hover{
    transform: none;
  }
}

/* Form panels */
.pc-contactlab__switcher {
  margin-top: 22px;
}

.pc-contactlab__panelview {
  display: none;
}

.pc-contactlab__panelview.is-active {
  display: block;
  animation: pc-contactlab-fadein 0.35s var(--pc-contact-ease) both;
}

@keyframes pc-contactlab-fadein{
  from{ opacity: 0; transform: translateY(4px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .pc-contactlab__panelview.is-active{
    animation: none;
  }
}

@media (max-width: 767px) {
  .pc-contactlab__cta-primary{
    font-size: 16px;
  }
  .pc-contactlab__cta-meta{
    font-size: 12px;
  }
  .pc-contactlab__cta i {
    font-size: 20px;
  }
}












/* PCS Outline Card - visible border */
.pcs-outline-card {
    border: 1px solid #e6e9f2;
    border-radius: 18px;
    padding: 40px 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #ffffff;
}

/* spacing inside */
.pcs-outline-card .row {
    margin-top: 20px;
}

/* mobile */
@media (max-width: 768px) {
    .pcs-outline-card {
        padding: 25px 18px;
    }
}









@media (max-width: 767px) {
    .pcs-faq .section-header {
        margin-bottom: 24px !important;
    }

    .pcs-faq .section-header h5 {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 10px !important;
    }

    .pcs-faq .section-header h2 {
        font-size: 24px !important;
        line-height: 32px !important;
        word-break: normal;
        overflow-wrap: break-word;
        margin-bottom: 0 !important;
    }

    .pcs-faq .col-lg-7.mt-60 {
        margin-top: 20px !important;
    }

    .pcs-faq .col-lg-5.pe-2.pe-lg-5 {
        margin-bottom: 20px;
    }

    .pcs-faq .faq__image img {
        max-width: 100%;
        height: auto;
    }
}

/* ===============================
   Service Hub FAQ - Mobile Fix
================================ */
@media (max-width: 767px) {

    /* FAQ title smaller */
    .pcs-faq .section-header h2 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    /* accordion question text */
    .pcs-faq .accordion-button {
        font-size: 14px !important;
        line-height: 22px !important;
        padding: 16px 50px 16px 18px !important;
    }

    /* FAQ card spacing */
    .pcs-faq .accordion-item {
        margin-bottom: 12px !important;
    }

    /* plus icon smaller */
    .pcs-faq .accordion-button::after {
        width: 14px;
        height: 14px;
        right: 16px;
    }

    /* reduce card padding */
    .pcs-faq .accordion-body {
        padding: 16px 18px !important;
        font-size: 14px;
        line-height: 24px;
    }
}

/* =========================================
   PC Scientist - Service Hub FAQ sizing fix
   Scoped only to .pcs-faq
========================================= */

/* Desktop large screens */
.pcs-faq .accordion-button {
    font-size: 15px;
    line-height: 24px;
    padding: 18px 55px 18px 22px;
}

/* Reduce heading slightly for desktop */
.pcs-faq .section-header h2 {
    font-size: 34px;
    line-height: 44px;
}

/* Tablet */
@media (max-width: 991px) {

    .pcs-faq .section-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .pcs-faq .accordion-button {
        font-size: 14.5px;
        line-height: 22px;
        padding: 16px 50px 16px 20px;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .pcs-faq .section-header h2 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .pcs-faq .accordion-button {
        font-size: 14px !important;
        line-height: 22px !important;
        padding: 14px 45px 14px 18px !important;
    }

    .pcs-faq .accordion-body {
        font-size: 14px;
        line-height: 24px;
    }
}

/* =========================================
   PC Scientist - Service Hub FAQ final fix
   Makes all FAQ questions fully readable
========================================= */

/* Base FAQ card layout */
.pcs-faq .accordion-item {
    overflow: hidden;
}

.pcs-faq .accordion-button {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
    padding: 18px 64px 18px 24px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* Keep icon area smaller and consistent */
.pcs-faq .accordion-button::before {
    top: 50% !important;
    right: 18px !important;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
}

/* Desktop heading */
.pcs-faq .section-header h2 {
    font-size: 34px;
    line-height: 44px;
    overflow-wrap: anywhere;
}

/* Tablet */
@media (max-width: 991px) {
    .pcs-faq .section-header h2 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .pcs-faq .accordion-button {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 16px 58px 16px 20px !important;
    }

    .pcs-faq .accordion-button::before {
        right: 16px !important;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pcs-faq .section-header h2 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .pcs-faq .section-header h5 {
        font-size: 13px !important;
        line-height: 20px !important;
    }

    .pcs-faq .accordion-button {
        font-size: 13px !important;
        line-height: 1.7 !important;
        padding: 14px 54px 14px 16px !important;
    }

    .pcs-faq .accordion-button::before {
        right: 14px !important;
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 14px;
    }

    .pcs-faq .accordion-body {
        padding: 14px 16px 16px !important;
        font-size: 14px;
        line-height: 24px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .pcs-faq .accordion-button {
        font-size: 12px !important;
        line-height: 1.7 !important;
        padding: 13px 50px 13px 14px !important;
    }

    .pcs-faq .accordion-button::before {
        right: 12px !important;
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 13px;
    }
}

/* Restore original sticky middle-right tab */
.pcs-sticky-tab:not(.pcs-sticky-tab--vv-pinned){
    top: 50%;
    right: calc(-18px + env(safe-area-inset-right, 0px));
    bottom: auto !important;
    transform: translate3d(0, -50%, 0) !important;
}

.pcs-sticky-tab:not(.pcs-sticky-tab--vv-pinned):active{
    transform: translate3d(0, -50%, 0) !important;
}

@media (max-width: 380px){
    .pcs-sticky-tab:not(.pcs-sticky-tab--vv-pinned){
        right: calc(-24px + env(safe-area-inset-right, 0px));
        bottom: auto !important;
        transform: translate3d(0, -50%, 0) !important;
    }
}













/* Technology Services Hub - helper box under service cards */
.pcs-service-helper {
    margin-top: 40px;
}

.pcs-service-helper__inner {
    border: 1px solid #e6e9f2;
    border-radius: 18px;
    background: #ffffff;
    padding: 34px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pcs-service-helper__kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pcs-service-helper__content h3 {
    margin-bottom: 12px;
}

.pcs-service-helper__content p {
    max-width: 760px;
}

.pcs-service-helper__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.pcs-service-helper__actions .btn-one {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.pcs-service-helper__link {
    font-weight: 600;
    color: var(--primary-color);
}

.pcs-service-helper__link:hover {
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .pcs-service-helper__inner {
        padding: 28px 24px;
    }

    .pcs-service-helper__actions {
        margin-top: 6px;
    }
}

@media (max-width: 767px) {
    .pcs-service-helper {
        margin-top: 28px;
    }

    .pcs-service-helper__inner {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .pcs-service-helper__content h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .pcs-service-helper__content p {
        font-size: 15px;
        line-height: 26px;
    }
}








/* Simple elegant NSW parent link */
.pcs-region-parent-link {
    margin-bottom: 18px;
}

.pcs-region-parent-link__simple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.pcs-region-parent-link__simple.soft {
    padding: 8px 0;
    border-bottom: 1px solid #dfe6f2;
}

.pcs-region-parent-link__simple i {
    font-size: 15px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.pcs-region-parent-link__simple:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.pcs-region-parent-link__simple:hover i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .pcs-region-parent-link {
        margin-bottom: 14px;
    }

    .pcs-region-parent-link__simple {
        font-size: 16px;
    }

    .pcs-region-parent-link__simple i {
        font-size: 14px;
    }
}










/* =========================================================
   Home page only - Brand new isolated service coverage block
========================================================= */

.pcshome-areas-section {
    padding: 50px 0;
    position: relative;
}

.pcshome-areas-card {
    position: relative;
    background: #070613;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 38px 28px 32px;
    overflow: hidden;
}

.pcshome-areas-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 28px 28px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 2;
}

.pcshome-areas-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: 28px;
}

.pcshome-areas-decor img {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 36%;
    opacity: 0.28;
}

.pcshome-areas-head,
.pcshome-areas-grid,
.pcshome-areas-cta {
    position: relative;
    z-index: 1;
}

.pcshome-areas-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

.pcshome-areas-lead {
    margin: 0;
    max-width: 52rem;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}

.pcshome-areas-lead a {
    color: #a8c4ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pcshome-areas-lead a:hover {
    color: #dbe7ff;
}

.pcshome-areas-rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin: 18px 0 16px;
}

.pcshome-areas-parent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 1px solid rgba(60, 114, 252, 0.55);
    padding-bottom: 4px;
    transition: all 0.25s ease;
}

.pcshome-areas-parent i {
    color: #5f78ff;
    font-size: 15px;
}

.pcshome-areas-parent:hover {
    color: #ffffff;
    border-bottom-color: #5f78ff;
}

.pcshome-areas-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pcshome-areas-item {
    min-height: 84px;
    padding: 0 16px 0 18px;
    background: #f8f8fb;
    border: 1px solid #d8ddf0;
    border-left: 8px solid #5b57f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #121325;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pcshome-areas-item:hover {
    color: #121325;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    border-color: #cdd4ee;
}

.pcshome-areas-item__arrow {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    border: 1px solid #c5cdf4;
    background: #eef1ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121325;
    font-size: 22px;
}

.pcshome-areas-cta {
    margin-top: 22px;
    padding: 18px 18px 18px 18px;
    border: 1px solid rgba(101, 119, 255, 0.40);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.pcshome-areas-cta__text strong {
    display: inline-block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-right: 4px;
}

.pcshome-areas-cta__text span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.6;
}

.pcshome-areas-cta__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pcshome-areas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    font-family: inherit;
}

button.pcshome-areas-btn {
    appearance: none;
    -webkit-appearance: none;
}

.pcshome-areas-btn--primary {
    background: linear-gradient(90deg, #3c72fc 0%, #274fb8 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 24px rgba(25, 49, 128, 0.30);
}

.pcshome-areas-btn--primary:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .pcshome-areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pcshome-areas-head h2 {
        font-size: 36px;
    }

    .pcshome-areas-decor img {
        max-width: 42%;
    }
}

@media (max-width: 767px) {
    .pcshome-areas-section {
        padding: 60px 0;
    }

    .pcshome-areas-card {
        border-radius: 22px;
        padding: 24px 16px 22px;
    }

    .pcshome-areas-decor {
        border-radius: 22px;
    }

    .pcshome-areas-decor img {
        width: 220px;
        max-width: 58%;
        opacity: 0.20;
    }

    .pcshome-areas-head h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .pcshome-areas-parent {
        font-size: 16px;
    }

    .pcshome-areas-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pcshome-areas-item {
        min-height: 74px;
        font-size: 17px;
        border-radius: 16px;
    }

    .pcshome-areas-item__arrow {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 20px;
    }

    .pcshome-areas-cta {
        border-radius: 18px;
        padding: 16px;
    }

    .pcshome-areas-cta__text strong {
        font-size: 18px;
    }

    .pcshome-areas-cta__text span {
        display: block;
        margin-top: 4px;
        font-size: 15px;
    }

    .pcshome-areas-btn {
        width: 100%;
    }
}







/* =========================================
   PC Scientist - Coverage Cards (Isolated)
========================================= */

.pcscover-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* dark cards */
.pcscover-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    min-height:84px;
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    border-left:6px solid #5b63ff;
    text-decoration:none;
    transition:.25s ease;
}

.pcscover-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.35);
    background:rgba(255,255,255,0.06);
}

.pcscover-text{
    font-size:18px;
    font-weight:700;
    color:#ffffff;
    line-height:1.2;
}

.pcscover-arrow{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:18px;
}

/* tablet */
@media (max-width:991px){
    .pcscover-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* mobile */
@media (max-width:767px){
    .pcscover-grid{
        grid-template-columns:1fr;
    }

    .pcscover-item{
        min-height:72px;
        border-radius:16px;
    }

    .pcscover-text{
        font-size:16px;
    }

    .pcscover-arrow{
        width:40px;
        height:40px;
    }
}



/* =========================================
   Home page helper link (independent)
========================================= */

.pcscover-helper-link{
    display:inline-block;
    margin-left:4px;
    align-self:center;
    font-size:14px;
    font-weight:600;
    color:rgb(161, 160, 255);
    text-decoration:none;
    padding:6px 4px;
    transition:all .25s ease;
}

.pcscover-helper-link:hover{
    color:#ffffff;
    text-decoration:underline;
}

/* mobile stack nicely */
@media (max-width:767px){
    .pcscover-helper-link{
        width:100%;
        text-align:center;
        margin-top:6px;
    }
}

/* Home-style coverage block reused on service pages (full-width band) */
.pcs-svc-home-coverage-band .pcshome-areas-section {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}








/* Independent bordered section for "How To Get Started" */
.pcs-process-border {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 80px 0;
  margin: 60px 0;
  background: linear-gradient(
    180deg,
    rgba(10,14,40,0.6) 0%,
    rgba(10,14,40,0.9) 100%
  );
  overflow: hidden;
}

/* subtle glow border */
.pcs-process-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(0, 132, 255, 0.35),
    rgba(0, 132, 255, 0.05),
    rgba(0, 132, 255, 0.35)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.pcs-process-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 18px 18px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

/* optional soft shadow for depth */
.pcs-process-border {
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}










/* About section bordered wrapper */
.pcs-about-border {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 60px 40px;
  background: rgba(10,14,40,0.55);
  overflow: hidden;
}

/* subtle gradient glow */
.pcs-about-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(60,114,252,0.35),
    rgba(60,114,252,0.05),
    rgba(60,114,252,0.35)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.pcs-about-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 20px 20px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

/* optional soft depth */
.pcs-about-border {
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* --------------------------------------------------------------------------
   Home index only: scannable “Who we are” + stepped “How to get started”
   Scoped with .pcs-home-about and .pcs-home-process on index.html only.
   -------------------------------------------------------------------------- */

.about-two-area.pcs-home-about .pcs-about-border {
  background: linear-gradient(
    165deg,
    rgba(14, 20, 48, 0.72) 0%,
    rgba(10, 14, 40, 0.58) 45%,
    rgba(10, 14, 40, 0.62) 100%
  );
}

.about-two-area.pcs-home-about .pcs-home-about-copy {
  color: rgba(248, 250, 252, 0.92);
  line-height: 1.65;
  max-width: 100%;
}

.about-two-area.pcs-home-about .pcs-home-about__lead {
  font-size: clamp(1.0625rem, 2.1vw, 1.1875rem);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  color: #f8fafc;
}

.about-two-area.pcs-home-about .pcs-home-about__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}

@media (max-width: 575px) {
  .about-two-area.pcs-home-about .pcs-home-about__trust {
    justify-content: center;
  }
}

.about-two-area.pcs-home-about .pcs-home-about__trust li {
  list-style: none;
}

.about-two-area.pcs-home-about .pcs-home-about__trust-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-two-area.pcs-home-about .pcs-home-about__trust-link:hover {
    border-color: rgba(60, 114, 252, 0.45);
    background: rgba(60, 114, 252, 0.14);
    color: #fff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }
}

.about-two-area.pcs-home-about .pcs-home-about__trust-link:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 3px;
}

.about-two-area.pcs-home-about .pcs-home-about__trust-link:focus:not(:focus-visible) {
  outline: none;
}

.about-two-area.pcs-home-about .pcs-home-about__trust-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(60, 114, 252, 0.22);
  color: #9ec5ff;
  font-size: 0.85rem;
}

.about-two-area.pcs-home-about .pcs-home-about__split {
  margin-bottom: 0.25rem;
}

.about-two-area.pcs-home-about .pcs-home-about__panel {
  height: 100%;
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.025) 48%,
    rgba(60, 114, 252, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.about-two-area.pcs-home-about .pcs-home-about__panel:hover {
  border-color: rgba(60, 114, 252, 0.42);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(60, 114, 252, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.about-two-area.pcs-home-about .pcs-home-about__panel-title {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.about-two-area.pcs-home-about .pcs-home-about__panel-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(60, 114, 252, 0.35) 0%,
    rgba(60, 114, 252, 0.12) 100%
  );
  color: #b8d4ff;
  font-size: 1rem;
  border: 1px solid rgba(60, 114, 252, 0.25);
}

.about-two-area.pcs-home-about .pcs-home-about__panel p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: rgba(248, 250, 252, 0.82);
}

.about-two-area.pcs-home-about .pcs-home-about__ticks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-two-area.pcs-home-about .pcs-home-about__ticks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: rgba(248, 250, 252, 0.88);
}

.about-two-area.pcs-home-about .pcs-home-about__ticks li:last-child {
  margin-bottom: 0;
}

.about-two-area.pcs-home-about .pcs-home-about__ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(60, 114, 252, 0.2);
}

.about-two-area.pcs-home-about .pcs-home-about__meta {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.95);
  margin: 1.35rem 0 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-two-area.pcs-home-about .pcs-home-about__meta::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  align-self: stretch;
  min-height: 2.75rem;
  margin-top: 0.15rem;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    #3c72fc 0%,
    rgba(60, 114, 252, 0.35) 100%
  );
}

.about-two-area.pcs-home-about .pcs-home-about__quote {
  position: relative;
  margin: 0 0 0.5rem;
  padding: 1.15rem 1.35rem 1.15rem 2.65rem;
  border-radius: 14px;
  border: 1px solid rgba(60, 114, 252, 0.22);
  border-left-width: 4px;
  border-left-color: #3c72fc;
  background: linear-gradient(
    120deg,
    rgba(60, 114, 252, 0.2) 0%,
    rgba(60, 114, 252, 0.07) 42%,
    rgba(10, 14, 40, 0.35) 100%
  );
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
  color: #b6d3ff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.about-two-area.pcs-home-about .pcs-home-about__quote::before {
  content: "\201C";
  position: absolute;
  left: 0.65rem;
  top: 0.35rem;
  font-size: 2.25rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(60, 114, 252, 0.35);
  pointer-events: none;
}

.about-two-area.pcs-home-about .pcs-home-about__actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.about-two-area.pcs-home-about .pcs-home-about__actions-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.92);
}

.about-two-area.pcs-home-about .pcs-home-about__actions-tel {
  font-weight: 700;
  color: #9ec5ff;
  text-decoration: none;
  white-space: nowrap;
}

.about-two-area.pcs-home-about .pcs-home-about__actions-tel:hover {
  color: #c5d9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-two-area.pcs-home-about .pcs-home-about__actions-tel:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 3px;
  border-radius: 4px;
}

.about-two-area.pcs-home-about .pcs-home-about__actions-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.95);
}

@media (max-width: 575px) {
  .about-two-area.pcs-home-about .pcs-home-about__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-two-area.pcs-home-about .pcs-home-about__trust-link:hover {
    transform: none;
  }
}

/* Process section on home: intro line + card shells + balanced step 1 list */
.pcs-home-process .pcs-process-border {
  overflow: visible;
}

.pcs-home-process .section-header h2 {
  letter-spacing: -0.02em;
}

.pcs-home-process .pcs-home-process__intro {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  padding: 0.65rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.94);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pcs-home-process .pcs-home-process__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem auto 0;
  max-width: 15rem;
  padding: 0 0.5rem;
}

.pcs-home-process .pcs-home-process__progress-dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5b8cff 0%, #3c72fc 100%);
  box-shadow:
    0 0 0 3px rgba(60, 114, 252, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

.pcs-home-process .pcs-home-process__progress-line {
  flex: 1;
  height: 2px;
  min-width: 1.25rem;
  max-width: 4rem;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(60, 114, 252, 0.55) 0%,
    rgba(60, 114, 252, 0.12) 100%
  );
  margin: 0 0.2rem;
}

.pcs-home-process .pcs-home-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pcs-home-process .pcs-home-process__steps > li {
  list-style: none;
}

.pcs-home-process .pcs-home-process__card {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.15rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0.065) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(60, 114, 252, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.pcs-home-process .pcs-home-process__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(
    90deg,
    rgba(60, 114, 252, 0.15) 0%,
    #3c72fc 45%,
    rgba(130, 180, 255, 0.6) 100%
  );
  opacity: 0.85;
}

.pcs-home-process .process__image {
  filter: drop-shadow(0 10px 28px rgba(60, 114, 252, 0.22));
}

.pcs-home-process .process__image .process-number {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .pcs-home-process .pcs-home-process__item:hover .pcs-home-process__card {
    transform: translateY(-4px);
    border-color: rgba(60, 114, 252, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcs-home-process .pcs-home-process__item:hover .pcs-home-process__card {
    transform: none;
  }

  .about-two-area.pcs-home-about .pcs-home-about__panel {
    transition: none;
    transform: none;
  }

  .about-two-area.pcs-home-about .pcs-home-about__panel:hover {
    transform: none;
  }

  .pcs-home-process .pcs-home-process__card {
    transition: none;
  }

  .pcs-home-process .pcs-home-process__options li {
    transition: none;
  }
}

.pcs-home-process .process__item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.pcs-home-process .process__content {
  text-align: left;
}

@media (max-width: 991px) {
  .pcs-home-process .process__content {
    text-align: center;
  }

  .pcs-home-process .pcs-home-process__options {
    text-align: left;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.pcs-home-process .pcs-home-process__teaser {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.9);
}

.pcs-home-process .pcs-home-process__options {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.pcs-home-process .pcs-home-process__options li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.45rem 0.5rem 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.45rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.92);
  border-radius: 12px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pcs-home-process .pcs-home-process__options li:last-child {
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-home-process .pcs-home-process__options li:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
}

.pcs-home-process .pcs-home-process__opt {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(60, 114, 252, 0.32) 0%,
    rgba(60, 114, 252, 0.14) 100%
  );
  color: #b6d3ff;
  font-size: 0.95rem;
  border: 1px solid rgba(60, 114, 252, 0.28);
}

.pcs-home-process .process__content p:not(.pcs-home-process__teaser) {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.94rem;
  line-height: 1.55;
}

.pcs-home-process .process__content h4 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-top: 1.35rem !important;
}

.pcs-home-process .pcs-home-process__footer {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.pcs-home-process .pcs-home-process__footer-shell {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1px;
  border-radius: 20px;
  background: linear-gradient(
    125deg,
    rgba(60, 114, 252, 0.45) 0%,
    rgba(60, 114, 252, 0.08) 35%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(60, 114, 252, 0.2) 100%
  );
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.pcs-home-process .pcs-home-process__footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem 1.65rem;
  border-radius: 19px;
  text-align: left;
  background: linear-gradient(
    165deg,
    rgba(18, 26, 58, 0.92) 0%,
    rgba(10, 14, 36, 0.88) 50%,
    rgba(12, 18, 48, 0.94) 100%
  );
  overflow: hidden;
}

.pcs-home-process .pcs-home-process__footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 19px 19px 0 0;
  background: linear-gradient(
    90deg,
    rgba(60, 114, 252, 0.2) 0%,
    #3c72fc 40%,
    rgba(130, 180, 255, 0.65) 100%
  );
  pointer-events: none;
}

@media (min-width: 768px) {
  .pcs-home-process .pcs-home-process__footer-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    padding: 2rem 2.25rem 1.85rem;
    gap: 2rem 2.75rem;
  }
}

.pcs-home-process .pcs-home-process__footer-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7eb0ff;
}

.pcs-home-process .pcs-home-process__footer-lead {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.pcs-home-process .pcs-home-process__footer-sub {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.9);
  max-width: 32rem;
}

.pcs-home-process .pcs-home-process__footer-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}

.pcs-home-process .pcs-home-process__footer-btn {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

.pcs-home-process .pcs-home-process__footer-btn:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 4px;
}

.pcs-home-process .pcs-home-process__footer-phonecard {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem 0.85rem 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(60, 114, 252, 0.35);
  background: linear-gradient(
    135deg,
    rgba(60, 114, 252, 0.2) 0%,
    rgba(60, 114, 252, 0.06) 55%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-home-process .pcs-home-process__footer-phonecard:hover {
    transform: translateY(-2px);
    border-color: rgba(100, 160, 255, 0.55);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(60, 114, 252, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.pcs-home-process .pcs-home-process__footer-phonecard:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 3px;
}

.pcs-home-process .pcs-home-process__footer-phonecard-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #b6d3ff;
  background: linear-gradient(
    145deg,
    rgba(60, 114, 252, 0.4) 0%,
    rgba(60, 114, 252, 0.15) 100%
  );
  border: 1px solid rgba(60, 114, 252, 0.35);
}

.pcs-home-process .pcs-home-process__footer-phonecard-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.pcs-home-process .pcs-home-process__footer-phonecard-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(186, 210, 255, 0.95);
}

.pcs-home-process .pcs-home-process__footer-phonecard-num {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f1f5f9;
}

.pcs-home-process .pcs-home-process__footer-phonecard-go {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.85rem;
  color: #9ec5ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pcs-home-process .pcs-home-process__footer-extras {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  padding-top: 0.15rem;
}

@media (min-width: 768px) {
  .pcs-home-process .pcs-home-process__footer-extras {
    justify-content: flex-start;
  }
}

.pcs-home-process .pcs-home-process__footer-soft {
  font-size: 0.86rem;
  font-weight: 600;
  color: #9ec5ff;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.pcs-home-process .pcs-home-process__footer-soft:hover {
  color: #c5d9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcs-home-process .pcs-home-process__footer-soft:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.pcs-home-process .pcs-home-process__footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.55);
}

@media (max-width: 767px) {
  .pcs-home-process .pcs-home-process__footer-copy {
    text-align: center;
  }

  .pcs-home-process .pcs-home-process__footer-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcs-home-process .pcs-home-process__footer-phonecard {
    transition: none;
  }

  .pcs-home-process .pcs-home-process__footer-phonecard:hover {
    transform: none;
  }
}

/* In-page anchors clear fixed header on home */
section.pcs-home-about#about-jump,
section.pcs-home-process#pcs-how-it-works {
  scroll-margin-top: 5.5rem;
}

@media (max-width: 991px) {
  section.pcs-home-about#about-jump,
  section.pcs-home-process#pcs-how-it-works {
    scroll-margin-top: 4.5rem;
  }
}














/* Services slider bordered container */
.pcs-services-border {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 60px 40px;
  background: rgba(10,14,40,0.55);
  overflow: hidden;
}

/* glow border */
.pcs-services-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(60,114,252,0.35),
    rgba(60,114,252,0.05),
    rgba(60,114,252,0.35)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.pcs-services-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 20px 20px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

/* depth */
.pcs-services-border {
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* --- Individual service pages (/services/*-scientist.html) --- */
body.pcs-svc-page .pcs-hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
body.pcs-svc-page .pcs-hero-copy {
  max-width: 760px;
  color: #d7def4;
  font-size: 18px;
  line-height: 1.75;
  margin-top: 18px;
}
body.pcs-svc-page .pcs-section-intro {
  max-width: 860px;
  margin: 0 auto 55px;
  text-align: center;
}
body.pcs-svc-page .pcs-section-intro p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
}
body.pcs-svc-page .pcs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.pcs-svc-page .pcs-card-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1400px) {
  body.pcs-svc-page .pcs-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.pcs-svc-page .pcs-card {
  background: linear-gradient(180deg, rgba(9, 10, 40, 0.96) 0%, rgba(11, 12, 52, 0.96) 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
body.pcs-svc-page .pcs-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
body.pcs-svc-page .pcs-card__body {
  position: relative;
  padding: 34px 28px 30px;
  min-height: 420px;
}
body.pcs-svc-page .pcs-card__body::after {
  content: "";
  position: absolute;
  right: 0;
  top: 38px;
  width: 170px;
  height: 90px;
  background: url("/assets/images/shape/service-two-item-shape.png") no-repeat center / contain;
  opacity: 0.55;
  pointer-events: none;
}
body.pcs-svc-page .pcs-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3c72fc;
  margin-top: -72px;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
body.pcs-svc-page .pcs-card__icon img {
  max-width: 42px;
}
body.pcs-svc-page .pcs-card h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 18px;
}
body.pcs-svc-page .pcs-card p {
  color: #d2d8eb;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 92%;
  position: relative;
  z-index: 1;
}
body.pcs-svc-page .pcs-feature-wrap {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 1;
}
body.pcs-svc-page .pcs-feature-label {
  display: block;
  margin-bottom: 18px;
  color: #7398ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
body.pcs-svc-page .pcs-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body.pcs-svc-page .pcs-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #e5ebfb;
  font-size: 16px;
  line-height: 1.7;
}
body.pcs-svc-page .pcs-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
body.pcs-svc-page .pcs-support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
body.pcs-svc-page .pcs-support-chip {
  --pcs-chip-accent: #3c72fc;
  --pcs-chip-accent-soft: rgba(60, 114, 252, 0.35);
  position: relative;
  overflow: hidden;
  padding: 24px 22px 26px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(22, 28, 54, 0.96) 0%, rgba(12, 14, 36, 0.92) 50%, rgba(8, 10, 26, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
body.pcs-svc-page .pcs-support-chip:nth-child(1) {
  --pcs-chip-accent: #5b8cff;
  --pcs-chip-accent-soft: rgba(91, 140, 255, 0.38);
}
body.pcs-svc-page .pcs-support-chip:nth-child(2) {
  --pcs-chip-accent: #34d399;
  --pcs-chip-accent-soft: rgba(52, 211, 153, 0.32);
}
body.pcs-svc-page .pcs-support-chip:nth-child(3) {
  --pcs-chip-accent: #a78bfa;
  --pcs-chip-accent-soft: rgba(167, 139, 250, 0.32);
}
body.pcs-svc-page .pcs-support-chip:nth-child(4) {
  --pcs-chip-accent: #38bdf8;
  --pcs-chip-accent-soft: rgba(56, 189, 248, 0.32);
}
body.pcs-svc-page .pcs-support-chip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--pcs-chip-accent), rgba(255, 255, 255, 0.12));
  z-index: 0;
}
body.pcs-svc-page .pcs-support-chip::after {
  content: "";
  position: absolute;
  right: -35%;
  top: -25%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, var(--pcs-chip-accent-soft) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
@media (hover: hover) and (pointer: fine) {
  body.pcs-svc-page .pcs-support-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
      0 26px 64px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(60, 114, 252, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Icon + title on one row; description full width below (chips with icons only) */
body.pcs-svc-page .pcs-support-chip:has(.pcs-support-chip__icon) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 10px;
}

body.pcs-svc-page .pcs-support-chip h4 {
  font-size: 1.12rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

body.pcs-svc-page .pcs-support-chip:has(.pcs-support-chip__icon) h4 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin-bottom: 0;
}

body.pcs-svc-page .pcs-support-chip p {
  margin: 0;
  line-height: 1.75;
  font-size: 15px;
  color: rgba(230, 236, 255, 0.84);
  position: relative;
  z-index: 1;
}

body.pcs-svc-page .pcs-support-chip:has(.pcs-support-chip__icon) p {
  grid-column: 1 / -1;
  grid-row: 2;
}

body.pcs-svc-page .pcs-support-chip__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.38),
    0 0 0 1px var(--pcs-chip-accent-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.pcs-svc-page .pcs-support-chip:has(.pcs-support-chip__icon) .pcs-support-chip__icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
@media (hover: hover) and (pointer: fine) {
  body.pcs-svc-page .pcs-support-chip:hover .pcs-support-chip__icon {
    transform: scale(1.07);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.42),
      0 0 24px var(--pcs-chip-accent-soft),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.pcs-svc-page .pcs-support-chip,
  body.pcs-svc-page .pcs-support-chip__icon {
    transition: none;
  }
  body.pcs-svc-page .pcs-support-chip:hover,
  body.pcs-svc-page .pcs-support-chip:hover .pcs-support-chip__icon {
    transform: none;
  }
}
body.pcs-svc-page .pcs-urgency-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
body.pcs-svc-page .pcs-urgency-box {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(60, 114, 252, 0.08);
  border: 1px solid rgba(60, 114, 252, 0.22);
}
body.pcs-svc-page .pcs-urgency-box h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}
body.pcs-svc-page .pcs-urgency-box p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}
body.pcs-svc-page .pcs-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
body.pcs-svc-page .pcs-mini-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
body.pcs-svc-page .pcs-mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 700;
}
body.pcs-svc-page .pcs-surface {
  background: rgba(13, 18, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 36px;
  height: 100%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

/* "Who this service suits" - scannable, less wall-of-text (individual service pages) */
body.pcs-svc-page .pcs-surface.pcs-svc-audience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(60, 114, 252, 0.14), transparent 55%),
    linear-gradient(165deg, rgba(18, 22, 52, 0.97) 0%, rgba(8, 10, 28, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 40px 40px 36px;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(60, 114, 252, 0.45),
    rgba(255, 255, 255, 0.05) 40%,
    rgba(60, 114, 252, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #3c72fc, rgba(60, 114, 252, 0.35));
  pointer-events: none;
  z-index: 1;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience > * {
  position: relative;
  z-index: 2;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header {
  margin-bottom: 22px;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header h5 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(60, 114, 252, 0.12);
  border: 1px solid rgba(60, 114, 252, 0.28);
  color: #9ab6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header h5 svg {
  flex-shrink: 0;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.22;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0;
  max-width: 22ch;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__lead {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(60, 114, 252, 0.85);
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
  max-width: 42em;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__lead--tight {
  margin-top: -12px;
  margin-bottom: 22px;
  border-left-color: rgba(154, 182, 255, 0.65);
  background: rgba(60, 114, 252, 0.07);
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__list li {
  margin: 0;
  padding: 16px 16px 16px 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, background 0.2s ease;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__list li:hover {
  background: rgba(60, 114, 252, 0.08);
  border-color: rgba(60, 114, 252, 0.25);
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__list li::before {
  content: "✓";
  left: 14px;
  top: 16px;
  transform: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #4ade80;
  font-size: 12px;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
}
/* Tighter bordered process block on service pages */
body.pcs-svc-page .pcs-process-border.pcs-process-border--service {
  /* Top margin: visible gap before the glow card (section pt-20 alone is easy to miss on dark bg) */
  margin: 32px 0 48px;
  padding: 48px 28px 52px;
}
body.pcs-svc-page .service-two-area .pcs-services-border {
  margin-bottom: 0;
}
body.pcs-svc-page .pcs-svc-hero-trust,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 10px 24px;
  border-radius: 18px;
  border: 1px solid rgba(91, 140, 255, 0.38);
  background: linear-gradient(165deg, rgba(16, 20, 48, 0.96) 0%, rgba(8, 10, 26, 0.97) 100%);
  box-shadow:
    0 0 0 1px rgba(60, 114, 252, 0.25),
    0 10px 42px rgba(60, 114, 252, 0.14),
    0 28px 64px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}
body.pcs-svc-page .pcs-svc-hero-trust::before,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #3c72fc, rgba(91, 140, 255, 0.5), #3c72fc);
  z-index: 0;
}
body.pcs-svc-page .pcs-svc-hero-trust::after,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(60, 114, 252, 0.45),
    rgba(60, 114, 252, 0.06) 45%,
    rgba(60, 114, 252, 0.25)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
body.pcs-svc-page .pcs-svc-hero-trust__item,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 14px 22px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: background 0.28s ease;
}
@media (min-width: 992px) {
  body.pcs-svc-page .pcs-svc-hero-trust__item:not(:last-child),
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (hover: hover) and (pointer: fine) {
  body.pcs-svc-page .pcs-svc-hero-trust__item:hover,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}
body.pcs-svc-page .pcs-svc-hero-trust__icon,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(91, 140, 255, 0.45) 0%, rgba(60, 114, 252, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 22px rgba(60, 114, 252, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.pcs-svc-page .pcs-svc-hero-trust__item:hover .pcs-svc-hero-trust__icon,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item:hover .pcs-svc-hero-trust__icon {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(60, 114, 252, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}
body.pcs-svc-page .pcs-svc-hero-trust__item strong,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust__item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
body.pcs-svc-page .pcs-svc-hero-trust__item > div > span,
.pcs-svc-posthero-band--home .pcs-svc-hero-trust__item > div > span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(230, 236, 255, 0.82);
  font-weight: 400;
}
@media (prefers-reduced-motion: reduce) {
  body.pcs-svc-page .pcs-svc-hero-trust__item,
  body.pcs-svc-page .pcs-svc-hero-trust__icon,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__icon {
    transition: none;
  }
  body.pcs-svc-page .pcs-svc-hero-trust__item:hover .pcs-svc-hero-trust__icon,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item:hover .pcs-svc-hero-trust__icon {
    transform: none;
  }
}

/* Service page hero: CTA reassurance line */
body.pcs-svc-page .pcs-hero-cta-note {
  margin-top: 20px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(215, 222, 244, 0.88);
}
body.pcs-svc-page .pcs-hero-cta-note a {
  color: #fff;
  text-underline-offset: 3px;
}
body.pcs-svc-page .pcs-hero-cta-note a:hover {
  color: #dbe7ff;
}

/* Trust strip: five items (Computer Repair Scientist and similar) */
body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five {
  max-width: 1240px;
}
@media (min-width: 1200px) {
  body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five .pcs-svc-hero-trust__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 1199px) {
  body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five {
    grid-template-columns: 1fr;
  }
  body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five .pcs-svc-hero-trust__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  body.pcs-svc-page .pcs-svc-hero-trust.pcs-svc-hero-trust--five .pcs-svc-hero-trust__item:last-child {
    border-bottom: none;
  }
}

/* Common problems grid (individual service pages) */
body.pcs-svc-page .pcs-svc-problems-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px 18px;
}
body.pcs-svc-page .pcs-svc-problem-chip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(22, 28, 62, 0.95) 0%, rgba(12, 16, 42, 0.98) 100%);
  border: 1px solid rgba(91, 140, 255, 0.22);
  color: rgba(245, 247, 255, 0.94);
  font-size: 15px;
  line-height: 1.55;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
body.pcs-svc-page .pcs-svc-problem-chip__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9ab6ff;
  background: rgba(60, 114, 252, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
body.pcs-svc-page .pcs-svc-problems-foot {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(230, 236, 255, 0.82);
}
body.pcs-svc-page .pcs-svc-problems-foot a {
  color: #a8c4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.pcs-svc-page .pcs-svc-problems-foot a:hover {
  color: #dbe7ff;
}

.pcs-svc-reviews-wrap--spaced {
  padding-top: 48px;
  padding-bottom: 72px;
}
.pcs-svc-reviews-shell__lede {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(219, 228, 255, 0.78);
  position: relative;
  z-index: 1;
}

body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__foot {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(230, 236, 255, 0.78);
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__foot a {
  color: #a8c4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__foot a:hover {
  color: #dbe7ff;
}

body.pcs-svc-page .pcs-support-chip a {
  color: #dbe7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.pcs-svc-page .pcs-support-chip a:hover {
  color: #fff;
}

/* Related / all-services band through contact quote: one soft blue band */
body.pcs-svc-page .pcs-svc-related,
body.pcs-svc-page .pcs-svc-all-services {
  padding: 56px 0 44px;
  background: linear-gradient(
    180deg,
    #3d4a66 0%,
    #343e5a 18%,
    #2c3650 36%,
    #232e46 54%,
    #1b263c 72%,
    #141e32 88%,
    #101a2c 100%
  ) !important;
}
body.pcs-svc-page .pcs-svc-related.secondary-bg,
body.pcs-svc-page .pcs-svc-all-services.secondary-bg {
  background-color: transparent !important;
}
body.pcs-svc-page .quote-area,
section.quote-area.pcs-svc-quote-band {
  background: linear-gradient(180deg, #101a2c 0%, #0d1626 40%, #0a1220 100%);
  padding-top: 8px;
  padding-bottom: 48px;
}
body.pcs-svc-page .quote-area .quote__wrp.gradient-bg,
section.quote-area.pcs-svc-quote-band .quote__wrp.gradient-bg {
  background: linear-gradient(95deg, #6b93ee 0%, #3c72fc 22%, #2d5596 52%, #1c3558 78%, #162840 100%) !important;
  box-shadow: 0 18px 48px rgba(5, 12, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Web design page: soft step from light FAQ (sub-bg) into the same deep band as other scientists */
section.quote-area.pcs-svc-quote-band {
  background: linear-gradient(
    180deg,
    #eef2f7 0%,
    #e2e8f0 10%,
    #c5d0e0 22%,
    #6b7a95 38%,
    #354058 52%,
    #1e2a40 68%,
    #121c2e 82%,
    #0a1220 100%
  );
  padding-top: 36px;
}
body.pcs-svc-page .pcs-svc-related__shell {
  position: relative;
  padding: 44px 36px 40px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 22px 55px rgba(4, 10, 24, 0.38);
  overflow: hidden;
}
body.pcs-svc-page .pcs-svc-related__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(130, 165, 240, 0.38),
    rgba(255, 255, 255, 0.1),
    rgba(90, 130, 220, 0.28)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

body.pcs-svc-page .pcs-svc-related__shell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 22px 22px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

body.pcs-svc-page .pcs-svc-related__inner {
  position: relative;
  z-index: 1;
}
body.pcs-svc-page .pcs-svc-related__header {
  margin-bottom: 0;
}
body.pcs-svc-page .pcs-svc-related__sub {
  max-width: 640px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
}
body.pcs-svc-page .pcs-svc-related__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
body.pcs-svc-page .pcs-svc-related__action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 220px;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
body.pcs-svc-page .pcs-svc-related__action:hover,
body.pcs-svc-page .pcs-svc-related__action:focus-visible {
  border-color: rgba(60, 114, 252, 0.45);
  background: rgba(60, 114, 252, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  outline: none;
}
body.pcs-svc-page .pcs-svc-related__action-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(60, 114, 252, 0.2);
  color: #9ab6ff;
  font-size: 18px;
}
body.pcs-svc-page .pcs-svc-related__action-text {
  text-align: left;
  min-width: 0;
}
body.pcs-svc-page .pcs-svc-related__action-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
body.pcs-svc-page .pcs-svc-related__action-text small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}
body.pcs-svc-page .pcs-svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
body.pcs-svc-page .pcs-svc-related__grid > li {
  margin: 0;
}
body.pcs-svc-page .pcs-svc-related__card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
body.pcs-svc-page .pcs-svc-related__card:hover,
body.pcs-svc-page .pcs-svc-related__card:focus-visible {
  border-color: rgba(60, 114, 252, 0.4);
  background: rgba(60, 114, 252, 0.1);
  transform: translateY(-1px);
  outline: none;
}
body.pcs-svc-page .pcs-svc-related__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(60, 114, 252, 0.18);
  color: #7ea3ff;
  font-size: 17px;
}
body.pcs-svc-page .pcs-svc-related__card-label {
  flex: 1 1 auto;
  min-width: 0;
}
body.pcs-svc-page .pcs-svc-related__card-arrow {
  flex-shrink: 0;
  color: rgba(154, 182, 255, 0.85);
  font-size: 14px;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.pcs-svc-page .pcs-svc-related__card:hover .pcs-svc-related__card-arrow,
body.pcs-svc-page .pcs-svc-related__card:focus-visible .pcs-svc-related__card-arrow {
  transform: translateX(3px);
  opacity: 1;
}
@media (max-width: 1199px) {
  body.pcs-svc-page .pcs-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.pcs-svc-page .pcs-support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.pcs-svc-page .pcs-svc-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  body.pcs-svc-page .pcs-svc-hero-trust,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust {
    grid-template-columns: 1fr;
    padding: 18px 16px 20px;
  }

  body.pcs-svc-page .pcs-svc-hero-trust__item,
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item {
    border-right: none !important;
    padding: 14px 12px;
  }

  body.pcs-svc-page .pcs-svc-hero-trust__item:not(:last-child),
  .pcs-svc-posthero-band--home .pcs-svc-hero-trust__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
    padding-bottom: 18px;
  }
}
@media (max-width: 767px) {
  body.pcs-svc-page .pcs-hero-copy {
    font-size: 16px;
    line-height: 1.7;
  }
  body.pcs-svc-page .pcs-card-grid,
  body.pcs-svc-page .pcs-support-strip {
    grid-template-columns: 1fr;
  }
  body.pcs-svc-page .pcs-card__body {
    padding: 30px 24px 28px;
    min-height: auto;
  }
  body.pcs-svc-page .pcs-card h3 {
    font-size: 28px;
  }
  body.pcs-svc-page .pcs-card p {
    font-size: 16px;
    max-width: 100%;
  }
  body.pcs-svc-page .pcs-feature-list li {
    font-size: 15px;
  }
  body.pcs-svc-page .pcs-surface {
    padding: 26px 22px;
    border-radius: 24px;
  }
  body.pcs-svc-page .pcs-surface.pcs-svc-audience {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }
  body.pcs-svc-page .pcs-surface.pcs-svc-audience::after {
    top: 12%;
    bottom: 12%;
  }
  body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header h2 {
    max-width: none;
  }
  body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__list {
    grid-template-columns: 1fr;
  }
  body.pcs-svc-page .pcs-surface.pcs-svc-audience .pcs-svc-audience__lead {
    font-size: 16px;
    padding: 14px 16px;
  }
  body.pcs-svc-page .pcs-process-border.pcs-process-border--service {
    padding: 36px 18px 40px;
  }
  body.pcs-svc-page .pcs-services-border {
    padding: 40px 22px;
  }
  body.pcs-svc-page .pcs-about-border {
    padding: 40px 22px;
  }
  body.pcs-svc-page .pcs-svc-related__shell {
    padding: 32px 22px 28px;
  }
  body.pcs-svc-page .pcs-svc-related__actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.pcs-svc-page .pcs-svc-related__action {
    max-width: none;
  }
  body.pcs-svc-page .pcs-svc-related__grid {
    grid-template-columns: 1fr;
  }
  body.pcs-svc-page .pcs-urgency-strip {
    grid-template-columns: 1fr;
  }
}

/* --- Service page v2: typography, subnav, reviews shell, chips, cards --- */
body.pcs-svc-page {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.pcs-svc-page main #common-problems-jump,
body.pcs-svc-page main #reviews-jump,
body.pcs-svc-page main #repair-areas,
body.pcs-svc-page main #coverage-jump,
body.pcs-svc-page main #why-choose-jump,
body.pcs-svc-page main #help-jump,
body.pcs-svc-page main #about-jump,
body.pcs-svc-page main #flow-jump,
body.pcs-svc-page main #service-coverage-jump,
body.pcs-page-hub main #service-coverage-jump,
body.pcs-svc-page main #faq-jump,
body.pcs-svc-page main #related-services-jump {
  scroll-margin-top: 100px;
}

/* computer-repair-scientist.html only: #coverage-jump top breathing room */
body.pcs-svc-page .pcs-svc-coverage-jump--repair-mt30 {
  margin-top: 30px;
}

/* Scientist service pages: tighter vertical rhythm (default pt/pb-100/120 stacks ~200-240px between bands) */
body.pcs-svc-page main > section.pt-120 {
  padding-top: 72px !important;
}
body.pcs-svc-page main > section.pb-120 {
  padding-bottom: 72px !important;
}
body.pcs-svc-page main > section.pt-100 {
  padding-top: 56px !important;
}
body.pcs-svc-page main > section.pb-100 {
  padding-bottom: 56px !important;
}

body.pcs-svc-page .pcs-svc-reviews-wrap--spaced {
  padding-top: 32px;
  padding-bottom: 48px;
}

body.pcs-svc-page .pcs-help-cta {
  margin-top: 28px;
}

body.pcs-svc-page main .section-header.mb-60 {
  margin-bottom: 40px !important;
}

body.pcs-svc-page main .section-header.mb-50 {
  margin-bottom: 36px !important;
}

body.pcs-svc-page .process__item.mb-100 {
  margin-bottom: 52px !important;
}

@media (min-width: 992px) {
  body.pcs-svc-page .process__item.mb-100 {
    margin-bottom: 0 !important;
  }
}

body.pcs-svc-page #related-services-jump .mb-60 {
  margin-bottom: 40px !important;
}

body.pcs-svc-page .pcs-svc-home-coverage-band .pcshome-areas-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* All-services block: match home service-two cards inside bordered shell on scientist pages */
body.pcs-svc-page .pcs-svc-all-services .pcs-services-border {
  margin-bottom: 0;
}

body.pcs-svc-page .pcs-svc-all-services .pcs-nextstep-panel {
  margin-top: 28px;
}

body.pcs-svc-page .pcs-svc-hero-title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

body.pcs-svc-page main .section-header h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

body.pcs-svc-page .pcs-surface.pcs-svc-audience .section-header h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

/* Post-hero band: trust strip + breadcrumbs / jumps + reviews share one backdrop */
body.pcs-svc-page .pcs-svc-posthero-band,
.pcs-svc-posthero-band--home {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(60, 114, 252, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 12, 32, 0.4) 0%, rgba(6, 8, 22, 0.85) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pcs-svc-posthero-band--home {
  padding-top: 30px;
}

body.pcs-svc-page .pcs-svc-posthero-band .pcs-svc-page-tools,
.pcs-svc-posthero-band--home .pcs-svc-page-tools {
  background: transparent;
  border-bottom: none;
}

body.pcs-svc-page .pcs-svc-posthero-band .pcs-svc-reviews-wrap,
.pcs-svc-posthero-band--home .pcs-svc-reviews-wrap {
  background: transparent;
}

/* Breadcrumb + jump row */
.pcs-svc-page-tools {
  padding: 8px 0 28px;
  background: linear-gradient(180deg, rgba(6, 10, 28, 0.92) 0%, rgba(8, 12, 32, 0.65) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pcs-svc-breadcrumb__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  font-size: 13px;
  line-height: 1.5;
}

.pcs-svc-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(210, 220, 245, 0.55);
}

.pcs-svc-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(210, 220, 245, 0.28);
  font-weight: 400;
  pointer-events: none;
}

.pcs-svc-breadcrumb__item--current {
  color: rgba(230, 236, 255, 0.92);
  font-weight: 600;
  max-width: 100%;
}

.pcs-svc-breadcrumb__link {
  color: rgba(154, 186, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pcs-svc-breadcrumb__link:hover,
.pcs-svc-breadcrumb__link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.pcs-svc-jumps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.pcs-svc-page .pcs-svc-jumps,
.pcs-svc-posthero-band--home .pcs-svc-jumps {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 22px 22px;
  border-radius: 20px;
  border: 1px solid rgba(91, 140, 255, 0.28);
  background: rgba(8, 10, 28, 0.58);
  box-shadow:
    0 0 0 1px rgba(60, 114, 252, 0.2),
    0 14px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  align-items: center;
  text-align: center;
}

body.pcs-svc-page .pcs-svc-page-tools .pcs-svc-breadcrumb__list,
.pcs-svc-posthero-band--home .pcs-svc-page-tools .pcs-svc-breadcrumb__list {
  justify-content: center;
}

.pcs-svc-jumps__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(142, 170, 255, 0.85);
}

body.pcs-svc-page .pcs-svc-jumps__label,
.pcs-svc-posthero-band--home .pcs-svc-jumps__label {
  justify-content: center;
  width: 100%;
}

.pcs-svc-jumps__label i {
  font-size: 12px;
  opacity: 0.9;
}

.pcs-svc-jumps__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.pcs-svc-page .pcs-svc-jumps__chips,
.pcs-svc-posthero-band--home .pcs-svc-jumps__chips {
  justify-content: center;
}

.pcs-svc-jump-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(235, 240, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pcs-svc-jump-chip i {
  font-size: 14px;
  color: #8eb2ff;
  opacity: 0.95;
}

.pcs-svc-jump-chip:hover,
.pcs-svc-jump-chip:focus-visible {
  background: rgba(60, 114, 252, 0.22);
  border-color: rgba(60, 114, 252, 0.45);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  outline: none;
}

.pcs-svc-jump-chip--cta {
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.35) 0%, rgba(60, 114, 252, 0.12) 100%);
  border-color: rgba(60, 114, 252, 0.5);
}

.pcs-svc-jump-chip--cta i {
  color: #c8d8ff;
}

/* Reviews block (home + service pages, Google / Elfsight embed) */
#reviews-jump {
  scroll-margin-top: 100px;
}

.pcs-svc-reviews-wrap {
  padding: 28px 0 44px;
  overflow: visible;
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(66, 133, 244, 0.14) 0%, transparent 58%),
    linear-gradient(180deg, #030713 0%, #050a1a 45%, #070f22 100%);
}

.pcs-svc-reviews-shell {
  position: relative;
  border-radius: 24px;
  padding: 36px clamp(18px, 4vw, 36px) 32px;
  background: linear-gradient(165deg, rgba(12, 18, 42, 0.98) 0%, rgba(5, 10, 26, 0.99) 100%);
  border: 1px solid rgba(91, 140, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 28px 64px rgba(0, 0, 0, 0.45);
  /* visible so Elfsight / Google review carousel arrows are not clipped */
  overflow: visible;
}

.pcs-svc-reviews-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(125deg, rgba(66, 133, 244, 0.35), rgba(66, 133, 244, 0.06) 42%, rgba(91, 140, 255, 0.22));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pcs-svc-reviews-shell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 24px 24px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

.pcs-svc-reviews-shell__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pcs-svc-reviews-shell__kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4f7ff;
  background: rgba(8, 14, 38, 0.95);
  border: 1px solid rgba(120, 168, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pcs-svc-reviews-shell__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.pcs-svc-reviews-shell__embed {
  position: relative;
  z-index: 1;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(6px, 3vw, 22px);
}

.pcs-svc-reviews-shell__embed-inner {
  background: #fff;
  border-radius: 18px;
  padding: clamp(14px, 2.5vw, 24px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.pcs-svc-reviews-shell__embed-inner [class^="elfsight-app-"] {
  min-height: 120px;
}

/* Home: common problems panel (service cards, grid, focal glow) */
.pcs-svc-reviews-shell--common-problems .pcs-svc-reviews-shell__lede--home-problems {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pcs-svc-reviews-shell__kicker--home-scan {
  font-size: 11px;
  padding: 10px 20px;
  letter-spacing: 0.18em;
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.38) 0%, rgba(60, 114, 252, 0.14) 100%);
  border-color: rgba(140, 180, 255, 0.5);
  box-shadow:
    0 0 28px rgba(60, 114, 252, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pcs-svc-reviews-shell--common-problems .pcs-svc-reviews-shell__title {
  text-shadow: 0 0 48px rgba(99, 102, 241, 0.22);
}

.pcs-home-common-problems {
  position: relative;
  z-index: 1;
  padding-top: 0.35rem;
}

.pcs-home-common-problems::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(96%, 44rem);
  height: min(70%, 18rem);
  background: radial-gradient(ellipse at center, rgba(66, 133, 244, 0.2) 0%, rgba(99, 102, 241, 0.08) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.pcs-home-common-problems > * {
  position: relative;
  z-index: 1;
}

.pcs-home-common-problems__hint {
  margin: 0 auto 1rem;
  max-width: 28rem;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(186, 204, 255, 0.72);
}

.pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 0;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list li:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 22rem);
  }
}

@media (min-width: 992px) {
  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
  }

  /* Full-width centred last tile only when the count is 1 mod 3 (e.g. 7 items). */
  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list li:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list li:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 24rem);
  }
}

.pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list li {
  display: flex;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style: none;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__list li:hover {
    background: transparent;
    box-shadow: none;
  }
}

.pcs-home-common-problems__card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
  min-height: 3.35rem;
  padding: 0.65rem 0.6rem 0.65rem 0.7rem;
  text-decoration: none;
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  font-family: "Outfit", system-ui, sans-serif;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.025) 55%, rgba(12, 20, 48, 0.45) 100%);
  border: 1px solid rgba(120, 160, 255, 0.22);
  border-radius: 14px;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease,
    color 0.2s ease;
}

.pcs-home-common-problems__label {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.pcs-home-common-problems__go {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.1rem;
  font-size: 0.72rem;
  color: rgba(200, 216, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-home-common-problems__card:hover {
    border-color: rgba(170, 200, 255, 0.48);
    background: linear-gradient(152deg, rgba(255, 255, 255, 0.12) 0%, rgba(60, 114, 252, 0.14) 100%);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(100, 150, 255, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    color: #fff;
  }

  .pcs-home-common-problems__card:hover .pcs-home-common-problems__go {
    color: rgba(230, 238, 255, 0.95);
    background: rgba(60, 114, 252, 0.35);
    transform: translateX(2px);
  }
}

.pcs-home-common-problems__card:focus-visible {
  outline: 2px solid rgba(140, 180, 255, 0.95);
  outline-offset: 3px;
}

.pcs-svc-reviews-shell .pcs-home-common-problems .pcs-home-common-problems__opt {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  font-size: 1.08rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(1) .pcs-home-common-problems__opt {
  color: #cfe2ff;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.35) 0%, rgba(59, 130, 246, 0.12) 100%);
  border-color: rgba(147, 197, 253, 0.4);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(2) .pcs-home-common-problems__opt {
  color: #a5f3fc;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.3) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-color: rgba(103, 232, 249, 0.38);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(3) .pcs-home-common-problems__opt {
  color: #ddd6fe;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.32) 0%, rgba(124, 58, 237, 0.12) 100%);
  border-color: rgba(196, 181, 253, 0.4);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(4) .pcs-home-common-problems__opt {
  color: #fde68a;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-color: rgba(252, 211, 77, 0.42);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(5) .pcs-home-common-problems__opt {
  color: #fecdd3;
  background: linear-gradient(145deg, rgba(251, 113, 133, 0.28) 0%, rgba(244, 63, 94, 0.1) 100%);
  border-color: rgba(253, 164, 175, 0.4);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(6) .pcs-home-common-problems__opt {
  color: #bbf7d0;
  background: linear-gradient(145deg, rgba(74, 222, 128, 0.28) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-color: rgba(134, 239, 172, 0.42);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(7) .pcs-home-common-problems__opt {
  color: #7dd3fc;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.32) 0%, rgba(14, 165, 233, 0.12) 100%);
  border-color: rgba(125, 211, 252, 0.42);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(8) .pcs-home-common-problems__opt {
  color: #bbf7d0;
  background: linear-gradient(145deg, rgba(74, 222, 128, 0.28) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-color: rgba(134, 239, 172, 0.42);
}

.pcs-svc-reviews-shell .pcs-home-common-problems__list li:nth-child(9) .pcs-home-common-problems__opt {
  color: #c4b5fd;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.3) 0%, rgba(109, 40, 217, 0.11) 100%);
  border-color: rgba(167, 139, 250, 0.42);
}

.pcs-home-common-problems__foot {
  text-align: center;
  margin: 1.65rem 0 0;
}

.pcs-home-common-problems__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f4ff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.55) 0%, rgba(99, 102, 241, 0.22) 100%);
  border: 1px solid rgba(180, 205, 255, 0.55);
  box-shadow:
    0 0 32px rgba(60, 114, 252, 0.28),
    0 12px 32px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pcs-home-common-problems__cta:hover {
    color: #fff;
    background: linear-gradient(145deg, rgba(80, 130, 255, 0.72) 0%, rgba(99, 102, 241, 0.35) 100%);
    border-color: rgba(210, 225, 255, 0.75);
    transform: translateY(-2px);
    box-shadow:
      0 0 40px rgba(60, 114, 252, 0.38),
      0 16px 40px rgba(0, 0, 0, 0.4);
  }
}

.pcs-home-common-problems__cta:focus-visible {
  outline: 2px solid rgba(160, 198, 255, 0.95);
  outline-offset: 3px;
}

.pcs-home-common-problems__cta i {
  font-size: 0.88em;
  opacity: 0.9;
}

/* Service cards: step watermark */
body.pcs-svc-page .pcs-card__step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Hero image slider: frame */
body.pcs-svc-page .pcs-hero-slider {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(60, 114, 252, 0.15);
}

body.pcs-svc-page .pcs-hero-slide img {
  border-radius: 0;
}

/* Process flow section accent */
body.pcs-svc-page .pcs-svc-flow .process__item .process-number {
  box-shadow: 0 4px 14px rgba(60, 114, 252, 0.35);
}

@media (max-width: 767px) {
  .pcs-svc-page-tools {
    padding-bottom: 22px;
  }

  body.pcs-svc-page .pcs-svc-jumps,
  .pcs-svc-posthero-band--home .pcs-svc-jumps {
    padding: 16px 14px 18px;
  }

  .pcs-svc-jumps__chips {
    gap: 8px;
  }

  .pcs-svc-jump-chip {
    font-size: 12px;
    padding: 9px 12px;
  }

  .pcs-svc-reviews-shell {
    padding: 24px 18px 28px;
  }

  body.pcs-svc-page .pcs-support-chip__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}













/* ================================
   PC Scientist - Independent Next Step CTA
   Fully standalone styles
================================ */

#pcsNextStepPanel {
  margin-top: 56px;
}

.pcs-nextstep-panel {
  position: relative;
}

.pcs-nextstep-panel__shell {
  position: relative;
  padding: 38px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(60, 114, 252, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 18, 44, 0.96) 0%, rgba(8, 10, 28, 0.98) 100%);
  overflow: hidden;
}

.pcs-nextstep-panel__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 24px 24px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 2;
}

.pcs-nextstep-panel__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(60, 114, 252, 0.32),
    rgba(255, 255, 255, 0.04),
    rgba(60, 114, 252, 0.12)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.pcs-nextstep-panel__lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pcs-nextstep-panel__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(60, 114, 252, 0.12);
  border: 1px solid rgba(60, 114, 252, 0.22);
  color: #9ab7ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pcs-nextstep-panel__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.18;
}

.pcs-nextstep-panel__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

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

.pcs-nextstep-action {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

button.pcs-nextstep-action {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.pcs-nextstep-action:hover,
.pcs-nextstep-action:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(60, 114, 252, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  outline: none;
}

.pcs-nextstep-action__badge {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  background: rgba(60, 114, 252, 0.14);
  color: #9ab7ff;
}

.pcs-nextstep-action__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pcs-nextstep-action__title {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.pcs-nextstep-action__text {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.pcs-nextstep-action--quote .pcs-nextstep-action__badge {
  background: rgba(132, 92, 255, 0.15);
  color: #c0a8ff;
}

.pcs-nextstep-action--callback .pcs-nextstep-action__badge {
  background: rgba(0, 200, 160, 0.14);
  color: #73e3ca;
}

.pcs-nextstep-action--book .pcs-nextstep-action__badge {
  background: rgba(107, 108, 224, 0.18);
  color: #c4c3ff;
}

.pcs-nextstep-panel__note {
  margin: 22px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .pcs-nextstep-panel__actions {
    grid-template-columns: 1fr;
  }

  .pcs-nextstep-panel__title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .pcs-nextstep-panel__shell {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .pcs-nextstep-panel__title {
    font-size: 26px;
  }

  .pcs-nextstep-panel__copy {
    font-size: 16px;
  }

  .pcs-nextstep-action {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .pcs-nextstep-action__title {
    font-size: 19px;
  }

  .pcs-nextstep-action__badge {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 14px;
    font-size: 19px;
  }
}



.pcs-nextstep-action__cta{
  display:inline-block;
  margin-top:10px;
  font-weight:600;
  color:#8fb1ff;
  text-decoration:underline;
  font-size:14px;
}

.pcs-nextstep-action{
  cursor:pointer;
}

.pcs-nextstep-action:hover .pcs-nextstep-action__cta{
  color:#fff;
}

/* --------------------------------------------------------------------------
   Home index only: premium "Book a service" three-card row
   -------------------------------------------------------------------------- */

.pcs-nextstep-panel--home .pcs-nextstep-panel__shell {
  padding: 42px 40px 36px;
  border: none;
  background: linear-gradient(
    175deg,
    rgba(18, 24, 56, 0.96) 0%,
    rgba(10, 12, 32, 0.98) 55%,
    rgba(12, 16, 42, 0.97) 100%
  );
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__shell::after {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(60, 114, 252, 0.45) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(132, 92, 255, 0.2) 100%
  );
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__title {
  font-size: clamp(1.65rem, 3.5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__copy {
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.05rem;
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__actions {
  gap: 22px;
}

.pcs-nextstep-panel--home .pcs-nextstep-action {
  flex-direction: column;
  align-items: stretch;
  padding: 26px 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0.065) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(10, 14, 36, 0.35) 100%
  );
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pcs-nextstep-panel--home .pcs-nextstep-action::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0.95;
  pointer-events: none;
}

.pcs-nextstep-panel--home .pcs-nextstep-action--call::before {
  background: linear-gradient(90deg, rgba(60, 114, 252, 0.2), #3c72fc, rgba(130, 180, 255, 0.55));
}

.pcs-nextstep-panel--home .pcs-nextstep-action--book::before {
  background: linear-gradient(90deg, rgba(107, 108, 224, 0.35), #6b6ce0, rgba(196, 195, 255, 0.55));
}

.pcs-nextstep-panel--home .pcs-nextstep-action--callback::before {
  background: linear-gradient(90deg, rgba(0, 200, 160, 0.25), #2dd4bf, rgba(110, 231, 210, 0.5));
}

.pcs-nextstep-panel--home .pcs-nextstep-action--quote::before {
  background: linear-gradient(90deg, rgba(132, 92, 255, 0.3), #8b5cf6, rgba(196, 181, 253, 0.55));
}

.pcs-nextstep-panel--home .pcs-nextstep-action--featured {
  border-color: rgba(107, 108, 224, 0.4);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(107, 108, 224, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--book .pcs-nextstep-action__cta {
  background: rgba(107, 108, 224, 0.28);
  border-color: rgba(196, 195, 255, 0.35);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--book:hover .pcs-nextstep-action__cta,
.pcs-nextstep-panel--home .pcs-nextstep-action--book:focus-visible .pcs-nextstep-action__cta {
  background: rgba(107, 108, 224, 0.42);
}

.pcs-nextstep-panel--home .pcs-nextstep-action__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pcs-nextstep-panel--home .pcs-nextstep-action__badge {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 16px;
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pcs-nextstep-panel--home .pcs-nextstep-action__body {
  flex: 1;
  margin-top: 4px;
}

.pcs-nextstep-panel--home .pcs-nextstep-action__title {
  font-size: 1.25rem;
}

.pcs-nextstep-panel--home .pcs-nextstep-action__text {
  color: rgba(203, 213, 225, 0.9);
  font-size: 0.95rem;
}

.pcs-nextstep-panel--home .pcs-nextstep-action__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #f8fafc !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(60, 114, 252, 0.22);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--callback .pcs-nextstep-action__cta {
  background: rgba(0, 200, 160, 0.18);
  border-color: rgba(45, 212, 191, 0.35);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--quote .pcs-nextstep-action__cta {
  background: rgba(132, 92, 255, 0.2);
  border-color: rgba(167, 139, 250, 0.35);
}

.pcs-nextstep-panel--home .pcs-nextstep-action:hover .pcs-nextstep-action__cta,
.pcs-nextstep-panel--home .pcs-nextstep-action:focus-visible .pcs-nextstep-action__cta {
  color: #fff !important;
  background: rgba(60, 114, 252, 0.4);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--callback:hover .pcs-nextstep-action__cta,
.pcs-nextstep-panel--home .pcs-nextstep-action--callback:focus-visible .pcs-nextstep-action__cta {
  background: rgba(0, 200, 160, 0.32);
}

.pcs-nextstep-panel--home .pcs-nextstep-action--quote:hover .pcs-nextstep-action__cta,
.pcs-nextstep-panel--home .pcs-nextstep-action--quote:focus-visible .pcs-nextstep-action__cta {
  background: rgba(132, 92, 255, 0.38);
}

.pcs-nextstep-panel--home .pcs-nextstep-action:focus-visible {
  outline: 2px solid #6ea4ff;
  outline-offset: 3px;
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__note-wrap {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.pcs-nextstep-panel--home .pcs-nextstep-panel__note {
  margin: 0;
  color: rgba(203, 213, 225, 0.88);
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .pcs-nextstep-panel--home .pcs-nextstep-panel__shell {
    padding: 32px 22px 28px;
  }
}

@media (max-width: 767.98px) {
  .pcs-nextstep-panel--home .pcs-nextstep-action {
    padding: 22px 18px 18px;
  }

  .pcs-nextstep-panel--home .pcs-nextstep-action__ribbon {
    top: 10px;
    right: 10px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcs-nextstep-panel--home .pcs-nextstep-action:hover,
  .pcs-nextstep-panel--home .pcs-nextstep-action:focus-visible {
    transform: none;
  }
}









/* =========================
   Home Page FAQ - Brand New
   Fully Independent Styles
========================= */

.pcs-homefaq-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.pcs-homefaq-media > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.pcs-homefaq-media__line {
  position: absolute;
  left: 0;
  top: 18%;
  z-index: 1;
  pointer-events: none;
}

.pcs-homefaq-shell {
  position: relative;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(60, 114, 252, 0.32),
    rgba(60, 114, 252, 0.08),
    rgba(255, 255, 255, 0.08),
    rgba(60, 114, 252, 0.24)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.pcs-homefaq-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(60, 114, 252, 0.16), transparent 45%);
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.pcs-homefaq-shell__inner {
  position: relative;
  padding: 34px 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(60, 114, 252, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(12, 18, 35, 0.98) 0%, rgba(8, 12, 26, 0.98) 100%);
}

.pcs-homefaq-shell__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pcs-panel-top-strip-h);
  border-radius: 24px 24px 0 0;
  background: var(--pcs-panel-top-strip-bg);
  pointer-events: none;
  z-index: 4;
}

.pcs-homefaq-accordion {
  display: grid;
  gap: 14px;
}

.pcs-homefaq-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pcs-homefaq-card:hover {
  border-color: rgba(60, 114, 252, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.pcs-homefaq-card__heading {
  margin: 0;
}

.pcs-homefaq-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 58px 22px 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.pcs-homefaq-card__trigger:focus {
  outline: none;
}

.pcs-homefaq-card__trigger::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 114, 252, 0.14);
  color: #9ebcff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.pcs-homefaq-card__trigger:not(.collapsed)::after {
  content: "−";
  background: rgba(60, 114, 252, 0.22);
  color: #ffffff;
}

.pcs-homefaq-card__body {
  padding: 0 22px 22px;
}

.pcs-homefaq-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15.5px;
  line-height: 1.75;
}

.pcs-homefaq-card__body a {
  color: #8fb1ff;
  text-decoration: underline;
}

.pcs-homefaq-card__body a:hover {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .pcs-homefaq-shell__inner {
    padding: 28px 22px;
  }
}

@media (max-width: 767.98px) {
  .pcs-homefaq-media,
  .pcs-homefaq-media > img {
    border-radius: 18px;
  }

  .pcs-homefaq-shell,
  .pcs-homefaq-shell__inner {
    border-radius: 20px;
  }

  .pcs-homefaq-card {
    border-radius: 16px;
  }

  .pcs-homefaq-card__trigger {
    padding: 18px 50px 18px 18px;
    font-size: 16px;
  }

  .pcs-homefaq-card__body {
    padding: 0 18px 18px;
  }

  .pcs-homefaq-card__body p {
    font-size: 15px;
  }
}

/* Scientist pages: home-style FAQ shell (headings above top strip, readable on dark panel) */
body.pcs-svc-page .pcs-homefaq-shell .section-header,
body.pcs-svc-page .pcs-homefaq-shell .pcs-homefaq-accordion {
  position: relative;
  z-index: 2;
}

body.pcs-svc-page .pcs-homefaq-shell .section-header h5 {
  color: rgba(142, 170, 255, 0.92);
}

body.pcs-svc-page .pcs-homefaq-shell .section-header h2 {
  color: #ffffff;
}

.pc-h2-nowrap {
  white-space: nowrap;
}

/* About page: retro / neumorphism / minimalist / flat 2.0 + bento (scope: .pcs-ab-page--retro) */
.pcs-ab-page--retro {
  --pcs-ab-blue: #3c72fc;
  --pcs-ab-ink: #2a241c;
  --pcs-ab-muted: #5c5448;
  --ab-cream: #e8e2d6;
  --ab-cream-light: #f5f1e8;
  --ab-cream-dark: #d4cdc0;
  --ab-walnut: #3d3428;
  --ab-walnut-deep: #2c241c;
  --ab-neu-light: #faf7f0;
  --ab-neu-dark: #cfc7b8;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--pcs-ab-ink);
  background-color: var(--ab-cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
}

.pcs-ab-page--retro h1,
.pcs-ab-page--retro h2,
.pcs-ab-page--retro h3,
.pcs-ab-page--retro h4,
.pcs-ab-page--retro .pcs-ab-team-card__body h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pcs-ab-page--retro .pcs-ab-bento {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.pcs-ab-page--retro .pcs-ab-neu-flat {
  background: linear-gradient(145deg, var(--ab-neu-light), var(--ab-cream-light));
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(42, 36, 28, 0.07);
  border: 1px solid rgba(90, 80, 65, 0.1);
}

.pcs-ab-page--retro .pcs-ab-bento--mission {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .pcs-ab-page--retro .pcs-ab-bento--mission {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .pcs-ab-page--retro .pcs-ab-bento__cell--mission-copy {
    grid-column: span 7;
  }

  .pcs-ab-page--retro .pcs-ab-bento__cell--mission-stats {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
  }

  .pcs-ab-page--retro .pcs-ab-bento__cell--mission-stats .pcs-ab-stats {
    flex: 1;
  }
}

.pcs-ab-page--retro .pcs-ab-bento--why {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .pcs-ab-page--retro .pcs-ab-bento--why {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.35rem;
  }
}

.pcs-ab-page--retro .pcs-ab-bento--values {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .pcs-ab-page--retro .pcs-ab-bento--values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pcs-ab-page--retro .pcs-ab-bento--values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pcs-ab-page--retro .pcs-ab-bento--team {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pcs-ab-page--retro .pcs-ab-bento--team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pcs-ab-page--retro .pcs-ab-bento--timeline {
  width: 100%;
}

/* About hero: original dark layout (retro skin does not apply here) */
.pcs-ab-page--retro .pcs-ab-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "video"
    "crumb"
    "copy";
  gap: 24px;
  align-items: start;
}

.pcs-ab-page--retro .pcs-ab-hero__cell--crumb {
  grid-area: crumb;
}

.pcs-ab-page--retro .pcs-ab-hero__cell--copy {
  grid-area: copy;
}

.pcs-ab-page--retro .pcs-ab-hero__cell--video {
  grid-area: video;
}

@media (min-width: 992px) {
  .pcs-ab-page--retro .pcs-ab-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "crumb crumb"
      "copy video";
    column-gap: 56px;
    row-gap: 0;
    align-items: center;
  }

  .pcs-ab-page--retro .pcs-ab-hero__cell--crumb {
    margin-bottom: 1rem;
  }
}

.pcs-ab-page--retro .pcs-ab-hero {
  position: relative;
  padding: 48px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1028 0%, #12183d 45%, #0d1433 100%);
}

@media (max-width: 991.98px) {
  .pcs-ab-page--retro .pcs-ab-hero {
    padding: 48px 0 88px;
  }
}

.pcs-ab-page--retro .pcs-ab-hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  opacity: 0.35;
}

.pcs-ab-page--retro .pcs-ab-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 40, 0.75) 0%, rgba(10, 16, 40, 0.92) 100%);
}

.pcs-ab-page--retro .pcs-ab-hero .container {
  position: relative;
  z-index: 2;
}

.pcs-ab-page--retro .pcs-ab-hero .breadcrumb-list,
.pcs-ab-page--retro .pcs-ab-hero .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.95);
}

.pcs-ab-page--retro .pcs-ab-hero .breadcrumb-list a:hover {
  color: #ffffff;
}

.pcs-ab-page--retro .pcs-ab-hero .breadcrumb-list span,
.pcs-ab-page--retro .pcs-ab-hero .breadcrumb-list span i {
  color: rgba(255, 255, 255, 0.95);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(60, 114, 252, 0.18);
  border: 1px solid rgba(60, 114, 252, 0.35);
  margin-bottom: 22px;
}

.pcs-ab-page--retro .pcs-ab-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: normal;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-lead {
  color: rgba(232, 238, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}

.pcs-ab-page--retro .pcs-ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn {
  text-transform: none;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  border-radius: 9999px;
  padding: 16px 32px;
  background: #3c72fc;
  border: none;
  color: #fff;
  box-shadow: 0 10px 28px rgba(60, 114, 252, 0.35);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn::before,
.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn::after {
  display: none;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn:hover {
  color: #fff;
  filter: brightness(1.06);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn:hover i {
  transform: translate(5px);
}

@media (max-width: 575px) {
  .pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__help-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__tel strong {
  color: #fff;
  font-size: 18px;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__tel span {
  color: rgba(255, 255, 255, 0.92);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__tel a {
  color: #ffffff;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-hero__tel a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-video-shell {
  position: relative;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(60, 114, 252, 0.45),
    rgba(60, 114, 252, 0.08),
    rgba(60, 114, 252, 0.45)
  );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-video-shell__inner {
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0e28;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube:not(.is-playing) .pcs-ab-youtube__poster {
  cursor: pointer;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__poster {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  display: block;
  width: 100%;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__poster:focus-visible {
  outline: 3px solid rgba(147, 180, 255, 0.95);
  outline-offset: 3px;
  border-radius: 19px;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__embed {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube.is-playing .pcs-ab-youtube__poster {
  display: none;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__play-icon {
  pointer-events: none;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-video-shell__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-video-shell__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(6, 10, 28, 0.2), rgba(6, 10, 28, 0.65));
  text-align: center;
  padding: 20px;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play {
  position: relative;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  border: 2px solid rgba(60, 114, 252, 0.5);
  box-shadow: 0 0 0 1px rgba(60, 114, 252, 0.12);
  pointer-events: none;
  animation: pcs-ab-play-pulse 2.5s ease-out infinite;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play__pulse--2 {
  animation-delay: 1.25s;
}

@keyframes pcs-ab-play-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.15);
    opacity: 0;
  }
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play__core {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid #3c72fc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play__triangle {
  display: block;
  margin-left: 2px;
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__poster:hover .pcs-ab-play__core,
.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-youtube__poster:focus-visible .pcs-ab-play__core {
  transform: scale(1.07);
  box-shadow: 0 12px 36px rgba(60, 114, 252, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .pcs-ab-page--retro .pcs-ab-hero .pcs-ab-play__pulse {
    animation: none;
    opacity: 0;
    visibility: hidden;
  }
}

.pcs-ab-page--retro .pcs-ab-hero .pcs-ab-video-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  max-width: 280px;
  line-height: 1.45;
}

.pcs-ab-page--retro .pcs-ab-section {
  padding: 88px 0;
}

.pcs-ab-page--retro .pcs-ab-section--soft {
  background: linear-gradient(180deg, var(--ab-cream-light) 0%, var(--ab-cream) 55%, #ddd5c8 100%);
}

/* Same as above when both classes live on one element (e.g. hub #request-callback) */
.pcs-ab-page--retro.pcs-ab-section.pcs-ab-section--soft {
  background: linear-gradient(180deg, var(--ab-cream-light) 0%, var(--ab-cream) 55%, #ddd5c8 100%);
}

.pcs-ab-page--retro .pcs-ab-section--dark {
  position: relative;
  background: linear-gradient(185deg, #3a3228 0%, var(--ab-walnut-deep) 45%, #1c1814 100%);
  color: rgba(245, 238, 228, 0.92);
}

.pcs-ab-page--retro .pcs-ab-section--dark h2,
.pcs-ab-page--retro .pcs-ab-section--dark h3,
.pcs-ab-page--retro .pcs-ab-section--dark h4 {
  color: #faf6ef;
}

.pcs-ab-page--retro .pcs-ab-section--embed {
  background: linear-gradient(180deg, #e0d9ce 0%, var(--ab-cream) 100%);
}

/* Visible frame around each About content block (all .pcs-ab-section variants; hero is .pcs-ab-hero) */
.pcs-ab-page--retro .pcs-ab-section > .container {
  border: 1px solid rgba(90, 80, 65, 0.26);
  border-radius: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.09),
    0 6px 26px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.42) inset;
}

.pcs-ab-page--retro .pcs-ab-section--dark > .container {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 8px 32px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
}

@media (max-width: 767.98px) {
  .pcs-ab-page--retro .pcs-ab-section > .container {
    border-radius: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.pcs-ab-page--retro .pcs-ab-head {
  max-width: 40rem;
  margin: 0 auto 48px;
  text-align: center;
}

.pcs-ab-page--retro .pcs-ab-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 14px;
  color: var(--pcs-ab-ink);
}

.pcs-ab-page--retro .pcs-ab-section--dark .pcs-ab-head h2 {
  color: #faf6ef;
}

.pcs-ab-page--retro .pcs-ab-head p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--pcs-ab-muted);
  margin: 0;
}

.pcs-ab-page--retro .pcs-ab-section--dark .pcs-ab-head p {
  color: rgba(232, 225, 210, 0.82);
}

/* Section titles: blue accent bar (dual-form keeps its own h2 rule) */
.pcs-ab-page--retro .pcs-ab-section:not(.pcs-ab-section--dark) .pcs-ab-head:not(.pcs-ab-head--dual-form) h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pcs-ab-blue), rgba(60, 114, 252, 0.22));
}

.pcs-ab-page--retro .pcs-ab-section--dark .pcs-ab-head h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
}

.pcs-ab-page--retro .pcs-ab-border-light {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #faf8f4, #f3efe8);
  padding: 36px 32px;
  box-shadow:
    0 4px 22px rgba(42, 36, 28, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  border: 1px solid rgba(90, 80, 65, 0.2);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.pcs-ab-page--retro .pcs-ab-border-light:hover {
  border-color: rgba(60, 114, 252, 0.22);
  box-shadow:
    0 10px 32px rgba(42, 36, 28, 0.1),
    0 0 0 1px rgba(60, 114, 252, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.pcs-ab-page--retro .pcs-ab-border-light::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(60, 114, 252, 0.12),
    rgba(255, 255, 255, 0.04),
    rgba(60, 114, 252, 0.1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.pcs-ab-page--retro .pcs-ab-prose {
  font-size: 17px;
  line-height: 1.82;
  color: var(--pcs-ab-muted);
}

/* Mission card: comfortable measure, hierarchy, scannable links (not one long line of URLs) */
.pcs-ab-page--retro .pcs-ab-prose--mission {
  max-width: min(65ch, 100%);
  margin-inline: auto;
  line-height: 1.78;
  color: #454038;
}

.pcs-ab-page--retro .pcs-ab-prose__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--ab-walnut-deep);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.pcs-ab-page--retro .pcs-ab-prose--mission p {
  margin-bottom: 1.1rem;
}

.pcs-ab-page--retro .pcs-ab-prose--mission .pcs-ab-prose__hubline {
  margin-bottom: 0.65rem;
  margin-top: 0.25rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--ab-walnut-deep);
}

.pcs-ab-page--retro .pcs-ab-service-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .pcs-ab-page--retro .pcs-ab-service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pcs-ab-page--retro .pcs-ab-service-links li {
  margin: 0;
  padding: 0;
  line-height: 1.45;
}

.pcs-ab-page--retro .pcs-ab-service-links a {
  color: var(--pcs-ab-blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(60, 114, 252, 0.35);
  text-underline-offset: 3px;
}

.pcs-ab-page--retro .pcs-ab-service-links a:hover {
  color: #2a5ad4;
  text-decoration-color: rgba(42, 90, 212, 0.55);
}

.pcs-ab-page--retro .pcs-ab-prose a {
  color: var(--pcs-ab-blue);
  font-weight: 500;
}

.pcs-ab-page--retro .pcs-ab-prose a:hover {
  color: #2a5ad4;
}

.pcs-ab-page--retro .pcs-ab-prose:not(.pcs-ab-prose--mission) p:last-child {
  margin-bottom: 0;
}

.pcs-ab-page--retro .pcs-ab-prose--mission .pcs-ab-service-links {
  margin-bottom: 0;
}

.pcs-ab-page--retro .pcs-ab-bento--mission {
  gap: 1.35rem;
}

/* Mission prose card + timeline shell: blue top cap */
.pcs-ab-page--retro .pcs-ab-bento--mission .pcs-ab-border-light {
  overflow: hidden;
}

.pcs-ab-page--retro .pcs-ab-bento--mission .pcs-ab-border-light::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--pcs-ab-blue) 0%, rgba(60, 114, 252, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.pcs-ab-page--retro .pcs-ab-bento--timeline.pcs-ab-border-light {
  overflow: hidden;
}

.pcs-ab-page--retro .pcs-ab-bento--timeline.pcs-ab-border-light::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--pcs-ab-blue) 0%, rgba(60, 114, 252, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.pcs-ab-page--retro .pcs-ab-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  flex: 1;
  align-content: stretch;
}

.pcs-ab-page--retro .pcs-ab-stat {
  position: relative;
  border-radius: 18px;
  padding: 24px 20px 22px;
  background: linear-gradient(165deg, #fffefb 0%, #f4efe6 100%);
  border: 1px solid rgba(90, 80, 65, 0.16);
  box-shadow: 0 4px 16px rgba(42, 36, 28, 0.07);
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pcs-ab-page--retro .pcs-ab-stat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcs-ab-blue), rgba(60, 114, 252, 0.45));
  opacity: 0.95;
  pointer-events: none;
}

.pcs-ab-page--retro .pcs-ab-stat:nth-child(even) {
  background: linear-gradient(165deg, #ebe4d8 0%, #faf8f4 100%);
}

.pcs-ab-page--retro .pcs-ab-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 114, 252, 0.28);
  box-shadow:
    0 12px 28px rgba(42, 36, 28, 0.11),
    0 0 0 1px rgba(60, 114, 252, 0.1);
}

.pcs-ab-page--retro .pcs-ab-stat strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ab-walnut-deep);
  line-height: 1.2;
  margin-bottom: 10px;
}

.pcs-ab-page--retro .pcs-ab-stat strong::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--pcs-ab-blue);
  opacity: 0.85;
}

.pcs-ab-page--retro .pcs-ab-stat span {
  font-size: 16px;
  font-weight: 500;
  color: #454038;
  line-height: 1.55;
  max-width: 38ch;
}

.pcs-ab-page--retro .pcs-about-border {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 26px 24px;
  background: linear-gradient(155deg, rgba(72, 64, 52, 0.62), rgba(28, 22, 18, 0.88));
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(60, 114, 252, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pcs-ab-page--retro .pcs-about-border:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 190, 255, 0.35);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(100, 140, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.pcs-ab-page--retro .pcs-about-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(60, 114, 252, 0.35),
    rgba(255, 255, 255, 0.06),
    rgba(60, 114, 252, 0.22)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.pcs-ab-page--retro .pcs-about-border::after {
  border-radius: 22px 22px 0 0;
}

.pcs-ab-page--retro .pcs-ab-prose-dark {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(252, 248, 240, 0.94);
}

.pcs-ab-page--retro .pcs-ab-prose-why {
  max-width: min(65ch, 100%);
  margin-inline: auto;
}

.pcs-ab-page--retro .pcs-ab-why-leadtitle {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: #faf6ef;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.pcs-ab-page--retro .pcs-ab-why-subhead {
  font-size: 1.2rem;
  color: #faf6ef;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.pcs-ab-page--retro .pcs-ab-why-list {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(245, 240, 228, 0.92);
}

.pcs-ab-page--retro .pcs-ab-value {
  position: relative;
  height: 100%;
  padding: 26px 22px;
  border-radius: 20px;
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s ease, border-color 0.26s ease;
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(165deg, #fffefb 0%, #f3efe8 100%);
  border: 1px solid rgba(90, 80, 65, 0.16);
  box-shadow: 0 4px 16px rgba(42, 36, 28, 0.07);
  overflow: hidden;
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pcs-ab-blue), rgba(60, 114, 252, 0.25));
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  z-index: 1;
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 32px rgba(42, 36, 28, 0.11),
    0 0 0 1px rgba(60, 114, 252, 0.1);
  border-color: rgba(60, 114, 252, 0.28);
}

.pcs-ab-page--retro .pcs-ab-value__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.2), rgba(60, 114, 252, 0.06));
  color: var(--pcs-ab-blue);
  font-size: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(60, 114, 252, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value:hover .pcs-ab-value__icon {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 12px rgba(60, 114, 252, 0.2);
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ab-walnut-deep);
}

.pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value p {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: #454038;
  margin: 0;
  max-width: 36ch;
}

.pcs-ab-page--retro .pcs-ab-timeline {
  position: relative;
  max-width: min(65ch, 100%);
  margin: 0 auto;
  padding-left: 8px;
}

.pcs-ab-page--retro .pcs-ab-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--pcs-ab-blue), rgba(60, 114, 252, 0.12));
  box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.06);
}

.pcs-ab-page--retro .pcs-ab-tl-item {
  position: relative;
  padding-left: 52px;
  padding-bottom: 32px;
}

.pcs-ab-page--retro .pcs-ab-tl-item:last-child {
  padding-bottom: 0;
}

.pcs-ab-page--retro .pcs-ab-tl-dot {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5b8cff, var(--pcs-ab-blue));
  border: 3px solid #faf8f4;
  box-shadow:
    0 0 0 4px rgba(60, 114, 252, 0.18),
    0 3px 10px rgba(60, 114, 252, 0.35);
}

.pcs-ab-page--retro .pcs-ab-tl-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ab-walnut-deep);
}

.pcs-ab-page--retro .pcs-ab-tl-item p {
  font-size: 16px;
  line-height: 1.72;
  color: #454038;
  margin: 0 0 0.85rem;
}

.pcs-ab-page--retro .pcs-ab-tl-hubline {
  font-size: 16px;
  font-weight: 500;
  color: var(--ab-walnut-deep);
  margin: 0 0 0.5rem;
  line-height: 1.65;
}

.pcs-ab-page--retro .pcs-ab-tl-svc-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pcs-ab-page--retro .pcs-ab-tl-svc-links a {
  color: var(--pcs-ab-blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(60, 114, 252, 0.35);
  text-underline-offset: 3px;
}

.pcs-ab-page--retro .pcs-ab-tl-svc-links a:hover {
  color: #2a5ad4;
}

.pcs-ab-page--retro .pcs-ab-team-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ab-cream-light);
  box-shadow: 0 6px 22px rgba(42, 36, 28, 0.09);
  border: 1px solid rgba(90, 80, 65, 0.18);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.pcs-ab-page--retro .pcs-ab-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(60, 114, 252, 0.26);
  box-shadow:
    0 16px 40px rgba(42, 36, 28, 0.13),
    0 0 0 1px rgba(60, 114, 252, 0.1);
}

.pcs-ab-page--retro .pcs-ab-team-card::before {
  display: none;
}

.pcs-ab-page--retro .pcs-ab-team-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.pcs-ab-page--retro .pcs-ab-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.95);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.pcs-ab-page--retro .pcs-ab-team-card:hover .pcs-ab-team-card__media img {
  transform: scale(1.05);
  filter: sepia(0.04) saturate(1.02);
}

.pcs-ab-page--retro .pcs-ab-team-card__body {
  position: relative;
  z-index: 2;
  padding: 24px 22px 26px;
  background: linear-gradient(180deg, #faf6ef, var(--ab-cream-light));
}

.pcs-ab-page--retro .pcs-ab-team-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--ab-walnut-deep);
}

.pcs-ab-page--retro .pcs-ab-team-card__body .role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcs-ab-blue);
  margin-bottom: 12px;
}

.pcs-ab-page--retro .pcs-ab-team-card__body p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  color: #454038;
  margin: 0;
  max-width: 42ch;
}

.pcs-ab-page--retro .pcs-ab-embed {
  max-width: 100%;
  margin: 0 auto;
}

.pcs-ab-page--retro .pcs-ab-embed .pc-elfsight-wrap {
  margin-top: 0;
}

/* Elfsight Social Feed: center fixed-width carousel inside full-width card */
.pcs-ab-page--retro .pcs-ab-embed--social-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pcs-ab-page--retro .pcs-ab-embed--social-feed .elfsight-app-f3ed5e7d-9f52-485d-956f-ab758503e170 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pcs-ab-page--retro .pcs-ab-embed--social-feed .elfsight-app-f3ed5e7d-9f52-485d-956f-ab758503e170 > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.pcs-ab-page--retro .pcs-ab-embed--social-feed iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* About: callback / quote bento - inset rail + raised active chip + recessed form deck */
.pcs-ab-page--retro .pcs-ab-head--dual-form {
  max-width: min(42rem, 100%);
  margin-bottom: 40px;
}

.pcs-ab-page--retro .pcs-ab-head--dual-form h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 18px;
}

.pcs-ab-page--retro .pcs-ab-head--dual-form h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pcs-ab-blue), rgba(60, 114, 252, 0.25));
  opacity: 0.9;
}

.pcs-ab-page--retro .pcs-ab-embed--dual-form {
  max-width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 28px 24px 32px;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.pcs-ab-page--retro .pcs-ab-dual-form {
  position: relative;
  z-index: 1;
}

.pcs-ab-page--retro .pcs-ab-dual-form__eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pcs-ab-blue);
  opacity: 0.92;
}

/* Way 1: walnut call strip (sits above form tabs) */
.pcs-ab-page--retro .pcs-ab-dual-form__callprime {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 14px;
  padding: 16px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: #f4efe6;
  background: linear-gradient(118deg, #3d3428 0%, #2c241c 48%, #24324d 160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 6px 22px rgba(28, 22, 16, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    inset 0 -2px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime:hover {
  border-color: rgba(160, 190, 255, 0.35);
  box-shadow:
    0 10px 28px rgba(28, 22, 16, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    inset 0 -2px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime:focus-visible {
  outline: 3px solid rgba(160, 190, 255, 0.55);
  outline-offset: 3px;
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 20px;
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-kicker {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 225, 210, 0.72);
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  font-family: "Outfit", sans-serif;
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-title {
  font-size: 16px;
  font-weight: 700;
  color: #fffefb;
  letter-spacing: -0.01em;
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-num {
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #b8ceff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.pcs-ab-page--retro .pcs-ab-dual-form__callprime-go {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pcs-ab-page--retro .pcs-ab-dual-form__rail-label {
  margin: 0 0 12px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(90, 80, 65, 0.45);
}

@media (max-width: 419.98px) {
  .pcs-ab-page--retro .pcs-ab-dual-form__callprime {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px 16px;
  }

  .pcs-ab-page--retro .pcs-ab-dual-form__callprime-body {
    text-align: center;
  }

  .pcs-ab-page--retro .pcs-ab-dual-form__callprime-row {
    justify-content: center;
  }

  .pcs-ab-page--retro .pcs-ab-dual-form__callprime-go {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcs-ab-page--retro .pcs-ab-dual-form__callprime:hover {
    transform: none;
  }
}

.pcs-ab-page--retro .pcs-ab-embed--dual-form .pcs-ab-dual-form__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px;
  border-radius: 20px;
  background: linear-gradient(180deg, #dcd5ca, #d3ccc0);
  border: 1px solid rgba(90, 80, 65, 0.14);
  box-shadow:
    inset 0 3px 10px rgba(42, 36, 28, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 479.98px) {
  .pcs-ab-page--retro .pcs-ab-embed--dual-form .pcs-ab-dual-form__tabs {
    grid-template-columns: 1fr;
  }
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 15px;
  border: 1px solid transparent;
  background: transparent;
  color: #5e564a;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 80, 65, 0.08);
  border: 1px solid rgba(90, 80, 65, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab-icon i {
  font-size: 17px;
  color: var(--pcs-ab-blue);
  opacity: 0.88;
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab:hover {
  color: var(--ab-walnut-deep);
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab:hover .pcs-ab-dual-form__tab-icon {
  background: rgba(60, 114, 252, 0.1);
  border-color: rgba(60, 114, 252, 0.18);
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab:focus-visible {
  outline: 3px solid rgba(60, 114, 252, 0.45);
  outline-offset: 2px;
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab.is-active {
  background: linear-gradient(165deg, #fffefb 0%, #f2ebe3 100%);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--ab-walnut-deep);
  box-shadow:
    0 4px 12px rgba(42, 36, 28, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab.is-active .pcs-ab-dual-form__tab-icon {
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.18), rgba(60, 114, 252, 0.08));
  border-color: rgba(60, 114, 252, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 2px 6px rgba(60, 114, 252, 0.12);
}

.pcs-ab-page--retro .pcs-ab-dual-form__tab.is-active .pcs-ab-dual-form__tab-icon i {
  color: #2f5ae0;
  opacity: 1;
}

.pcs-ab-page--retro .pcs-ab-dual-form__formdeck {
  border-radius: 22px;
  padding: 18px 14px 22px;
  background: linear-gradient(178deg, #faf7f1 0%, #ebe4d8 100%);
  border: 1px solid rgba(90, 80, 65, 0.11);
  box-shadow:
    inset 0 2px 14px rgba(42, 36, 28, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45),
    0 2px 8px rgba(42, 36, 28, 0.04);
  position: relative;
}

.pcs-ab-page--retro .pcs-ab-dual-form__formdeck::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: rgba(90, 80, 65, 0.12);
  pointer-events: none;
}

.pcs-ab-page--retro .pcs-ab-dual-form__formdeck .pc-contactlab__formwrap {
  padding-top: 12px;
}

.pcs-ab-page--retro .pcs-ab-dual-form__panels.pc-contactlab__switcher {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pcs-ab-page--retro .pcs-ab-dual-form__tab {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-ab-dual-form__tab.is-active {
    transform: none;
  }

  .pcs-ab-page--retro .pcs-ab-border-light {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-ab-stat {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-ab-stat:hover {
    transform: none;
  }

  .pcs-ab-page--retro .pcs-about-border {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-about-border:hover {
    transform: none;
  }

  .pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value,
  .pcs-ab-page--retro .pcs-ab-value__icon {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value:hover,
  .pcs-ab-page--retro .pcs-ab-section--soft .pcs-ab-value:hover .pcs-ab-value__icon {
    transform: none;
  }

  .pcs-ab-page--retro .pcs-ab-team-card,
  .pcs-ab-page--retro .pcs-ab-team-card__media img {
    transition: none;
  }

  .pcs-ab-page--retro .pcs-ab-team-card:hover,
  .pcs-ab-page--retro .pcs-ab-team-card:hover .pcs-ab-team-card__media img {
    transform: none;
  }
}

/* Gutter behind the CTA card (default: flat cream + pinstripe; About overrides below) */
.quote-area.pcs-ab-quote-retro {
  background-color: #e8e2d6;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
}

/* About page only: continue .pcs-ab-section--soft (its gradient ends at #ddd5c8). Do not restart
   the full soft gradient here - that put cream-light at the top and caused a visible seam. */
main.pcs-ab-page.pcs-ab-page--retro .quote-area.pcs-ab-quote-retro {
  background-color: #ddd5c8;
  background-image: none;
}

.quote-area.pcs-ab-quote-retro .quote__wrp.gradient-bg {
  border-radius: var(--pcs-quote-card-radius);
  background: linear-gradient(135deg, #3d3428 0%, #2c241c 55%, #243a8c 120%) !important;
  box-shadow: 0 6px 20px rgba(28, 22, 16, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-area.pcs-ab-quote-retro .btn-one {
  border-radius: 14px;
  box-shadow: 0 3px 0 rgba(20, 30, 70, 0.4), 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767.98px) {
  .pcs-ab-page--retro .pcs-ab-hero {
    padding: 24px 0 56px;
  }

  .pcs-ab-page--retro .pcs-ab-section {
    padding: 64px 0;
  }

  .pcs-ab-page--retro .pcs-ab-border-light {
    padding: 26px 20px;
  }

  .pcs-ab-page--retro .pcs-ab-border-light.pcs-ab-embed--dual-form {
    padding: 22px 16px 26px;
  }

  .pcs-ab-page--retro .pcs-ab-stat {
    min-height: 0;
  }

  .pcs-ab-page--retro .pcs-ab-timeline {
    padding-left: 0;
  }

  .pcs-ab-page--retro .pcs-ab-timeline::before {
    left: 11px;
  }

  .pcs-ab-page--retro .pcs-ab-tl-item {
    padding-left: 44px;
  }

  .pcs-ab-page--retro .pcs-ab-tl-dot {
    left: 2px;
  }
}

/* =========================================
   Site-wide retro chrome (standard inner pages)
   Scope: body.pcs-site--retro
========================================= */

body.pcs-site--retro {
  --pcs-ct-cream: #e8e2d6;
  --pcs-ct-cream-light: #f5f1e8;
  --pcs-ct-walnut: #3d3428;
  --pcs-ct-walnut-deep: #2c241c;
  --pcs-ct-muted: #5c5448;
  --pcs-ct-blue: #3c72fc;
  background-color: var(--pcs-ct-cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro main {
  font-family: "Outfit", system-ui, sans-serif;
}

body.pcs-site--retro .banner__inner-page {
  position: relative;
}

body.pcs-site--retro .banner__inner-page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(232, 226, 214, 0.55));
}

body.pcs-site--retro .banner__inner-page h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Location wireframe: let body cream + pinstripe read through (no odd flat band) */
body.pcs-site--retro .case-area.pcs-wireframe {
  background: transparent;
  background-image: none;
}

body.pcs-site--retro .pcs-headline {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro .pcs-subhead {
  color: var(--pcs-ct-muted);
}

body.pcs-site--retro .pcs-kicker {
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-media {
  border-color: rgba(90, 80, 65, 0.18);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(165deg, #fffefb 0%, #f6f1ea 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-site--retro .pcs-chip {
  background: rgba(255, 254, 251, 0.92);
  border-color: rgba(90, 80, 65, 0.14);
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro .pcs-chip i {
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-chip:hover {
  border-color: rgba(60, 114, 252, 0.28);
  box-shadow: 0 8px 22px rgba(42, 36, 28, 0.08);
}

/* Central Coast hub + money pages: bordered topic strip (heading + copy + chips) */
body.pcs-site--retro .pcs-cc-topic-nav {
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 18px;
  border: 2px solid rgba(90, 80, 65, 0.28);
  /* Top blue accent strip + fill: same layering as .pcs-media so the strip follows border-radius */
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(
      165deg,
      rgba(255, 254, 251, 0.96) 0%,
      rgba(244, 238, 230, 0.72) 100%
    );
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 8px 28px rgba(42, 36, 28, 0.08);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-jumps--cc-topics {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-jumps--cc-topics .pcs-jumps__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip {
  border-width: 2px;
  border-style: solid;
  border-color: rgba(90, 80, 65, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 1px 3px rgba(42, 36, 28, 0.06);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip:hover {
  border-color: rgba(60, 114, 252, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 6px 18px rgba(42, 36, 28, 0.1);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--jump-wide {
  min-height: 48px;
  padding: 12px 18px;
  justify-content: center;
}

@media (min-width: 576px) {
  body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--jump-wide {
    min-width: min(220px, 100%);
  }
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip i {
  font-size: 1.05em;
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip .pcs-cc-topic-svg {
  width: 1.12em;
  height: 1.12em;
  flex-shrink: 0;
  display: block;
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--current .pcs-cc-topic-svg {
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--current {
  cursor: default;
  pointer-events: none;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(60, 114, 252, 0.52);
  background: linear-gradient(
    180deg,
    rgba(60, 114, 252, 0.12) 0%,
    rgba(255, 254, 251, 0.96) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 10px rgba(42, 36, 28, 0.08);
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--current i {
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-cc-topic-nav .pcs-chip.pcs-chip--current:hover {
  transform: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 10px rgba(42, 36, 28, 0.08);
  border-color: rgba(60, 114, 252, 0.52);
}

/* Central Coast hub: NSW-wide Technology Services + Scientist page links */
body.pcs-site--retro .pcs-cc-hub-links {
  position: relative;
  padding: clamp(18px, 2.4vw, 26px);
  padding-left: clamp(20px, 2.8vw, 30px);
  border-radius: 18px;
  border: 2px solid rgba(90, 80, 65, 0.28);
  border-left-width: 6px;
  border-left-color: rgba(60, 114, 252, 0.55);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(
      168deg,
      rgba(255, 254, 251, 0.98) 0%,
      rgba(236, 244, 255, 0.35) 55%,
      rgba(244, 238, 230, 0.65) 100%
    );
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 32px rgba(42, 36, 28, 0.09);
}

body.pcs-site--retro .pcs-cc-hub-links__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

body.pcs-site--retro .pcs-cc-hub-links__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.1rem;
  color: var(--pcs-ct-blue);
  background: linear-gradient(
    145deg,
    rgba(60, 114, 252, 0.14) 0%,
    rgba(255, 254, 251, 0.95) 100%
  );
  border: 2px solid rgba(60, 114, 252, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

body.pcs-site--retro .pcs-cc-hub-links__title {
  margin: 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.05rem + 0.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro .pcs-cc-hub-links__lead {
  font-size: 1.02rem;
  line-height: 1.55;
}

body.pcs-site--retro .pcs-cc-hub-links__lead a {
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.pcs-site--retro .pcs-cc-hub-links__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
}

body.pcs-site--retro .pcs-cc-hub-links__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  color: var(--pcs-ct-walnut-deep);
  background: rgba(255, 254, 251, 0.92);
  border: 2px solid rgba(90, 80, 65, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 6px rgba(42, 36, 28, 0.05);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

body.pcs-site--retro .pcs-cc-hub-links__pill:hover,
body.pcs-site--retro .pcs-cc-hub-links__pill:focus-visible {
  color: var(--pcs-ct-walnut-deep);
  border-color: rgba(60, 114, 252, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 6px 18px rgba(42, 36, 28, 0.1);
  transform: translateY(-1px);
  outline: none;
}

body.pcs-site--retro .pcs-cc-hub-links__pill:focus-visible {
  box-shadow:
    0 0 0 3px rgba(60, 114, 252, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

/* Location hero intro: warmer card, clearer type, larger tap targets (elderly-friendly) */
body.pcs-site--retro .pcs-intro-hero {
  --pcs-intro-card-radius: 24px;
  /* Lottie fills right side of headline + body only (see __stage); tune size here */
  --pcs-intro-lottie-width: min(60%, 980px);
  --pcs-intro-copy-pad-r: min(46%, 500px);
  position: relative;
  margin-bottom: 6px;
  padding: clamp(22px, 3.8vw, 36px) clamp(18px, 2.8vw, 34px) clamp(24px, 3.6vw, 38px);
  border-radius: var(--pcs-intro-card-radius);
  border: 1px solid rgba(90, 80, 65, 0.14);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(155deg, #fffefb 0%, rgba(255, 252, 246, 0.98) 42%, rgba(236, 228, 216, 0.45) 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.05),
    0 14px 44px rgba(42, 36, 28, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  overflow: hidden;
}

body.pcs-site--retro .pcs-intro-hero:has(.pcs-intro-hero__visual) {
  overflow: visible;
}

/* Top accent is layered on .pcs-intro-hero background so corners match the card radius. */
body.pcs-site--retro .pcs-intro-hero::before {
  content: none;
}

body.pcs-site--retro .pcs-intro-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 42%;
  transform: translateY(-50%);
  width: min(38%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(60, 114, 252, 0.14), rgba(255, 195, 140, 0.09) 52%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 992px) {
  body.pcs-site--retro .pcs-intro-hero:has(.pcs-intro-hero__visual)::after {
    opacity: 0.35;
    right: 2%;
    width: min(28%, 200px);
  }
}

/* __stage = headline + body + Lottie (large red box). __inner adds jump row below. */
body.pcs-site--retro .pcs-intro-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.pcs-site--retro .pcs-intro-hero__stage {
  position: relative;
  z-index: 1;
}

body.pcs-site--retro .pcs-intro-hero__copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

body.pcs-site--retro .pcs-intro-hero__visual {
  display: none;
}

@media (min-width: 992px) {
  body.pcs-site--retro .pcs-intro-hero__stage .pcs-intro-hero__visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: var(--pcs-intro-lottie-width);
    max-width: none;
    z-index: 1;
    pointer-events: none;
  }

  body.pcs-site--retro .pcs-intro-hero__stage .pcs-intro-hero__copy {
    padding-right: var(--pcs-intro-copy-pad-r);
  }

  /* NSW-style: full-width headline row, then a body row where Lottie is layered (absolute) so its size does not change text flow */
  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "intro-lead"
      "intro-body";
    row-gap: clamp(6px, 0.9vw, 12px);
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__lead {
    grid-area: intro-lead;
    min-width: 0;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__body {
    grid-area: intro-body;
    position: relative;
    min-width: 0;
    overflow: visible;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__copy {
    position: relative;
    z-index: 2;
    /* Same art strip as .pcs-intro-hero__visual; small gutter only so copy gains width without changing Lottie box size */
    padding-right: calc(min(52%, 760px) + clamp(6px, 0.55vw, 10px));
    box-sizing: border-box;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(52%, 760px);
    max-width: min(52%, 760px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
    min-height: 0;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host {
    height: auto;
    flex: 0 1 auto;
    align-self: flex-start;
    max-height: min(560px, 72vh);
    transform: scale(1.06);
    transform-origin: top center;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual .pcs-lottie-host svg {
    height: auto !important;
    max-height: min(560px, 72vh);
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__lead .pcs-headline {
    margin-bottom: 0;
  }

  body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__lead .pcs-kicker {
    margin-bottom: 8px;
  }
}

body.pcs-site--retro .pcs-intro-hero__lead {
  min-width: 0;
}

body.pcs-site--retro .pcs-intro-hero__body {
  min-width: 0;
}

/* Fill the full height of the right strip (width + height driven); aspect-ratio was capping height */
body.pcs-site--retro .pcs-intro-hero .pcs-lottie-host {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  align-self: stretch;
  max-width: 100%;
  max-height: none;
  aspect-ratio: unset;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
}

body.pcs-site--retro .pcs-intro-hero .pcs-lottie-host svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

body.pcs-site--retro .pcs-intro-hero .pcs-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  font-size: clamp(0.82rem, 0.74rem + 0.35vw, 0.95rem);
  letter-spacing: 0.09em;
  line-height: 1.4;
  border-radius: 999px;
  background: rgba(60, 114, 252, 0.1);
  border: 1px solid rgba(60, 114, 252, 0.2);
  color: #1f3d8a;
}

body.pcs-site--retro .pcs-intro-hero .pcs-headline {
  font-size: clamp(1.78rem, 1.32rem + 1.65vw, 2.65rem);
  line-height: 1.22;
  margin-bottom: 18px;
  max-width: min(100%, 44rem);
  text-wrap: balance;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  body.pcs-site--retro .pcs-intro-hero .pcs-headline,
  body.pcs-hub--retro .pcs-intro-hero .pcs-headline {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-subhead,
  body.pcs-hub--retro .pcs-intro-hero .pcs-subhead {
    font-size: 1.0625rem;
    line-height: 1.65;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-kicker,
  body.pcs-hub--retro .pcs-intro-hero .pcs-kicker {
    font-size: 0.8125rem;
  }
}

/* Must follow .pcs-intro-hero .pcs-headline (same specificity would lose the cascade) */
body.pcs-site--retro .pcs-intro-hero .pcs-intro-hero__lead .pcs-headline {
  max-width: none;
  text-wrap: wrap;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead {
  margin: 0;
  max-width: min(48ch, 100%);
  font-size: clamp(1.12rem, 1.02rem + 0.45vw, 1.34rem);
  line-height: 1.85;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #252018;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead--continue {
  margin-top: 0.9em;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead--offer {
  margin-top: 0.55em;
  max-width: 100%;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead--note {
  margin-top: 0.55em;
  max-width: 100%;
  font-weight: 500;
}

/* Offer CTA is its own paragraph - keep it inline within that line */
body.pcs-site--retro .pcs-intro-hero .pcs-subhead--offer a.pcs-offer-inline,
body.pcs-hub--retro .pcs-intro-hero .pcs-subhead--offer a.pcs-offer-inline {
  display: inline;
  width: auto;
  margin-top: 0;
  line-height: inherit;
  text-wrap: balance;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead--offer a.pcs-offer-inline .pcs-offer-pulse,
body.pcs-hub--retro .pcs-intro-hero .pcs-subhead--offer a.pcs-offer-inline .pcs-offer-pulse {
  display: inline !important;
  white-space: nowrap;
}

/* Fallback when offer is still inside --continue (pre-migration pages) */
body.pcs-site--retro .pcs-intro-hero .pcs-subhead--continue a.pcs-offer-inline,
body.pcs-hub--retro .pcs-intro-hero .pcs-subhead--continue a.pcs-offer-inline {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.55em;
  line-height: 1.55;
  text-align: left;
  text-wrap: balance;
}

body.pcs-site--retro .pcs-intro-hero .pcs-subhead--continue a.pcs-offer-inline .pcs-offer-pulse,
body.pcs-hub--retro .pcs-intro-hero .pcs-subhead--continue a.pcs-offer-inline .pcs-offer-pulse {
  display: inline !important;
  white-space: nowrap;
}

/* Full-width-headline layout: body copy can use the whole text column (default 48ch is narrow here) */
body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__copy .pcs-subhead {
  max-width: 100%;
}

/* Left-align only: justify + long "Book online…10% off" link caused huge word gaps */
body.pcs-site--retro .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__copy {
  text-align: left;
  hyphens: manual;
  -webkit-hyphens: manual;
}

body.pcs-site--retro .pcs-intro-hero .pcs-jumps {
  margin-top: 22px;
  gap: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

body.pcs-site--retro .pcs-intro-hero .pcs-jumps__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

body.pcs-site--retro .pcs-intro-hero .pcs-jumps__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  body.pcs-site--retro .pcs-intro-hero .pcs-jumps {
    align-items: flex-end;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-jumps__secondary {
    margin-left: auto;
    justify-content: flex-end;
  }

  /* Match small red boxes: wider, aligned pair on the right */
  body.pcs-site--retro .pcs-intro-hero .pcs-chip--jump-wide {
    min-width: min(200px, 24vw);
    justify-content: center;
  }
}

@media (max-width: 991px) {
  body.pcs-site--retro .pcs-intro-hero .pcs-jumps__secondary {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}

body.pcs-site--retro .pcs-intro-hero .pcs-chip {
  min-height: 52px;
  padding: 14px 20px;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  border-width: 2px;
  border-color: rgba(90, 80, 65, 0.22);
  background: rgba(255, 254, 251, 0.97);
  color: #1f1b16;
  box-shadow: 0 2px 10px rgba(42, 36, 28, 0.06);
}

body.pcs-site--retro .pcs-intro-hero .pcs-chip i {
  font-size: 1.08em;
}

body.pcs-site--retro .pcs-intro-hero .pcs-jumps__primary .pcs-open-cta-modal {
  font-size: clamp(1.06rem, 1rem + 0.3vw, 1.22rem);
  font-weight: 600;
  color: #14110d;
  min-height: 54px;
  padding-left: 22px;
  padding-right: 22px;
  border-color: rgba(60, 114, 252, 0.38);
}

body.pcs-site--retro .pcs-intro-hero .pcs-jumps__primary .pcs-open-cta-modal i {
  font-size: 1.15em;
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-intro-hero .pcs-chip:focus-visible {
  outline: 3px solid var(--pcs-ct-blue);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  body.pcs-site--retro .pcs-intro-hero .pcs-headline {
    max-width: none;
  }
}

@media (max-width: 575px) {
  body.pcs-site--retro .pcs-intro-hero {
    --pcs-intro-card-radius: 20px;
    padding: 20px 18px 24px;
    border-radius: var(--pcs-intro-card-radius);
  }

  body.pcs-site--retro .pcs-intro-hero::after {
    opacity: 0.5;
    width: min(48%, 200px);
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-jumps {
    flex-direction: column;
    align-items: stretch;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-jumps__primary,
  body.pcs-site--retro .pcs-intro-hero .pcs-jumps__secondary {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-chip {
    justify-content: center;
    width: 100%;
  }

  body.pcs-site--retro .pcs-intro-hero .pcs-chip--jump-wide {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-site--retro .pcs-intro-hero::after {
    opacity: 0.35;
  }
}

/* NSW (and other) location pages: framed service categories block (beach-day retro) */
body.pcs-site--retro #pcs-services.pcs-services {
  position: relative;
  margin-top: 34px;
  padding: 28px 22px 26px;
  border: 1px solid rgba(120, 98, 72, 0.2);
  border-radius: 22px;
  /* Top accent as a background layer so it follows the same rounded clip as the card (thin ::before strips cannot match corner arcs). */
  background-image:
    linear-gradient(90deg, #2f7d7d 0%, #4da89f 45%, #7ec4be 100%),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 4px,
      rgba(120, 100, 80, 0.035) 4px,
      rgba(120, 100, 80, 0.035) 5px
    ),
    linear-gradient(165deg, #fffdf9 0%, #f4ebdf 55%, #ebe2d4 100%);
  background-size: 100% 4px, auto, auto;
  background-position: 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-origin: padding-box, border-box, border-box;
  background-clip: padding-box, border-box, border-box;
  box-shadow:
    0 0 0 1px rgba(120, 98, 72, 0.07),
    0 8px 32px rgba(42, 36, 28, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  overflow: hidden;
}

body.pcs-site--retro #pcs-services.pcs-services::before {
  content: none;
}

/* Location pages: "Why Choose" bento - readable, warm, not flat white-on-cream */
body.pcs-site--retro .pcs-mini.pcs-mini--why {
  margin-top: 12px;
  padding: 26px 20px 30px;
  border-radius: 22px;
  border: 1px solid rgba(90, 80, 65, 0.16);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.92) 0%, rgba(235, 228, 216, 0.55) 100%);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.05),
    0 10px 36px rgba(42, 36, 28, 0.07);
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__grid {
  gap: 18px;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card {
  position: relative;
  isolation: isolate;
  padding: 26px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(90, 80, 65, 0.11);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 248, 241, 0.96) 42%, rgba(244, 236, 224, 0.94) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 5px 18px rgba(42, 36, 28, 0.055),
    0 0 0 1px rgba(60, 114, 252, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 11px;
  height: 3px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35), rgba(130, 165, 255, 0.45));
  opacity: 0.92;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:nth-child(4n + 2)::before {
  background: linear-gradient(90deg, rgba(55, 95, 200, 0.95), rgba(60, 114, 252, 0.28), rgba(100, 180, 220, 0.4));
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:nth-child(4n + 3)::before {
  background: linear-gradient(90deg, rgba(90, 80, 65, 0.55), rgba(60, 114, 252, 0.45), rgba(130, 155, 255, 0.5));
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:nth-child(4n)::before {
  background: linear-gradient(90deg, rgba(60, 114, 252, 0.85), rgba(160, 125, 200, 0.35), rgba(60, 114, 252, 0.25));
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:hover {
  transform: translateY(-5px);
  border-color: rgba(60, 114, 252, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 16px 38px rgba(42, 36, 28, 0.1),
    0 0 0 1px rgba(60, 114, 252, 0.1),
    0 0 32px rgba(60, 114, 252, 0.09);
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:hover::before {
  opacity: 1;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(60, 114, 252, 0.38);
  border-radius: 12px;
  background: linear-gradient(148deg, rgba(60, 114, 252, 0.18) 0%, rgba(60, 114, 252, 0.06) 55%, rgba(255, 255, 255, 0.35) 100%);
  color: var(--pcs-ct-blue);
  margin-bottom: 14px;
  box-shadow:
    0 2px 10px rgba(60, 114, 252, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__icon i {
  color: var(--pcs-ct-blue);
  font-size: 19px;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__card:hover .pcs-mini__icon {
  transform: scale(1.06);
  border-color: rgba(60, 114, 252, 0.48);
  box-shadow:
    0 4px 16px rgba(60, 114, 252, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__list {
  position: relative;
  z-index: 2;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__title {
  position: relative;
  z-index: 2;
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.015em;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--pcs-ct-walnut-deep);
  margin-bottom: 14px;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__list li {
  color: var(--pcs-ct-walnut);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 12px;
  padding-left: 28px;
  font-weight: 500;
}

body.pcs-site--retro .pcs-mini--why .pcs-mini__list li::before {
  color: var(--pcs-ct-blue);
  font-size: 15px;
  top: 0.1em;
}

body.pcs-site--retro h2#pcs-benefits-jump,
body.pcs-site--retro .pcs-media h2#pcs-benefits-jump,
body.pcs-site--retro .pcs-media h2.pt-20 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-site--retro h2#pcs-benefits-jump::after,
body.pcs-site--retro .pcs-media h2#pcs-benefits-jump::after,
body.pcs-site--retro .pcs-media h2.pt-20::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.22));
}

body.pcs-site--retro .pcs-media-caption {
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

/* Story block: solid frame instead of dashed lavender */
body.pcs-site--retro .pcs-media-copy {
  margin-top: 20px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(90, 80, 65, 0.18);
  border-radius: 18px;
  background: linear-gradient(165deg, #fffefb 0%, #f3efe8 100%);
  box-shadow:
    0 4px 22px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-site--retro .pcs-media-copy p {
  color: var(--pcs-ct-muted);
  font-weight: 500;
  line-height: 1.75;
  font-size: 16px;
}

body.pcs-site--retro .pcs-media-copy a {
  color: var(--pcs-ct-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.pcs-site--retro .pcs-media-copy a:hover {
  color: var(--pcs-ct-walnut-deep);
}

/* NSW intro: skimmable sections instead of long paragraphs */
body.pcs-site--retro .pcs-media-copy--intro {
  padding: 20px 22px 22px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__head {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--pcs-ct-walnut-deep);
  margin: 0 0 12px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__lead {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__sub {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pcs-ct-walnut-deep);
  margin: 22px 0 10px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__lead + .pcs-intro__sub {
  margin-top: 18px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__bullets {
  margin: 0 0 4px;
  padding-left: 1.35rem;
  list-style: disc;
  list-style-position: outside;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__bullets li {
  list-style: disc;
  list-style-position: outside;
  color: var(--pcs-ct-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 8px;
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__bullets li::marker {
  color: var(--pcs-ct-blue);
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__compact {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__compact strong {
  color: var(--pcs-ct-walnut-deep);
  font-weight: 700;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps-lead,
body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps-intro {
  margin-bottom: 12px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps {
  margin: 0 0 14px;
  padding-left: 1.5rem;
  list-style: decimal;
  list-style-position: outside;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps li {
  list-style: decimal;
  list-style-position: outside;
  color: var(--pcs-ct-muted);
  font-size: 16px;
  line-height: 1.58;
  margin-bottom: 12px;
  font-weight: 500;
  padding-left: 0.35rem;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps li::marker {
  color: var(--pcs-ct-blue);
  font-weight: 700;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__steps-note {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__linkgrid {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 8px 16px;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__linkgrid a {
  font-size: 15px;
  font-weight: 600;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__foot {
  padding-top: 14px;
  border-top: 1px solid rgba(90, 80, 65, 0.12);
  font-size: 15px;
  line-height: 1.55;
  color: var(--pcs-ct-muted);
  font-weight: 500;
  flex-shrink: 0;
}

body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__after li {
  margin-bottom: 7px;
}

/* Hero row: equal column height; intro + social cards share bottom edge on large screens */
@media (min-width: 992px) {
  body.pcs-site--retro .pcs-hero-row {
    align-items: stretch;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-7 {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-7 > .pcs-media {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  /* Above intro: natural height only; intro absorbs extra height when the right column is taller */
  body.pcs-site--retro .pcs-hero-row > .col-lg-7 > .pcs-media > *:not(.pcs-media-copy--intro) {
    flex-shrink: 0;
  }

  body.pcs-site--retro .pcs-hero-row .pcs-media-copy--intro {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.pcs-site--retro .pcs-hero-row .pcs-media-copy--intro .pcs-intro__foot {
    margin-top: auto;
  }

  /* Right column fills row height; social card grows so its bottom matches left column */
  body.pcs-site--retro .pcs-hero-row > .col-lg-5 {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-5 .pcs-cause-right {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    gap: 14px;
  }

  /* Last widget div in the sidebar stretches so column bottoms stay aligned */
  body.pcs-site--retro .pcs-hero-row > .col-lg-5 .pcs-cause-right > .pcs-widget-card {
    flex-shrink: 0;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-5 .pcs-cause-right > div.pcs-widget-card:last-of-type {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-5 .pcs-cause-right > div.pcs-widget-card:last-of-type .pcs-widget-social__title {
    flex-shrink: 0;
  }

  body.pcs-site--retro .pcs-hero-row > .col-lg-5 .pcs-cause-right > div.pcs-widget-card:last-of-type .pcs-widget-social__embed {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  body.pcs-site--retro .pcs-media-copy--intro .pcs-intro__foot {
    margin-top: 14px;
  }
}

/*
 * CTA strip under service cards (and other .pcs-mini-cta on location templates).
 * body.pcs-site--retro is only used on locations/**/*.html in this project.
 */
body.pcs-site--retro .pcs-mini-cta {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(200, 185, 160, 0.45);
  background: #f4eee0;
  box-shadow:
    0 0 0 5px #eae1d1,
    0 6px 22px rgba(42, 36, 28, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.pcs-site--retro .pcs-mini-cta strong {
  color: #2a2622;
  font-weight: 700;
}

body.pcs-site--retro .pcs-mini-cta span {
  color: rgba(42, 38, 34, 0.78);
  font-weight: 500;
}

body.pcs-site--retro .pcs-mini-cta .btn-one {
  border-radius: 999px !important;
  padding: 12px 22px !important;
  font-weight: 700 !important;
  border: none !important;
  background: linear-gradient(90deg, #3b71f7 0%, #254ab4 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37, 74, 180, 0.38) !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.pcs-site--retro .pcs-mini-cta .btn-one:hover,
body.pcs-site--retro .pcs-mini-cta .btn-one:focus-visible {
  background: linear-gradient(90deg, #4a7fff 0%, #2f56c8 100%) !important;
  color: #fff !important;
  filter: brightness(1.02);
}

body.pcs-site--retro .pcs-mini-cta .btn-one i {
  color: #fff !important;
}

body.pcs-site--retro .pcs-mini-cta .btn-one.btn-two {
  background: #fffdf9 !important;
  color: #254ab4 !important;
  border: 2px solid rgba(37, 74, 180, 0.35) !important;
  box-shadow: 0 2px 10px rgba(42, 36, 28, 0.06) !important;
}

body.pcs-site--retro .pcs-mini-cta .btn-one.btn-two:hover,
body.pcs-site--retro .pcs-mini-cta .btn-one.btn-two:focus-visible {
  background: #fff !important;
  color: #1f3d96 !important;
  filter: none;
}

body.pcs-site--retro .pcs-mini-cta .btn-one.btn-two i {
  color: inherit !important;
}

/* Service category cards inside framed #pcs-services (location-only id; beach-day palette) */
body.pcs-site--retro #pcs-services .pcs-service-card {
  background: linear-gradient(165deg, #ffffff 0%, #fcfaf6 48%, #f5efe6 100%);
  border-color: rgba(120, 98, 72, 0.16);
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body.pcs-site--retro #pcs-services .pcs-service-card:hover {
  border-color: rgba(47, 125, 125, 0.38);
  box-shadow:
    0 12px 32px rgba(42, 36, 28, 0.085),
    0 0 0 1px rgba(47, 125, 125, 0.1);
}

body.pcs-site--retro #pcs-services .pcs-service-card--tall h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  color: #2a2622;
}

body.pcs-site--retro #pcs-services .pcs-service-list li {
  color: rgba(42, 38, 34, 0.78);
  line-height: 1.65;
  margin-bottom: 11px;
}

body.pcs-site--retro #pcs-services .pcs-service-list li::before {
  color: #3d9490;
}

body.pcs-site--retro #pcs-services .pcs-service-icon {
  background: rgba(47, 125, 125, 0.12);
  border-color: rgba(47, 125, 125, 0.28);
}

body.pcs-site--retro #pcs-services .pcs-service-icon i {
  color: #2a6868;
}

/* NSW service grid: split card (details link + contact button), shorter lists, clearer type */
body.pcs-site--retro #pcs-services .pcs-service-card--split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split::before {
  content: "";
  flex-shrink: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2f7d7d 0%, #6bbfb8 100%);
}

body.pcs-site--retro #pcs-services .pcs-service-card--split:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, #c4866b 0%, #e8b896 100%);
}

body.pcs-site--retro #pcs-services .pcs-service-card--split:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(120, 98, 72, 0.55) 0%, #3d9490 100%);
}

body.pcs-site--retro #pcs-services .pcs-service-card--split:hover {
  transform: translateY(-5px);
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.22s ease;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__main:hover {
  background: rgba(47, 125, 125, 0.07);
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__main:focus-visible {
  outline: 2px solid #2f7d7d;
  outline-offset: -2px;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split h4 {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.28;
  letter-spacing: 0.012em;
  color: #2a2622;
  margin: 0 0 12px;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-list--short li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2a6868;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__detail i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

body.pcs-site--retro #pcs-services .pcs-service-card--split .pcs-service-card__main:hover .pcs-service-card__detail i {
  transform: translateX(3px);
}

body.pcs-site--retro #pcs-services .pcs-service-card__cta {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 12px 16px;
  border-radius: 0;
  border-top: 1px solid rgba(120, 98, 72, 0.14);
  font-size: 0.9rem;
  text-transform: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: linear-gradient(180deg, #3d9490 0%, #2f7d7d 52%, #286b6b 100%) !important;
  color: #fff !important;
  border-left: none;
  border-right: none;
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, filter 0.2s ease;
}

body.pcs-site--retro #pcs-services .pcs-service-card__cta:hover,
body.pcs-site--retro #pcs-services .pcs-service-card__cta:focus-visible {
  background: linear-gradient(180deg, #469e9a 0%, #358f8a 52%, #2f7d7d 100%) !important;
  color: #fff !important;
  filter: brightness(1.02);
}

body.pcs-site--retro #pcs-services .pcs-service-card__cta i {
  color: #fff !important;
}

body.pcs-site--retro #pcs-services .pcs-section-title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  max-width: min(100%, 40rem);
  color: #2a2622;
}

body.pcs-site--retro #pcs-services .pcs-section-subtitle {
  font-size: 17px;
  line-height: 1.55;
  max-width: 52rem;
  color: rgba(42, 38, 34, 0.72);
}

body.pcs-site--retro .pcs-media-copy--coverage {
  padding: 20px 22px 22px;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__head {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--pcs-ct-walnut-deep);
  margin: 0 0 10px;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__sub {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pcs-ct-walnut-deep);
  margin: 0 0 10px;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__links {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px 14px;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__links a {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__foot {
  padding-top: 12px;
  border-top: 1px solid rgba(90, 80, 65, 0.12);
  font-size: 15px;
  line-height: 1.55;
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-site--retro .pcs-media-copy--coverage .pcs-coverage-story__foot strong {
  color: var(--pcs-ct-walnut-deep);
}

/* FAQ / coverage: warm band instead of cold theme grey */
body.pcs-site--retro .faq-area.sub-bg.pcs-faq,
body.pcs-site--retro .pcs-nsw-coverage.faq-area.sub-bg {
  background-color: rgba(232, 226, 214, 0.65) !important;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.028) 2px,
    rgba(90, 80, 60, 0.028) 3px
  ) !important;
}

body.pcs-site--retro .faq-area.sub-bg .pcs-region-links__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pcs-ct-walnut-deep);
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-site--retro .pcs-mini--why .pcs-mini__card:hover,
  body.pcs-site--retro #pcs-services .pcs-service-card:hover,
  body.pcs-site--retro #pcs-services .pcs-service-card--split:hover {
    transform: none;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__card:hover .pcs-mini__icon {
    transform: none;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__card,
  body.pcs-site--retro .pcs-mini--why .pcs-mini__icon {
    transition: none;
  }
}

@media (min-width: 768px) {
  body.pcs-site--retro .pcs-mini--why .pcs-mini__grid {
    gap: 20px;
  }
}

/* Desktop only (992px+): icon + title only; lists stay in DOM for SR/SEO; dense grid. Viewports below 992px unchanged. */
@media (min-width: 992px) {
  body.pcs-site--retro .pcs-mini--why .pcs-mini__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
    gap: 10px 12px;
    align-items: start;
    width: 100%;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__card {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin-inline: 0;
    padding: 20px 10px 11px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__card::before {
    left: 8px;
    right: 8px;
    top: 8px;
    height: 2.5px;
    border-radius: 2px;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-bottom: 7px;
    border-radius: 10px;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__icon i {
    font-size: 15px;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__title {
    flex: 0 0 auto;
    margin-bottom: 0;
    font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
    font-size: 1.02rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.012em;
  }

  body.pcs-site--retro .pcs-mini--why .pcs-mini__list {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

/* =========================================
   Contact page - About-style retro lab
   Scope: body.pcs-contact-page--retro
========================================= */

body.pcs-contact-page--retro {
  --pcs-ct-cream: #e8e2d6;
  --pcs-ct-cream-light: #f5f1e8;
  --pcs-ct-walnut: #3d3428;
  --pcs-ct-walnut-deep: #2c241c;
  --pcs-ct-muted: #5c5448;
  --pcs-ct-blue: #3c72fc;
  background-color: var(--pcs-ct-cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-contact-page--retro .pcs-contact-main--retro {
  font-family: "Outfit", system-ui, sans-serif;
}

body.pcs-contact-page--retro .banner__inner-page {
  position: relative;
}

body.pcs-contact-page--retro .banner__inner-page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(232, 226, 214, 0.55));
}

body.pcs-contact-page--retro .banner__inner-page h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.pcs-contact-page--retro .pc-contactlab {
  padding: 56px 0 80px;
}

body.pcs-contact-page--retro .pc-contactlab__grid {
  gap: 22px;
}

body.pcs-contact-page--retro .pc-contactlab__bg {
  background:
    radial-gradient(720px 480px at 15% 12%, rgba(60, 114, 252, 0.07), transparent 58%),
    radial-gradient(640px 420px at 88% 88%, rgba(61, 52, 40, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(245, 241, 232, 0.55), rgba(232, 226, 214, 0.35));
  filter: saturate(1) brightness(1.02);
}

body.pcs-contact-page--retro .pc-contactlab__panel {
  border: 1px solid rgba(90, 80, 65, 0.22);
  background: linear-gradient(165deg, #fffefb 0%, #f3efe8 100%);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.08),
    0 8px 32px rgba(42, 36, 28, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-contact-page--retro .pc-contactlab__panel--form {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(165deg, #fffefb 0%, #f3efe8 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

body.pcs-contact-page--retro .pc-contactlab__panel--info {
  position: relative;
  overflow: hidden;
  border-color: rgba(90, 80, 65, 0.2);
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(175deg, #faf8f4 0%, #ebe4d8 55%, #e3dcd2 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

body.pcs-contact-page--retro .pc-contactlab__title,
body.pcs-contact-page--retro .pc-contactlab__infotitle {
  font-family: "Fraunces", Georgia, "Times New Roman", serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pcs-ct-walnut-deep);
}

body.pcs-contact-page--retro .pc-contactlab__lede,
body.pcs-contact-page--retro .pc-contactlab__infotext {
  font-weight: 500;
  color: var(--pcs-ct-muted);
  line-height: 1.75;
}

body.pcs-contact-page--retro .pc-contactlab__switcher {
  margin-top: 24px;
  padding: 18px 14px 22px;
  border-radius: 22px;
  border: 1px solid rgba(90, 80, 65, 0.14);
  box-shadow:
    inset 0 2px 12px rgba(42, 36, 28, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45),
    0 2px 10px rgba(42, 36, 28, 0.04);
  position: relative;
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(178deg, #faf7f1 0%, #ebe4d8 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

body.pcs-contact-page--retro .pc-contactlab__formwrap {
  padding-top: 14px;
}

body.pcs-contact-page--retro .pc-elfsight-shell {
  border: 1px solid rgba(90, 80, 65, 0.16);
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(180deg, rgba(255, 254, 251, 0.97), #faf8f4);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 20px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

body.pcs-contact-page--retro .pc-labcard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 80, 65, 0.16);
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.3)),
    linear-gradient(165deg, #fffefb 0%, #f6f1ea 100%);
  background-size: 100% 3px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 18px rgba(42, 36, 28, 0.07);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.pcs-contact-page--retro .pc-labcard:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 114, 252, 0.26);
    box-shadow:
      0 12px 30px rgba(42, 36, 28, 0.1),
      0 0 0 1px rgba(60, 114, 252, 0.08);
  }

  body.pcs-contact-page--retro .pc-labcard:has(a.pc-labcard__value):hover {
    transform: translateY(-4px);
  }
}

body.pcs-contact-page--retro .pc-labcard__label {
  font-weight: 700;
  color: var(--pcs-ct-walnut);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

body.pcs-contact-page--retro .pc-labcard__value {
  color: var(--pcs-ct-walnut-deep);
  font-weight: 600;
}

body.pcs-contact-page--retro .pc-labcard__hint {
  color: var(--pcs-ct-muted);
  font-weight: 500;
}

body.pcs-contact-page--retro .pc-labcard--bento-feature {
  border-color: rgba(60, 114, 252, 0.22);
  box-shadow:
    0 6px 24px rgba(42, 36, 28, 0.09),
    0 0 0 1px rgba(60, 114, 252, 0.08);
}

/* Google reviews embed: same card treatment as NSW hub widgets. */
body.pcs-contact-page--retro .pc-contactlab__reviews {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(90, 80, 65, 0.16);
  padding: 10px;
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(165deg, #fffefb 0%, #f7f3ec 100%);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-contact-page--retro .pc-hudstrip {
  position: relative;
  overflow: hidden;
  border-color: rgba(90, 80, 65, 0.16);
  background-color: transparent;
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(180deg, rgba(255, 254, 251, 0.97), #faf8f4);
  background-size: 100% 4px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 18px rgba(42, 36, 28, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-contact-page--retro .pc-contactlab__social {
  gap: 10px;
}

body.pcs-contact-page--retro .pc-socialbtn {
  border-radius: 12px;
  border: 1px solid rgba(90, 80, 65, 0.14);
  padding: 8px 14px;
  font-weight: 600;
  background-color: rgba(255, 254, 251, 0.95);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.3)),
    linear-gradient(180deg, rgba(255, 254, 251, 0.98), rgba(255, 254, 251, 0.92));
  background-size: 100% 3px, auto;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.pcs-contact-page--retro .pc-socialbtn:hover {
  border-color: rgba(60, 114, 252, 0.28);
  background-color: rgba(60, 114, 252, 0.08);
  background-image:
    linear-gradient(90deg, var(--pcs-ct-blue), rgba(60, 114, 252, 0.35)),
    linear-gradient(180deg, rgba(60, 114, 252, 0.1), rgba(60, 114, 252, 0.06));
}

body.pcs-contact-page--retro .quote-area.pcs-ab-quote-retro .quote__wrp.gradient-bg {
  position: relative;
  overflow: hidden;
  border-radius: var(--pcs-quote-card-radius);
  background-color: transparent !important;
  background-image:
    linear-gradient(90deg, #7eb0ff, var(--pcs-ct-blue), rgba(255, 255, 255, 0.35)),
    linear-gradient(135deg, #3d3428 0%, #2c241c 55%, #243a8c 120%) !important;
  background-size: 100% 4px, auto !important;
  background-position: 0 0, 0 0 !important;
  background-repeat: no-repeat, no-repeat !important;
  background-origin: padding-box, border-box !important;
  background-clip: padding-box, border-box !important;
  box-shadow: 0 6px 20px rgba(28, 22, 16, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.pcs-contact-page--retro .quote-area.pcs-ab-quote-retro .btn-one {
  border-radius: 14px;
  box-shadow: 0 3px 0 rgba(20, 30, 70, 0.4), 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-contact-page--retro .pc-labcard,
  body.pcs-contact-page--retro .pc-socialbtn {
    transition: none;
  }

  body.pcs-contact-page--retro .pc-labcard:hover,
  body.pcs-contact-page--retro .pc-labcard:has(a.pc-labcard__value):hover {
    transform: none;
  }
}

/* =========================================
   Technology Services Hub - conversion layout
   Scope: .pcs-page-hub
========================================= */

.pcs-page-hub .pcs-hub-banner__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 400px;
  margin: 28px auto 0;
}

.pcs-page-hub .pcs-hub-banner__ctas .btn-one {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pcs-page-hub .pcs-hub-banner__btn-secondary.btn-one {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff !important;
}

.pcs-page-hub .pcs-hub-banner__btn-secondary.btn-one::before,
.pcs-page-hub .pcs-hub-banner__btn-secondary.btn-one::after {
  display: none !important;
}

.pcs-page-hub .pcs-hub-banner__btn-secondary.btn-one:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}

.pcs-page-hub .pcs-hub-banner__link-quote {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 2px;
}

.pcs-page-hub .pcs-hub-banner__link-quote:hover {
  color: #fff;
}

.pcs-hub-lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--paragraph);
  margin-bottom: 0;
}

.pcs-hub-pain-card {
  height: 100%;
  background: #f8f9fd;
  border: 1px solid rgba(18, 34, 65, 0.08);
  border-radius: 16px;
  padding: 22px 22px 18px;
}

.pcs-hub-pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcs-hub-pain-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
  font-weight: 500;
}

.pcs-hub-pain-list li:last-child {
  margin-bottom: 0;
}

.pcs-hub-pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.pcs-hub-transform {
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(18, 34, 65, 0.1);
  height: 100%;
}

.pcs-hub-transform--before {
  background: #fff;
}

.pcs-hub-transform--after {
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.06), rgba(107, 108, 224, 0.08));
  border-color: rgba(107, 108, 224, 0.22);
}

.pcs-hub-transform__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--heading-color);
}

.pcs-hub-transform__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcs-hub-transform__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  line-height: 1.65;
  font-size: 15px;
  color: var(--paragraph);
}

.pcs-hub-transform__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #22c55e;
}

.pcs-hub-what-you-get.pcs-outline-card {
  margin-top: 0;
  margin-bottom: 0;
}

.pcs-hub-benefit-list li {
  font-size: 16px;
}

.pcs-hub-process__inner {
  position: relative;
  padding: 0;
  margin: 0;
}

.pcs-hub-process.process-area .process__item {
  margin-bottom: 0 !important;
}

.pcs-hub-process.process-area .process-arry {
  display: none !important;
}

.pcs-hub-audience {
  border: 1px solid rgba(18, 34, 65, 0.1);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  background: #fff;
}

.pcs-hub-audience--muted {
  background: #f8f9fd;
}

.pcs-hub-audience__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.pcs-hub-audience__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pcs-hub-audience__list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.65;
  font-size: 15px;
  color: var(--paragraph);
}

.pcs-hub-audience__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--primary-color);
}

.pcs-hub-audience__note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paragraph);
  font-style: italic;
}

.pcs-hub-trust__item {
  padding: 8px 4px 0;
}

.pcs-hub-trust__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid #6b6ce0;
  border-radius: 8px;
  color: #6b6ce0;
  font-size: 20px;
  margin-bottom: 14px;
}

.pcs-hub-trust__heading {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.pcs-hub-trust__item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--paragraph);
}

.pcs-hub-faq-intro {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--paragraph);
  margin-top: 12px;
}

.pcs-hub-quote-lead {
  opacity: 0.92;
  max-width: 38rem;
  line-height: 1.65;
  font-size: 16px;
}

.pcs-hub-final-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.pcs-hub-final-ctas__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pcs-hub-final-ctas__quote {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
}

.pcs-hub-final-ctas__quote:hover {
  color: #fff;
}

.pcs-nsw-coverage .pcs-hub-mini-cta__actions {
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 576px) {
  .pcs-nsw-coverage .pcs-hub-mini-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.pcs-nsw-coverage .pcs-hub-mini-cta__actions .btn-one,
.pcs-nsw-coverage .pcs-hub-mini-cta__actions .btn-one.btn-two {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
  min-width: 160px;
}

@media (max-width: 575.98px) {
  .pcs-nsw-coverage .pcs-hub-mini-cta__actions .btn-one,
  .pcs-nsw-coverage .pcs-hub-mini-cta__actions .btn-one.btn-two {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================
   Technology Services Hub - retro cream / walnut (body.pcs-hub--retro)
========================================= */

body.pcs-hub--retro {
  --pcs-hub-retro-blue: #3c72fc;
  --pcs-hub-retro-ink: #2a241c;
  --pcs-hub-retro-muted: #5c5448;
  --pcs-hub-cream: #f5f1e8;
  --pcs-hub-cream-mid: #e8e2d6;
  --pcs-hub-walnut-deep: #2c241c;
}

body.pcs-hub--retro .pcs-hub-main {
  background-color: var(--pcs-hub-cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
}

/* Hub: request-callback + quote use the same cream + pinstripe as .pcs-hub-main (service-inner-area body copy / cards block) */
body.pcs-hub--retro .pcs-hub-main > #request-callback,
body.pcs-hub--retro .pcs-hub-main > .quote-area.pcs-ab-quote-retro {
  background-color: var(--pcs-hub-cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(90, 80, 60, 0.03) 2px,
    rgba(90, 80, 60, 0.03) 3px
  );
}

body.pcs-hub--retro #request-callback {
  scroll-margin-top: 96px;
}

/* Scope About-style hero on hub without painting the retro cream band behind it */
body.pcs-hub--retro .pcs-hub-about-hero-scope.pcs-ab-page--retro {
  background: transparent;
  background-image: none;
}

body.pcs-hub--retro .banner__inner-page::before {
  background: linear-gradient(125deg, #2c241c 0%, #3d3428 42%, #243a8c 115%) !important;
  opacity: 0.9 !important;
}

body.pcs-hub--retro .banner__inner-page h1 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
}

body.pcs-hub--retro .banner__inner-page .pcs-banner-copy {
  font-family: "Outfit", system-ui, sans-serif;
  text-transform: none;
  color: rgba(255, 255, 255, 0.94);
}

body.pcs-hub--retro .banner__inner-page .breadcrumb-list,
body.pcs-hub--retro .banner__inner-page .breadcrumb-list a,
body.pcs-hub--retro .banner__inner-page .breadcrumb-list span {
  text-transform: none;
}

body.pcs-hub--retro .service-inner-area .section-header h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pcs-hub-walnut-deep);
}

body.pcs-hub--retro .pcs-hub-lead {
  color: var(--pcs-hub-retro-muted);
  font-family: "Outfit", system-ui, sans-serif;
}

/* Framed story blocks: matches hub markup `pcs-hub-story pb-50` (pain, before/after, benefits) */
body.pcs-hub--retro .service-inner-area .pcs-hub-story.pb-50 {
  /* Full shorthand so inner .row negative margins do not fight one side; generous inset on all edges */
  padding: 30px 26px 46px;
  border-radius: 24px;
  border: 1px solid rgba(90, 80, 65, 0.28);
  background: linear-gradient(165deg, rgba(255, 254, 251, 0.92) 0%, rgba(245, 238, 228, 0.55) 100%);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.1),
    0 6px 28px rgba(42, 36, 28, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Bootstrap .row uses negative horizontal margin; inside a padded card it pulls columns flush to the frame */
body.pcs-hub--retro .service-inner-area .pcs-hub-story.pb-50 > .row {
  margin-left: 0;
  margin-right: 0;
}

/* Vertical gap between stacked framed stories so borders do not touch */
body.pcs-hub--retro .service-inner-area .container > .pcs-hub-story.pb-50 + .pcs-hub-story.pb-50 {
  margin-top: 28px;
}

@media (min-width: 768px) {
  body.pcs-hub--retro .service-inner-area .pcs-hub-story.pb-50 {
    padding: 34px 32px 52px;
  }

  body.pcs-hub--retro .service-inner-area .container > .pcs-hub-story.pb-50 + .pcs-hub-story.pb-50 {
    margin-top: 40px;
  }
}

body.pcs-hub--retro .pcs-hub-pain-list li {
  color: var(--pcs-hub-retro-ink);
}

body.pcs-hub--retro .pcs-hub-pain-list li::before {
  background: linear-gradient(145deg, var(--pcs-hub-retro-blue), #5b8cff);
  box-shadow: 0 2px 4px rgba(60, 114, 252, 0.25);
}

body.pcs-hub--retro .pcs-hub-transform--before {
  background: linear-gradient(180deg, #faf8f4, #f3efe8);
  border: 1px solid rgba(90, 80, 65, 0.32);
  border-top: 4px solid #c2410c;
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.14),
    0 4px 18px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.pcs-hub--retro .pcs-hub-transform--after {
  background: linear-gradient(155deg, rgba(60, 114, 252, 0.1), rgba(60, 114, 252, 0.04));
  border: 1px solid rgba(90, 80, 65, 0.32);
  border-top: 4px solid #16a34a;
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.14),
    0 4px 18px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

body.pcs-hub--retro .pcs-hub-transform__title {
  color: var(--pcs-hub-walnut-deep);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

body.pcs-hub--retro .pcs-hub-transform__list li {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .service-inner-area .pcs-outline-card {
  background: linear-gradient(178deg, #fffefb 0%, #f3efe8 100%);
  border: 1px solid rgba(90, 80, 65, 0.12);
  box-shadow: 0 4px 18px rgba(42, 36, 28, 0.05);
}

body.pcs-hub--retro .pcs-services-note__body,
body.pcs-hub--retro .pcs-services-note p {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .service-two__content {
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 55%);
}

body.pcs-hub--retro .service-two__content h4,
body.pcs-hub--retro .service-two__content h4 a {
  color: var(--pcs-hub-walnut-deep);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

body.pcs-hub--retro .service-two__content p {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .pcs-feature-label {
  color: #3d3428;
}

body.pcs-hub--retro .pcs-feature-list li {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .pcs-hub-process.process-area.sub-bg {
  background: linear-gradient(180deg, var(--pcs-hub-cream-mid) 0%, #ddd5c8 100%) !important;
}

body.pcs-hub--retro .pcs-hub-process .pcs-hub-process__inner {
  padding: 30px 22px 36px;
  border-radius: 24px;
  border: 1px solid rgba(90, 80, 65, 0.28);
  background: linear-gradient(165deg, rgba(255, 254, 251, 0.92) 0%, rgba(245, 238, 228, 0.5) 100%);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.1),
    0 6px 28px rgba(42, 36, 28, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

body.pcs-hub--retro .pcs-hub-process .pcs-hub-process__inner > .row {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  body.pcs-hub--retro .pcs-hub-process .pcs-hub-process__inner {
    padding: 34px 28px 42px;
  }
}

body.pcs-hub--retro .pcs-hub-process .process__content p {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .pcs-service-helper__inner {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(118deg, #3d3428 0%, #2c241c 48%, #24324d 160%);
  box-shadow:
    0 10px 32px rgba(28, 22, 16, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

body.pcs-hub--retro .pcs-service-helper__kicker {
  color: rgba(232, 225, 210, 0.78);
}

body.pcs-hub--retro .pcs-service-helper__content h3 {
  color: #fffefb;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

body.pcs-hub--retro .pcs-service-helper__content p {
  color: rgba(245, 240, 232, 0.9);
}

body.pcs-hub--retro .pcs-service-helper__actions .btn-one.btn-two {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #fff !important;
}

body.pcs-hub--retro .pcs-service-helper__actions .btn-one.btn-two::before,
body.pcs-hub--retro .pcs-service-helper__actions .btn-one.btn-two::after {
  display: none !important;
}

body.pcs-hub--retro .pcs-service-helper__link {
  color: #b8ceff;
}

body.pcs-hub--retro .pcs-service-helper__link:hover {
  color: #e8eeff;
}

body.pcs-hub--retro .pcs-hub-audience {
  background: linear-gradient(165deg, #fffefb 0%, #f2ebe3 100%);
  border-color: rgba(90, 80, 65, 0.12);
  box-shadow: 0 3px 12px rgba(42, 36, 28, 0.05);
}

body.pcs-hub--retro .pcs-hub-audience--muted {
  background: linear-gradient(180deg, #ebe4d8, #e0d8cc);
}

body.pcs-hub--retro .pcs-hub-audience__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--pcs-hub-walnut-deep);
}

body.pcs-hub--retro .pcs-hub-audience__list li {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .pcs-hub-audience--muted .pcs-hub-audience__list li::before {
  content: "\2013";
  color: #b45309;
  font-weight: 800;
  font-size: 14px;
  top: 0.08em;
}

body.pcs-hub--retro .pcs-hub-trust.pcs-outline-card {
  background: linear-gradient(178deg, #faf8f4 0%, #ebe4d8 100%);
}

body.pcs-hub--retro .pcs-hub-trust__icon {
  border-color: rgba(60, 114, 252, 0.35);
  color: var(--pcs-hub-retro-blue);
  border-radius: 12px;
  background: rgba(60, 114, 252, 0.08);
}

body.pcs-hub--retro .pcs-hub-trust__heading {
  color: var(--pcs-hub-walnut-deep);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

body.pcs-hub--retro .pcs-hub-trust__item p {
  color: var(--pcs-hub-retro-muted);
}

body.pcs-hub--retro .faq-area.sub-bg.pcs-faq {
  background: linear-gradient(180deg, #e8e2d6 0%, var(--pcs-hub-cream) 72%) !important;
}

/* Technology Services Hub only: NSW coverage band (locations reference surface; overrides hub FAQ gradient) */
body.pcs-hub--retro .faq-area.sub-bg.pcs-faq.pcs-nsw-coverage {
  background: #f3f4f8 !important;
  color: #0f1226 !important;
}

body.pcs-hub--retro .pcs-nsw-coverage .pcs-hub-coverage-quote-link {
  color: var(--pcs-hub-retro-blue) !important;
}

body.pcs-hub--retro .pcs-region-links__title {
  color: var(--pcs-hub-walnut-deep);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

body.pcs-hub--retro .pcs-nsw-coverage .pcs-mini-cta {
  background: linear-gradient(165deg, #fffefb, #f2ebe3) !important;
  border: 1px solid rgba(90, 80, 65, 0.12) !important;
  box-shadow: 0 6px 18px rgba(42, 36, 28, 0.06);
}

body.pcs-hub--retro .pcs-nsw-coverage .pcs-mini-cta strong {
  color: var(--pcs-hub-walnut-deep) !important;
}

body.pcs-hub--retro .pcs-nsw-coverage .pcs-mini-cta span {
  color: var(--pcs-hub-retro-muted) !important;
}

body.pcs-hub--retro .faq-area.pcs-faq .section-header {
  position: relative;
  z-index: 2;
}

body.pcs-hub--retro .faq-area.pcs-faq .faq__shape {
  opacity: 0.32;
  max-width: min(380px, 38vw);
  overflow: hidden;
  pointer-events: none;
}

body.pcs-hub--retro .faq-area.pcs-faq .faq__shape img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.pcs-hub--retro .pcs-hub-faq-intro {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding: 14px 18px;
  max-width: 100%;
  font-size: clamp(1.05rem, 1rem + 0.22vw, 1.2rem);
  line-height: 1.75;
  font-weight: 500;
  color: var(--pcs-hub-walnut-deep);
  background: rgba(245, 241, 232, 0.97);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 0 0 1px rgba(90, 80, 65, 0.08);
}

body.pcs-hub--retro .service-inner-area .faq-area .section-header h2 {
  color: var(--pcs-hub-walnut-deep);
}

/* --- Hub engagement: hero glass, pain headers, before/after markers, benefit bento, chips --- */

body.pcs-hub--retro .pcs-hub-hero-shell {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 24px 32px;
  border-radius: 24px;
  background: rgba(12, 10, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 575.98px) {
  body.pcs-hub--retro .pcs-hub-hero-shell {
    padding: 22px 18px 26px;
    border-radius: 20px;
  }
}

body.pcs-hub--retro .pcs-hub-pain-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: linear-gradient(165deg, #fffefb 0%, #f2ebe3 100%);
  border: 1px solid rgba(90, 80, 65, 0.32);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.12),
    0 6px 22px rgba(42, 36, 28, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.pcs-hub--retro .pcs-hub-pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(60, 114, 252, 0.45);
  box-shadow:
    0 0 0 1px rgba(60, 114, 252, 0.22),
    0 12px 32px rgba(42, 36, 28, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body.pcs-hub--retro .pcs-hub-pain-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(105deg, rgba(60, 114, 252, 0.12), rgba(60, 114, 252, 0.03));
  border-bottom: 1px solid rgba(90, 80, 65, 0.1);
}

body.pcs-hub--retro .pcs-hub-pain-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  color: #2f5ae0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(60, 114, 252, 0.2);
  box-shadow: 0 2px 8px rgba(60, 114, 252, 0.12);
}

body.pcs-hub--retro .pcs-hub-pain-card__head {
  text-align: left;
  min-width: 0;
}

body.pcs-hub--retro .pcs-hub-pain-card__eyebrow {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pcs-hub-retro-blue);
  margin-bottom: 4px;
}

body.pcs-hub--retro .pcs-hub-pain-card__title {
  display: block;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pcs-hub-walnut-deep);
  line-height: 1.25;
}

body.pcs-hub--retro .pcs-hub-pain-card .pcs-hub-pain-list {
  padding: 18px 18px 20px;
}

body.pcs-hub--retro .pcs-hub-pain-list {
  counter-reset: pcs-pain;
}

body.pcs-hub--retro .pcs-hub-pain-list li {
  counter-increment: pcs-pain;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.62;
}

body.pcs-hub--retro .pcs-hub-pain-list li::before {
  content: counter(pcs-pain, decimal-leading-zero);
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.18), rgba(60, 114, 252, 0.08));
  border: 1px solid rgba(60, 114, 252, 0.22);
  color: #2f4a9e;
  font-size: 11px;
  font-weight: 800;
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 26px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.pcs-hub--retro .pcs-hub-transform__label {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcs-hub-retro-muted);
  margin: 0 0 8px;
}

body.pcs-hub--retro .pcs-hub-transform--before .pcs-hub-transform__list--neg li::before {
  content: "\00D7";
  top: 0.12em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(194, 65, 12, 0.12);
  border: 1px solid rgba(194, 65, 12, 0.35);
  color: #c2410c;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
}

body.pcs-hub--retro .pcs-hub-transform--after .pcs-hub-transform__list--pos li::before {
  content: "\2713";
  top: 0.12em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
}

/* Inner wrapper only; outer frame is .pcs-hub-story */
body.pcs-hub--retro .pcs-hub-benefit-shell {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.pcs-hub--retro .pcs-hub-benefit-shell .section-header {
  margin-bottom: 2rem;
}

body.pcs-hub--retro .pcs-hub-benefit-bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 0;
}

@media (min-width: 576px) {
  body.pcs-hub--retro .pcs-hub-benefit-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  /* Hub benefit bentos: uniform responsive grid (1 / 2 / 3 cols) */
  body.pcs-hub--retro .pcs-hub-benefit-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
    align-items: stretch;
  }
}

body.pcs-hub--retro .pcs-hub-benefit-tile {
  position: relative;
  margin: 0;
  padding: 22px 20px 22px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(165deg, #fffefb 0%, #f6f0e8 100%);
  border: 1px solid rgba(90, 80, 65, 0.14);
  box-shadow:
    0 6px 22px rgba(42, 36, 28, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

/* Icon + title on one row; description full width below (hub benefit tiles, not wide hero tile) */
body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 8px;
  align-items: start;
}

body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide) .pcs-hub-benefit-tile__icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin-bottom: 0;
}

body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide) .pcs-hub-benefit-tile__title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin-bottom: 0;
}

body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide) .pcs-hub-benefit-tile__text {
  grid-column: 1 / -1;
  grid-row: 2;
}

body.pcs-hub--retro .pcs-hub-benefit-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, rgba(60, 114, 252, 0.85) 0%, rgba(36, 58, 140, 0.55) 55%, rgba(60, 114, 252, 0.35) 100%);
  opacity: 0.92;
  pointer-events: none;
}

/* Alternate warm “inset” tiles for visual rhythm */
body.pcs-hub--retro .pcs-hub-benefit-tile:nth-child(2),
body.pcs-hub--retro .pcs-hub-benefit-tile:nth-child(6),
body.pcs-hub--retro .pcs-hub-benefit-tile:nth-child(8),
body.pcs-hub--retro .pcs-hub-benefit-tile:nth-child(10),
body.pcs-hub--retro .pcs-hub-benefit-tile:nth-child(12) {
  background: linear-gradient(158deg, #ebe4d8 0%, #dfd4c6 100%);
  border-color: rgba(61, 52, 40, 0.16);
  box-shadow:
    0 5px 18px rgba(42, 36, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.pcs-hub--retro .pcs-hub-benefit-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 114, 252, 0.28);
  box-shadow:
    0 16px 36px rgba(28, 22, 16, 0.12),
    0 0 0 1px rgba(60, 114, 252, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
}

body.pcs-hub--retro .pcs-hub-benefit-tile:hover .pcs-hub-benefit-tile__icon {
  transform: scale(1.06);
}

body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide):hover::before {
  opacity: 1;
  height: 5px;
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide {
  grid-column: 1 / -1;
  background: linear-gradient(125deg, #2c241c 0%, #3d3428 48%, #2a3a78 115%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 36px rgba(20, 18, 30, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 24px 22px 24px 26px;
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide::before {
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  width: 5px;
  height: auto;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #5b8cff 0%, #3c72fc 50%, rgba(36, 58, 140, 0.9) 100%);
  opacity: 1;
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__title {
  color: #faf7f2;
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__text {
  color: rgba(245, 238, 228, 0.9);
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__icon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.28);
  color: #e8eeff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 44px rgba(12, 10, 24, 0.42),
    0 0 0 1px rgba(91, 140, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.pcs-hub--retro .pcs-hub-benefit-tile--wide:hover::before {
  width: 6px;
}

@media (min-width: 992px) {
  body.pcs-hub--retro .pcs-hub-benefit-tile--wide {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 28px;
    row-gap: 6px;
    align-items: center;
    padding: 26px 30px 26px 32px;
    border-radius: 22px;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile--wide::before {
    border-radius: 22px 0 0 22px;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 0;
    align-self: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.28);
    color: #e8eeff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__title {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    margin-bottom: 0;
    color: #faf7f2;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile--wide .pcs-hub-benefit-tile__text {
    grid-column: 2;
    grid-row: 2;
    color: rgba(245, 238, 228, 0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-hub--retro .pcs-hub-benefit-tile {
    transition: none;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile:hover {
    transform: none;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile:not(.pcs-hub-benefit-tile--wide):hover::before {
    height: 4px;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile--wide:hover::before {
    width: 5px;
  }

  body.pcs-hub--retro .pcs-hub-benefit-tile:hover .pcs-hub-benefit-tile__icon {
    transform: none;
  }
}

body.pcs-hub--retro .pcs-hub-benefit-tile__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  color: #2f5ae0;
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.16), rgba(60, 114, 252, 0.06));
  border: 1px solid rgba(60, 114, 252, 0.22);
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

body.pcs-hub--retro .pcs-hub-benefit-tile__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pcs-hub-walnut-deep);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

body.pcs-hub--retro .pcs-hub-benefit-tile__text {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pcs-hub-retro-muted);
  margin: 0;
}

body.pcs-hub--retro .pcs-hub-ways-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 28px;
  max-width: 520px;
}

body.pcs-hub--retro .pcs-hub-way-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--pcs-hub-walnut-deep);
  background: linear-gradient(165deg, #fffefb, #ebe4d8);
  border: 1px solid rgba(90, 80, 65, 0.14);
  box-shadow: 0 2px 10px rgba(42, 36, 28, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.pcs-hub--retro .pcs-hub-way-chip i {
  font-size: 15px;
  color: var(--pcs-hub-retro-blue);
  opacity: 0.95;
}

body.pcs-hub--retro .pcs-hub-way-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(60, 114, 252, 0.35);
  color: #1e1a14;
}

body.pcs-hub--retro .pcs-hub-way-chip--call {
  background: linear-gradient(145deg, rgba(60, 114, 252, 0.18), rgba(60, 114, 252, 0.08));
  border-color: rgba(60, 114, 252, 0.28);
}

body.pcs-hub--retro .pcs-hub-way-chip--call i {
  color: #2f5ae0;
}

body.pcs-hub--retro .pcs-hub-services-wrap {
  margin-top: 0;
}

body.pcs-hub--retro .pcs-services-note--split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(60, 114, 252, 0.08), rgba(60, 114, 252, 0.02));
  border: 1px solid rgba(60, 114, 252, 0.15);
}

@media (min-width: 768px) {
  body.pcs-hub--retro .pcs-services-note--split {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

body.pcs-hub--retro .pcs-services-note__tag {
  flex-shrink: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pcs-hub-retro-blue);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(60, 114, 252, 0.2);
}

body.pcs-hub--retro .pcs-services-note__body {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--pcs-hub-retro-muted);
  margin: 0;
}

body.pcs-hub--retro .pcs-hub-trust__card {
  height: 100%;
  padding: 20px 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(90, 80, 65, 0.1);
  box-shadow: 0 4px 14px rgba(42, 36, 28, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.pcs-hub--retro .pcs-hub-trust__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 36, 28, 0.08);
}

body.pcs-hub--retro .pcs-hub-trust__item {
  padding-top: 0;
}

body.pcs-hub--retro .pcs-hub-trust__icon {
  width: 52px;
  height: 52px;
  font-size: 22px;
  margin-bottom: 16px;
}

body.pcs-hub--retro .service-inner-area .section-header {
  position: relative;
}

body.pcs-hub--retro .service-inner-area .section-header h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pcs-hub-retro-blue), rgba(60, 114, 252, 0.2));
}

body.pcs-hub--retro .pcs-hub-process .process__content h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--pcs-hub-walnut-deep);
}

body.pcs-hub--retro .pcs-hub-process .process__item {
  padding: 18px 16px 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, #fffefb 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(90, 80, 65, 0.32);
  box-shadow:
    0 0 0 1px rgba(90, 80, 65, 0.12),
    0 6px 22px rgba(42, 36, 28, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.pcs-hub--retro .pcs-hub-process .process__item:hover {
  border-color: rgba(60, 114, 252, 0.35);
  box-shadow:
    0 0 0 1px rgba(60, 114, 252, 0.18),
    0 10px 28px rgba(42, 36, 28, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-hub--retro .pcs-hub-pain-card:hover,
  body.pcs-hub--retro .pcs-hub-benefit-tile:hover,
  body.pcs-hub--retro .pcs-hub-way-chip:hover,
  body.pcs-hub--retro .pcs-hub-trust__card:hover {
    transform: none;
  }

  body.pcs-hub--retro .pcs-hub-process .process__item {
    transition: none;
  }

  body.pcs-hub--retro .pcs-hub-process .process__item:hover {
    border-color: rgba(90, 80, 65, 0.32);
    box-shadow:
      0 0 0 1px rgba(90, 80, 65, 0.12),
      0 6px 22px rgba(42, 36, 28, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }
}

/* =========================================================
   Banner hero (home + services): iPad Air / tablet md column fixes
   - Keep primary CTA + "How It Works" on one row inside narrow col-md-7
   - Match slider prev/next vertical alignment (same anchor as sticky call tab reads cleaner)
========================================================= */
@media (min-width: 768px) and (max-width: 991.98px) {
  body .banner-three-area .banner-three__content {
    min-width: 0;
  }

  body .banner-three-area .banner-three__info {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(10px, 1.8vw, 22px) !important;
    min-width: 0;
    width: 100%;
    margin-top: clamp(12px, 2vh, 20px) !important;
  }

  body .banner-three-area .banner-three__info > .btn-one {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    padding: 11px 14px !important;
    font-size: clamp(12px, 1.45vw, 15px) !important;
    white-space: nowrap !important;
    text-align: center;
  }

  body .banner-three-area .banner-three__info .banner-three__video-btn {
    flex: 0 0 auto !important;
    gap: clamp(8px, 1.4vw, 14px) !important;
    min-width: 0 !important;
  }

  body .banner-three-area .banner-three__info .banner-three__video-btn h5 {
    margin: 0 !important;
    font-size: clamp(13px, 1.45vw, 16px) !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
}

/*
 * Tablets (768–991): explicit hero arrow insets (matches phone + desktop rhythm).
 */
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-three-area #pcsHeroPrev {
    left: 12px !important;
    right: auto !important;
  }

  .banner-three-area #pcsHeroNext {
    right: 12px !important;
    left: auto !important;
  }
}

/* =========================================================
   Shared header nav: minimal desktop treatment
   Keeps page-specific header themes intact.
========================================================= */
@media (min-width: 992px) {
  .header-area .header__container {
    max-width: min(1360px, calc(100vw - 48px));
  }

  .header-area .header__main {
    gap: clamp(14px, 1.8vw, 32px);
    min-height: clamp(72px, 5.6vw, 92px);
    position: relative;
  }

  .header-area .logo {
    flex: 0 1 auto;
  }

  .header-area .logo img {
    max-width: clamp(230px, 15vw, 330px);
  }

  .header-area .main-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    flex: 0 0 auto;
    min-width: 0;
    max-width: min(68vw, 760px);
    transform: translate(-50%, -50%);
  }

  .header-area .main-menu nav {
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .header-area .header__main .main-menu ul {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(16px, 1.7vw, 34px) !important;
    max-width: 100%;
  }

  .header-area .header__main .main-menu ul li:has(> a.search-trigger),
  .header-area .header__main .main-menu ul li.ml-20:has(> a.search-trigger) {
    display: none !important;
  }

  .header-area .header__main .main-menu ul li a:not(.search-trigger) {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 26px 0 !important;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(13px, 0.82vw, 16px) !important;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.18s ease;
  }

  .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger) {
    color: var(--heading-color);
  }

  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger) {
    color: var(--pcs-ct-walnut-deep, var(--heading-color));
  }

  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger) {
    color: var(--pcs-hub-walnut-deep, var(--heading-color));
  }

  .header-two-area .header__main .main-menu ul li a:not(.search-trigger),
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger) {
    color: rgba(255, 255, 255, 0.84);
  }

  .header-area .header__main .main-menu ul li a:not(.search-trigger)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.65);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):hover,
  .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):focus-visible,
  .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"] {
    color: var(--primary-color);
  }

  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):hover,
  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):focus-visible,
  body.pcs-site--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"] {
    color: var(--pcs-ct-blue, var(--primary-color));
  }

  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):hover,
  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):focus-visible,
  body.pcs-hub--retro .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"] {
    color: var(--pcs-hub-retro-blue, var(--primary-color));
  }

  .header-two-area .header__main .main-menu ul li a:not(.search-trigger):hover,
  .header-two-area .header__main .main-menu ul li a:not(.search-trigger):focus-visible,
  .header-two-area .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"],
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger):hover,
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger):focus-visible,
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"] {
    color: #fff;
  }

  .header-area .header__main .main-menu ul li a:not(.search-trigger):hover::after,
  .header-area .header__main .main-menu ul li a:not(.search-trigger):focus-visible::after,
  .header-area .header__main .main-menu ul li a:not(.search-trigger)[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-area .header__main .main-menu ul li a:not(.search-trigger):focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 6px;
  }

  .header-area:not(.header-two-area):not(.header-three-area) .header__main .main-menu ul li a:not(.search-trigger):focus-visible {
    outline-color: rgba(60, 114, 252, 0.65);
  }

  body.pcs-home .header-two-area {
    background: rgba(15, 13, 29, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  body.pcs-home .header-two-area.menu-fixed {
    background: rgba(15, 13, 29, 0.96);
  }

  /*
   * Dark fixed headers (home + service pages): absolute-centered nav stacks on the logo.
   * Use a three-column grid and cap logo height so tagline art does not collide with links.
   */
  .header-area.header-two-area::after,
  .header-area.header-three-area::after {
    display: none;
  }

  .header-two-area .header__main,
  .header-three-area .header__main {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, max-content);
    align-items: center;
    flex-wrap: nowrap !important;
    min-height: clamp(64px, 5vw, 80px);
  }

  .header-two-area .header__main .logo,
  .header-three-area .header__main .logo {
    grid-column: 1;
    grid-row: 1;
    flex: none;
    max-width: min(240px, 22vw);
  }

  .header-two-area .header__main .logo img,
  .header-three-area .header__main .logo img {
    max-width: 100%;
    max-height: clamp(44px, 5.5vw, 64px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
  }

  .header-two-area .header__main .main-menu,
  .header-three-area .header__main .main-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }

  .header-two-area .header__main > .d-none.d-xl-flex,
  .header-three-area .header__main > .d-none.d-xl-flex {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    flex-shrink: 0;
  }

  .header-two-area .header__main .main-menu ul li a:not(.search-trigger),
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger) {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .header-two-area .header__main .main-menu ul li a:not(.search-trigger)::after,
  .header-three-area .header__main .main-menu ul li a:not(.search-trigger)::after {
    bottom: 8px;
  }
}

@media (min-width: 992px) and (max-width: 1299.98px) {
  .header-area .header__container {
    max-width: min(100%, calc(100vw - 28px));
    padding-inline: 10px;
  }

  .header-area .logo img {
    max-width: clamp(210px, 18vw, 260px) !important;
  }

  .header-area .header__main .main-menu ul {
    gap: clamp(11px, 1.2vw, 18px) !important;
  }

  .header-area .header__main .main-menu ul li a:not(.search-trigger) {
    font-size: clamp(12.5px, 1.05vw, 14px) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header__main > .d-none.d-xl-flex {
    gap: 12px !important;
  }

  .header-area .header__main > .d-none.d-xl-flex .btn-one {
    padding-inline: 18px;
    font-size: 14px;
  }

  .header-area .header__main > .d-none.d-xl-flex .about-three__left-item {
    display: none !important;
  }
}

@media (min-width: 1800px) {
  .header-area .header__container {
    max-width: min(1440px, calc(100vw - 96px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-area .header__main .main-menu ul li a,
  .header-area .header__main .main-menu ul li a::after {
    transition: none;
  }
}

/* Hero promo slider: show the complete artwork on every viewport. */
:root {
  --pcs-hero-promo-ratio: 1024 / 818;
}

.banner-three-area .pcs-hero-slider {
  aspect-ratio: var(--pcs-hero-promo-ratio) !important;
  height: auto !important;
  max-height: none !important;
  background: #061a24;
}

.banner-three-area .pcs-hero-track,
.banner-three-area #pcsHeroTrack,
.banner-three-area .pcs-hero-slide {
  height: 100% !important;
}

.banner-three-area .pcs-hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-three-area .pcs-hero-slide img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 767.98px) {
  .banner-three-area .pcs-hero-slider {
    width: 100%;
    max-width: min(100%, 680px) !important;
    margin-top: clamp(10px, 3vw, 18px) !important;
    border-radius: clamp(16px, 5.6vw, 26px) !important;
  }

  .banner-three-area .pcs-hero-slider > .pcs-hero-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(18, 34, 65, 0.58);
  }
}

@media (min-width: 1600px) {
  .banner-three-area .pcs-hero-slider {
    max-width: min(780px, 38vw) !important;
  }
}

/* Location intro hero promo slider: replaces decorative Lottie with conversion proof. */
body.pcs-site--retro .pcs-intro-hero--promo-slider {
  --pcs-intro-promo-width: min(38%, 440px);
  --pcs-intro-promo-max-h: min(400px, 50vh);
}

body.pcs-site--retro .pcs-intro-hero .pcs-lottie-host--promo-slider {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0;
  margin: auto;
  aspect-ratio: var(--pcs-hero-promo-ratio);
  overflow: hidden !important;
  border: 1px solid rgba(12, 28, 39, 0.18);
  border-radius: clamp(16px, 2.2vw, 24px);
  background: #061a24;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.18);
  isolation: isolate;
  pointer-events: auto;
  transform: none !important;
  align-self: center;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(.22, .9, .22, 1);
  touch-action: pan-y;
  will-change: transform;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(36px, 3.2vw, 44px);
  height: clamp(36px, 3.2vw, 44px);
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: rgba(18, 34, 65, 0.58);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__btn--prev {
  left: max(8px, env(safe-area-inset-left, 0px));
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__btn--next {
  right: max(8px, env(safe-area-inset-right, 0px));
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__btn i {
  font-size: 16px;
  line-height: 1;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 1.4vw, 14px);
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__dot.is-active {
  background: rgba(107, 108, 224, 0.96);
}

@media (max-width: 991.98px) {
  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__body {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 3.8vw, 22px);
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__copy {
    padding-right: 0 !important;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__visual--promo-slider {
    position: relative;
    order: -1;
    width: 100%;
    max-width: min(100%, 720px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: clamp(4px, 1.8vw, 12px) auto 0;
    pointer-events: auto !important;
  }
}

@media (min-width: 992px) {
  /* Promo slider: text left; slider centred top/bottom and left/right in the right column. */
  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--pcs-intro-promo-width);
    grid-template-rows: auto auto;
    grid-template-areas: none;
    column-gap: clamp(16px, 2vw, 28px);
    row-gap: clamp(6px, 0.9vw, 10px);
    align-items: stretch;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__lead {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__body {
    display: contents;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__copy {
    grid-column: 1;
    grid-row: 2;
    padding-right: 0 !important;
    align-self: start;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual--promo-slider {
    grid-column: 2;
    grid-row: 1 / -1;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch;
    z-index: 4;
    pointer-events: auto !important;
    overflow: visible;
  }

  body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-intro-hero__stage:has(.pcs-intro-hero__body) .pcs-intro-hero__visual--promo-slider .pcs-lottie-host--promo-slider {
    width: min(100%, calc(var(--pcs-intro-promo-max-h) * 1024 / 818));
    max-width: 100%;
    max-height: var(--pcs-intro-promo-max-h);
    margin-inline: auto;
    transform: none !important;
    align-self: center !important;
  }
}

body.pcs-site--retro .pcs-intro-hero--promo-slider .pcs-jumps {
  position: relative;
  z-index: 5;
  margin-top: clamp(14px, 2vw, 22px);
  clear: both;
}

@media (min-width: 1600px) {
  body.pcs-site--retro .pcs-intro-hero--promo-slider {
    --pcs-intro-promo-width: min(36%, 480px);
    --pcs-intro-promo-max-h: min(420px, 52vh);
  }
}

@media (min-width: 2200px) {
  body.pcs-site--retro .pcs-intro-hero--promo-slider {
    --pcs-intro-promo-width: min(34%, 520px);
    --pcs-intro-promo-max-h: min(440px, 54vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pcs-site--retro .pcs-intro-hero .pcs-promo-slider__track {
    transition: none;
  }
}

/*# sourceMappingURL=style.css.map */