@charset "UTF-8";
/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  :root {
    /* ————— Primary Brand Colours ————— */
    --primary: #1e243c;
    --primary-light: #1979bf;
    --primary-alt: #6160e9;
    /* ————— Secondary Brand Colours ————— */
    --secondary: #475569;
    --secondary-light: #94a3b8;
    /* ————— Neutrals ————— */
    --white: #ffffff;
    --grey-light: #f5f7fa;
    --grey: #a0a4ab;
    --grey-dark: #343435;
    /* ————— Dark-mode Helpers ————— */
    --dark: #0f172a;
    --medium: #1e293b;
    /* ————— Utility Colours ————— */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    /* ————— Legacy Compatibility ————— */
    --primaryLight: #1979bf;
    --headerColor: #1e243c;
    --bodyTextColor: #343435;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primary);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    width: auto;
    padding: 0 1.875rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 3.125em;
    font-weight: bold;
    color: var(--bodyTextColorWhite);
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .cs-button-solid:hover, .cs-button-solid:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .cs-button-solid:hover:before, .cs-button-solid:focus:before {
    left: 100%;
  }
  .cs-button-solid:hover:after, .cs-button-solid:focus:after {
    opacity: 1;
  }
  .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  .cs-hide-on-mobile {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .cs-hide-on-mobile {
    display: block;
  }
  .cs-hide-on-desktop {
    display: none;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  body,
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 100%;
    color: var(--bodyTextColor);
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  /* roboto-regular - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-regular.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-700 - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 700;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-700.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-900 - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 900;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-900.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
body {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    opacity: 0;
    transform: translate(-50%, -150%);
    fill: #fff;
  }
  #dark-mode-toggle {
    z-index: 1000;
    position: absolute;
    top: 0.625rem;
    right: 4.375rem;
    display: block;
    border: none;
    background: transparent;
    height: 3rem;
    width: 3rem;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1.25rem;
    width: 1.25rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
  }
  #dark-mode-toggle:hover {
    cursor: pointer;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: "Roboto", "Arial", sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 0;
    height: 2.5rem;
    max-width: 9.125rem;
    width: 40%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    /* places the image to the left edge of the parent */
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0 0 0 auto;
    background-color: transparent;
    height: clamp(2.75rem, 6vw, 3rem);
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #1a1a1a;
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    transition: transform 0.4s, opacity 0.3s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(-2.5rem);
    margin-right: 0;
    width: 100%;
    list-style: none;
    transition: transform 0.6s, opacity 0.9s;
    text-align: right;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    color: var(--headerColor);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: currentColor;
    height: 1px;
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation:before {
    z-index: -11;
    position: absolute;
    top: 100%;
    right: 0;
    /* black blurred overlay */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-line {
    background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation {
    /* Many flat location links: tighter rhythm; two columns when the drawer is wide enough */
  }
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: none;
    margin: 0.75rem 0 0 0;
    height: auto;
    max-height: min(70vh, 28rem);
    padding: 1.125rem 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12) 0 8px 20px;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-self: stretch;
    margin: 0;
    background-color: var(--primary);
    height: 0;
    max-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1rem 0 1rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s, max-height 0.35s ease;
    gap: 0.625rem;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: right;
    width: 100%;
    min-width: 0;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
  #cs-navigation .cs-drop-ul#dropdown-locations {
    gap: 0.375rem;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul#dropdown-locations {
    padding: 0.75rem 0.75rem;
  }
}
@media only screen and (max-width: 63.9375rem) and (min-width: 22rem) {
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul#dropdown-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.625rem;
    row-gap: 0.25rem;
    align-items: start;
  }
  #cs-navigation .cs-drop-ul#dropdown-locations .cs-drop-li {
    text-align: left;
  }
}
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-drop-li.cs-dropdown-nested {
    text-align: right;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-icon-nested {
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    position: relative;
    left: auto;
    top: auto;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    list-style: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    box-shadow: rgba(15, 23, 42, 0.12) 0px 10px 28px, rgba(15, 23, 42, 0.06) 0px 4px 10px;
    transform: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s, margin 0.25s ease, padding 0.25s ease;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container.cs-drop-nested-simple {
    display: block;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container:not(.cs-drop-nested-simple) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 63.9375rem) and (min-width: 26rem) {
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container:not(.cs-drop-nested-simple) {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-nested-container {
    visibility: visible;
    opacity: 1;
    max-height: min(62vh, 24rem);
    margin-top: 0.375rem;
    padding: 0.75rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-li-nested {
    opacity: 1;
    transform: none;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-column {
    min-width: 0;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-column-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.375rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested {
    gap: 0.125rem;
    padding: 0.25rem 0;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-li-nested {
    opacity: 1;
    transform: none;
    text-align: left;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-li-link.cs-drop-link-nested {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.625rem;
    font-size: clamp(0.8125rem, 1.8vw, 1rem);
    line-height: 1.35;
    color: var(--bodyTextColor);
    text-decoration: none;
    text-align: left;
    border-radius: 0.25rem;
    white-space: normal;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-li-link.cs-drop-link-nested:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-li-link.cs-drop-link-nested.view-all-platforms {
    margin-top: 0.375rem;
    text-align: center;
  }
  body.dark-mode #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    border-color: rgba(255, 255, 255, 0.14);
    border-bottom-color: rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35) 0 10px 24px;
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    background-color: var(--medium);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 12px 28px, rgba(0, 0, 0, 0.2) 0px 4px 10px;
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-column-title {
    color: var(--primaryLight);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-li-link.cs-drop-link-nested {
    color: var(--bodyTextColorWhite);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    /* Many location links: two columns, no awkward splits */
  }
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active, #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul, #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li, #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    display: inline-block;
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    z-index: 3000;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    left: 0;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(30, 36, 60, 0.22);
    border-radius: 0.5rem;
    margin: 0.25rem 0 0 0;
    background-color: #fff;
    min-width: min(100vw, 14rem);
    width: max-content;
    max-width: min(100vw - 2rem, 22rem);
    overflow: visible;
    padding: 0.25rem 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    box-shadow: rgba(15, 23, 42, 0.12) 0px 12px 32px, rgba(15, 23, 42, 0.06) 0px 4px 12px, 0 3px 0 rgba(30, 36, 60, 0.06);
    transform-origin: top left;
  }
  #cs-navigation #dropdown-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
    row-gap: 0.125rem;
    min-width: min(100vw - 2rem, 28rem);
    max-width: min(100vw - 2rem, 42rem);
    width: max-content;
    overflow: visible;
  }
  #cs-navigation #dropdown-locations .cs-drop-li {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  #cs-navigation .cs-drop-li {
    opacity: 0;
    transform: translateY(-0.625rem);
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
    text-decoration: none;
    font-size: 1rem;
    color: var(--bodyTextColor);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested {
    position: relative;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    text-decoration: none;
    color: var(--bodyTextColor);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-icon-nested {
    font-size: 0.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    position: absolute;
    left: 100%;
    top: 0;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
    transform-origin: top left;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: rgba(15, 23, 42, 0.12) 0px 12px 32px, rgba(15, 23, 42, 0.06) 0px 4px 12px;
    padding: 1rem;
    margin: 0 0 0 0.25rem;
    list-style: none;
    z-index: 3500;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    border-radius: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    min-width: min(100vw - 2rem, 42.5rem);
    max-height: min(85vh, 40rem);
    overflow-y: auto;
    overflow-x: visible;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container.cs-drop-nested-simple {
    display: block;
    grid-template-columns: none;
    gap: 0;
    min-width: 13rem;
    max-width: min(100vw - 2rem, 20rem);
    width: max-content;
    padding: 0.5rem 0;
    max-height: none;
    overflow: visible;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-column {
    min-width: 0;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-column-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested {
    padding: 0;
    margin: 0;
    list-style: none;
    transform-origin: top left;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.375rem 0;
    width: 100%;
    border-radius: 0.375rem;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested.cs-drop-ul-nested-simple {
    padding: 0.25rem 0;
    gap: 0.125rem;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested {
    opacity: 0;
    transform: translateY(-10px);
    list-style: none;
    transition: opacity 0.6s, transform 0.6s;
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested {
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    color: var(--bodyTextColor);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    flex: 1;
    border-radius: 0.25rem;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:hover {
    background-color: #f7f7f7;
    transform: translateX(2px);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms {
    font-weight: 600;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms:hover {
    background-color: var(--primaryDark);
    transform: translateX(2px);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container:hover {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container:hover .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:hover .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-nested-container {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-li.cs-dropdown-nested.cs-active .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
    border-color: rgba(255, 255, 255, 0.12);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-column-title {
    color: var(--primaryLight);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested {
    display: flex;
  }
  body.dark-mode #cs-navigation .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Desktop Navigation Button Styling */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-button-solid {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    min-width: 8rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #cs-navigation .cs-button-solid:hover:before {
    left: 100%;
  }
  #cs-navigation .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #cs-navigation .cs-button-solid:hover:after {
    opacity: 1;
  }
  #cs-navigation .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #cs-navigation .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #cs-navigation .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    z-index: 10000;
    isolation: isolate;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: "Roboto", "Arial", sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    height: 4.0625rem;
    max-width: 21.875rem;
    width: 18.4%;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    padding: 2rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: block;
    margin: 0;
    text-decoration: none;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: 0rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 2px;
    width: 0%;
    transition: width 0.3s;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it turn white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link:before {
    background-color: var(--primaryLight);
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
    width: 96%;
    font-size: 2.1333333333rem;
    color: #fff;
    text-align: center;
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 25rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 4rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }
  #cta .container {
    text-align: center;
  }
  #cta picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta .title {
    position: relative;
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3rem);
    line-height: 1.2083333333em;
    font-weight: 900;
    color: #fff;
    text-align: center;
  }
  #cta p {
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #cta:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: 10.5rem 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta .container {
    margin: auto;
    width: 90.0625%;
  }
  #cta picture {
    left: 50%;
    transform: translateX(-50%);
    width: 90.0625%;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    z-index: -3;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    opacity: 1;
    transform: translateX(-50%);
    display: block;
    background: url("/assets/svgs/cta-squares.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 69.25rem;
    width: 125rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta:after {
    display: none;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    background: #1c1c1c;
    padding: 5.25rem 0 1.25rem;
    font-size: min(4vw, 1.2em);
  }
  #footer .left-section {
    margin: auto;
    margin-bottom: 3.125rem;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    margin-bottom: 1.875em;
    height: 2em;
    width: auto;
    text-align: center;
  }
  #footer .left-section .logo img {
    display: block;
    height: 100%;
    width: auto;
  }
  #footer .left-section p {
    opacity: 0.9;
    margin: auto;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.9285714286rem;
    color: #fff;
    text-align: center;
  }
  #footer .right-section {
    margin: auto;
    max-width: 25.4375rem;
    width: 96%;
  }
  #footer .right-section .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 19.1875rem;
    width: 96%;
  }
  #footer .right-section .lists ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
  #footer .right-section .lists ul li {
    opacity: 0.9;
    margin-bottom: 0.75rem;
    list-style: none;
    font-size: 1.125rem;
    color: #fff;
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    line-height: 1.1666666667em;
    color: #fff;
    transition: color 0.3s;
  }
  #footer .right-section .lists ul li a:hover {
    color: var(--primary);
  }
  #footer .right-section .lists ul h2 {
    position: relative;
    margin-bottom: 2.3125rem;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.1666666667em;
    font-weight: bold;
    color: #fff;
  }
  #footer .right-section .lists ul h2:before {
    position: absolute;
    bottom: -1rem;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 0.125rem;
    width: 6.0625rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 3.125rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:last-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    display: flex;
    justify-content: center;
  }
  #footer .right-section .cs-button-solid {
    margin: 0;
    height: 3.3125rem;
    width: 15.625rem;
    padding-top: 0.1875rem;
  }
  #footer .credit {
    margin: auto;
    margin-top: 6.25rem;
    width: 96%;
    font-size: 1rem;
    line-height: 2.25rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .credit .left, #footer .credit .right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .credit .left {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 48rem) {
  #footer .credit {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  #footer .credit .left, #footer .credit .right {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (min-width: 0rem) {
  #footer .credit svg {
    margin-top: 0.125rem;
    height: 1.125rem;
    width: auto;
    vertical-align: middle;
  }
  #footer .credit svg.text-danger {
    stroke: #ff0000;
  }
  #footer .credit a {
    text-decoration: none;
    font-size: 1rem;
    /* --primary is navy; on dark footer it reads as a broken link — use brand blue */
    color: var(--primaryLight);
  }
  #footer .credit a:hover {
    text-decoration: underline;
    color: #fff;
  }
  #footer .credit .brand-link {
    color: var(--primaryLight);
    font-weight: 700;
  }
  #footer .credit .brand-link:hover {
    color: #fff;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: auto;
    max-width: 82.5rem;
    width: 96%;
    padding: 0;
  }
  #footer .left-section {
    margin: 0;
    width: 25.5625rem;
    text-align: left;
  }
  #footer .left-section .logo {
    margin-left: 0;
    height: 2.5rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    text-align: left;
  }
  #footer .right-section {
    margin: 0;
    max-width: none;
    width: 38.0625rem;
  }
  #footer .right-section .lists {
    margin: 0;
    max-width: 48.0625rem;
    width: 96%;
  }
  #footer .right-section .lists ul li a {
    position: relative;
  }
  #footer .right-section .lists ul li a:before {
    position: absolute;
    bottom: -0.1875rem;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 0.125rem;
    width: 0%;
    transition: width 0.3s;
  }
  #footer .right-section .lists ul li a:hover:before {
    width: 100%;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:first-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    justify-content: flex-start;
  }
  #footer .credit {
    max-width: 82.5rem;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer {
    background: #061623;
  }
  body.dark-mode #footer .credit a,
  body.dark-mode #footer .credit .brand-link {
    color: #7ec8ff;
  }
  body.dark-mode #footer .credit a:hover,
  body.dark-mode #footer .credit .brand-link:hover {
    color: #fff;
  }
}
#faq-350-350 {
  padding: var(--sectionPadding);
  background: #f7f7f7;
}
#faq-350-350 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 3rem);
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.25rem;
  }
}
#faq-350-350 .cs-left {
  font-size: min(2.08vw, 0.7em);
  width: 42.875em;
  height: 42em;
  position: relative;
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-left {
    font-size: min(1vw, 1em);
    flex: none;
    order: 2;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatAnimation2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}
#faq-350-350 .cs-left:before {
  content: "";
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 1;
  position: absolute;
  display: block;
  bottom: 6.25em;
  left: 0;
  z-index: 10;
  animation-name: floatAnimation;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture {
  border-radius: 50%;
  border: clamp(6px, 1.2vw, 12px) solid #fff;
  overflow: hidden;
  position: absolute;
  display: block;
}
#faq-350-350 .cs-picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#faq-350-350 .cs-picture1 {
  width: 42em;
  height: 42em;
  top: -0.75em;
  left: -0.75em;
}
#faq-350-350 .cs-picture2 {
  width: 12.5em;
  height: 12.5em;
  top: -0.75em;
  left: -0.75em;
  animation-name: floatAnimation2;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture3 {
  width: 18.75em;
  height: 18.75em;
  bottom: -0.75em;
  right: -0.75em;
  animation-name: floatAnimation;
  animation-duration: 13s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-content {
  width: 100%;
  max-width: 47.9375rem;
  position: relative; /* Ensure proper stacking context */
}
#faq-350-350 .cs-faq-group {
  padding: 0;
  margin: 0 0 2rem 0; /* Add bottom margin to prevent overlap */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
#faq-350-350 .cs-faq-item {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  transition: border-bottom 0.3s;
}
#faq-350-350 .cs-faq-item.active {
  border-color: var(--primary);
}
#faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primary) !important;
  font-weight: bold;
}
#faq-350-350 .cs-faq-item.active .cs-button:before {
  background-color: var(--primary) !important;
  transform: rotate(315deg) !important;
}
#faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primary) !important;
  transform: rotate(-315deg) !important;
}
#faq-350-350 .cs-button {
  font-size: 1rem;
  line-height: 1.2em;
  text-align: left;
  font-weight: bold;
  padding: clamp(1rem, 1.3vw, 1.25rem);
  border: none;
  background: transparent;
  color: var(--headerColor);
  display: block;
  width: 100%;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
#faq-350-350 .cs-button:hover {
  cursor: pointer;
}
#faq-350-350 .cs-button:before {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.5rem;
  transform: rotate(45deg);
  transform-origin: left center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button:after {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.3125rem;
  transform: rotate(-45deg);
  transform-origin: right center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button-text {
  width: 80%;
  display: block;
}
#faq-350-350 .cs-item-p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5em;
  width: 90%;
  margin: 0 0 1rem 0; /* Add bottom margin */
  color: var(--bodyTextColor);
  transition: opacity 0.3s, padding-bottom 0.3s, height 0.3s;
  position: relative; /* Ensure proper positioning */
  z-index: 1; /* Ensure content appears above background elements */
}
body.dark-mode #faq-350-350 {
  background-color: var(--medium);
}
body.dark-mode #faq-350-350 .cs-picture {
  border-color: var(--accent);
}
body.dark-mode #faq-350-350 .cs-topper {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-title, body.dark-mode #faq-350-350 .cs-item-p {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-faq-item {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode #faq-350-350 .cs-faq-item.active {
  border-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:before, body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-button {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-button:before, body.dark-mode #faq-350-350 .cs-button:after {
  background-color: var(--bodyTextColorWhite);
}

/* Specific override styles to ensure proper behavior */
#faq-350-350 .cs-faq-item.active .cs-item-p {
  height: auto !important;
  opacity: 1 !important;
  padding: 1rem 1.5rem 1.5rem 1.5rem !important;
  overflow: visible !important;
  margin-bottom: 1rem !important; /* Ensure bottom margin */
}

#faq-350-350 .cs-faq-item:not(.active) .cs-item-p {
  height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 1.5rem !important;
  margin: 0 !important; /* Remove margin when collapsed */
}

/*-- -------------------------- -->
<---   Portfolio case studies   -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #portfolio-case-study-grid {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
    /* Portfolio Link Styles */
    /* Portfolio Caption Styles */
  }
  #portfolio-case-study-grid .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #portfolio-case-study-grid .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #portfolio-case-study-grid .cs-image-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #portfolio-case-study-grid .cs-item {
    list-style: none;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #portfolio-case-study-grid .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #portfolio-case-study-grid .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #portfolio-case-study-grid .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #portfolio-case-study-grid .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #portfolio-case-study-grid .cs-portfolio-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #portfolio-case-study-grid .cs-portfolio-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #portfolio-case-study-grid .cs-portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  #portfolio-case-study-grid .cs-portfolio-caption h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #portfolio-case-study-grid .cs-portfolio-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 1;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #portfolio-case-study-grid .cs-portfolio-link:hover .cs-portfolio-caption {
    transform: translateY(0);
  }
  #portfolio-case-study-grid .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #portfolio-case-study-grid .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #portfolio-case-study-grid .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #portfolio-case-study-grid .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #portfolio-case-study-grid .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #portfolio-case-study-grid .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #portfolio-case-study-grid .cs-button-solid:hover:before {
    left: 100%;
  }
  #portfolio-case-study-grid .cs-button-solid:hover:after {
    opacity: 1;
  }
  #portfolio-case-study-grid .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #portfolio-case-study-grid .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #portfolio-case-study-grid .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #portfolio-case-study-grid .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #portfolio-case-study-grid .cs-item {
    grid-column: span 3;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #portfolio-case-study-grid .cs-title,
  body.dark-mode #portfolio-case-study-grid .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #portfolio-case-study-grid .cs-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-57 {
    padding: var(--sectionPadding);
  }
  #reviews-57 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
    /* 60px - 108px */
    column-gap: clamp(3.7rem, 8vw, 6.75rem);
  }
  #reviews-57 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
  }
  #reviews-57 .cs-text {
    margin-bottom: 2rem;
  }
  #reviews-57 .cs-review-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    position: relative;
    border-left: 0.3125rem solid var(--primaryLight);
    background: rgba(255, 186, 67, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
  }
  #reviews-57 .cs-stars {
    color: #ffba43;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  #reviews-57 .cs-review-text {
    /* 15px - 17px */
    font-size: clamp(15px, 5vw, 1.0625rem);
    line-height: 1.5em;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    font-style: italic;
  }
  #reviews-57 .cs-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    display: block;
    color: var(--primary);
  }
  #reviews-57 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #reviews-57 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #reviews-57 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #reviews-57 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #reviews-57 .cs-button-solid:hover:before {
    left: 100%;
  }
  #reviews-57 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #reviews-57 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #reviews-57 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #reviews-57 .cs-picture {
    width: 98%;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height 320/340 */
    aspect-ratio: 320/340;
    /* 8px - 12px */
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
  }
  #reviews-57 .cs-picture:before {
    content: "";
    position: absolute;
    height: 12.125rem;
    width: 12.125rem;
    background: var(--primaryLight);
    opacity: 1;
    /* -8px to -12px */
    /* the calc function sets the clamp value to a negative number */
    top: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
    right: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
  }
  #reviews-57 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-57 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  #reviews-57 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #reviews-57 .cs-picture {
    /* 336px - 530px */
    width: clamp(21rem, 44vw, 33.125rem);
    /* 534px - 641px */
    height: clamp(33.375rem, 58.6vw, 40.0625rem);
    /* reset margin to account for the pseudo element square positioning */
    margin: 0.75rem 0.75rem 0 0;
    margin-right: 0;
    margin-bottom: 0;
    /* no longer need aspect ratio */
    aspect-ratio: initial;
    /* prevents flexbox from squishing it */
    flex: none;
    /* sends it to the right in the second position */
    order: 2;
  }
}
/* Dark mode: section uses navy text colours that stay in place and beat generic body.dark-mode p/h rules */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-57 .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #reviews-57 .cs-title,
  body.dark-mode #reviews-57 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-57 .cs-review-item {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primaryLight);
  }
  body.dark-mode #reviews-57 .cs-review-text {
    color: color-mix(in oklab, var(--bodyTextColorWhite) 92%, transparent);
  }
  body.dark-mode #reviews-57 .cs-name {
    color: var(--primaryLight);
  }
}
/*-- -------------------------- -->
<--- PageSpeed results showcase -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #portfolio-pagespeed-showcase {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
  }
  #portfolio-pagespeed-showcase .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #portfolio-pagespeed-showcase .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #portfolio-pagespeed-showcase .cs-image-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #portfolio-pagespeed-showcase .cs-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #portfolio-pagespeed-showcase .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #portfolio-pagespeed-showcase .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #portfolio-pagespeed-showcase .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #portfolio-pagespeed-showcase .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #portfolio-pagespeed-showcase .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #portfolio-pagespeed-showcase .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #portfolio-pagespeed-showcase .cs-hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Prevents padding from contributing to height & width */
    box-sizing: border-box;
    /* Sets stage for 3d transform animation */
    perspective: 700px;
    top: 0;
    left: 0;
    z-index: 10;
    /* prevents mouse from being able to interact with these elements */
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #portfolio-pagespeed-showcase .cs-icon {
    /* 50px - 60px */
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: clamp(3.125rem, 5vw, 3.75rem);
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 5vw, 2rem);
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid fade(#fff, 70%);
    /* Start with the icon box rotated 90deg */
    transform: rotateY(90deg);
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.5s;
  }
  #portfolio-pagespeed-showcase .cs-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
  #portfolio-pagespeed-showcase .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    margin-bottom: 0.5rem;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.1s;
  }
  #portfolio-pagespeed-showcase .cs-hover-box-text {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1vw, 1rem);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #portfolio-pagespeed-showcase .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #portfolio-pagespeed-showcase .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #portfolio-pagespeed-showcase .cs-item {
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1785 {
    /* Reduced padding to fit content in viewport */
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1785 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  #hero-1785 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
  }
  #hero-1785 .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    /* Prevent unnecessary line breaks on larger screens */
    max-width: 100%;
  }
  #hero-1785 .cs-title,
  #hero-1785 .cs-subtitle,
  #hero-1785 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #hero-1785 .cs-topper {
    color: #1979bf;
  }
  #hero-1785 .cs-text {
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
    max-width: none;
  }
  #hero-1785 .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
  #hero-1785 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #hero-1785 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #hero-1785 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #hero-1785 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #hero-1785 .cs-button-solid:hover:before {
    left: 100%;
  }
  #hero-1785 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #hero-1785 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #hero-1785 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #hero-1785 .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  #hero-1785 .cs-graphic-dark {
    display: none;
  }
  #hero-1785 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1785 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
    opacity: 0.7;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-1785 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on medium-large screens */
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #hero-1785 {
    /* Reduced padding for large screens to fit in viewport */
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on large screens */
    max-width: 68.75rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1785 .cs-background:before {
    opacity: 0.85;
  }
  body.dark-mode #hero-1785 .cs-graphic {
    display: none;
  }
  body.dark-mode #hero-1785 .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*           Data Center Hero Enhanced         */
/* ============================================ */
/* ============================================ */
/*              Base Styles                    */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced {
    /* Enhanced height for better visual impact */
    min-height: 100vh;
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-data-center-enhanced .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 20; /* Ensure content is above background */
  }
  .hero-data-center-enhanced .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    position: relative;
    z-index: 25; /* Ensure text is above everything */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Even tighter spacing for mobile */
    padding-top: 0; /* Remove top padding entirely */
    margin-top: -4rem; /* Move everything up more for mobile */
  }
  /* ============================================ */
  /*              Text Elements                  */
  /* ============================================ */
  /* Base topper styles - applies to all screen sizes */
  .hero-data-center-enhanced .cs-topper {
    color: var(--primaryLight) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0 !important;
    position: relative !important;
    top: -3rem !important; /* Move topper up more for mobile */
    z-index: 30 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
  }
  .hero-data-center-enhanced .cs-branding {
    margin-bottom: 0; /* Remove bottom margin since we're using gap */
    position: relative;
    top: -3rem; /* Move logo up more for mobile */
    z-index: 20; /* Logo behind topper text */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 40px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.2)); /* Add blue glow effect */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 70px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    max-width: 100%;
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0; /* Remove margin completely */
    line-height: 1.1;
    position: relative;
    top: -4rem; /* Move title up more for mobile */
  }
  .hero-data-center-enhanced .cs-subtitle {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0; /* Remove margin completely */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -3.5rem; /* Move subtitle up more for mobile */
  }
  .hero-data-center-enhanced .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 1rem; /* Reduced margin further */
    text-align: center !important;
    width: 100%;
    max-width: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.4;
    position: relative;
    top: -3rem; /* Move text up more for mobile */
  }
  /* ============================================ */
  /*              Call-to-Action                */
  /* ============================================ */
  .hero-data-center-enhanced .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    top: 1.5rem; /* Move CTA button up slightly for mobile */
  }
  .hero-data-center-enhanced .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  /* Secondary button styling */
  .hero-data-center-enhanced .cs-button-solid.cs-button2 {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  .hero-data-center-enhanced .cs-button-solid.cs-button2:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
  /* ============================================ */
  /*              Background Elements            */
  /* ============================================ */
  /* Animated background positioning */
  .hero-data-center-enhanced .cs-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  .hero-data-center-enhanced .hero__stage {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }
  /* Mobile aspect ratio (default) */
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 430/930;
  }
  /* Desktop aspect ratio */
  /* Preserve original hero divider positioning */
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823;
    /* Ensure proper scaling for different display scaling factors */
    transform: scale(1);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced .hero__stage > picture,
  .hero-data-center-enhanced .hero__stage > picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-data-center-enhanced .hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    contain: paint;
    will-change: transform, opacity;
    z-index: 10;
    /* Ensure perfect alignment with background */
    transform: scale(1);
    transform-origin: center center;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    /* Responsive scaling - no fixed scale values */
    transform: scale(1) !important;
    transform-origin: center center !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
  .hero-data-center-enhanced .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  .hero-data-center-enhanced .cs-graphic-dark {
    display: none;
  }
}
/* ============================================ */
/*              Tablet Styles                   */
/* ============================================ */
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 1rem; /* Tighter spacing */
    padding-top: 0; /* No padding */
    margin-top: -4rem; /* Move everything up a bit more */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 25px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 75px rgba(25, 121, 191, 0.2)); /* Larger glow for tablet */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    filter: drop-shadow(0 0 35px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 85px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.2rem !important;
    top: -2.5rem !important; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -2.5rem; /* Move logo down to be between title and subtitle */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    top: -4rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.3rem;
    max-width: 85%;
    top: -3.5rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-text {
    top: -3rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 1.5rem; /* Move CTA button down a bit more on tablet */
  }
}
/* ============================================ */
/*              Desktop Styles                  */
/* ============================================ */
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 0.75rem; /* Tighter gap between elements */
    margin-top: -5rem; /* Move everything up more on desktop */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    top: -0.25rem !important; /* Adjusted for desktop */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -1rem; /* Better centered between topper and H1 */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
    top: -2rem; /* Move up even closer to logo */
    line-height: 1.1 !important;
    max-width: 90% !important;
    margin-bottom: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.4rem !important;
    max-width: 80% !important;
    top: -2.5rem; /* Move up closer to title */
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-text {
    font-size: 1.2rem !important;
    top: -3rem; /* Move up closer to subtitle */
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 3rem; /* Push down more for better spacing */
  }
  .hero-data-center-enhanced .cs-button-solid {
    padding: 0.75rem 3rem !important;
    line-height: 1.1 !important;
    font-size: 0.85rem !important;
    min-width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  /* Hero divider background to match next section */
  .hero-data-center-enhanced {
    background-color: #f7f7f7 !important; /* Match services-grid background */
  }
}
/* ============================================ */
/*              Large Desktop Styles            */
/* ============================================ */
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  .hero-data-center-enhanced {
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  .hero-data-center-enhanced .cs-content {
    max-width: 68.75rem;
  }
}
/* ============================================ */
/*              Dark Mode Support               */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  body.dark-mode .hero-data-center-enhanced .cs-graphic {
    display: none;
  }
  body.dark-mode .hero-data-center-enhanced .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*              Responsive Aspect Ratios        */
/* ============================================ */
@media only screen and (min-width: 64rem) and (max-width: 1023px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 16/9; /* Standard widescreen */
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* Desktop original */
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 21/9; /* Ultrawide */
  }
}
@media only screen and (min-width: 1920px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* 4K and larger */
  }
}
/* ============================================ */
/*              High-DPI Display Support        */
/* ============================================ */
/* Specific fix for 2048x1152 resolution with 125% scaling */
@media only screen and (min-width: 64rem) and (max-width: 2048px) {
  .hero-data-center-enhanced .hero__stage {
    /* Adjust for specific resolution */
    max-width: 100vw;
    max-height: 100vh;
  }
  .hero-data-center-enhanced .hero__overlay {
    /* Ensure overlay matches exactly */
    max-width: 100vw;
    max-height: 100vh;
  }
}
/* High-DPI and scaling specific fixes */
@media only screen and (min-width: 64rem) and (min-resolution: 1.25dppx) {
  .hero-data-center-enhanced .hero__stage {
    /* Force exact pixel alignment for high-DPI displays */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    /* Ensure SVG aligns perfectly with background */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* ============================================ */
/*              Animation Styles                */
/* ============================================ */
/* LED animation styles */
.led {
  transition: opacity 0.2s ease-in-out !important; /* Faster transitions */
  will-change: opacity; /* GPU acceleration */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__overlay * {
    animation: none !important;
    transition: none !important;
  }
}
/* ============================================ */
/*              Comparison Table                */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  #comparison-table {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #comparison-table .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #comparison-table .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    margin: auto;
    margin-bottom: 3rem;
  }
  #comparison-table .cs-topper {
    color: var(--primaryLight);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
  }
  #comparison-table .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center !important;
    max-width: 43.75rem;
    margin: 0 auto 1rem auto;
    color: var(--headerColor);
  }
  #comparison-table .cs-text {
    font-size: 1.1rem;
    line-height: 1.5em;
    text-align: center !important;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
    color: var(--bodyTextColor);
  }
  /* Table Container */
  #comparison-table .cs-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  /* Table Styles */
  #comparison-table .cs-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  /* Header Styles */
  #comparison-table .cs-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--primaryLight);
  }
  #comparison-table .cs-feature-header {
    background: var(--primary);
    text-align: left;
    padding-left: 1.5rem;
  }
  #comparison-table .cs-crafted-header {
    background: var(--primaryLight);
  }
  /* Bookmark specific styles */
  #comparison-table .cs-bookmark {
    text-align: center;
  }
  /* IONOS specific styles */
  #comparison-table .cs-ionos {
    text-align: center;
  }
  #comparison-table .cs-canva-header {
    background: #ff6b35;
  }
  #comparison-table .cs-wix-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-shopify-header {
    background: #96bf48;
  }
  #comparison-table .cs-squarespace-header {
    background: #000000;
  }
  #comparison-table .cs-webflow-header {
    background: #4353ff;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #121118;
  }
  #comparison-table .cs-magento-header {
    background: #f26322;
  }
  #comparison-table .cs-woocommerce-header {
    background: #96588a;
  }
  #comparison-table .cs-hubspot-header {
    background: #ff7a59;
  }
  #comparison-table .cs-ionos-header {
    background: #003d82;
  }
  #comparison-table .cs-carrd-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-bookmark-header {
    background: #ff6b35;
  }
  #comparison-table .cs-duda-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-prestashop-header {
    background: #df0067;
  }
  #comparison-table .cs-pagecloud-header {
    background: #ff6b35;
  }
  #comparison-table .cs-opencart-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-notion-header {
    background: #000000;
  }
  #comparison-table .cs-joomla-header {
    background: #5091cd;
  }
  #comparison-table .cs-framer-header {
    background: #0055ff;
  }
  #comparison-table .cs-drupal-header {
    background: #0678be;
  }
  #comparison-table .cs-wordpress-header {
    background: #4ecdc4;
  }
  #comparison-table .cs-godaddy-header {
    background: #1f2937;
  }
  #comparison-table .cs-weebly-header {
    background: #8b5cf6;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #059669;
  }
  #comparison-table .cs-magento-header {
    background: #dc2626;
  }
  #comparison-table .cs-google-sites-header {
    background: #ea4335;
  }
  /* Row Styles */
  #comparison-table .cs-comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
  }
  #comparison-table .cs-feature {
    text-align: left;
    font-weight: 600;
    color: var(--headerColor);
    background: #f8fafc;
    padding-left: 1.5rem;
  }
  /* Cell Content */
  #comparison-table .cs-check {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-x {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-value {
    font-weight: 500;
    color: var(--bodyTextColor);
  }
  /* Table Footnote */
  #comparison-table .cs-table-footnote {
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 0.9rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
  #comparison-table .cs-table-footnote strong {
    color: var(--primaryLight);
    font-weight: 700;
  }
  /* CTA Group */
  #comparison-table .cs-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem; /* Add top margin to create space */
  }
  #comparison-table .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #comparison-table .cs-button-solid.cs-primary {
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  #comparison-table .cs-button-solid.cs-secondary {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  #comparison-table .cs-button-solid.cs-secondary:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.25rem 1rem;
  }
  #comparison-table .cs-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1.1rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.5rem 1.25rem;
  }
  #comparison-table .cs-table-container {
    max-width: 70rem;
    margin: 0 auto 3rem auto;
  }
  #comparison-table .cs-table-footnote {
    margin-bottom: 2.5rem;
    padding: 0 2rem;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 1rem;
  }
  #comparison-table .cs-cta-group {
    margin-top: 1.5rem;
  }
}
/* ============================================ */
/*              Trust Badges                    */
/* ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.trust-badge img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  /* Remove the filter that was making icons look odd */
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-badges {
    gap: 0.5rem;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge {
    padding: 0.35rem 0.5rem;
    min-height: 44px; /* Better touch target */
  }
  .trust-badge span {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .trust-badge img {
    width: 18px;
    height: 18px;
  }
}
/* Extra small mobile devices */
@media (max-width: 480px) {
  .trust-badges {
    gap: 0.4rem;
  }
  .trust-badge {
    padding: 0.3rem 0.4rem;
  }
  .trust-badge span {
    font-size: 0.7rem;
  }
  .trust-badge img {
    width: 16px;
    height: 16px;
  }
}
.website-speed-test {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
}
.website-speed-test:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .website-speed-test {
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    position: fixed !important;
    transform: translateZ(0);
    will-change: transform;
  }
}
@media (max-width: 480px) {
  .website-speed-test {
    bottom: 15px;
    right: 15px;
    z-index: 9999;
  }
}
@media (max-width: 1024px) {
  .website-speed-test {
    z-index: 9999 !important;
    position: fixed !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.speed-test-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.speed-test-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: pulse-ripple 2s infinite;
  z-index: -1;
}
.speed-test-button:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

@keyframes pulse-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.speed-test-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .speed-test-text {
    font-size: 12px;
  }
}

.speed-test-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .speed-test-icon {
    font-size: 16px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.speed-test-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.speed-test-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInDesktop 0.3s ease;
}
@media (max-width: 768px) {
  .speed-test-modal-content {
    margin: 15% auto;
    padding: 30px 20px;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    animation: slideIn 0.3s ease;
  }
}
@media (max-width: 480px) {
  .speed-test-modal-content {
    margin: 20% auto;
    padding: 25px 20px;
    width: 92%;
    top: 45%;
    transform: translate(-50%, -50%);
  }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideInDesktop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.speed-test-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.speed-test-close:hover {
  color: #333;
}

.speed-test-header {
  text-align: center;
  margin-bottom: 30px;
}

.speed-test-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .speed-test-title {
    font-size: 24px;
  }
}

.speed-test-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .speed-test-subtitle {
    font-size: 14px;
  }
}

.speed-test-form .form-group {
  margin-bottom: 25px;
}
.speed-test-form .form-label {
  display: block;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  font-size: 16px;
}
.speed-test-form .url-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.speed-test-form .url-input-wrapper:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.speed-test-form .url-prefix {
  background: #f7fafc;
  color: #64748b;
  padding: 15px 12px;
  font-weight: 600;
  border-right: 1px solid #e2e8f0;
  font-size: 14px;
}
.speed-test-form .url-input {
  border: none;
  outline: none;
  padding: 15px;
  font-size: 16px;
  width: 100%;
  background: transparent;
}
.speed-test-form .url-input::placeholder {
  color: #a0aec0;
}

.speed-test-submit {
  margin-top: 30px;
}

.speed-test-button-submit {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.speed-test-button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.speed-test-button-submit:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .speed-test-button-submit {
    padding: 16px 20px;
    font-size: 16px;
  }
}

.button-text {
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .button-text {
    font-size: 16px;
  }
}

.button-subtext {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .button-subtext {
    font-size: 11px;
  }
}

.speed-test-privacy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}
.speed-test-privacy .privacy-link {
  color: #667eea;
  text-decoration: underline;
  font-weight: 600;
}
.speed-test-privacy .privacy-link:hover {
  color: #5a67d8;
}
@media (max-width: 768px) {
  .speed-test-privacy {
    font-size: 13px;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-448 {
    padding: var(--sectionPadding);
  }
  #services-448 .cs-container {
    width: 100%;
    /* changes at 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-448 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-448 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 16px - 20px */
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
    /* 24px - 60px */
    row-gap: clamp(1.5rem, 5vw, 3.75rem);
  }
  #services-448 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 22.5rem;
    /* changes at desktop */
    padding-top: 9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #services-448 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
    opacity: 0.4;
  }
  #services-448 .cs-item:hover .cs-flex:before {
    opacity: 1;
  }
  #services-448 .cs-picture {
    width: 100%;
    /* changes at desktop */
    height: 15.625rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    /* clips the corners of the image */
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-448 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it behave like a background image */
    object-fit: cover;
    /* positions top of image to the top of the container */
    object-position: top;
    transition: transform 0.9s, opacity 0.5s;
  }
  #services-448 .cs-flex {
    text-align: center;
    width: 88%;
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    border: 1px solid #dad9e3;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #services-448 .cs-flex:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #services-448 .cs-flex:before {
    /* hover border box */
    content: "";
    background: transparent;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    border: 4px solid var(--primary);
    border-radius: 0.75rem;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    transition: opacity 0.5s;
  }
  #services-448 .cs-wrapper {
    /* 80px - 120px */
    width: clamp(5rem, 9.2vw, 7.5rem);
    height: clamp(5rem, 9.2vw, 7.5rem);
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-flex by half its height, so we use the same clamp for height and half it for the margin top value */
    margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
    border-radius: 50%;
    border: 4px solid var(--primary);
    background-color: #fff;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  #services-448 .cs-icon {
    /* 48px - 64px */
    width: clamp(3rem, 4.3vw, 4rem);
    height: auto;
    display: block;
  }
  #services-448 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #services-448 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--bodyTextColor);
  }
  #services-448 .cs-link {
    display: inline-block;
    background-color: var(--primaryLight);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2em;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
    min-height: 44px;
    min-width: 44px;
  }
  #services-448 .cs-link:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 121, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  #services-448 .cs-link:focus {
    outline: 3px solid var(--primary-alt);
    outline-offset: 3px;
  }
  #services-448 .cs-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-448 .cs-container {
    max-width: 80rem;
  }
  #services-448 .cs-card-group {
    flex-direction: row;
  }
  #services-448 .cs-item {
    width: 47%;
  }
  #services-448 .cs-link {
    padding: 0.875rem 1.5rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-448 .cs-card-group {
    flex-wrap: nowrap;
  }
  #services-448 .cs-item {
    width: 100%;
    /* 144px - 274px */
    padding-top: clamp(9rem, 17.5vw, 17.125rem);
  }
  #services-448 .cs-picture {
    /* 224px - 428px */
    height: clamp(14rem, 28vw, 26.75rem);
  }
}
/* ===========================================
   Managed vs DIY (component styles)
   =========================================== */
#managed-vs-diy {
  padding: var(--sectionPadding);
  position: relative;
  z-index: 1;
  text-align: center;
  /* Grid */
  /* Cards */
  /* Visual emphasis per side */
  /* Badge + VS pill */
  /* CTA */
  /* Tablet & up */
}
#managed-vs-diy .mv-container {
  max-width: clamp(64rem, 92vw, 80rem);
  margin: 0 auto;
}
#managed-vs-diy .mv-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
#managed-vs-diy .mv-head .cs-title {
  max-width: 28ch;
  margin-inline: auto;
}
#managed-vs-diy .mv-explanation {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 23, 31, 0.1);
}
#managed-vs-diy .mv-explanation p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--bodyTextColor);
  margin: 0;
  opacity: 0.8;
}
#managed-vs-diy .mv-explanation p strong {
  color: var(--headerColor);
  font-weight: 700;
}
#managed-vs-diy .mv-explanation p em {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}
#managed-vs-diy .mv-cost-breakdown {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-cost-breakdown {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
#managed-vs-diy .mv-cost-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.5;
  /* First item (DIY) gets a subtle red tint */
  /* Second item (Managed) gets a subtle blue tint */
}
#managed-vs-diy .mv-cost-item strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-cost-item .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-cost-item .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy .mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  justify-items: center;
}
#managed-vs-diy .mv-card {
  background: #fff;
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
}
#managed-vs-diy .mv-card.mv-in {
  transform: translateY(0);
  opacity: 1;
}
#managed-vs-diy .mv-card .mv-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
#managed-vs-diy .mv-card .mv-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
#managed-vs-diy .mv-card .mv-card-title {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.25;
  margin: 0;
  color: var(--headerColor);
  font-weight: 800;
  text-align: center;
}
#managed-vs-diy .mv-card .mv-subtitle {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin: 0.5rem 0 0 0;
  font-weight: 700;
  text-align: center;
  color: var(--primaryLight);
  background: linear-gradient(135deg, var(--primaryLight), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 3px 6px rgba(25, 121, 191, 0.3);
  letter-spacing: 0.02em;
}
#managed-vs-diy .mv-card .mv-subtitle .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-subtitle.boring {
  color: #6b7280;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: normal;
}
#managed-vs-diy .mv-card .mv-subtitle.boring .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-price-line {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.4;
  margin: 0.75rem 0 0 0;
  font-weight: 600;
  text-align: center;
  color: var(--bodyTextColor);
  opacity: 0.9;
  letter-spacing: 0.01em;
  /* Make the managed pricing line more prominent */
  /* Make the DIY pricing line more muted */
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-price-line {
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-price-line {
  color: #6b7280;
  font-weight: 500;
  opacity: 0.8;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  text-align: left;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.5;
  /* Managed card styling */
  /* DIY card styling */
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.9));
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.9));
}
#managed-vs-diy .mv-card .mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
#managed-vs-diy .mv-card .mv-li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.5rem;
  color: var(--bodyTextColor);
  font-size: var(--bodyFontSize);
  line-height: 1.55;
  text-align: left;
}
#managed-vs-diy .mv-card .mv-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  background: var(--mv-yes);
  -webkit-mask: var(--mv-check) center/70% no-repeat;
  mask: var(--mv-check) center/70% no-repeat;
  opacity: 0.95;
}
#managed-vs-diy .mv-card .is-no .mv-icon {
  background: var(--mv-no);
  -webkit-mask: var(--mv-x) center/70% no-repeat;
  mask: var(--mv-x) center/70% no-repeat;
}
#managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 26%, #ffffff);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--primary) 18%, transparent);
  position: relative;
}
#managed-vs-diy .mv-card.is-managed::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.1;
}
#managed-vs-diy .mv-card.is-diy {
  border-color: rgba(20, 23, 31, 0.12);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.035) 0%, rgba(2, 6, 23, 0.02) 100%), #fff;
}
#managed-vs-diy .mv-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--bodyTextColorWhite);
  background: var(--primary);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 30%, transparent);
}
#managed-vs-diy .mv-badge.alt {
  background: #64748b; /* slate */
  color: #fff;
}
#managed-vs-diy .mv-divider {
  display: grid;
  place-items: center;
}
#managed-vs-diy .mv-pill {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: radial-gradient(70% 70% at 30% 30%, color-mix(in srgb, var(--primary) 38%, transparent), transparent), #0b1020;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: scale(0.9);
  transition: transform 0.4s ease;
  position: relative;
}
#managed-vs-diy .mv-pill::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary), var(--primaryLight));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.3;
}
#managed-vs-diy .mv-pop .mv-pill {
  transform: scale(1);
}
#managed-vs-diy .mv-cta {
  text-align: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}
#managed-vs-diy .mv-btn {
  --btnH: 3.125rem;
  display: inline-grid;
  place-items: center;
  height: var(--btnH);
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
  color: var(--bodyTextColorWhite);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}
#managed-vs-diy .mv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
#managed-vs-diy .mv-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.02);
  box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
}
#managed-vs-diy .mv-btn:hover::before {
  left: 100%;
}
#managed-vs-diy .mv-btn:active {
  transform: translateY(1px) scale(0.98);
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
  }
  #managed-vs-diy .mv-card {
    max-width: none;
  }
}

/* Dark theme */
body.dark-mode #managed-vs-diy {
  background: linear-gradient(180deg, #0b1020 0%, #0a0f1a 100%);
}
body.dark-mode #managed-vs-diy .mv-explanation {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode #managed-vs-diy .mv-explanation p {
  color: #ffffff !important;
  opacity: 1 !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p strong {
  color: #ffffff !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p em {
  color: var(--primaryLight) !important;
  font-style: italic;
  font-weight: 600;
}
body.dark-mode #managed-vs-diy .mv-cost-item {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  /* First item (DIY) gets a subtle red tint */
  /* Second item (Managed) gets a subtle blue tint */
}
body.dark-mode #managed-vs-diy .mv-cost-item strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--bodyTextColorWhite);
  /* Managed card styling */
  /* DIY card styling */
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
.mv-card.is-managed body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.9));
}
.mv-card.is-diy body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.9));
}
body.dark-mode #managed-vs-diy .mv-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.5);
}
body.dark-mode #managed-vs-diy .mv-card .mv-card-title {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-subtitle {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-price-line {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-li {
  color: color-mix(in srgb, #ffffff 82%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 35%, #0f172a);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 30%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card.is-diy {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(2, 6, 23, 0.35) 100%), #0f172a;
  border-color: rgba(255, 255, 255, 0.07);
}

/* ============== portfolio-3cards ============== */
.p3c {
  padding: var(--sectionPadding);
}
.p3c .cs-content {
  text-align: center;
  width: 100%;
  max-width: 56.25rem;
  margin: auto;
  margin-bottom: 3rem;
}
.p3c .cs-topper {
  color: var(--primaryLight);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.p3c .cs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2em;
  text-align: center !important;
  max-width: 43.75rem;
  margin: 0 auto 1rem auto;
  color: var(--headerColor);
}
.p3c .cs-text {
  font-size: 1.1rem;
  line-height: 1.5em;
  text-align: center !important;
  width: 100%;
  max-width: 40.625rem;
  margin: 0 auto;
  color: var(--bodyTextColor);
}
.p3c .p3c-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}
.p3c .p3c-row:not(:last-child) {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 900px) {
  .p3c .p3c-row {
    grid-template-columns: 1fr;
  }
}
.p3c .p3c-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.p3c .p3c-media img {
  display: block;
  width: 100%;
  height: auto;
}
.p3c .p3c-media .p3c-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  user-select: none;
}
.p3c .p3c-copy .p3c-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--headerColor);
  margin: 0 0 0.5rem 0;
}
.p3c .p3c-copy .p3c-lede {
  margin: 0 0 1rem 0;
  color: var(--bodyTextColor);
  max-width: 48ch;
}
.p3c .p3c-copy .p3c-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 0 0;
}
.p3c .p3c-copy .p3c-meta {
  margin: 0.6rem 0 0 0;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--bodyTextColor) 80%, black 20%);
  opacity: 0.8;
}
.p3c .p3c-outline {
  background: transparent;
  color: var(--headerColor);
  border: 2px solid currentColor;
}
body.dark-mode .p3c .cs-title,
body.dark-mode .p3c .p3c-copy .p3c-title, [data-theme=dark] .p3c .cs-title,
[data-theme=dark] .p3c .p3c-copy .p3c-title, .dark .p3c .cs-title,
.dark .p3c .p3c-copy .p3c-title {
  color: var(--bodyTextColorWhite);
}
body.dark-mode .p3c .cs-text,
body.dark-mode .p3c .p3c-copy .p3c-lede, [data-theme=dark] .p3c .cs-text,
[data-theme=dark] .p3c .p3c-copy .p3c-lede, .dark .p3c .cs-text,
.dark .p3c .p3c-copy .p3c-lede {
  color: color-mix(in oklab, var(--bodyTextColorWhite) 88%, transparent);
}
body.dark-mode .p3c .p3c-copy .p3c-meta, [data-theme=dark] .p3c .p3c-copy .p3c-meta, .dark .p3c .p3c-copy .p3c-meta {
  color: color-mix(in oklab, var(--bodyTextColorWhite) 72%, black 28%);
  opacity: 1;
}
body.dark-mode .p3c .p3c-outline, [data-theme=dark] .p3c .p3c-outline, .dark .p3c .p3c-outline {
  color: var(--bodyTextColorWhite);
  border-color: color-mix(in oklab, var(--bodyTextColorWhite) 75%, transparent);
  background: color-mix(in oklab, var(--bodyTextColorWhite) 8%, transparent);
}
body.dark-mode .p3c .p3c-outline:hover, [data-theme=dark] .p3c .p3c-outline:hover, .dark .p3c .p3c-outline:hover {
  background: color-mix(in oklab, var(--bodyTextColorWhite) 16%, transparent);
  border-color: var(--bodyTextColorWhite);
}

/*# sourceMappingURL=root.css.map */
