* {
  box-sizing: border-box!important;
  padding:0;
  margin:0;
}

/* Visibility and opacity handled by hidden.css */

/* ==============================================
     FONTS
============================================== */

@font-face {
  font-family: 'Base Neue';
  src: url('fonts/BaseNeue-WideExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MONTECHV01';
  src: url('fonts/MONTECHV01-Medium.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}




/* ==============================================
     WEBFLOW RESET - Reset all Webflow defaults
============================================== */

/* Reset Webflow button defaults */
button,
.w-button,
[class*="w-button"],
[class*="button"] {
  all: unset;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: inherit;
  vertical-align: baseline;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}


/* Reset Webflow icon/image defaults */

svg,
.w-icon,
[class*="w-icon"],
[class*="icon"],
[class*="arrow"] {
  all: unset;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  max-width: 100%;
  height: auto;
  background: none;
  padding: 0;
  margin: 0;
}


/* Reset Webflow dropdown defaults */
.w-dropdown,
[class*="w-dropdown"],
[class*="dropdown"] {
  all: unset;
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Reset Webflow slider defaults */
.w-slider,
[class*="w-slider"],
[class*="slider"] {
  all: unset;
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Reset Webflow tabs defaults */
.w-tabs,
[class*="w-tabs"],
[class*="tabs"] {
  all: unset;
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 0;
}

/* Reset any Webflow class with w- prefix */
[class^="w-"],
[class*=" w-"] {
  box-sizing: border-box;
}

/* Remove Webflow default focus styles */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

/* Reset Webflow default transitions; exclude .team-slider-track so all carousels have slide animation */
/*
[class*="w-"]:not(.team-slider-track) {
  transition: none !important;
}
  */



span {
  all:unset;
  padding:0;
  margin:0;
  height: unset;
  width: unset;
}


/* ==============================================
     ROOT
============================================== */

:root {
  --black: #100F11;
  --darkgrey: #1C1B1E;
  --white: #FFFEFB;
  --creme: #F4F2EF;
  --soft-blue: #444A69;
  --mid-grey: #777777;
  --soft-grey: #B6B6B6;
  --orange: #E06C54;
  --green: #83CD46;
  --purple: #A061C5;
  --marker-purple: #7249B8;
  --marker-red: #FE3F4F;
  --marker-green: #C0DD32;
  --blue: #5547AC;
  --pink: #D5507D;
  --turquoise: #60B08B;
  --peach: #C76767;
  
  /* 3D Cube Variables */
  --cell-size: clamp(100px, 10vw, 145px);
  --cube-half: calc(var(--cell-size) / 2);
  --color-purple: #7249b8;
  --color-red: #fe3f4f;
  --color-orange: #fd8602;
  --color-green: #c0dd32;
  --color-teal: #3dd2cb;
  --color-navy: #363c9f;
  --color-pink: #f5417f;
  --primary-font: 'Inter', sans-serif;
  --secondary-font: Baseneue, Arial, sans-serif!important;
  --tertiary-font: Montech, Arial, sans-serif!important;
  --underline-motion: fadein 2.5s var(--ease-standard);
  --cta-motion-easing: var(--ease-standard);
  --motion-duration: 0.6s;
  --transition-fast: 0.2s;
  --transition-standard: 0.3s;
  --transition-slow: 0.5s;
  --ease-standard: cubic-bezier(0.59, 0, 0, 0.97);
  --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
  --button-width: 1px;
  --padding-sides-desktop: 3.5vw;
  --page-width: 1728px;
  --padding-sides-mobile: 30px;
  --border-radius: 50px;
  --button-padding-y: 1rem;
  --button-padding-x: 1.5rem;
  --button-padding-top: 1.1rem;
  
  /* Hover & Interaction Variables */
  --hover-opacity: 0.5;
  --hover-opacity-light: 0.7;
  --card-hover-transition: opacity var(--transition-standard) ease;
  --icon-hover-transition: opacity var(--transition-standard) ease;
  --slider-track-transition: transform 0.5s var(--ease-smooth);
}

/* ==============================================
     Visibility Hidden
============================================== */

/* Visibility handled by hidden.css */

/* ==============================================
     Hide Scrollbar
============================================== */
  
body::-webkit-scrollbar{display: none;} /* Chrome, Safari, Opera */
body {-ms-overflow-style: none;} /* IE & Edge */
html {scrollbar-width: none;} /* Firefox */


/* ==============================================
       Page Styles
============================================== */


html,
body {
  width: 100%;
  height: auto !important;
  min-height: 100%;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--primary-font);
}

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

body {
  cursor: default;
  width: 100%;
  max-width: 100%;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--black);

  margin: auto 0;
}



img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
/*  user-drag: none;*/
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
}


/* ==============================================
       Lenis Smooth Scrolling
============================================== */


html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

    

/* ==============================================
       Cursor Style
============================================== */

#cursor {
  position: fixed;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  border-radius: 100%;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 3.6vw;
    height: 3.6vw;
    border-radius: 100%;
    border: solid 0.12vw var(--creme);
    transition: all var(--transition-slow) var(--ease-smooth);
  }

  #cursor.change .cursor__circle {
    width: 0.2vw;
    height: 0.2vw;
    background-color: var(--creme);
    border-color: transparent;
  }
}


/* ==============================================
       Reset Styles
============================================== */

h1, h2, h3, h4, h5, h6, p  {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}

a:not(.w-richtext a) {
  text-decoration: none;
  color: inherit;
  background: none;
/*  margin: 0;
  padding: 0;
  */
  border: none;
}

.w-richtext a {
  display: inline-flex;
}

nav a, li a {
  transition: opacity var(--transition-standard) var(--ease-standard);
}
nav a:hover, li a:hover {
  opacity: 0.6;
}

a:focus, a:active {
  outline: none;
}

.text-link {
  display: inline-block;
  overflow:visible;
  align-self:start;
  margin: 0 auto;
}

.text-link:after {
  display: block;
  content: "";
  border-bottom: solid 1px var(--black);
  transform: scaleX(1);
  transition: transform var(--motion-duration) var(--cta-motion-easing);
  transform-origin: 0 50%;
  margin-top: 10px;
  animation: var(--underline-motion);
}

.text-link:hover:after {
  transform: scaleX(0);
  transform-origin: 100% 0%;
}

.dark-mode .text-link:after {
  border-bottom: solid 1px var(--white);
}

            
/* ==============================================
       Typography System                   
============================================== */

.big-title {
  font-family: var(--secondary-font);
  font-size: clamp(3rem, 8.5vw + 1rem, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  font-family: var(--secondary-font);
  font-size: clamp(3rem, 3.6vw + 1rem, 4.6875rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}


h2 {
  font-family: var(--secondary-font);
  font-size: clamp(2rem, 3.375vw + 1rem, 4.375rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  font-family: var(--secondary-font);
  font-size: clamp(1.8rem, 2vw + 1rem, 3.125rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

h4 {
  font-family: var(--secondary-font);
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.1875rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

h5 {
  font-family: var(--primary-font);
  font-size: clamp(1.2rem, 1.4vw + 1rem, 1.75rem);
  line-height: 1.36;
  letter-spacing: -0.05em;
  font-weight: 500;
}

h6 {
  font-family: var(--primary-font);
  font-size: clamp(1rem, 0.5vw + 1rem, 1.375rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
  font-weight: 500;
  color: var(--soft-blue);
}

.text-link{
  font-family: var(--primary-font);
  font-size: clamp(1rem, 1vw + 1rem, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
  font-weight: 500;
}

p, .nav a {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.02em
}

p {
  color: var(--soft-blue);
}


.indicator, .indicator *, .mark, .audit-list li::before  {
  font-family: var(--tertiary-font)!important;
  font-size: clamp(13px, 1.3vw + 1rem, 13px);
  line-height: 1.2;
  font-weight: 100;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-feature-settings: "salt" 1!important;
}

@media (max-width: 768px) {
  .big-cta .indicator * {
    font-size: 3.3vw;
    white-space: nowrap;
    grid-gap: 0vw!important;
    padding: 0!important;
  }
}

.buttons {
  display: flex;
  grid-gap: 0.5rem;
}



button {
all: unset;
  font-family: var(--tertiary-font);
  font-size: 15px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 0.03em;
  font-feature-settings: "salt" 1;
  grid-gap: 0.5rem;
  padding: var(--button-padding-y) var(--button-padding-x);
  padding-top: var(--button-padding-top);
  border-radius: var(--border-radius);
  overflow: clip;
  transition: 0.1s ease;
}

.hero .buttons button {
  width: 200px!important;
}
.btn-arrow {
  display: inline-block;
  width: 11px;
  height: 11px;
  line-height: 1;
  padding:0;
  margin:0;
  margin-left: 0.5em;
  position: relative;
}

.btn-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.32422 10.8496L3.99496 9.52754L5.73377 7.79592C5.91101 7.61389 6.12656 7.41989 6.38044 7.21392C6.63431 7.00794 6.89777 6.80197 7.17081 6.59599C7.44384 6.39002 7.70011 6.20081 7.93962 6.02836C8.18392 5.85113 8.38271 5.70742 8.53599 5.59725L8.48569 6.03555C8.30367 6.07387 8.06416 6.12177 7.76718 6.17925C7.47019 6.23673 7.16123 6.28703 6.84029 6.33014C6.51935 6.37325 6.22955 6.39481 5.97088 6.39481L0 6.39481L0 4.46199L5.97088 4.46199C6.22955 4.46199 6.51935 4.48355 6.84029 4.52666C7.16123 4.56977 7.47019 4.62007 7.76718 4.67755C8.06416 4.73503 8.30367 4.78293 8.48569 4.82125L8.53599 5.27392C8.33001 5.12064 8.05698 4.92185 7.71688 4.67755C7.37678 4.43325 7.0271 4.1698 6.66784 3.88718C6.30858 3.59977 5.99723 3.32434 5.73377 3.06088L3.98777 1.32207L5.31703 0L10.749 5.42481L5.32422 10.8496Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.32422 10.8496L3.99496 9.52754L5.73377 7.79592C5.91101 7.61389 6.12656 7.41989 6.38044 7.21392C6.63431 7.00794 6.89777 6.80197 7.17081 6.59599C7.44384 6.39002 7.70011 6.20081 7.93962 6.02836C8.18392 5.85113 8.38271 5.70742 8.53599 5.59725L8.48569 6.03555C8.30367 6.07387 8.06416 6.12177 7.76718 6.17925C7.47019 6.23673 7.16123 6.28703 6.84029 6.33014C6.51935 6.37325 6.22955 6.39481 5.97088 6.39481L0 6.39481L0 4.46199L5.97088 4.46199C6.22955 4.46199 6.51935 4.48355 6.84029 4.52666C7.16123 4.56977 7.47019 4.62007 7.76718 4.67755C8.06416 4.73503 8.30367 4.78293 8.48569 4.82125L8.53599 5.27392C8.33001 5.12064 8.05698 4.92185 7.71688 4.67755C7.37678 4.43325 7.0271 4.1698 6.66784 3.88718C6.30858 3.59977 5.99723 3.32434 5.73377 3.06088L3.98777 1.32207L5.31703 0L10.749 5.42481L5.32422 10.8496Z' fill='black'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  transition: background-color var(--motion-duration) var(--cta-motion-easing);
}



/* ==============================================
       Grid Settings
============================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.736vw; /* 30px / 1728px * 100 = 1.736vw */

  padding: 0 4.63vw;
}

.container {
  width: 100%;
  max-width: var(--page-width);
  padding: 0 4.63vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-gap: 70px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 50px;
}


.grid-overlay {
  position: fixed;
  position: fixed;
  top: 4.63vw;
  left: 4.63vw;
  width: calc(100% - 9.26vw);
  height: calc(100% - 9.26vw);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1.736vw; 
  z-index: 2;
  pointer-events: none;
}

.grid-overlay div {
  background: rgba(148, 148, 148, 0.1);
}



@media (max-width: 768px) {

 
  .grid {
    padding: 0 7vw;
    grid-template-columns: repeat(8, 1fr)!important;
  }
  .grid-overlay {
    position: fixed;
    top: 7vw;
    left: 7vw;
    width: calc(100% - 14vw);
    height: calc(100% - 14vw);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 1.736vw; /* 30px in vw based on 1728px container */
    z-index: 9999;
    pointer-events: none;
  }

  .text-block {
    grid-gap: 30px;
  }

}



.page-wrapper {
  position: relative;
  z-index: 1;
  transform-origin: center center;
  margin: 0 auto;
  overflow-x: hidden;
}

.light-mode .page-wrapper {
  background: var(--white);
}


.dark-mode .page-wrapper {
  background: var(--black);
}

.indicator {
  display: flex;
  grid-gap: 0.75rem;
  text-transform: capitalize;
}

.indicator::before {
  content: '';
  width: 11px;
  height: 11px;
  background: none;
  margin-top: 1.5px;
  display: block;
  flex-shrink: 0;
}

.indicator.orange::before {
  background: var(--orange);
}

.indicator.purple::before {
  background: var(--purple);
}

.indicator.green::before {
  background: var(--green);
}

.indicator.blue::before {
  background: var(--blue);
}

.indicator.pink::before {
  background: var(--pink);
}

.indicator.turquoise::before {
  background: var(--turquoise);
}

.indicator.peach::before {
  background: var(--peach);
}

span.orange {
  color: var(--orange);
}

span.purple {
  color: var(--purple);
}

span.blue {
  color: var(--blue);
}

span.pink {
  color: var(--pink);
}

span.turquoise {
  color: var(--turquoise);
}

span.peach {
  color: var(--peach);
}

div[data-color="orange"] {
  background: var(--orange)!important;
}

div[data-color="purple"] {
  background: var(--purple)!important;
}

div[data-color="blue"] {
  background: var(--blue)!important;
}

div[data-color="pink"] {
  background: var(--pink)!important;
}

div[data-color="turquoise"] {
  background: var(--turquoise)!important;
}

div[data-color="peach"] {
  background: var(--peach)!important;
}




/* ==============================================
       Theme Styles
============================================== */

section {
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*z-index: 2;*/
  position: relative;
  /* opacity handled by hidden.css */
}

@media (max-width: 768px) {
  section {
    padding: 120px 0;
  }
}

.light {
  background: var(--creme);
  color: var(--black);
}

.dark {
  background: var(--black);
  color: var(--creme);
}

.site-container {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
/*  margin: 0;*/
}



/* ==============================================
       Header
============================================== */

/* Above .page-wrapper and page transition so transition never covers header */
.header {
  width:100vw;
  position:fixed;
  top:0;
  padding: 50px 0;
  z-index: 1000;
  background: transparent;
  transition: 0.7s var(--ease-smooth);
}

.dark-mode .hero {
  background: var(--black);
  color: var(--white);
}

.dark-mode section {
  color: var(--white);
  background: var(--black);
}

.dark-mode footer {
  color: var(--white)!important;
  background: var(--black)!important;
}

.dark-mode ul{
  color: var(--mid-grey)!important;
}

.dark-mode p {
  color: var(--mid-grey)!important;
}

.dark-mode .footer ul h5 {
  color: var(--white)!important;
}


.header .grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width:var(--page-width);
  margin: 0 auto;
}

.header.scroll-deep {
  padding: 20px 0;
  background: var(--white)!important;
  box-shadow: 0 0 10vw 0 rgba(0, 0, 0, 0.1);
}


.header.hidden {
  top: 0!important;
}

.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  width: 168px; /* Fixed width to prevent layout shift */
  min-width: 168px;
  max-width: 168px;
  height: 40px; /* Fixed height to prevent layout shift */
  min-height: 40px;
  max-height: 40px;
}

.logo img,
.logo svg {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  opacity: 1;
  object-fit: contain;
}

.logo .logo-text {
  fill: #100F11;
  transition: fill 0.5s ease;
}

.dark-mode .logo .logo-text {
  fill: #FFFEFB;
}

.light-mode .logo .logo-text {
  fill: #100F11;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: var(--black);
  transition: color 0.5s ease;
}

/* Header Dark Theme Styles */
.header.dark-theme .nav {
  color: #FFFEFB;
}

.header.dark-theme .logo .logo-text {
  fill: #FFFEFB;
}

.header.dark-theme .burger-line {
  background-color: #FFFEFB;
  transition: background-color 0.5s ease;
}

.header.dark-theme button {
  transition: all 0.5s ease!important;
}

/* Header dark theme styles now handled by .dark-mode selectors above */

.header.dark-theme.scroll-deep {
  background: rgba(16, 15, 17, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.header-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1vw;
}


button {
  cursor: pointer;
}

button:not(.scroll-to-top, .testimonial-arrow, .text-link) {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--transition-standard) var(--ease-standard);
}

/*
button:not(.scroll-to-top, .testimonial-arrow) img {
  width: 0.7vw;
  height: 0.7vw;
  transition: opacity var(--transition-fast) var(--ease-standard);
}
  */

button.filled img {
  transition: opacity var(--transition-fast) var(--ease-standard);
}

/* ==============================================
       Button Styles - Light Mode
============================================== */

.light-mode button.hollow {
  background: transparent;
  color: var(--black);
  border-width: 0.09vw;
  border: var(--button-width) solid var(--black);
  position: relative;
  overflow: visible;
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1), color var(--motion-duration) var(--cta-motion-easing), border-color var(--motion-duration) var(--cta-motion-easing);
  z-index: 0;
  border-radius: var(--border-radius);
  overflow: clip;
}

.light-mode button.hollow::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--button-width));
  background: var(--black);
  border: var(--button-width) solid var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-duration) var(--cta-motion-easing);
  z-index: -1;
}

.light-mode button.hollow:hover::before {
  transform: scaleX(1);
}

.light-mode button.hollow:hover {
  color: var(--white)!important;
}

.light-mode button.hollow,
.light-mode button.hollow * {
  position: relative;
  z-index: 1;
}

.light-mode button.filled {
  background: var(--black);
  color: var(--white);
  border: var(--button-width) solid var(--black);
  position: relative;
  overflow: visible;
  transition: background-color 1s cubic-bezier(0.19, 1, 0.22, 1), color 1s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1), color var(--motion-duration) var(--cta-motion-easing), border-color var(--motion-duration) var(--cta-motion-easing);
  z-index: 0;
  border-radius: var(--border-radius);
  overflow: clip;
}

.light-mode button.filled::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--button-width));
  background: var(--white);
  border: var(--button-width) solid var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-duration) var(--cta-motion-easing);
  z-index: -1;
}

.light-mode button.filled:hover::before {
  transform: scaleX(1);
}

.light-mode button.filled:hover {
  color: var(--black);
}

.light-mode button.filled,
.light-mode button.filled * {
  position: relative;
  z-index: 1;
}

.light-mode .big-cta button.filled {
  background: var(--black);
  color: var(--white);
  border: var(--button-width) solid var(--white);
}

.light-mode .big-cta button.filled::before {
  background: var(--white);
  border: var(--button-width) solid var(--white);
}

.light-mode .big-cta button.filled:hover::before {
  transform: scaleX(1);
}

.light-mode .big-cta button.filled:hover {
  color: var(--black);
}

/* ==============================================
       Button Styles - Dark Mode (Opposite Colors)
============================================== */

.dark-mode button.hollow {
  background: transparent;
  color: var(--white);
  border-width: 0.09vw;
  border: var(--button-width) solid var(--white);
  position: relative;
  overflow: visible;
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1), color var(--motion-duration) var(--cta-motion-easing), border-color var(--motion-duration) var(--cta-motion-easing);
  z-index: 0;
  border-radius: var(--border-radius);
  overflow: clip;
}

.dark-mode button.hollow::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--button-width));
  background: var(--white);
  border: var(--button-width) solid var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-duration) var(--cta-motion-easing);
  z-index: -1;
}

.dark-mode button.hollow:hover::before {
  transform: scaleX(1);
}

.dark-mode button.hollow:hover {
  color: var(--black)!important;
}

.dark-mode button.hollow,
.dark-mode button.hollow * {
  position: relative;
  z-index: 1;
}

.dark-mode button.filled {
  background: var(--white);
  color: var(--black);
  border: var(--button-width) solid var(--white);
  position: relative;
  overflow: visible;
  transition: background-color 1s cubic-bezier(0.19, 1, 0.22, 1), color 1s cubic-bezier(0.19, 1, 0.22, 1), border-color 1s cubic-bezier(0.19, 1, 0.22, 1), color var(--motion-duration) var(--cta-motion-easing), border-color var(--motion-duration) var(--cta-motion-easing);
  z-index: 0;
  border-radius: var(--border-radius);
  overflow: clip;
}

.dark-mode button.filled::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--button-width));
  background: var(--black);
  border: var(--button-width) solid var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-duration) var(--cta-motion-easing);
  z-index: -1;
}

.dark-mode button.filled:hover::before {
  transform: scaleX(1);
}

.dark-mode button.filled:hover {
  color: var(--white);
}

.dark-mode button.filled,
.dark-mode button.filled * {
  position: relative;
  z-index: 1;
}

.dark-mode .big-cta button.filled {
  background: var(--white);
  color: var(--black);
  border: var(--button-width) solid var(--white);
}

.dark-mode .big-cta button.filled::before {
  background: var(--black);
  border: var(--button-width) solid var(--white);
}

.dark-mode .big-cta button.filled:hover::before {
  transform: scaleX(1);
}

.dark-mode .big-cta button.filled:hover {
  color: var(--white);
}

button.mid-cta {
  padding: var(--button-padding-y) var(--button-padding-x);
  padding-top: var(--button-padding-top);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  button.mid-cta {
    padding: 1rem 1.5rem;
    padding-top: 1.2rem;
    font-size: 16px;
  }
}
/*
  .container.big-cta {
   width: 100%!important;
   border-radius: 0!important;
  }

}

/* ==============================================
       Hero
============================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
/*  padding: 170px 0;*/
  padding-bottom: 250px;
  /* opacity handled by hidden.css */
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: start;
  grid-column: 2 / 6;
  perspective: 1200px;
  perspective-origin: center center;
  z-index: 99999;
  position: relative;
}

.logo-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin: 0 auto;
  position: relative;
}

.logo-cube-shadow {
  position: absolute;
  bottom: -100px;
  left: 60%;
  transform: translateX(-50%);
  width: 80%;
  height: 50px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(25px);
  background: linear-gradient(to right, rgba(85, 71, 172, 0.5) 0%, rgba(245, 65, 127, 0.4) 100%);
}

@media (max-width: 950px) {
  .hero-image {
    perspective: 800px; /* Lower than desktop to reduce GPU cost on mobile */
  }
  .logo-cube-shadow {
    all:unset;
  }
  .logo-cube {
    zoom: 80%;
  }
  .logo-grid,
  .square {
    will-change: auto; /* Avoid extra compositor layers on mobile */
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    perspective: 600px;
  }
  .logo-grid,
  .square {
    will-change: auto;
  }
}

/* 3D Cube Logo Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, var(--cell-size));
  grid-template-rows: repeat(4, var(--cell-size));
  gap: 0;
  width: calc(3 * var(--cell-size));
  height: calc(4 * var(--cell-size));
  transform-style: preserve-3d;
  overflow: visible;
  will-change: transform;
  margin: 0;
  padding: 0;
  transform-origin: center center;
}

.square {
  position: relative;
  width: var(--cell-size);
  height: var(--cell-size);
  transform-style: preserve-3d;
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform;
  opacity: 1;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.square__face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: visible;
  opacity: 1;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

.square__face--front {
  transform: translateZ(var(--cube-half));
  background: var(--square-face-front);
}

.square__face--back {
  transform: rotateY(180deg) translateZ(var(--cube-half));
  background: var(--square-face-back);
}

.square__face--right {
  transform: rotateY(90deg) translateZ(var(--cube-half));
  background: var(--square-face-side);
}

.square__face--left {
  transform: rotateY(-90deg) translateZ(var(--cube-half));
  background: var(--square-face-side-dark);
}

.square__face--top {
  transform: rotateX(90deg) translateZ(var(--cube-half));
  background: var(--square-face-top);
}

.square__face--bottom {
  transform: rotateX(-90deg) translateZ(var(--cube-half));
  background: var(--square-face-bottom);
}

.square {
  --square-face-front: var(--square-color);
  --square-face-back: color-mix(in srgb, var(--square-color) 100%, #000000 10%);
  --square-face-side: color-mix(in srgb, var(--square-color) 90%, #ffffff 10%);
  --square-face-side-dark: color-mix(in srgb, var(--square-color) 85%, #ffffff 10%);
  --square-face-top: color-mix(in srgb, var(--square-color) 100%, #000000 10%);
  --square-face-bottom: color-mix(in srgb, var(--square-color) 100%, #000000 10%);
}

.square--purple {
  grid-column: 2;
  grid-row: 1;
  --square-color: var(--color-purple);
}

.square--red {
  grid-column: 1;
  grid-row: 2;
  --square-color: var(--color-red);
}

.square--orange {
  grid-column: 2;
  grid-row: 2;
  --square-color: var(--color-orange);
}

.square--green {
  grid-column: 3;
  grid-row: 2;
  --square-color: var(--color-green);
}

.square--teal {
  grid-column: 2;
  grid-row: 3;
  --square-color: var(--color-teal);
}

.square--navy {
  grid-column: 2;
  grid-row: 4;
  --square-color: var(--color-navy);
}

.square--pink {
  grid-column: 3;
  grid-row: 4;
  --square-color: var(--color-pink);
}

.note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}


.note::before {
  content: '';
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: -1.5px !important;
  background: var(--green);

  animation: pulse-circle 1.6s ease infinite;
}

@keyframes pulse-circle {
  0% {
    box-shadow: 0 0 0 0 rgb(111, 189, 0);
  }
  59% {
    box-shadow: 0 0 0 10px rgba(110, 189, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(110, 189, 0, 0);
  } 
}


.hero-text {
  grid-column: 7 / 12;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2vw;
}

.hero-badges {
  display: flex;
  grid-gap: 10px;
  position: relative;
}

.frame {
  position: relative;
  z-index:999!important;
/*
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  */
}


.hero-badges .frame {
  padding: 0.8rem 1.5rem;
}

.hero-badges .frame img {
  width: 100%;
  object-fit: contain;
}

.frame {
  position: relative;
  background: rgba(216, 210, 207, 0.1);
  border: 1px solid rgba(60, 60, 60, 0.1);
/*  padding: 0.8rem 1.5rem;
*/
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

/* Base corner styles - all use corner.svg */
.frame::before,
.frame::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc79d35447130884f429_corner.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.frame-corner-bottom-left,
.frame-corner-bottom-right {
  position: absolute;
  width: 7px;
  height: 7px;
  background-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc79d35447130884f429_corner.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* Top-left corner - rotation */
.frame::before {
  top: -2px;
  left: -1px;
  transform: rotate(-90deg);
}

/* Top-right corner - rotation */
.frame::after {
  top: -1px;
  right: -2px;
  transform: rotate(0deg);
}

/* Bottom-left corner - rotation */
.frame-corner-bottom-left {
  bottom: 0px;
  left: -2px;
  transform: rotate(-180deg);
}

/* Bottom-right corner - rotation */
.frame-corner-bottom-right {
  bottom: -1.5px;
  right: 0px;
  transform: rotate(90deg);
}

.logos-slider .frame img{
  width: 100%;
  max-width: 125px;
  height: 100%;
  max-height: 33px;
  object-fit: contain;
  position: relative;
  z-index: 0;
}

.hero-numbers {
  grid-column: 1 / 13;
  width: 100%;
  display: flex;
  padding-bottom: 50px;
  grid-column-gap: 1.736vw; /* 30px / 1728px * 100 = 1.736vw */
  position: relative;
  justify-content: space-between;
  margin-top: 50px;
}

@media (min-width: 950px) {
  .hero-numbers {
    padding-top: 80px;
  }
}

.hero-numbers .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: span 3;
  flex: 1;
  padding: 35px 0;
  grid-gap: 0.7rem;
}

.hero-numbers .frame .mark {
  font-size: 13px;
  border: 1px solid var(--black);
  padding: 0.3rem 0.5rem;
  padding-bottom: 0.1rem;
}

.burger-menu {
  display: none!important;
}

.mobile-only {
  display: none;
}

#mobile-only {
  display: none;
}


.links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 1200px) {
  .links-container {
    all:unset;
padding-top: 12dvh;
    grid-gap: 3dvh;
    display: flex;
    flex-direction: column;
  }
  .footer .links-container {
    padding-top: 0;
  }
  #mobile-only {
    display: unset;
  }
  
  .mobile-only {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
  }
  .mobile-only button {
    width: 100%;
  }
  .mobile-only.extra-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
  }
  .header {
    padding: 30px 0;
  }
  .logo {
    z-index:2;
  }
  .burger-menu {
    display: flex;
  }
  /* Burger Menu */
  .burger-menu {
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    width: 45px; /* Reduced from 60px */
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3;
    grid-gap: 5px;
    position: relative;
    transition: all 0.3s ease!important;
    border-radius: 0;
  }
  
  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease, background-color 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .header.open .burger-menu {
    grid-gap:0px;
  }

  .header.open .burger-menu .burger-line:nth-of-type(2) {
    grid-gap:0px;
    height:0;
  }

 .nav {
    display: none;
  }
  .header nav {
    display: flex!important;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    height: 100dvh;
    position: fixed;
    align-items: start;
    justify-content: space-between;
    top: 0;
    right:0;
    z-index: 1;
  }

  .header .nav.links {
    margin: 0 auto;
    padding: 6vw 6vw;
    display: flex;
    flex-direction: column;
  }

  .header .nav.links a {
    padding-left: 1vw;
  }


  .header nav {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s cubic-bezier(.72,-0.01,0,1.01);
  }
  .header.open nav {
    clip-path: inset(0 0 0% 0);
  }

  /* Backdrop shadow for open mobile nav - smooth fade in/out */
  .header::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(16, 15, 17, 0); /* fully transparent by default */
    pointer-events: none;
    /* opacity: 0 handled by hidden.css */
    transition:
      background 0.7s cubic-bezier(.61,.01,0,.99),
      opacity 0.7s cubic-bezier(.61,.01,0,.99);
  }
  .header.open::before {
    background: rgba(16, 15, 17, 0.4);
    pointer-events: auto;
    opacity: 1;
  }

  /* Lock body scroll when mobile menu is open */
  html:has(.header.open),
  body:has(.header.open) {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  
  /* .header-actions {
    display: none;
  } */
  
  /* Reorder elements: logo left, button and burger together on right */
  .logo {
    order: 1;
    margin-right: auto; /* Push everything else to the right */
  }

  /* Fixed logo dimensions on mobile – no size change on scroll or breakpoints */
  .header .logo {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    height: 26px;
    min-height: 26px;
    max-height: 26px;
    flex: 0 0 auto;
  }
  .header .logo img,
  .header .logo svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  
  .header-actions {
    display: flex !important;
    z-index: 2;
    position: relative;
    order: 2; /* Place before burger menu */
    margin-right: 25px; /* Reduced spacing between button and burger */
    margin-left: 0; /* No left margin */
  }
  

  
  .header-actions button.filled span {
    font-size: 14px; /* Smaller font for text */
  }
  
  .burger-menu {
    order: 3; /* Place after header-actions (rightmost) */
    margin-left: 0; /* No left margin */
  }
  
  /* Ensure grid maintains proper spacing */
  .header .grid {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from space-between */
    gap: 0;
    padding: 0 20px; /* Reduced side padding on mobile/tablet */
  }
  
  /* Reduce site-container padding on mobile */
  .header .site-container {
    padding: 0 20px; /* Reduced side padding */
  }
  
  /* Ensure nav doesn't interfere (it's absolute positioned) */
  .header .nav {
    order: 0; /* Doesn't affect flex order since it's absolute */
  }
  
  .nav a {
    font-size: 24px;
    font-weight: 500;
  }

  /* Dark mode mobile menu styles */
  .dark-mode .header nav {
    background: var(--black);
    color: var(--white);
  }

  .dark-mode .header .nav.links a {
    color: var(--white);
  }

  .dark-mode .mobile-only {
    background: var(--black);
    color: var(--white);
  }

  .header.scroll-deep {
    padding: 13px 0;
    background: var(--white);
    box-shadow: 0 0 10vw 0 rgba(0, 0, 0, 0.1);
  }

  .header.hidden {
    top: 0px!important;;
  }

}

@media (max-width: 950px) {

  .hero {
    padding: 120px 0;
  }
  .hero .grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 50px;
  }

  .hero-image img {
    width: 50vw;
    margin: 0 auto;
  }

  .hero-text {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: 30px;
    width: 100%;
  }

  .hero .hero-badges {
    display: grid;
    grid-gap: 3vw;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .hero-badges .frame {
    padding: 2vw 3vw;
  }

  .hero .hero-badges .frame img {
    all: unset;
    height: 5vw;
    width: 20vw;
  }

  .hero-numbers {
    display: grid!important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .hero-numbers .frame {
    grid-column: span 1!important;
  }

}


@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  
  /* Further reduce side padding on mobile */
  .header .grid {
    padding: 0 15px; /* Even less side padding */
  }
  
  .header .site-container {
    padding: 0 15px; /* Even less side padding */
  }
  
  /* Further reduce button size on smaller mobile */
  .header-actions button.filled {
    grid-gap: 0;
    font-size: 12px; /* Smaller font */
  }
  

  
  .header-actions {
    margin-right: 8px; /* Less spacing on smaller screens */
  }
}

@media (max-width: 650px) {

  .header {
    padding: 20px 0;
  }
  
  /* Minimal side padding on very small screens */
  .header .grid {
    padding: 0 10px !important; /* Minimal side padding */
  }
  
  .header .site-container {
    padding: 0 10px !important; /* Minimal side padding */
  }

  /* Logo keeps same fixed size as 1200px MQ – no jump at breakpoint */

  /* Smallest button size on very small screens */
  .header-actions button.filled {
    padding: 0.8rem 1rem !important; /* Smallest padding */
    font-size: 11px !important; /* Smallest font */
    min-width: auto; /* Remove any min-width */
  }

  .header-actions .btn-arrow::after {
    width: 8px;
  }
  
  .header-actions button.filled span {
    font-size: 11px !important; /* Smallest font for text */
  }
  
  .header-actions {
    margin-right: 12px !important; /* Minimal spacing */
  }
  
  .hero .buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero .buttons button {
    min-width:100%;
  }

  .hero-numbers {

    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
  }

  .hero-numbers .frame {
    grid-column: span 1!important;
  }

  .hero-numbers .frame .mark {
    font-size: 2.3vw;
  }

  .hero-numbers .frame {
    padding: 20px 0;
  }

  .hero .hero-badges .frame img {
    all: unset;
    height: 7vw;
    width: 25vw;
  }
  
}

@media (max-width: 450px) {
  .nav a {
    font-size: 5.6vw;
  }
}




/* ==============================================
       Homepage
============================================== */

section.dark {
  background: var(--darkgrey)!important;
  color: var(--creme);
}

section.dark .container h1,
section.dark .container h2,
section.dark .container h3,
section.dark .container h4,
section.dark .container h5 {
  color: var(--creme)!important;
}

section:not(.dark) .container h1,
section:not(.dark) .container h2,
section:not(.dark) .container h3,
section:not(.dark) .container h4,
section:not(.dark) .container h5 {
  color: var(--black)!important;
}

section:not(.dark) .container .big-cta h2 {
  color: var(--white)!important;
}

section.dark:before {
  content: '';
  position: absolute;
  top: -91px;
  right: 0;
  width: 544px;
  height: 272px;
  background: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc7b6dc8ff20e75a2622_pixels-right-dark.svg') no-repeat top right;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

section.dark:after {
  content: '';
  position: absolute;
  bottom: -91px;
  left: 0;
  width: 544px;
  height: 272px;
  background: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc78755ad040d589ea12_pixels-left-dark.svg') no-repeat bottom left;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

section.grey:before {
  content: '';
  position: absolute;
  top: -91px;
  right: 0;
  width: 544px;
  height: 272px;
  background: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc7b23daa6daaa0900a6_pixels-right-bright.svg') no-repeat top right;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

section.company-people.grey:before {
  all:unset;
  content: '';
  position: absolute;
  top: -91px;
  left: 0;
  right: 0;
  width: 100%;
  height: 272px;
  background: 
    url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc788fad63871ccdfb5f_company-page-left-extra-pixel.svg') no-repeat top left,
    url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc7b23daa6daaa0900a6_pixels-right-bright.svg') no-repeat top right;
  background-size: 
    544px 272px,
    544px 272px;
  pointer-events: none;

}

section.grey:after {
  content: '';
  position: absolute;
  bottom: -91px;
  left: 0;
  width: 544px;
  height: 272px;
  background: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953bc7b5df609a6779a9d29_pixels-left-bright.svg') no-repeat bottom left;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}


@media (max-width: 1200px) {
  section.grey:before {
    width: 320px;
    top: -54px;
  }
  section.grey:after {
    width: 320px;
    bottom: -54px;
  }
  section.company-people.grey:before {
    background-size: 
      320px 160px,
      320px 160px;
    top: -54px;
  }

  section.dark:before {
    width: 320px;
    top: -54px;
  }
  section.dark:after {
    width: 320px;
    bottom: -54px;
  }

  section.company-people.dark:before {
    background-size: 
      320px 160px,
      320px 160px;
    top: -54px;
  }
}

@media (max-width: 768px) {
  section.grey:before {
    width: 180px;
    top: -30px;
  }
  section.grey:after {
    width: 180px;
    bottom: -30px;
  }
  
  section.company-people.grey:before {
    background-size: 
      180px 90px,
      180px 90px;
    top: -30px;
  }

  section.dark:before {
    width: 180px;
    top: -30px;
  }
  section.dark:after {
    width: 180px;
    bottom: -30px;
  }
  section.company-people.dark:before {
    background-size: 
      180px 90px,
      180px 90px;
    top: -30px;
  }
}

.grey {
  margin: 0 auto;
/*  max-width: var(--page-width);*/
  background: var(--creme);
  color: var(--black);
}

.white {
  background: var(--white);
/*  z-index:-1;*/
}

/* ==============================================
     Cube Animations - 3D CSS Cubes (Per Section)
============================================== */

section {
  position: relative;
}

/* Isolate section content (frames, text) from cube compositor layer to prevent flicker inside frames */
section:has(.cube-container-section) {
  isolation: isolate;
  transform: translateZ(0);
}
section:has(.cube-container-section) .container {
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.cube-container-section {
  position: absolute;
  /* Increase size to accommodate 3D cube expansion and shadow */
  width: clamp(300px, 40vw, 500px);
  height: clamp(345px, calc(20vw + 10vw + 120px), 495px);
  pointer-events: none;
  z-index: 9999;
  perspective: 10000px;
  perspective-origin: center center;
  /* Vertical position – edit here or override with .cube-pos-* classes */
  top: -200px;
  /* Own compositor layer without will-change to reduce flicker in sibling content */
  transform: translateZ(0);
  backface-visibility: hidden;
  overflow: hidden;
  contain: paint;
  -webkit-contain: paint;
  isolation: isolate;
  padding-bottom: 1500px;
}

.cube-container-section.cube-side-right {
  right: -10%;
}

.cube-container-section.cube-side-left {
  left: -10%;
}

/* Optional: vertical position overrides (use with cube-side-right / cube-side-left) */
.cube-container-section.cube-pos-top { top: -200px; bottom: auto; }
.cube-container-section.cube-pos-center { top: 50%; bottom: auto; transform: translateY(-50%); }
.cube-container-section.cube-pos-bottom { top: auto; bottom: -100px; }

@media (max-width: 768px) {
  .cube-container-section {
    top: -100px;
  }
  
  .cube-container-section.cube-side-right {
    right: -22%;
  }
  
  .cube-container-section.cube-side-left {
    left: -22%;
  }
  
  .cube-container-section.cube-pos-top { top: -300px; }
  .cube-container-section.cube-pos-center { top: 50%; transform: translateY(-50%); }
  .cube-container-section.cube-pos-bottom { top: auto; bottom: -80px; }
}

@media (prefers-reduced-motion: reduce) {
  .cube-container-section {
    display: none; /* Section cubes not created in JS when reduced-motion; hide fallback */
  }
}

.cube-3d {
  position: absolute;
  /* Center the cube within the larger container */
  top: clamp(75px, 10vw, 125px);
  left: clamp(75px, 10vw, 125px);
  width: clamp(150px, 20vw, 250px);
  height: clamp(150px, 20vw, 250px);
  transform-style: preserve-3d;
  /* No will-change: transform – continuous rotation already promotes layer; will-change can cause repaint flicker in sibling layers */
  backface-visibility: hidden;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.cube-front {
  transform: rotateY(0deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-back {
  transform: rotateY(180deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-right {
  transform: rotateY(90deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-left {
  transform: rotateY(-90deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-top {
  transform: rotateX(90deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-bottom {
  transform: rotateX(-90deg) translateZ(clamp(75px, 10vw, 125px));
}

.cube-shadow {
  position: absolute;
  /* Position shadow close below the cube - cube is at top: clamp(75px, 10vw, 125px) with height: clamp(150px, 20vw, 250px) */
  /* So cube bottom is at: clamp(225px, 30vw, 375px) from container top */
  /* Shadow should be ~30px below cube bottom, centered horizontally with cube */
  top: clamp(255px, calc(30vw + 30px), 405px);
  /* Center horizontally: cube left is clamp(75px, 10vw, 125px), cube width is clamp(150px, 20vw, 250px) */
  /* So cube center is at: clamp(75px, 10vw, 125px) + clamp(75px, 10vw, 125px) = clamp(150px, 20vw, 250px) */
  left: clamp(150px, 20vw, 250px);
  transform: translateX(-50%);
  width: clamp(180px, 24vw, 300px);
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
  background: var(--shadow-gradient, radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%));
}

@media (max-width: 768px) {
  .cube-container-section {
    /* Increase size for mobile to accommodate cube and shadow */
    width: clamp(200px, 50vw, 300px);
    height: clamp(240px, calc(25vw + 12.5vw + 90px), 315px);
    /* No will-change on mobile to avoid extra compositor layers and scroll jank */
    will-change: auto;
  }
  
  .cube-3d {
    /* Center the cube within the larger mobile container */
    top: clamp(50px, 12.5vw, 75px);
    left: clamp(50px, 12.5vw, 75px);
    width: clamp(100px, 25vw, 150px);
    height: clamp(100px, 25vw, 150px);
    /* No will-change on mobile to reduce layers and keep scroll smooth */
    will-change: auto;
  }
  
  .cube-shadow {
    /* Position shadow close below cube on mobile - cube is at top: clamp(50px, 12.5vw, 75px) with height: clamp(100px, 25vw, 150px) */
    /* So cube bottom is at: clamp(150px, 37.5vw, 225px) from container top */
    /* Shadow should be ~5px below cube bottom, centered horizontally with cube */
    top: clamp(155px, calc(37.5vw + 5px), 230px);
    /* Center horizontally: cube left is clamp(50px, 12.5vw, 75px), cube width is clamp(100px, 25vw, 150px) */
    /* So cube center is at: clamp(50px, 12.5vw, 75px) + clamp(50px, 12.5vw, 75px) = clamp(100px, 25vw, 150px) */
    left: clamp(100px, 25vw, 150px);
    width: clamp(120px, 30vw, 180px);
    height: 90px;
  }
  
  .cube-front {
    transform: rotateY(0deg) translateZ(clamp(50px, 12.5vw, 75px));
  }
  
  .cube-back {
    transform: rotateY(180deg) translateZ(clamp(50px, 12.5vw, 75px));
  }
  
  .cube-right {
    transform: rotateY(90deg) translateZ(clamp(50px, 12.5vw, 75px));
  }
  
  .cube-left {
    transform: rotateY(-90deg) translateZ(clamp(50px, 12.5vw, 75px));
  }
  
  .cube-top {
    transform: rotateX(90deg) translateZ(clamp(50px, 12.5vw, 75px));
  }
  
  .cube-bottom {
    transform: rotateX(-90deg) translateZ(clamp(50px, 12.5vw, 75px));
  }

  .cube-shadow {
    bottom: -90px;
  }
}

.text-block {
  width: clamp(330px, 75vw + 1rem, 763px);
}

.text-block h6 {
  width: clamp(330px, 75vw + 1rem, 520px);
}

/* Filter sections text-block - custom gap (scalable for all filter sections) */
[fs-cmsfilter-show] .text-block {
  grid-gap: 20px;
}

/* Filter sections text-block p - wider on desktop (scalable for all filter sections) */
[fs-cmsfilter-show] .text-block p {
  width: 90%;
  max-width: 90%;
}

@media (max-width: 768px) {
  [fs-cmsfilter-show] .text-block p {
    width: 100%;
    max-width: 100%;
  }
}

.logos-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 30px;
  overflow: hidden;
  margin-top: 100px;
  margin-bottom: 50px;
}



.logos-slider::before,
.logos-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--creme) 0%, transparent 100%);
}

.logos-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--creme) 0%, transparent 100%);
}

.marquee-content {
  display: flex;
  width: fit-content;
  will-change: transform;
  white-space: nowrap;
  gap: 30px;
}

.marquee-content .frame {
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  min-height: 156px;
  min-width: 309px;
  background: var(--white);
}

.marquee-content .frame img {
  width: 100%;
  height: 100%;
  min-height: 37px;
  min-width: 309px;
  object-fit: contain;
}

.numbers-logo img:not([src$=".svg"]):not([src$=".SVG"]) {
  /*filter: invert(1);*/
}

.marquee-content .frame img:not([src$=".svg"]):not([src$=".SVG"]) {
  filter: invert(1);
  min-height: 57px;
  min-width: 309px;
}

.logos-slider .marquee {
  animation: marquee 30s linear infinite;
}

.logos-slider .marquee.reverse {
  animation-direction: reverse;
}


@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  .logos-slider {
    max-width: 100%;
    gap: 20px;
    height: unset;
    margin-bottom: 0;
  }

  .marquee-content {
    gap: 20px;
  }

  .marquee-content .frame {
    min-width: 44vw;
    max-width: 44vw;
    min-height: 23vw;
  }

  .marquee-content .frame img {
    all :unset;
    width: 25vw;
    height: 5vw;
    min-height: 47px;
    min-width: 33vw;
    object-fit: contain!important;
  }

  .logos-slider .marquee {
    animation: marquee 30s linear infinite;
  }

}

.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 100px auto;
  width: 100%;
}

.testimonials-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  min-height: 400px;
  flex: 1;
}

.testimonial-arrow {
  position: absolute;
  z-index: 10;
}

@media (min-width: 769px) {
  .testimonial-arrow-prev {
    left: 4%;
  }

  .testimonial-arrow-next {
    right: 4%;
  }
}

.testimonials-container {
  width: 100%;
}


.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 180px;
  width: 100%;

  padding: 0 180px;
}

.testimonials-list .testimonial-card {
  display: none;
}

.testimonials-list .testimonial-card:first-child {
  display: flex;
}

.testimonial-author {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.author-image {
  width: 200px;
  height: 200px;
  position: relative;
  flex-shrink: 0;
}

.author-image-img {
  width: 100%;
  height: 100%;
  background: var(--orange);
  border-radius: 15px;
  object-fit: cover;
}

.author-company-logo {
  max-width: 280px;
  max-height: 60px;
}

.author-info {
  position: absolute; 
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  grid-gap: 0;
  bottom: -30px;
  right: -80px;
  font-family: var(--tertiary-font);
  font-size: 12px;
  line-height: 1.5;
}

.author-title {
  color: var(--soft-blue);
  font-size: 10px!important;
}

.author-info span {
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.author-info.frame {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(216, 210, 207, 0.2);
  will-change: transform;
  transform: translateZ(0);
  isolation: isolate;
  padding: 10px 20px;
}

.testimonial-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  gap: 35px;
  min-height: 450px;
}

.testimonial-text h4 {
  min-height: 70px;
}

.testimonial-text p {
  min-height: fit-content;
  padding-bottom: 30px;
}
/* Remove extra spacing from split text characters in testimonial indicator */
.testimonial-indicator .char {
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.testimonial-arrow {
/*  all: unset;*/
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 30px 12px;
  transition: all 0.3s ease!important;
  z-index: 10;
}

.testimonial-arrow:hover {
  opacity: var(--hover-opacity);
  /*transform: scale(1.1);*/
}

.testimonial-arrow img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .testimonial-arrow:hover {
    transform: none;
  }
  .testimonials-list {
    min-height: auto;
    padding-bottom: 80px;
  }
  
  .testimonial-card {
    flex-direction: column;
    width: 100%;
    padding: 30px;
    grid-gap: 0;
  }
  .testimonial-author {
    width: 100%;
    align-items: start;
    justify-content: start;
    margin-bottom: 50px;
  }
  .testimonial-text .indicator {
    margin: auto;
  }
  .testimonial-text {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: auto;
    grid-gap: 25px!important;
  }
  .testimonial-text p {
    padding-bottom: 0px!important;
  }
  .testimonial-text h4 {
    margin: auto;
    min-height: unset;
  }

  .author-company-logo {
    margin: auto;
    max-width: 240px;
    max-height: 50px;
  }
  .testimonial-tag {
    margin: auto;
  }
  /* Testimonials carousel arrows on mobile: bottom and centered, like numbers carousel */
  .testimonials-slider .testimonial-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50px;
    border-radius: 50px;
    padding: 14px 35px;
    border: 1px solid var(--black);
  }
  .testimonials-slider .testimonial-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .testimonials-slider .testimonial-arrow-prev {
    right: 50%;
    margin-right: 5px;
    left: auto;
  }
  .testimonials-slider .testimonial-arrow-next {
    left: 50%;
    margin-left: 5px;
    right: auto;
  }

  .author-image {
    width: 180px;
    height: 180px;
    align-self:center;
  }
}

.blocks-container {
  display: flex;
  flex-direction:row;
  grid-gap: 30px;
}

.blocks-container.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  max-width: 1200px;
}

@media (max-width: 1200px) {
  .blocks-container.three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blocks-container.three {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blocks-container.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: row;
  margin-bottom: 100px;
}

.blocks-container.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  max-width: 1700px;
  width: 100%;
}

.blocks-container .frame {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  padding: 35px;
  justify-content: start;
  /*align-self: stretch;*/
}


.blocks-container .frame p {
  width: 100%;
  padding: 0;
}

@media (max-width: 1200px) {
  .blocks-container.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .blocks-container.blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .blocks-container {
    flex-direction: column;
  }
  .blocks-container:nth-of-type(2) {
    grid-template-columns: repeat(1, 1fr);
  }
  .blocks-container .frame {
    padding: 30px;
  }
  .blocks-container.blog-posts {
    grid-template-columns: repeat(1, 1fr);
  }
  .blocks-container.blog-posts .frame:nth-child(n+4) {
    display: none;
  }
}

.grey .frame {
  background: rgba(255, 254, 251, 0.8);
}

.block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.block-icon img {
  width: 100%;
  max-width: 7vw;
  min-width: 48px;
  object-fit: contain;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 768px) {
  .block-icon img {

    min-width: 100px;
  }
}

.numbers-block {
  margin: 0 auto;
  width: 100%;
  max-width: 1032px;
}

.numbers-frame {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
/*  gap: 30px;*/
height: 480px;
  padding: 60px 50px;
}

.numbers-carousel {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
}

.numbers-set {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.numbers-set:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.numbers-set.active {
  position: relative;
}

.numbers-logo {
  display: flex;
  align-items: flex-start;
  width: 30%;
  flex-shrink: 0;
}

.numbers-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.numbers-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 60px;
  grid-column-gap: 80px;
  width: 60%;
  flex-shrink: 1;
}

.numbers-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.numbers-value {
  font-family: var(--secondary-font);
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
}

.numbers-label {
  font-family: var(--primary-font);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  max-width: 200px;
}

.numbers-navigation {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  position: absolute;
  left: 50px;
  bottom: 50px;
}

.numbers-arrow {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 14px 35px;
  transition: all 0.3s ease!important;
}

.numbers-arrow:hover {
  opacity: var(--hover-opacity);
  /*transform: scale(1.1);*/
}

.numbers-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .numbers-frame {
    padding: 50px;
    gap: 0px;
    height: 520px;
  }

  .numbers-carousel {
    /*min-height: 380px;*/
  }

  .numbers-set {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .numbers-logo {
    justify-content: center;
    width: 100%;
  }

  .numbers-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
  }

  .numbers-item {
    align-items: center;
    text-align: center;
  }

  .numbers-label {
    max-width: 100%;
  }

  .numbers-navigation {
    justify-content: center;
    position: unset;
  }
}


.mid-page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}


.road-container {
  display: flex;
  flex-direction: column;
  grid-gap: 250px;
  padding: 250px 0;
  max-width: 1035px;
  margin: 100px 0;
  width: 100%;
  position: relative;
}

.road-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 200px;
  width: 100%;
}

.road-block:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.road-block:nth-of-type(odd) .road-block-visual {
  align-items: start; 
  justify-content: start;
}

@media (max-width: 768px) {
  .road-block {
    flex-direction: column-reverse;
    grid-gap: 50px;
  }
  .road-block:nth-of-type(odd) {
    flex-direction: column-reverse;
  }

  .road-container {
    grid-gap: 100px;
    padding: 0 0;
  }
  
  .road-block-content {
    max-width: 70%!important;
    min-width: 240px!important;
    width: 80%!important;
    position:relative;
    left: 40px;
  }

  .road-block-visual {
    max-width: 70%!important;
    min-width: 200px!important;
    width: 80%!important;
    position:relative;
    left: 35px;
  }
  
  .road-block-visual img {
    max-width: 100%!important;
    width: 100%!important;
    height: 100%!important;
    object-fit: contain!important;
  }


  .road-progress-bar {
    left: 7%!important;
    transform: translateX(-50%)!important;
  }
  
  .road-progress-line {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }
  
  .road-progress-indicator {
    left: 50%!important;
    transform: translateX(-50%)!important;
  }
  
  .road-progress-dot {
    left: 50%!important;
    transform: translate(-50%, -50%)!important;
  }
}

.road-block-visual {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: start;
  max-width: 425px;
}

.road-block-content {
  flex: 1;
  max-width: 425px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  grid-gap: 20px;
  text-align: left;
}

.road-block-content .indicator {
  color: var(--pink);
}

.road-block-visual img {
  width: 100%;
  height: 100%;
  max-width: 263px;
  object-fit: contain;
}

/* ==============================================
       Road Progress Bar
============================================== */

.road-progress-bar {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: 1;
  pointer-events: none;
  height: 100%;
}

.road-progress-bar:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--pink);
  background: var(--pink);
  border-radius: 50%;
  z-index: 2;
}


.road-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: var(--black);
  z-index: 1;
}

.road-progress-indicator {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 80px;
  background: var(--pink);
  border-radius: 10px;
  z-index: 3;
  pointer-events: none;
  will-change: top, height, transform;
}

.road-progress-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--black);
  background: var(--creme);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s var(--ease-standard);
}

.road-progress-dot:nth-of-type(6) {
  width: 40px;
  height: 40px;
}


.road-progress-dot.active {
  background: var(--pink);
  border-color: var(--pink);
}

/* Evenly spaced dots: 25%, 50%, 75%, 100% */
.road-progress-dot[data-section="0"] {
  top: 20%;
}

.road-progress-dot[data-section="1"] {
  top: 50%;
}

.road-progress-dot[data-section="2"] {
  top: 78%;
}

.road-progress-dot[data-section="3"] {
  top: 100%;
}


.team .frame {
  text-align: left;
  align-items: start;
  justify-content: start;
}

.team .frame h5 {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
  max-width: 7.2ch;
  word-break: normal;
  white-space: normal;
}

.team .frame {
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: transform;
  transform: translateZ(0);
  isolation: isolate;
  flex: 1;
}

.team .frame .linkedin-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--icon-hover-transition);
}

.team .frame .linkedin-icon:hover {
  opacity: var(--hover-opacity-light);
}

.team .frame .linkedin-icon {
  background-color: var(--soft-blue);
  -webkit-mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.team .frame .linkedin-icon img {
  width: 25px;
  height: 25px;
  opacity: 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
}

.team-member .avatar-icon {
  width: 220px;
  height: 220px;
  overflow: hidden;
  background: var(--turquoise);
  border-radius: 25px;
  margin-bottom: -60px;
}

.profile-team-member .avatar-icon {
  width: 220px;
  height: 220px;
  overflow: hidden;
  background: var(--turquoise);
  border-radius: 25px;
}

/* Team Member Colors - Based on data-color attribute */
/* This allows CMS to set any color for any team member */
.team-member[data-color="turquoise"] .avatar-icon {
  background: var(--turquoise);
}

.team-member[data-color="turquoise"] .indicator::before {
  background: var(--turquoise);
}

.team-member[data-color="green"] .avatar-icon {
  background: var(--green);
}

.team-member[data-color="green"] .indicator::before {
  background: var(--green);
}

.team-member[data-color="blue"] .avatar-icon {
  background: var(--blue);
}

.team-member[data-color="blue"] .indicator::before {
  background: var(--blue);
}

.team-member[data-color="purple"] .avatar-icon {
  background: var(--purple);
}

.team-member[data-color="purple"] .indicator::before {
  background: var(--purple);
}

.team-member[data-color="orange"] .avatar-icon {
  background: var(--orange);
}

.team-member[data-color="orange"] .indicator::before {
  background: var(--orange);
}

.team-member[data-color="pink"] .avatar-icon {
  background: var(--pink);
}

.team-member[data-color="pink"] .indicator::before {
  background: var(--pink);
}

.team-member[data-color="peach"] .avatar-icon {
  background: var(--peach);
}

.team-member[data-color="peach"] .indicator::before {
  background: var(--peach);
}

/* Blog posts - linkedin-icon soft-blue color like paragraphs */
/* Works for both .frame.team-member.limit (index.html) and .frame.team-member (blog.html) */
.frame.team-member.limit .linkedin-icon,
.frame.team-member .linkedin-icon {
  background-color: var(--soft-blue);
  -webkit-mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.frame.team-member.limit .linkedin-icon img,
.frame.team-member .linkedin-icon img {
  opacity: 0;
}

/* Post-author keeps original image, but background color based on data-color */
.frame.team-member.limit .post-author img,
.frame.team-member .post-author img {
  opacity: 1 !important;
}

.team .frame .avatar-icon img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Team Slider */
.team-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 100px;
  box-sizing: border-box;
}

.team-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0px 80px;
  box-sizing: border-box;
}

.team-arrows .team-arrow {
  pointer-events: auto;
}

.team-slider-viewport {
  overflow: hidden;
  flex: 1;
}

/* All slider/carousel tracks use this class for same animation (team, blog, etc.) */
.team-slider-track {
  display: flex !important;
  transition: var(--slider-track-transition);
  flex-wrap: nowrap !important;
  gap: 40px;
}

.team-slider-track .team-member {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: calc((100% - 80px) / 3);
  box-sizing: border-box;
}

.team-arrow {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 35px 14px;
  transition: all 0.3s ease!important;
}

.team-arrow:hover {
  opacity: var(--hover-opacity);
  /*transform: scale(1.1);*/
}

.team-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
}


.team-arrow img {
  width: 15px;
  height: 15px;
}

.team-arrow-left {
  left: -80px;
  position: relative;
}

.team-arrow-right {
  right: -80px;
  position: relative;
}

@media (max-width: 1200px) {
  .team-slider-track .team-member {
    flex: 0 0 calc((100% - 40px) / 2);
    min-width: calc((100% - 40px) / 2);
  }
}

@media (max-width: 768px) {
  .team-slider-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    margin-top: -30px;
  }
  
  .team-slider-viewport {
    width: 100%;
  }

  .team-slider-viewport {
    overflow: visible;
  }
  
  /* Blog carousel: arrows below the slide on mobile only */
  .team-slider-wrapper:has([fs-cmsfilter-element="list"]) {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .team-slider-wrapper:has([fs-cmsfilter-element="list"]) .team-slider-viewport {
    touch-action: pan-y;
    overflow: hidden;
    width: 100%;
    order: 1;
  }
  .team-slider-wrapper:has([fs-cmsfilter-element="list"]) .team-arrows {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    justify-content: center;
    gap: 10px;
    padding: 0;
    order: 2;
  }
  .team-slider-wrapper:has([fs-cmsfilter-element="list"]) .team-arrow-left,
  .team-slider-wrapper:has([fs-cmsfilter-element="list"]) .team-arrow-right {
    left: 0;
    right: 0;
    position: relative;
  }

  .team-arrows {
    all:unset;
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    gap: 10px;

    pointer-events: auto;
  }
  .team-arrow {
    padding: 14px 35px;
    border-radius: 50px;
  }

  .team-arrow-left {
    left: 0;
  }

  .team-arrow-right {
    right: 0;
  }
  
  
  .team-slider-track .team-member {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .team-slider-track {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .works-filters form {
    margin-top: -30px!important;
  }
}

.works-filters form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.works-filters .all-cases-radio {
  display: inline-flex;
}

.works-filters .w-dyn-list {
  display: inline-flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 5px;
}

.works-filters .all-tags {
  display: flex;
  max-width: max-content;
  display: inline-flex;
  gap: 5px;
}

.works-filters .radio-button-field {
  border: 1px solid var(--black);
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.works-filters .radio-button-field:has(input:checked),
.works-filters .radio-button-field.fs-cmsfilter-active:has(input:checked) {
  background-color: var(--black);
  color: var(--white);
}

.works-filters .radio-button-field:has(input:checked) .radio-button-label,
.works-filters .radio-button-field.fs-cmsfilter-active:has(input:checked) .radio-button-label {
  color: var(--white);
}

.works-filters .radio-button-field:not(:has(input:checked)) {
  background-color: transparent;
}

.works-filters .radio-button-field:not(:has(input:checked)) .radio-button-label {
  color: var(--black);
}

.link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.blog-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  grid-gap: 20px;
  position: relative;
  transition: var(--card-hover-transition);
  cursor: pointer;
  width: 100%;
}

.link-overlay:hover ~ .blog-item {
  opacity: var(--hover-opacity);
}

.blog-item .post-cover {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: end;
  justify-content: start;
  margin-bottom: 30px;
}

.blog-item .post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-item .post-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  /*background: var(--turquoise);*/
  z-index:2;
  position: relative;
  margin-bottom: -23px;
  margin-left: 10px;
}

.article-author-info {
  display: flex;
  grid-gap: 20px;
  padding: 10px 15px;
}

.article-author-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  grid-gap: 0;
  grid-gap: 3px;
  text-align: left;
}

.article-author-details .name {
  font-weight: 600;
}

.article-author-details .role {
  font-size: 12px;
}

.article-author {
  width: 100%;
  height: 100%;
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 0;
  grid-gap: 40px;
  text-align: center;
}

.member-info h1 {
  margin-bottom: -20px;
}

/* Team Member Colors for Blog Post Authors - Based on data-color */
/* Support both .blog-item .post-author and direct .post-author selectors */
.blog-item .post-author[data-color="turquoise"],
.post-author[data-color="turquoise"],
.article-author[data-color="turquoise"] {
  background: var(--turquoise) !important;
}

.blog-item .post-author[data-color="green"],
.post-author[data-color="green"],
.article-author[data-color="green"] {
  background: var(--green) !important;
}

.blog-item .post-author[data-color="blue"],
.post-author[data-color="blue"],
.article-author[data-color="blue"] {
  background: var(--blue) !important;
}

.blog-item .post-author[data-color="purple"],
.post-author[data-color="purple"],
.article-author[data-color="purple"] {
  background: var(--purple) !important;
}

.blog-item .post-author[data-color="orange"],
.post-author[data-color="orange"],
.article-author[data-color="orange"] {
  background: var(--orange) !important;
}

.blog-item .post-author[data-color="pink"],
.post-author[data-color="pink"],
.article-author[data-color="pink"] {
  background: var(--pink) !important;
}

.blog-item .post-author[data-color="peach"],
.post-author[data-color="peach"],
.article-author[data-color="peach"] {
  background: var(--peach) !important;
}

.blog-item .post-author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item .post-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--mid-grey);
  object-fit: cover;
  position: absolute;
  top:0;
  left:0;
  z-index:1;
}

.blog-item .post-description {
  color: var(--black);
  font-size: 18px;
  line-height: 1.4;
}

/* Finsweet CMS Filter: no fade, no transition, no opacity animation – instant show/hide */
[fs-cmsfilter-element="list"],
[fs-cmsfilter-element="list"] .w-dyn-item,
[fs-cmsfilter-element="list"] [role="listitem"],
[fs-cmsfilter-element="list"] .frame,
[fs-cmsfilter-element="list"] .team-member,
[fs-cmsfilter-element="list"] .w-dyn-item *,
[fs-cmsfilter-element="list"] [role="listitem"] * {
  transition: none !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
  animation: none !important;
}

/* Blog carousel track must slide – override Finsweet so slider animates like team carousel */
[fs-cmsfilter-element="list"].team-slider-track {
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

[fs-cmsfilter-element="list"] .blog-item {
  transition: var(--card-hover-transition) !important;
}

/* Override Finsweet inline transition/opacity so show/hide is instant */
[fs-cmsfilter-element="list"] .w-dyn-item[style],
[fs-cmsfilter-element="list"] [role="listitem"][style],
[fs-cmsfilter-element="list"] .frame[style],
[fs-cmsfilter-element="list"] .team-member[style] {
  transition: none !important;
}

.blocks-container.blog-posts .frame > a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

/* Global hover animation for all cards/frames with links - unified across all blog cards */
/* Applies to: blog grid, blog carousel, and any other cards with links */
/* All controlled by root variables for easy global changes */
/* Exclude team-member frames in team section (not blog posts) */
.frame:has(a):not(.team .frame),
.frame:has(.link-overlay):not(.team .frame),
.blocks-container .frame:has(a):not(.team .frame),
.blocks-container .frame:has(.link-overlay):not(.team .frame) {
  transition: var(--card-hover-transition);
  cursor: pointer;
}

.frame:has(a):hover:not(.team .frame),
.frame:has(.link-overlay):hover:not(.team .frame),
.blocks-container .frame:has(a):hover:not(.team .frame),
.blocks-container .frame:has(.link-overlay):hover:not(.team .frame) {
  opacity: var(--hover-opacity);
}

/* Also handle hover on link-overlay parent frame */
.frame:has(.link-overlay:hover):not(.team .frame) {
  opacity: var(--hover-opacity);
}

/* Ensure team section frames don't have hover effect */
.team .frame:has(a),
.team .frame:has(.link-overlay) {
  transition: none !important;
  cursor: default !important;
}

.team .frame:has(a):hover,
.team .frame:has(.link-overlay):hover {
  opacity: 1 !important;
}

.big-cta {
  width: 100%;
  background: var(--black);
  color: var(--creme);
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 15px;
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}


.big-cta .indicator {
  border: 1px solid var(--creme);
  padding: 0.5rem 1rem;
  padding-top: 0.7rem;
}

.top-right-pixels {
  position: absolute;
  top: 0;
  right: 0;
}

.top-right-pixels img {
  width: 100%;
  max-width: clamp(100px, 10vw + 1rem, 250px);
  height: 100%;
  object-fit: contain;
}

.bottom-left-pixels img {
  width: 100%;
  max-width: clamp(100px, 10vw + 1rem, 250px);
  height: 100%;
  object-fit: contain;
}

.bottom-left-pixels {
  position: absolute;
  bottom: 0;
  left: 0;
}

.big-cta h6 {
  color: var(--soft-grey);
}

.big-cta .text-block h6 {
  width: 100%;
}

section:has(.footer-badges)::before, section:has(.footer-badges)::after {
  display: none;
}

section:has(.footer-badges) {
  background: unset;
}

.footer-badges {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.footer-badges .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: clamp(50px, 5vw + 1rem, 90px);
  padding: clamp(5px, 5vw + 1rem, 10px);
}


.footer-badges .frame img {   
  max-width: clamp(100px, 20vw + 1rem, 180px);
  max-height: clamp(20px, 20vw + 1rem, 40px);
  width: 100%;
  height: auto;
  object-fit: contain;
}

section:has(.big-cta) {
  padding-bottom: 100px;
}

section:has(.footer-badges) {
  padding-top:0;
  margin-bottom: -150px;

}

@media (max-width: 950px) {
  .footer-badges {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3vw;
  }
  .footer-badges .frame {
    padding: 5vw;
  }
  .footer-badges .frame img {
    width: 15vw;
    height: 10vw;
  }
  section:has(.footer-badges) {
    margin-bottom: 0;
  }
}

@media (max-width: 650px) {
  .big-cta .text-block {
    max-width: 80%;
  }
  .big-cta .text-block h6 {
    width: 100%;
    width: unset;
  }
  .footer-badges {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3vw;
    margin-top: -30px;
  }
  .footer-badges .frame {
    padding: 8vw;
  }
  .footer-badges .frame img {
    width: 30vw;
    height: 15vw;
  }
  section:has(.footer-badges) {
    padding: unset;
  }
  section:has(.big-cta) {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.footer {
  background: var(--white);
  color: var(--black);
  z-index: 0;
  width: 100%;
  padding: var(--padding-sides-desktop) 0;
  position: relative;
  max-width: var(--page-width);
  margin: 0 auto; 
}


.footer .container {
 margin-top: 100px;
  margin-bottom: 150px;
}

.contact-page .footer .container {
  margin-top: 0;
}
.footer ul * {
  line-height: 1.8;
}

.footer .links-container {
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap:0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--soft-blue);
  margin-top: 0vw;
}

.footer ul h5 {
  color: var(--black);
  margin-bottom: 1.5vw;
}

.footer li {
  list-style: none;
  line-height: 1.5;
  font-weight: 500;
}

.footer h5 {
  font-weight: 600!important;
}

.scroll-to-top {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
  align-self: start;
  justify-self: end;
  margin-bottom: 20px;
  z-index: 10;
  position: relative;
}

.scroll-to-top.testimonial-arrow img {
  transform: rotate(90deg);
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.dark-mode .scroll-to-top {
  filter: invert(1)!important;
}

.footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  grid-column: 10 / 13;
  grid-row: 1 / 2;
  align-self: end;
  margin-bottom: 16px!important;
  z-index: 1;
  position: relative;
}

.footer-logo img,
.footer-logo svg {
  width: 100%;
  min-width: clamp(332px, 25vw + 1rem, 358px);
}

.footer-logo .logo-text {
  fill: #100F11;
  transition: fill 0.5s ease;
}

.dark-mode .footer-logo .logo-text {
  fill: #FFFEFB;
}

.light-mode .footer-logo .logo-text {
  fill: #100F11;
}

.footer .column {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  grid-row: 1;
}

.footer .column:nth-of-type(1) {
  grid-column: 1 / 3;
}

.footer .column:nth-of-type(2) {
  grid-column: 3 / 5;
}

.footer .column:nth-of-type(3) {
  grid-column: 5 / 7;
}

.footer .column:nth-of-type(4) {
  grid-column: 7 / 11;
}

.footer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-contact-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

@media (max-width: 768px) {
  .form-contact-buttons {
    flex-direction: column;
  }
}

.extra-contact-buttons {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: 30px;
}

.footer-contact-buttons button, .form-contact-buttons button {
  all: unset;
  width: max-content;
  border:1px solid var(--mid-grey);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  display: flex;
  grid-gap: 10px;
  font-weight: 500;
  align-items: center;
  justify-content: start;
  transition: var(--card-hover-transition);
  cursor: pointer;
}

.footer-contact-buttons button:hover, .form-contact-buttons button:hover {
  opacity: var(--hover-opacity);
}


.footer-contact-buttons button img, .form-contact-buttons button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dark-mode .footer-contact-buttons button img {
  filter: invert(1);
}

@media (max-width: 768px) {
  .footer .column {
    grid-row: unset;
  }
  .footer .column:nth-of-type(1) {
    grid-column: 1 / 4;
    grid-row: 1;
  }
  .footer .column:nth-of-type(2) {
    grid-column: 5 / 9;
    grid-row: 1;
  }
  .footer .column:nth-of-type(3) {
    grid-column: 1 / 4;
    grid-row: 2;
  }
  .footer .column:nth-child(6) {
    grid-column: 5 / 9;
    grid-row: 2;
  }
  .scroll-to-top {
    all: unset;
    grid-column: 9 / 9;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    z-index: 10;
    border: 1px solid var(--mid-grey);
    padding: 25px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;

  }
  .footer-logo {
    grid-column: 1 / 10;
    grid-row: 4;
    position: relative;
    bottom: unset;
    right: unset;
    margin-top: 0;
    margin-bottom: 16px;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    z-index: 1;
  }
  .footer-logo img,
  .footer-logo svg {
    min-width: unset;
    width: 100%;
  }
  .footer ul h5 {
    margin-bottom: 5vw;
  }
  .footer .grid {
    grid-row-gap: 10vw!important;
  }
  .footer-contact-buttons button {
    padding: 5px 18px;
  }
  
}

/* Footer link underline animation - opposite of text-link */
.footer a:not(.text-link) {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5vw;
}

.footer a:not(.text-link):after {
  display: block;
  content: "";
  border-bottom: solid 1px var(--soft-blue);
  width: 0;
  transition: width var(--motion-duration) var(--cta-motion-easing);
  margin-top: 2px;
}

.footer a:not(.text-link):hover:after {
  width: 100%;
}





/* ==============================================
       Audit Page
============================================== */

.hero.audit p {
  color: var(--soft-grey);
  line-height: 1.5
}

.light-mode .hero.audit p {
  color: var(--soft-blue);
}
.audit .grid {
  max-width: var(--page-width);
  width: 100%;
}

.audit .indicator {
  margin-bottom: 30px;
  border: 1px solid var(--white);
  align-self: start;
  justify-self: start;
  padding: 0.4rem 0.7rem;
  padding-top: 0.55rem;
  border-radius: 0.2rem;
}

.light-mode .audit .indicator {
  border: 1px solid var(--black);
}

.audit .indicator:not(.contact-dot)::before {
  all: unset;
}

.audit-text {
  grid-column: 2 / 6;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}


.audit-form {
  grid-column: 7 / 12;
  background: var(--darkgrey);
  padding: 1.8rem;
  border-radius: 0.5rem;
  position: relative;
  max-height: max-content;

}

.audit-form-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.audit-form-pixels-top-right {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 1;
}

.audit-form-pixels-top-right img {
  width: 100%;
  max-width: clamp(100px, 10vw + 1rem, 250px);
  height: 100%;
  object-fit: contain;
}

.audit-form-pixels-bottom-left {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 1;
}

.audit-form-pixels-bottom-left img {
  width: 100%;
  max-width: clamp(100px, 10vw + 1rem, 250px);
  height: 100%;
  object-fit: contain;
}

.audit-form form {
  all:unset;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.audit-form .form-field {
  display: flex;
  flex-direction: column;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-form .form-field:first-of-type {
  padding-top: 0;
}


.audit-form label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.audit-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.audit-form .input-wrapper:has(select)::after {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--white);
  pointer-events: none;
  opacity: 0.7;
}

.audit-form .input-wrapper:has(select).filled::after {
  display: none;
}

.audit-form input,
.audit-form select {
  background: transparent;
  border: none;
  color: var(--soft-grey);
  font-size: 1.15rem;
  font-family: var(--primary-font);
  width: 100%;
  line-height: 1.3;
  padding: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.audit-form input::placeholder {
  color: var(--soft-grey);
  line-height: 1.2;
  font-size: 1.15rem;
}

.audit-form select option {
  background: var(--darkgrey);
  color: var(--soft-grey);
}

.audit-form .checkmark {
  position: absolute;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.audit-form .input-wrapper.filled .checkmark {
  display: flex;
}

.audit-form .terms-text {
  color: var(--soft-grey);
  font-size: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.audit-form .terms-text a {
  color: var(--soft-grey);
  text-decoration: underline;
  transition: var(--icon-hover-transition);
}

.audit-form .terms-text a:hover {
  opacity: var(--hover-opacity-light);
}

.audit-form .audit-submit {
  background: var(--white) !important;
  color: var(--black) !important;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--card-hover-transition);
  width: 100%;
  position: relative;
  overflow: visible;
  z-index: 0;
}

.audit-form .audit-submit::before {
  display: none;
}

.audit-form .audit-submit:hover {
  opacity: 0.9;
  background: var(--white) !important;
  color: var(--black) !important;
}

.audit-form .audit-submit .btn-arrow {
  margin-left: 0.5em;
}

.light-mode .audit-form {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .audit-form label {
  color: var(--black);
}

.light-mode .audit-form .form-field {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .audit-form input,
.light-mode .audit-form select {
  color: var(--soft-blue);
}

.light-mode .audit-form input::placeholder {
  color: var(--soft-grey);
  line-height: 1.2;
  font-size: 1.15rem;
}

.light-mode .audit-form select option {
  background: var(--creme);
  color: var(--soft-blue);
}

.light-mode .audit-form .input-wrapper:has(select)::after {
  border-top: 6px solid var(--black);
}

.light-mode .audit-form .checkmark {
  background: var(--black);
  color: var(--white);
}

.light-mode .audit-form .terms-text {
  color: var(--soft-blue);
}

.light-mode .audit-form .terms-text a {
  color: var(--soft-blue);
}

.light-mode .audit-form .audit-submit {
  background: var(--black) !important;
  color: var(--white) !important;
}

.light-mode .audit-form .audit-submit:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

.audit-form .services-subtitle {
  color: var(--soft-grey);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.audit-form .services-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-form .checkbox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.audit-form .checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.audit-form .checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid var(--soft-grey);
  border-radius: 4px;
  position: relative;
  transition: all var(--transition-standard);
  background: transparent;
}

.audit-form .checkbox-field input[type="checkbox"]:checked {
  border-color: currentColor;
  background: currentColor;
}

.audit-form .checkbox-field input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.audit-form .checkbox-field label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Individual checkbox colors */
.audit-form .checkbox-orange input[type="checkbox"]:checked {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange);
}

.audit-form .checkbox-purple input[type="checkbox"]:checked {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--purple);
}

.audit-form .checkbox-green input[type="checkbox"]:checked {
  color: var(--green);
  border-color: var(--green);
  background: var(--green);
}

.audit-form .checkbox-blue input[type="checkbox"]:checked {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue);
}

.audit-form .checkbox-pink input[type="checkbox"]:checked {
  color: var(--pink);
  border-color: var(--pink);
  background: var(--pink);
}

.audit-form .checkbox-turquoise input[type="checkbox"]:checked {
  color: var(--turquoise);
  border-color: var(--turquoise);
  background: var(--turquoise);
}

/* Light mode checkbox colors */
.light-mode .audit-form .checkbox-field input[type="checkbox"] {
  border-color: var(--soft-grey);
}

.light-mode .audit-form .checkbox-orange input[type="checkbox"]:checked {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange);
}

.light-mode .audit-form .checkbox-purple input[type="checkbox"]:checked {
  color: var(--purple);
  border-color: var(--purple);
  background: var(--purple);
}

.light-mode .audit-form .checkbox-green input[type="checkbox"]:checked {
  color: var(--green);
  border-color: var(--green);
  background: var(--green);
}

.light-mode .audit-form .checkbox-blue input[type="checkbox"]:checked {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue);
}

.light-mode .audit-form .checkbox-pink input[type="checkbox"]:checked {
  color: var(--pink);
  border-color: var(--pink);
  background: var(--pink);
}

.light-mode .audit-form .checkbox-turquoise input[type="checkbox"]:checked {
  color: var(--turquoise);
  border-color: var(--turquoise);
  background: var(--turquoise);
}

.audit-form textarea {
  background: transparent;
  border: none;
  color: var(--soft-grey);
  font-size: 1.15rem;
  font-family: var(--primary-font);
  width: 100%;
  padding: 0;
  outline: none;
  resize: vertical;
  min-height: 4rem;
}

.audit-form textarea::placeholder {
  color: var(--soft-grey);
  line-height: 1.2;
  font-size: 1.15rem;
}

.light-mode .audit-form .services-subtitle {
  color: var(--soft-blue);
}

.light-mode .audit-form textarea {
  color: var(--soft-blue);
}

.audit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.audit-list li {
  color: var(--white);
  font-size: clamp(1.2rem, 0.3vw + 1rem, 1.5rem);
  line-height: 1.2;
  padding-left: 3.5rem;
  position: relative !important;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.light-mode .audit-list li {
  color: var(--soft-blue);
}

.light-mode .audit-list p {
  color: var(--soft-blue);
}



.audit-list li .line {
  position: relative;
}

.audit-list li::before {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 1.5rem;
  border-radius: 0.3rem;
  color: var(--white);
  padding-top: 2px;
  z-index: 1;
}

.audit-list li.audit-item-1::before {
  content: "01";
  background-color: var(--green);
}

.audit-list li.audit-item-2::before {
  content: "02";
  background-color: var(--pink);
}

.audit-list li.audit-item-3::before {
  content: "03";
  background-color: var(--blue);
}

.audit-list li.audit-item-4::before {
  content: "04";
  background-color: var(--orange);
}

.audit-list li.audit-item-5::before {
  content: "05";
  background-color: var(--purple);
}

.expect-steps {
  margin: 0 auto;
  max-width: 1300px;
  grid-column: 2 / 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.expect-steps .expect-step {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}


.expect-step {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 50px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  align-items: center;
  justify-content: start;
}

.expect-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
  padding: 60px 40px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: -100px;
  min-width: calc(33.333% - 5%);
}


.step-number {

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  font-family: var(--tertiary-font);
  text-transform: uppercase;
  font-feature-settings: "salt" 1!important;
  font-size: 40px;
  border-radius: 0.5rem;
  padding: 1.2rem 1.3rem;
  padding-top: 1.5rem;
  color: var(--black);
  flex-shrink: 0;
}

.step-number-green {
  background: var(--green);
}

.step-number-pink {
  background: var(--pink);
}

.step-number-purple {
  background: var(--blue);
}

.step-number-orange {
  background: var(--orange);
}

.step-number-violet {
  background: var(--purple);
}

.expect-step h3 {
  font-family: var(--secondary-font);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.expect-step p {
  color: var(--soft-grey);
}

.expect-step.frame::before, .expect-step.frame::after, .expect-step.frame-corner-bottom-left, .expect-step  .frame-corner-bottom-right {
  filter: invert(1);
  opacity: 0.5;
}

.light-mode .expect-step {
  background: var(--creme);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .expect-step h3 {
  color: var(--black);
}

.light-mode .expect-step p {
  color: var(--soft-blue);
}

.light-mode .expect-step.frame::before, 
.light-mode .expect-step.frame::after, 
.light-mode .expect-step.frame-corner-bottom-left, 
.light-mode .expect-step .frame-corner-bottom-right {
  filter: none;
  opacity: 1;
}


@media (max-width: 1200px) {
  .expect-steps .expect-step {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .expect-cta {
    min-width: calc(33.333% - 0%);
  }
}

@media (max-width: 768px) {
  .expect-header {
    grid-column: 1 / 13;
    margin-bottom: 40px;
  }

  .expect-steps {
    grid-column: 1 / 13;
    gap: 20px;
    margin-bottom: 40px;
  }

  .expect-steps .expect-step {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .expect-step {
    padding: 30px;
  }

  .expect-cta {
min-width: 100%;
  }
}



/* ==============================================
       Company Page
============================================== */

.company-hero {
  position: relative;
  padding-bottom: 350px;
}

.company-hero-pixel {
  position: absolute;
  bottom: 0;
}

.company-hero-pixel img {
  width: 100%;
  max-width: 450px;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 950px) {
  .company-hero {
    padding-bottom: 250px;
  }
  .company-hero-pixel img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .company-hero {
    padding-bottom: 180px;
  }
  .company-hero-pixel img {
    max-width: 180px;
  }
}

.company-hero h5 {
  color: var(--soft-blue);
  font-weight: 600!important;
  max-width: 65%!important;
}

.company-people .text-block {
  width: 100%;
  max-width: clamp(20.625rem, 75vw + 1rem, 48rem);
}

.company-people .text-block h6 {
  width: 100%;
  max-width: 78%!important;
}

.company-people .text-block h5 {
  padding: 180px 0;
  padding-top: 120px;
  font-weight: 600;
  max-width: 90%;
}

.company-people .team-member h5 {
  max-width: 7ch;
  word-break: normal;
  white-space: normal;
}

.company-people .team-member {
  align-items: start;
  position: relative;
}

.company-people .team-member .frame {
  position: relative;
  right: 0;
  display: flex!important;
  flex-direction: column!important;
  grid-gap: 30px;
  align-items: start;
  text-align: left!important;
  padding: 30px;
  width: 500px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

/* Disable hover animation for company-people frames */
.company-people .frame:has(a),
.company-people .frame:has(.link-overlay) {
  transition: none !important;
  cursor: default !important;
}

.company-people .frame:has(a):hover,
.company-people .frame:has(.link-overlay):hover,
.company-people .frame:has(.link-overlay:hover) {
  opacity: 1 !important;
}

.team-quotes .team-member .frame .linkedin-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--icon-hover-transition);
}

.team-quotes .team-member .frame .linkedin-icon:hover {
  opacity: var(--hover-opacity-light);
}

.team-quotes .team-member .frame .linkedin-icon {
  background-color: var(--soft-blue);
  -webkit-mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.team-quotes .team-member .frame .linkedin-icon img {
  width: 25px;
  height: 25px;
  opacity: 0;
}

.company-people .team-member .frame h5 {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1;
  font-size: 1.5625rem;
}

.company-people .team-member .frame h6 {
  color: var(--black);
  font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

.company-people .team-member .color-box {
  position: absolute;
  width: 80px;
  height:80px;
  z-index: -1;

}

.company-people .team-quotes.w-dyn-list {
  margin: 130px 0;
  margin-bottom: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 80px;
  width: 100%;
  padding: 0 var(--padding-sides-desktop);
  max-width: 1420px;
}

.company-people .team-quotes .w-dyn-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 80px;
  width: 100%;
}

.company-people .team-quotes .team-member,
.company-people .w-dyn-items .w-dyn-item {
  display: flex;
  flex-direction: row;
}

.company-people .team-quotes .team-member .avatar-icon,
.company-people .w-dyn-items .w-dyn-item .avatar-icon {
  aspect-ratio: 1 / 1;
  width: 270px;
  height: 270px;
  overflow: hidden;
  background: var(--turquoise);
  border-radius: 25px;
  margin-bottom: -60px;
}

/* Team Member Colors for Company People Section - Based on data-color */
.company-people .team-member[data-color="turquoise"] .avatar-icon,
.company-people .w-dyn-item[data-color="turquoise"] .avatar-icon {
  background: var(--turquoise);
}

.company-people .team-member[data-color="turquoise"] .indicator::before {
  background: var(--turquoise);
}

.company-people .team-member[data-color="green"] .avatar-icon,
.company-people .w-dyn-item[data-color="green"] .avatar-icon {
  background: var(--green);
}

.company-people .team-member[data-color="green"] .indicator::before {
  background: var(--green);
}

.company-people .team-member[data-color="blue"] .avatar-icon,
.company-people .w-dyn-item[data-color="blue"] .avatar-icon {
  background: var(--blue);
}

.company-people .team-member[data-color="blue"] .indicator::before {
  background: var(--blue);
}

.company-people .team-member[data-color="purple"] .avatar-icon,
.company-people .w-dyn-item[data-color="purple"] .avatar-icon {
  background: var(--purple);
}

.company-people .team-member[data-color="purple"] .indicator::before {
  background: var(--purple);
}

.company-people .team-member[data-color="orange"] .avatar-icon,
.company-people .w-dyn-item[data-color="orange"] .avatar-icon {
  background: var(--orange);
}

.company-people .team-member[data-color="orange"] .indicator::before {
  background: var(--orange);
}

.company-people .team-member[data-color="pink"] .avatar-icon,
.company-people .w-dyn-item[data-color="pink"] .avatar-icon {
  background: var(--pink);
}

.company-people .team-member[data-color="pink"] .indicator::before {
  background: var(--pink);
}

.company-people .team-member[data-color="peach"] .avatar-icon,
.company-people .w-dyn-item[data-color="peach"] .avatar-icon {
  background: var(--peach);
}

.company-people .team-member[data-color="peach"] .indicator::before {
  background: var(--peach);
}

/* LinkedIn Icon Colors for Company People - soft-blue color */
.company-people .team-member .linkedin-icon:not(.team-quotes .linkedin-icon),
.company-people .w-dyn-item .linkedin-icon:not(.team-quotes .linkedin-icon) {
  background-color: var(--soft-blue);
  -webkit-mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.company-people .team-member .linkedin-icon img:not(.team-quotes .linkedin-icon img),
.company-people .w-dyn-item .linkedin-icon img:not(.team-quotes .linkedin-icon img) {
  opacity: 0;
}

.company-people .team-quotes .team-member .avatar-icon img,
.company-people .w-dyn-items .w-dyn-item .avatar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-people .team-quotes .team-member .frame .linkedin-icon,
.company-people .w-dyn-items .w-dyn-item .frame .linkedin-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--icon-hover-transition);
}

.company-people .team-quotes .team-member .frame .linkedin-icon:hover,
.company-people .w-dyn-items .w-dyn-item .frame .linkedin-icon:hover {
  opacity: var(--hover-opacity-light);
}

.company-people .team-quotes .team-member .frame .linkedin-icon,
.company-people .w-dyn-items .w-dyn-item .frame .linkedin-icon {
  background-color: var(--soft-blue);
  -webkit-mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  mask-image: url('https://cdn.prod.website-files.com/6953a8efd7ae06cf48d7ccb7/6953faebf7e6ade9790dbac5_linkedin-icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
}

.company-people .team-quotes .team-member .frame .linkedin-icon img,
.company-people .w-dyn-items .w-dyn-item .frame .linkedin-icon img {
  width: 25px;
  height: 25px;
  opacity: 0;
  pointer-events: none; /* let clicks pass through to parent <a> */
}

/* Ensure LinkedIn links in about-us are clickable (override frame cursor: default) */
.company-people .team-quotes .team-member .frame .linkedin-icon,
.company-people .w-dyn-items .w-dyn-item .frame .linkedin-icon {
  cursor: pointer;
  pointer-events: auto;
}

.company-people .team-quotes .team-member:nth-child(odd),
.company-people .w-dyn-items .w-dyn-item:nth-child(odd) {
  flex-direction: row;
  justify-content: start;
}

.company-people .team-quotes .team-member:nth-child(odd) .frame,
.company-people .w-dyn-items .w-dyn-item:nth-child(odd) .frame {
  left: -70px;
  bottom: -130px;
}

.company-people .team-quotes .team-member:nth-child(odd) .color-box,
.company-people .w-dyn-items .w-dyn-item:nth-child(odd) .color-box {
  left: 185px;
  bottom: -165px;
}

.company-people .team-quotes .team-member:nth-child(even) .frame,
.company-people .w-dyn-items .w-dyn-item:nth-child(even) .frame {
  right: -70px;
  bottom: -130px;
}

.company-people .team-quotes .team-member:nth-child(even) .color-box,
.company-people .w-dyn-items .w-dyn-item:nth-child(even) .color-box {
  right: 185px;
  bottom: -165px;
}

.company-people .team-quotes .team-member:nth-child(even),
.company-people .w-dyn-items .w-dyn-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: end;
}

.company-people .team-quotes .team-member:nth-child(1) .color-box,
.company-people .w-dyn-items .w-dyn-item:nth-child(1) .color-box {
  background: var(--marker-purple);
}

.company-people .team-quotes .team-member:nth-child(2) .color-box,
.company-people .w-dyn-items .w-dyn-item:nth-child(2) .color-box {
  background: var(--marker-red);
}

.company-people .team-quotes .team-member:nth-child(3) .color-box,
.company-people .w-dyn-items .w-dyn-item:nth-child(3) .color-box {
  background: var(--marker-green);
}

.company-people .team-member,
.company-people .w-dyn-item {
  align-items: start;
  position: relative;
}

.company-people .team-member .frame,
.company-people .w-dyn-item .frame {
  position: relative;
  right: 0;
  display: flex!important;
  flex-direction: column!important;
  grid-gap: 30px;
  align-items: start;
  text-align: left!important;
  padding: 30px;
  width: 500px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

.company-people .team-member .frame h5,
.company-people .w-dyn-item .frame h5 {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1;
  font-size: 1.5625rem;
}

.company-people .team-member .frame h6,
.company-people .w-dyn-item .frame h6 {
  color: var(--black);
  font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

.company-people .team-member .color-box,
.company-people .w-dyn-item .color-box {
  position: absolute;
  width: 80px;
  height:80px;
  z-index: -1;
}



.team-quotes {
  margin: 130px 0;
  margin-bottom: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 80px;
  width: 100%;
  padding: 0 var(--padding-sides-desktop);
  max-width: 1420px;
}

.team-quotes .team-member {
  display: flex;
  flex-direction: row;
}

.team-quotes .team-member .avatar-icon {
  aspect-ratio: 1 / 1;
  width: 270px;
  height: 270px;
  overflow: hidden;
  background: var(--turquoise);
  border-radius: 25px;
  margin-bottom: -60px;
}

.team-quotes .team-member .avatar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-quotes .team-member:nth-child(odd) {
  flex-direction: row;
  justify-content: start;
}

.team-quotes .team-member:nth-child(odd) .frame {
  left: -70px;
  bottom: -130px;
}

.team-quotes .team-member:nth-child(odd) .color-box {
  left: 185px;
  bottom: -165px;
}

.team-quotes .team-member:nth-child(even) .frame {
  right: -70px;
  bottom: -130px;
}

.team-quotes .team-member:nth-child(even) .color-box {
  right: 185px;
  bottom: -165px;
}

.team-quotes .team-member:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: end;
}

.team-quotes .team-member:nth-child(1) .color-box {
  background: var(--marker-purple);
}

.team-quotes .team-member:nth-child(2) .color-box {
  background: var(--marker-red);
}

.team-quotes .team-member:nth-child(3) .color-box {
  background: var(--marker-green);
}

.team-quotes .team-member:nth-child(4) .color-box {
  background: var(--color-pink);
}

.joinus .container {
  position: relative;
  min-height: 800px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.joinus .text-block {
  position: relative;
  z-index: 2;
}

.joinus .gallery {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height:80%;
  pointer-events: none;
}

.joinus .gallery-item {
  position: absolute;
  width: 237px;
  height: 160px;
  overflow: hidden;
}

.joinus .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Left */
.joinus .gallery-item:nth-child(1) {
  top: 0;
  left: 12.3%;
}

/* Top Right */
.joinus .gallery-item:nth-child(2) {
  top: 0;
  right: 12.3%;
}

/* Middle Right */
.joinus .gallery-item:nth-child(3) {
  top: 50%;
  right: 4.63%;
  transform: translateY(-50%);
}

/* Bottom Right */
.joinus .gallery-item:nth-child(4) {
  bottom: 5%;
  right: 12.3%;
}

/* Bottom Left */
.joinus .gallery-item:nth-child(5) {
  bottom: 0;
  left: 12.3%;
}

/* Middle Left */
.joinus .gallery-item:nth-child(6) {
  top: 50%;
  left: 4.63%;
  transform: translateY(-50%);
}


@media (max-width: 1200px) {
  .team-quotes {
    grid-gap: 280px;
  }
  .team-quotes .team-member:nth-child(odd) .frame {
    left: -100px;
    bottom: -190px;
  }

  .team-quotes .team-member:nth-child(even) .frame {
    right: -100px;
    bottom: -190px;
  }

  .team-quotes .team-member:nth-child(odd) .color-box {
    left: 65px;
    bottom: -223px;
  }

  .team-quotes .team-member:nth-child(even) .color-box {
    right: 65px;
    bottom: -223px;
  }

  .company-people .team-quotes .team-member:nth-child(odd) .frame,
  .company-people .w-dyn-items .w-dyn-item:nth-child(odd) .frame {
    left: -100px;
    bottom: -190px;
  }

  .company-people .team-quotes .team-member:nth-child(even) .frame,
  .company-people .w-dyn-items .w-dyn-item:nth-child(even) .frame {
    right: -100px;
    bottom: -190px;
  }

  .company-people .team-quotes .team-member:nth-child(odd) .color-box,
  .company-people .w-dyn-items .w-dyn-item:nth-child(odd) .color-box {
    left: 65px;
    bottom: -223px;
  }

  .company-people .team-quotes .team-member:nth-child(even) .color-box,
  .company-people .w-dyn-items .w-dyn-item:nth-child(even) .color-box {
    right: 65px;
    bottom: -223px;
  }

  

  .joinus .gallery {
    top:0;
    position: relative;
    display: grid!important;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }

  .joinus .gallery-item {
    all:unset!important;
    position: relative!important;
  }


}

@media (max-width: 768px) {
  .team-quotes {
    grid-gap: 280px;
    padding: 0 var(--padding-sides-mobile);
  }

  .team-quotes .team-member .avatar-icon {
    min-width: 180px;
    max-height: 250px;
  }

  .company-people .team-member .frame,
  .company-people .w-dyn-item .frame {
    width: 100%;
    min-width: 70%;
    min-width: 220px;
  }

  .company-people .team-quotes .team-member .avatar-icon,
  .company-people .w-dyn-items .w-dyn-item .avatar-icon {
    min-width: 180px;
    max-height: 250px;
  }

  .company-people .team-quotes .team-member:nth-child(odd) .frame,
  .company-people .w-dyn-items .w-dyn-item:nth-child(odd) .frame {
    left: -150px;
    bottom: -190px;
  }

  .company-people .team-quotes .team-member:nth-child(even) .frame,
  .company-people .w-dyn-items .w-dyn-item:nth-child(even) .frame {
    right: -150px;
    bottom: -190px;
  }

  .company-people .team-quotes .team-member:nth-child(odd) .color-box,
  .company-people .w-dyn-items .w-dyn-item:nth-child(odd) .color-box {
    left: 15px;
    bottom: -223px;
  }

  .company-people .team-quotes .team-member:nth-child(even) .color-box,
  .company-people .w-dyn-items .w-dyn-item:nth-child(even) .color-box {
    right: 15px;
    bottom: -223px;
  }

  .team-quotes .team-member:nth-child(odd) .frame {
    left: -100px;
    bottom: -190px;
  }

  .team-quotes .team-member:nth-child(even) .frame {
    right: -100px;
    bottom: -190px;
  }

  .team-quotes .team-member:nth-child(odd) .color-box {
    left: 65px;
    bottom: -223px;
  }

  .team-quotes .team-member:nth-child(even) .color-box {
    right: 65px;
    bottom: -223px;
  }

  .company-people .text-block h6 {
    max-width: 100%!important;
  }

  .joinus .container {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .joinus .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

}






/* ==============================================
       Article Page
============================================== */
.article-header {
  padding-bottom: 0;
}

.article-header .text-block {
  max-width: 100%;
  width: 100%;
}

.article-header h2 {
  max-width: 1200px;
}

/*
.article-author {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--turquoise);
}
  */

.article-author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover {
  width: 100%;
  height:clamp(300px, 50vw, 600px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.article-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}

.article-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.article-content p {
  color: var(--soft-blue);
  line-height: 1.8;
}

.article-sketch, .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  width: 100%;
  margin: 0;
  align-self: start;
  display: flex;
  justify-content: start;
  align-items: start;
  min-height: 100%;
}


.article-sketch img, .w-richtext figure img {
  width: 100%;
  min-width: 100;
border-radius: 10px;
  height: auto;
  display: block;
  align-self: start;
  min-height: 100%;
}

.w-richtext figure.w-richtext-align-center {
  all: unset;
}

@media (max-width: 768px) {
  .article-content {
    padding: 0 20px;
    overflow-x: hidden;
  }
  
  .article-sketch {
    margin: 30px 0;
  }
  
  .article-code-block {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .article-content {
    padding: 0 15px;
  }
  
  .article-code-block {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.article-code-block {
  width: 100%;
  margin: 40px 0;
  background: var(--black);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.code-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 10px;
}

.code-block-title {
  color: var(--soft-grey);
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.code-copy-btn {
  all: unset;
  cursor: pointer;
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.code-copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.code-copy-btn.copied {
  background: var(--green);
  color: var(--black);
}

.article-code-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--black);
  -webkit-overflow-scrolling: touch;
}

.article-code-block code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  display: block;
  white-space: pre;
  word-wrap: normal;
  overflow-wrap: normal;
}

@media (max-width: 1200px) {
  .article-code-block {
    border-radius: 8px;
  }
  
  .code-block-header {
    padding: 12px 18px;
  }
  
  .article-code-block pre {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .article-code-block {
    margin: 30px 0;
    border-radius: 8px;
  }
  
  .article-code-block pre {
    padding: 15px;
  }
  
  .article-code-block code {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .code-block-header {
    padding: 12px 15px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .code-block-title {
    font-size: 12px;
  }
  
  .code-copy-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .article-code-block {
    margin: 20px 0;
    border-radius: 6px;
  }
  
  .code-block-header {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .code-block-title {
    font-size: 11px;
    width: 100%;
  }
  
  .code-copy-btn {
    font-size: 11px;
    padding: 4px 8px;
    width: 100%;
    text-align: center;
  }
  
  .article-code-block pre {
    padding: 12px;
  }
  
  .article-code-block code {
    font-size: 11px;
    line-height: 1.4;
  }
}



/* ==============================================
       FAQ Page
============================================== */

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;

  width: 100%;
}

.faq-item {
  padding: 0 !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  all: unset;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: background-color 0.2s ease;
  position: relative;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h5 {
  flex: 1;
  margin: 0;
  text-align: left;
  padding-right: 20px;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  order: 2;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  /* height and overflow handled by hidden.css */
  padding: 0 40px;
  display: block;
}

.faq-answer p {
  margin: 0;
  text-align: left;
  padding: 50px 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px 10px;
  }
  
  .faq-answer {
    padding: 0 10px;
  }
  
  .faq-answer p {
    padding: 20px 0;
  }
}


/* ==============================================
       Contact Page
============================================== */

.contact-page .footer {
  margin-top: -150px;
}

.contact-page .footer .container {
  display: none!important;
}

.note-box {
  border: 1px dashed var(--mid-grey);
  padding: 28px;
  border-radius: 5px;
  margin-top: 10px;
}

.note-box strong {
  color: var(--white);
  background: var(--pink);
  padding: 5px;
  margin-right: 10px;
}


@media (max-width: 768px) {
  .contact-page .footer {
    margin-top: -50px;
  }
}

/* ==============================================
       Terms Page
============================================== */


.terms .container {
  max-width: 1200px;
  margin: 0 auto;
}

.terms .general-content {
  text-align: left;
  grid-gap: 30px;
  display: flex;
  flex-direction: column;
}

/* ==============================================
       Webflow Form
============================================== */

.w-radio {
  all: unset;
}

.w-form {
  margin: unset!important;
}
.w-form-done {
  background-color: unset!important;
}

/* ==============================================
   Footer Contact Popups (Call / WhatsApp / Email)
   Always on top of the entire site (script moves .popups to body)
============================================== */

/* Below transition overlay during page transition; .popup-overlay when open has highest z-index */
.popups {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483646 !important;
  pointer-events: none;
}
.popups .popup-overlay {
  pointer-events: none;
}
.popups .popup-overlay.is-open {
  pointer-events: auto;
}

/* When .is-open, topmost layer (above page transition overlay) */
.popup-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}
.popup-overlay.is-open {
  background: rgba(0, 0, 0, 0.65);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Lock scroll when any overlay is open */
body.overlay-open,
html.overlay-open {
  overflow: hidden !important;
}

/* Don't lower header z-index – overlay is already on top (moved to body), so header stays visible behind overlay */

.popup-overlay.is-open .popup-box {
  transform: scale(1);
}
.popup-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tertiary-font);
  font-size: 1.25rem;
  font-weight: 100;
  letter-spacing: 0.03em;
  color: #374151;
  line-height: 1;
}
.popup-close:hover {
  background: #e5e7eb;
}
.popup-box h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}
.popup-call-phone {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin: 2rem 0;
}

@media (max-width: 650px) {
  .popup-call-phone {
    font-size: 7vw;
  }
}
.popup-call-phone:hover {
  text-decoration: underline;
}
.popup-hint {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.5rem 0 0;
}
.popup-email-address {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0.5rem 0 1rem;
}
.popup-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: var(--tertiary-font);
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 0.03em;
  font-feature-settings: "salt" 1;
  cursor: pointer;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #1a1a1a;
}
.popup-btn:hover {
  background: #f9fafb;
}
.popup-btn.primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.popup-btn.primary:hover {
  background: #374151;
}
.popup-whatsapp-text {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.popup-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.popup-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 1.25rem;
}
.popup-input::placeholder {
  color: #9ca3af;
}
.popup-single-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--tertiary-font);
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 0.03em;
  font-feature-settings: "salt" 1;
  cursor: pointer;
}
.popup-single-btn:hover {
  background: #374151;
}

/* Links styled as buttons - for navigation */
a.button-as-link {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font: inherit;
  box-sizing: border-box;
}
.light-mode a.button-as-link.filled {
  background: var(--black);
  color: var(--white);
  border: var(--button-width) solid var(--black);
  border-radius: var(--border-radius);
  padding: var(--button-padding);
}
.light-mode a.button-as-link.hollow {
  background: transparent;
  color: var(--black);
  border: var(--button-width) solid var(--black);
  border-radius: var(--border-radius);
  padding: var(--button-padding);
}


b, strong {
  font-weight: bold;
  display: inline-flex;
}

ul, ol {
  line-height: 2;
}