@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  font-family: "Graphik Medium", "Graphik Medium Placeholder", sans-serif;
  box-sizing: border-box;
}

*::selection {
  background-color: #2563eb;
  /* Couleur de fond du texte sélectionné */
  color: #042a2b;
  /* Couleur du texte sélectionné */
}

body {
  overflow-x: hidden;
  background: #f4f4f9;
  color: #042a2b;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 80px;
  }
}

p {
  line-height: 1.7;
  margin: 0 0 0.85rem;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

h1 {
  line-height: 1.05;
}

h2 {
  line-height: 1.12;
}

h3 {
  line-height: 1.18;
}

h4 {
  line-height: 1.22;
}

li {
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

li:last-child {
  margin-bottom: 0;
}

.fullWidthContainer {
  width: 100vw;
  border: 1px solid rgba(4, 42, 43, 0.15);
  background-color: #f4f4f9;
}

.screenViewSection {
  height: 100vh;
}

nav#mainNav {
  position: absolute;
  top: 0;
  height: 60px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  align-content: center;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.1);
}

nav#mainNav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: -webkit-fill-available;
}

nav#mainNav ul section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100%/3);
  height: -webkit-fill-available;
  align-items: center;
}

nav#mainNav ul section.logo {
  padding: 0 1.25%;
}

nav#mainNav ul section.logo li a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

nav#mainNav ul section.links {
  width: 70%;
}

nav#mainNav ul section.links div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  margin: auto;
}

nav#mainNav ul section.links div li a {
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
}

nav#mainNav ul section.links div li a:hover {
  border-bottom: 4px solid rgba(255, 255, 255, 0.7);
}

nav#mainNav ul section.connexion {
  height: fit-content;
  padding: 0 1.25%;
  justify-content: end !important;
}

nav#mainNav ul section.connexion li {
  height: fit-content;
}

nav#mainNav ul section.connexion li .ctaConnexion, nav#mainNav ul section.connexion li .ctaTransparency {
  background-color: #0a0e12;
  border-radius: 4px;
  color: white;
  padding: 12px;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

nav#mainNav ul section.connexion li .ctaConnexion:hover, nav#mainNav ul section.connexion li .ctaTransparency:hover {
  background-color: white;
  color: #0a0e12;
  transition: 0.3s ease;
}

nav#mainNav ul section li a {
  color: rgba(255, 255, 255, 0.7);
}

nav#mainNav a {
  text-decoration: none;
}

@media (min-width: 1380px) {
  nav#mainNav ul section.links {
    width: 100%;
  }
  nav#mainNav ul section.links div {
    width: 35%;
  }
}

@media (max-width: 1024px) {
  nav#mainNav {
    position: fixed !important;
    top: 0;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  nav#mainNav section.links {
    position: absolute;
    top: 0;
    width: 100vw !important;
    height: calc(100vh - 60px);
    background: linear-gradient(180deg, white 0%, #f4f4f9 40%, #f4f4f9 100%);
    padding: 80px 10vw 12vh;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
    /* Menu visible */
  }
  nav#mainNav section.links.menu-hidden {
    display: none !important;
  }
  nav#mainNav section.links.menu-visible {
    display: block !important;
  }
  nav#mainNav section.links div {
    flex-direction: column !important;
    justify-content: start !important;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
  }
  nav#mainNav section.links div li {
    width: 100%;
    text-align: left;
  }
  nav#mainNav section.links div li a {
    color: #0a0e12;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: .2px;
    text-shadow: unset !important;
    width: 100%;
    padding: .35em 0;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  nav#mainNav section.links div li a:hover {
    color: #2563eb;
    border-bottom-color: rgba(37, 99, 235, 0.45);
  }
}

nav#mobileNav {
  display: none;
}

@media (max-width: 1024px) {
  nav#mobileNav {
    display: flex;
    height: 60px;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    padding: 0 1rem;
  }
  nav#mobileNav button {
    background-color: transparent;
    border: 1px solid rgba(4, 42, 43, 0.18);
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 14px;
    color: #042a2b;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(4, 42, 43, 0.08);
  }
  nav#mobileNav button i {
    font-size: 1.5em;
  }
}

.ctaTransparency {
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-radius: 8px;
  color: #2563eb;
  padding: 11px 22px;
  letter-spacing: 1.2px;
  font-size: 0.95em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(4, 42, 43, 0.05);
}

.ctaTransparency:hover {
  background-color: #2563eb;
  color: #f4f4f9 !important;
  transition: 0.22s ease;
}

a#scrollDown {
  padding: 12px !important;
}

video.banners {
  cursor: auto;
  width: 100vw;
  height: 100vh;
  border-radius: 0px;
  display: block;
  background-color: transparent;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  transform: scale(1);
}

video.banners.lazy-video {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

video.banners.lazy-video.loaded {
  opacity: 1;
}

span.underlineText {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.2) 40%, transparent 42%);
  color: #042a2b;
}

h1 .underlineText,
h2 .underlineText,
h3 .underlineText {
  color: inherit;
}

.slideTitle {
  font-size: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  width: fit-content;
  white-space: nowrap;
  border-radius: 4px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(4, 42, 43, 0.08);
}

.btn--primary {
  background: #2563eb;
  color: #f4f4f9;
}

.btn--primary:hover {
  background: #1453dd;
}

.btn--ghost {
  border-color: rgba(4, 42, 43, 0.08);
  background: rgba(244, 244, 249, 0.75);
  color: #042a2b;
}

.btn--ghost:hover {
  border-color: rgba(4, 42, 43, 0.18);
  background: #f4f4f9;
}

.btn--dark {
  background-color: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.btn--dark:hover {
  background-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

section.heroBanner {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  background-size: cover;
}

section.heroBanner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 42, 43, 0.42) 0%, rgba(4, 42, 43, 0.6) 60%, rgba(4, 42, 43, 0.72) 100%);
  z-index: 1;
}

section.heroBanner video.banners {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.05);
  z-index: 0;
}

section.heroBanner div.mainTitle {
  position: relative;
  z-index: 2;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.heroBanner div.mainTitle h1 {
  font-size: 3.5em;
  color: #f4f4f9;
  text-align: center;
}

@media (max-width: 1024px) {
  section.heroBanner div.mainTitle {
    width: 100%;
    text-align: center;
  }
}

section.heroBanner div.bottomLineBanner {
  position: relative;
  z-index: 2;
  position: absolute;
  bottom: 5vh;
  left: 2.5vw;
  width: 95vw;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-end;
}

section.heroBanner div.bottomLineBanner aside {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

section.heroBanner div.bottomLineBanner aside h2, section.heroBanner div.bottomLineBanner aside p {
  color: #f4f4f9;
}

section.heroBanner div.bottomLineBanner aside h2 {
  font-size: clamp(1.35em, 2vw, 1.8em);
}

section.heroBanner div.bottomLineBanner aside p {
  font-weight: lighter;
  line-height: 1.55;
}

section.heroBanner div.bottomLineBanner section {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
  margin-left: auto;
}

section.heroBanner div.bottomLineBanner section aside {
  width: auto !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: fit-content;
  gap: .75rem;
  background: transparent;
  border: none;
}

section.heroBanner div.bottomLineBanner section aside a {
  color: #f4f4f9;
  border: 1px solid rgba(244, 244, 249, 0.35);
  background: rgba(244, 244, 249, 0.08);
  backdrop-filter: blur(8px);
}

@media (max-width: 1024px) {
  section.heroBanner div.bottomLineBanner {
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    height: auto;
    bottom: 9vh;
    left: 5vw;
    width: 90vw;
  }
  section.heroBanner div.bottomLineBanner aside {
    width: 100%;
  }
  section.heroBanner div.bottomLineBanner section {
    width: 100%;
  }
  section.heroBanner div.bottomLineBanner section aside {
    width: 100% !important;
  }
}

.heroBanner--compact {
  position: relative;
  height: 50vh;
  min-height: 420px;
  max-height: 560px;
  overflow: hidden;
}

.heroBanner--compact .banners {
  height: 100%;
  min-height: 50vh;
}

.heroBanner--compact .heroBanner__content {
  position: absolute;
  inset: 0;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  color: #f4f4f9;
  z-index: 2;
}

.heroBanner--compact .heroBanner__content h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
  color: #f4f4f9;
}

.heroBanner--compact .heroBanner__content p {
  color: rgba(244, 244, 249, 0.9);
  line-height: 1.6;
}

.heroBanner--compact .heroBanner__content .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: .5rem;
}

.heroBanner--compact .heroBanner__content .actions a {
  margin: 0;
  flex: 0 1 auto;
}

.heroBanner--compact .heroBanner__content .actions a.btn--ghost {
  margin-top: .4rem;
}

.heroBanner--compact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0.55) 45%, rgba(37, 99, 235, 0.35) 100%);
  z-index: 1;
}

section .sectionTitle {
  margin: 5rem 0 2rem 0;
}

section.references {
  padding: 0 5vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

section.references aside {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2vh auto 0;
  width: 90vw;
}

section.references aside .clientsCards {
  width: 25%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f4f4f9;
  padding: 1.35rem 1.1rem;
  border-radius: 12px;
  color: #042a2b;
  text-decoration: none;
  border: 1px solid rgba(4, 42, 43, 0.22);
  box-shadow: 0 8px 18px rgba(4, 42, 43, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

section.references aside .clientsCards img {
  height: 7vh;
  width: auto;
  object-fit: contain;
}

section.references aside .clientsCards:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(4, 42, 43, 0.08);
}

section.quickViewServices {
  background-color: #f4f4f9;
  display: flex;
  flex-direction: column;
  align-content: center;
  padding: 0 5vw;
  gap: 2.25rem;
}

section.quickViewServices.screenViewSection {
  height: auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0 4rem;
}

section.quickViewServices h2, section.quickViewServices > p {
  max-width: 90vw;
  margin: 0 auto;
}

section.quickViewServices.screenViewSection {
  height: 100vh;
}

@media (max-width: 768px) {
  section.quickViewServices.screenViewSection {
    height: 173vh;
  }
  section.quickViewServices h2 {
    margin-top: 4rem !important;
  }
}

section.quickViewServices section.homePageServiceListing {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  max-width: 1180px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  section.quickViewServices section.homePageServiceListing {
    height: fit-content;
    margin: 3rem auto;
  }
}

section.quickViewServices section.homePageServiceListing section.quickViewServicesCard {
  flex: 1 1 calc(50% - 1rem);
  /* 2 cartes par ligne */
  max-width: calc(50% - 1rem);
  padding: clamp(1.3rem, 2vw, 1.55rem);
  background-color: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  box-shadow: 0 8px 18px rgba(4, 42, 43, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  gap: .9rem;
}

section.quickViewServices section.homePageServiceListing section.quickViewServicesCard .imgIllustrationServices {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

section.quickViewServices section.homePageServiceListing section.quickViewServicesCard h3 {
  margin: 1rem 0 .5rem;
}

@media (max-width: 768px) {
  section.quickViewServices section.homePageServiceListing section.quickViewServicesCard {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

section.quickViewServices a.ctaTransparency {
  background-color: #2563eb !important;
  color: #f4f4f9;
  width: fit-content;
  margin: 1rem 0;
  align-self: flex-start;
  margin-left: calc(100% - 1180px)/2;
}

section.quickViewServices a.ctaTransparency:hover {
  border: 3px solid #2563eb !important;
  background-color: #1557e6 !important;
  color: #f4f4f9 !important;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  section.quickViewServices a.ctaTransparency {
    width: fit-content;
    margin: 1rem auto;
  }
}

section.ourValues {
  position: relative;
  height: calc(125vh * 4);
  padding: 0 5vw;
  gap: clamp(2rem, 5vw, 3rem);
}

section.ourValues .ourValuesHeader {
  position: sticky;
  top: 0;
  height: 30vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f4f4f9;
  padding-top: 10vh;
}

section.ourValues .ourValuesHeader h2 {
  margin-bottom: 1rem;
}

section.ourValues .ourValuesHeader p {
  max-width: 80%;
  line-height: 1.6;
}

section.ourValues .slidesWrapper {
  position: sticky;
  top: 30vh;
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

section.ourValues .slidesWrapper .slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
  text-align: center;
  pointer-events: none;
  height: fit-content;
  width: 80vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

section.ourValues .slidesWrapper .slide aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: space-evenly;
  height: 30vh;
}

section.ourValues .slidesWrapper .slide aside h3 {
  margin-bottom: 1rem;
}

section.ourValues .slidesWrapper .slide aside p {
  line-height: 1.6;
}

section.ourValues .slidesWrapper .slide img {
  width: clamp(18vh, 22vw, 26vh);
  height: clamp(18vh, 22vw, 26vh);
  aspect-ratio: 1/1;
  object-fit: contain;
  background: transparent;
}

section.ourValues .slidesWrapper .slide.active {
  opacity: 1;
  pointer-events: auto;
}

section.ourValues .progressBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(4, 42, 43, 0.08);
  border: 1px solid rgba(4, 42, 43, 0.1);
  border-radius: 999px;
  overflow: hidden;
  z-index: 11;
  max-width: 89.80vw;
  box-shadow: 0 10px 22px rgba(4, 42, 43, 0.08);
}

section.ourValues .progressBar .progressFill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb 0%, #4a7eee 40%, #ef6f6c 100%);
  transition: width 0.18s ease-out, opacity 0.3s ease;
  border-radius: inherit;
}

section.ourValues .progressBar.is-complete .progressFill {
  opacity: 0;
}

section.testimonials {
  background-color: #f4f4f9;
  padding: clamp(3.5rem, 6vw, 5rem) 8vw clamp(5rem, 8vw, 7rem);
}

section.testimonials h2 {
  text-align: center;
}

section.testimonials .testimonialsContainer {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  height: 100%;
  margin-top: 2rem;
}

section.testimonials .testimonialsContainer .leftTestimonials {
  width: 50%;
  margin-top: 3%;
}

section.testimonials .testimonialsContainer .rightTestimonials {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3%;
}

section.testimonials .testimonialsContainer .rightTestimonials .topRightTestimonials {
  height: 50%;
  width: 100%;
}

section.testimonials .testimonialsContainer .rightTestimonials .bottomRightTestimonials {
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

section.testimonials .testimonialsContainer .testimonialCard {
  border: 1px solid rgba(4, 42, 43, 0.22);
  background: #f4f4f9;
  box-shadow: 0 12px 28px rgba(4, 42, 43, 0.04);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

section.testimonials .testimonialsContainer .testimonialCard header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: fit-content;
  gap: 1rem;
}

section.testimonials .testimonialsContainer .testimonialCard footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

section.testimonials .testimonialsContainer .testimonialCard footer img {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.15);
  border-radius: 6px;
  padding: .35rem;
}

section.testimonials .testimonialsContainer .testimonialCard footer aside.clientInformation {
  display: flex;
  flex-direction: column;
}

.servicesPage {
  padding: clamp(3rem, 6vw, 5rem) 5vw 5rem;
  background: #f4f4f9;
}

.servicesPage .servicesPage__layout {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.servicesPage .servicesSections {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
  width: 100%;
}

.servicesTimeline {
  position: sticky;
  top: 6.5rem;
  width: 240px;
  align-self: flex-start;
  padding: 1.5rem 0 0;
  max-height: calc(100vh - 8rem);
  overflow: auto;
  scrollbar-width: none;
}

.servicesTimeline::-webkit-scrollbar {
  display: none;
}

.servicesTimeline__list {
  list-style: none;
  padding-left: 1.6rem;
  margin: 0;
  position: relative;
}

.servicesTimeline__list::before {
  content: '';
  position: absolute;
  left: .55rem;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: rgba(4, 42, 43, 0.15);
  border-radius: 999px;
}

.servicesTimeline__item {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
  transition: transform .2s ease;
}

.servicesTimeline__item:last-child {
  margin-bottom: 0;
}

.servicesTimeline__item::before {
  content: '';
  position: absolute;
  left: -.35rem;
  top: .3rem;
  width: 12px;
  height: 12px;
  background: #f4f4f9;
  border: 2px solid rgba(4, 42, 43, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(4, 42, 43, 0.02);
  transition: all .2s ease;
}

.servicesTimeline__item.is-active {
  transform: translateX(4px);
}

.servicesTimeline__item.is-active::before {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 0 6px rgba(239, 111, 108, 0.18);
}

.servicesTimeline__item.is-active a {
  color: #042a2b;
  font-weight: 700;
}

.servicesTimeline__item a {
  color: rgba(4, 42, 43, 0.65);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  white-space: nowrap;
}

.servicesTimeline__item a:hover {
  color: #042a2b;
}

.servicesSection {
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 0 18px 45px rgba(4, 42, 43, 0.05);
  scroll-margin-top: 120px;
}

.servicesSection .sectionTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .8rem;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: 1px;
  width: 100%;
}

.servicesSection h2 {
  margin: 1rem 0 .75rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.servicesSection p {
  color: rgba(4, 42, 43, 0.65);
  line-height: 1.6;
}

.servicesSection .actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.servicesSection__header {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.5rem;
}

.servicesIntro__bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .6rem;
}

.servicesIntro__bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(4, 42, 43, 0.65);
}

.servicesIntro__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #2563eb;
}

.servicesSection--grid {
  background: #f4f4f9;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.serviceCard {
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: 0 12px 28px rgba(4, 42, 43, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.serviceCard .sectionTag {
  margin-bottom: .5rem;
}

.serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(4, 42, 43, 0.08);
}

.serviceCard h3 {
  margin-bottom: .5rem;
}

.serviceCard p {
  color: rgba(4, 42, 43, 0.65);
}

.serviceCard > a.btn {
  align-self: center;
  width: 100%;
  max-width: 240px;
}

.serviceCard__bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .5rem;
}

.serviceCard__bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(4, 42, 43, 0.65);
}

.serviceCard__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #2563eb;
}

.servicesHighlight {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.servicesHighlight h3 {
  margin: 0;
}

.servicesHighlight p {
  flex: 1 1 45%;
  min-width: 240px;
  color: #042a2b;
  line-height: 1.6;
}

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.audienceCard {
  background: #ffe7e8;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 12px;
  padding: 1.25rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: #042a2b;
  box-shadow: 0 8px 18px rgba(4, 42, 43, 0.04);
}

.audienceCard p {
  color: rgba(4, 42, 43, 0.65);
  margin: 0;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faqItem {
  border: 1px solid rgba(4, 42, 43, 0.15);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  background: #f4f4f9;
  box-shadow: 0 10px 24px rgba(4, 42, 43, 0.05);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.faqItem[open] {
  border-color: rgba(239, 111, 108, 0.55);
  box-shadow: 0 16px 32px rgba(4, 42, 43, 0.08);
  background: rgba(244, 244, 249, 0.9);
}

.faqItem summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  color: #042a2b;
}

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

.faqItem summary::after {
  content: '+';
  font-size: 1.2rem;
  color: rgba(4, 42, 43, 0.65);
  transition: transform .2s ease;
}

.faqItem[open] summary::after {
  content: '–';
  transform: rotate(90deg);
  color: #042a2b;
}

.faqItem p {
  margin-top: .75rem;
}

.servicesCTA {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(37, 99, 235, 0.8) 50%, rgba(37, 99, 235, 0.75) 100%);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #f4f4f9;
}

.servicesCTA__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.servicesCTA p, .servicesCTA h2 {
  color: #f4f4f9;
  margin: 0;
}

.servicesCTA h2 {
  margin: .4rem 0 .25rem;
}

.servicesSection--cta {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.servicesCTA__form {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  background: rgba(244, 244, 249, 0.9);
  border: 1px solid rgba(4, 42, 43, 0.15);
  border-radius: 14px;
  padding: 1rem;
}

.servicesCTA__form[hidden] {
  display: none !important;
}

.servicesCTA__form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: #042a2b;
  font-weight: 600;
  font-size: .95rem;
}

.servicesCTA__form label span {
  color: rgba(4, 42, 43, 0.65);
  font-weight: 600;
}

.servicesCTA__form label input, .servicesCTA__form label textarea {
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(4, 42, 43, 0.15);
  background: #f4f4f9;
  font-size: 1rem;
  font-family: inherit;
}

.servicesCTA__form label textarea {
  resize: vertical;
}

.servicesCTA__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.servicesCTA__row--submit {
  grid-template-columns: 1fr;
  justify-content: flex-start;
}

.servicesCTA__message textarea {
  min-height: 140px;
}

.servicesCTA__status {
  margin: .25rem 0 0;
  font-weight: 700;
  color: rgba(4, 42, 43, 0.65);
}

.servicesCTA__status.is-success {
  color: rgba(37, 99, 235, 0.9);
}

.servicesCTA__status.is-error {
  color: #ef6f6c;
}

.servicesBooking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.servicesBooking .btn {
  font-size: unset;
}

.servicesBooking__copy {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  width: 93%;
}

.servicesBooking__bullets {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: grid;
  gap: .5rem;
}

.servicesBooking__bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(4, 42, 43, 0.65);
}

.servicesBooking__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #2563eb;
}

.servicesBooking__embed {
  background: #2563eb;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.4);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: inset 0 1px 0 rgba(244, 244, 249, 0.06), 0 18px 32px rgba(37, 99, 235, 0.16);
  max-height: 58vh;
}

.servicesBooking__embed #cal-embed {
  width: 100%;
  min-height: 320px;
}

.servicesBooking__note {
  color: rgba(244, 244, 249, 0.75);
  font-size: .95rem;
  margin: 0;
}

#my-cal-inline-30min {
  height: auto !important;
}

.legalPage {
  padding: clamp(3rem, 6vw, 5rem) 5vw;
  background: #f4f4f9;
  min-height: 100vh;
}

.legalPage .servicesSection--intro {
  background: #f4f4f9;
}

.loginForm {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.loginForm label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-weight: 600;
  color: #042a2b;
}

.loginForm label input {
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(4, 42, 43, 0.22);
  background: #f4f4f9;
  font-size: 1rem;
  font-family: inherit;
}

.loginHelp {
  margin-top: 1rem;
  color: rgba(4, 42, 43, 0.65);
}

@media (max-width: 1180px) {
  .servicesTimeline {
    width: 200px;
  }
}

@media (min-width: 1025px) {
  .servicesTimeline {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .heroBanner--compact {
    height: 55vh;
    min-height: 420px;
  }
  .heroBanner--compact .heroBanner__content {
    max-width: 100%;
  }
  .servicesPage__layout {
    flex-direction: column;
  }
  .servicesTimeline {
    position: relative;
    top: 0;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(4, 42, 43, 0.22);
    border-radius: 14px;
    background: #ffe7e8;
    overflow: hidden;
    max-height: none;
  }
  .servicesTimeline__list {
    display: block;
    padding-left: 1.6rem;
    margin: 0;
  }
  .servicesTimeline__list::before {
    display: block;
    bottom: .25rem;
  }
  .servicesTimeline__item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    min-width: auto;
    text-align: left;
  }
  .servicesTimeline__item::before {
    position: absolute;
    left: -.35rem;
    margin: 0;
    display: block;
  }
  .servicesTimeline__item a {
    justify-content: flex-start;
    font-size: 1rem;
    white-space: nowrap;
  }
  .servicesHighlight {
    flex-direction: column;
    align-items: flex-start;
  }
  .servicesCTA {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .servicesSection {
    padding: 1.5rem;
  }
  #contact-form {
    padding: unset;
  }
  .servicesTimeline__item a {
    font-size: .9rem;
  }
  .servicesHighlight p {
    min-width: auto;
  }
  .servicesCTA__row .btn--primary {
    width: 100%;
  }
}

@media (min-width: 1380px) {
  section.heroBanner div.banner section aside {
    width: 16% !important;
  }
}

@media (max-width: 1024px) {
  div.mainTitle {
    top: 30% !important;
  }
  div.mainTitle h1 {
    max-width: 80%;
    margin: auto;
  }
  h1 {
    font-size: 2em !important;
  }
  div.bottomLineBanner {
    height: 34lvh !important;
    left: 5vw !important;
    width: 90vw !important;
  }
  div.bottomLineBanner aside {
    height: 27vh !important;
  }
  div.bottomLineBanner aside h2 {
    font-size: 1.65em !important;
  }
  div.bottomLineBanner section aside {
    height: fit-content !important;
  }
  #scrollDown {
    display: none;
  }
  .references {
    height: fit-content !important;
    padding-bottom: 10vh !important;
  }
  .references aside {
    flex-direction: column;
  }
  .references aside a {
    width: 100% !important;
  }
  section.ourValues .ourValuesHeader {
    height: 35vh;
  }
  section.ourValues .ourValuesHeader p {
    width: 100%;
    max-width: 100% !important;
  }
  section.ourValues .slidesWrapper {
    top: 35vh;
    height: 58.5vh;
    display: flex;
  }
  section.ourValues .slidesWrapper .slide {
    display: flex;
    flex-direction: column;
    height: 100% !important;
  }
  section.ourValues .slidesWrapper .slide h3 {
    font-size: 1.5rem;
  }
  section.ourValues .slidesWrapper .slide img {
    width: 20vh;
    height: 12vh;
  }
  section.ourValues .slidesWrapper .progressBar {
    display: none;
  }
  section.testimonials {
    background: #f4f4f9;
    padding: clamp(2.5rem, 6vw, 3rem) 5% clamp(5rem, 10vw, 7rem);
    height: fit-content !important;
  }
  section.testimonials .testimonialsContainer {
    flex-direction: column;
  }
  section.testimonials .testimonialsContainer .leftTestimonials {
    width: 100%;
  }
  section.testimonials .testimonialsContainer .rightTestimonials {
    width: 100%;
    margin-top: unset;
  }
  section.testimonials .testimonialsContainer .rightTestimonials .bottomRightTestimonials {
    flex-direction: column;
  }
  section.testimonials .testimonialCard {
    height: fit-content !important;
    gap: 1rem;
  }
}

#servicesBanner {
  background-image: url(../assets/videos/square_animation_blue.mp4);
  background-size: cover;
}

#realisationsBanner {
  background-image: url(../assets/videos/square_animation_green.mp4);
  background-size: cover;
}

.homeAlt {
  background: #f4f4f9;
  color: #042a2b;
}

.homeAlt section.fullWidthContainer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.homeAlt #homeAltHero {
  margin-top: 0;
}

.homeAlt .footerBanner {
  margin-bottom: 0;
}

.homeAlt .homeAlt__sectionHeader {
  max-width: 100%;
  margin: 0 0 clamp(1.25rem, 3vw, 2.25rem);
  text-align: left;
}

.homeAlt .homeAlt__sectionHeader p.sectionTag {
  margin-bottom: .35rem;
}

.homeAlt #homeAltHero.heroBanner--compact {
  min-height: 520px;
  max-height: 640px;
}

.homeAlt #homeAltHero.heroBanner--compact .heroBanner__content {
  max-width: 760px;
  gap: 1.25rem;
}

.homeAlt #homeAltHero.heroBanner--compact .homeAlt__heroCtas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.homeAlt .homeAlt__services,
.homeAlt .homeAlt__cases,
.homeAlt .homeAlt__method,
.homeAlt .homeAlt__testimonials {
  padding: clamp(3rem, 6vw, 4.75rem) 5vw;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.homeAlt .homeAlt__services .homeAlt__sectionHeader,
.homeAlt .homeAlt__cases .homeAlt__sectionHeader,
.homeAlt .homeAlt__method .homeAlt__sectionHeader,
.homeAlt .homeAlt__testimonials .homeAlt__sectionHeader {
  max-width: 100%;
  text-align: left;
}

.homeAlt .homeAlt__services .homeAlt__sectionHeader p.sectionTag,
.homeAlt .homeAlt__cases .homeAlt__sectionHeader p.sectionTag,
.homeAlt .homeAlt__method .homeAlt__sectionHeader p.sectionTag,
.homeAlt .homeAlt__testimonials .homeAlt__sectionHeader p.sectionTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .8rem;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.1);
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: 1px;
  margin-bottom: .35rem;
}

.homeAlt .homeAlt__services,
.homeAlt .homeAlt__cases {
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(4, 42, 43, 0.05);
}

.homeAlt .homeAlt__method,
.homeAlt .homeAlt__testimonials {
  background: transparent;
  border: none;
  box-shadow: none;
}

.homeAlt .homeAlt__servicesGrid,
.homeAlt .homeAlt__stepsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  max-width: 100%;
  margin: 0;
}

.homeAlt .homeAlt__card {
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 28px rgba(4, 42, 43, 0.04);
}

.homeAlt .homeAlt__card h3 {
  margin-bottom: .35rem;
}

.homeAlt .homeAlt__card p {
  margin: 0;
  line-height: 1.55;
}

.homeAlt .homeAlt__servicesGrid .serviceCard {
  min-height: 220px;
  border-radius: 16px;
}

.homeAlt .homeAlt__casesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 100%;
  margin: 0;
}

.homeAlt .homeAlt__casesGrid .clientsCards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #f4f4f9;
  border: 1px solid rgba(4, 42, 43, 0.22);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(4, 42, 43, 0.04);
  padding: 1.25rem 1rem;
  text-align: center;
  color: #042a2b;
}

.homeAlt .homeAlt__casesGrid .clientsCards img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.homeAlt .homeAlt__ctaRow {
  display: flex;
  justify-content: center;
}

.homeAlt .homeAlt__cases .clientsCards {
  width: 100%;
}

.homeAlt .homeAlt__method .homeAlt__stepsGrid .homeAlt__card {
  text-align: left;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 980px) {
  .homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }
}

@media (max-width: 640px) {
  .homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
  }
  .homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard {
    grid-column: 1 / -1 !important;
    width: 100%;
  }
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  border: none;
  background: #f4f4f9;
  box-shadow: 0 18px 45px rgba(4, 42, 43, 0.12);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard.testimonialCard--long {
  grid-column: 1 / -1;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard:nth-child(1) {
  grid-column: 1 / span 1;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard:nth-child(2) {
  grid-column: 2 / span 1;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard:nth-child(3) {
  grid-column: 1 / -1;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard header {
  flex: 1;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard footer {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: auto;
}

.homeAlt .homeAlt__testimonials .homeAlt__testimonialGrid .testimonialCard footer img {
  width: 64px;
  height: 64px;
}

.footerBanner {
  background: #f4f4f9;
  border-top: 1px solid rgba(4, 42, 43, 0.15);
  padding: clamp(2.5rem, 4vw, 3.5rem) 5vw;
}

@media (max-width: 1024px) {
  .footerBanner {
    padding-bottom: calc(clamp(2.5rem, 4vw, 3.5rem) + 60px);
  }
}

#footer {
  max-width: 1200px;
  margin: 0 auto;
}

#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

#footer .footer__brand {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

#footer .footer__brand p {
  font-weight: 700;
  margin: 0;
}

#footer .footer__brand small {
  color: rgba(4, 42, 43, 0.65);
}

#footer .footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}

#footer .footer__links a {
  color: rgba(4, 42, 43, 0.65);
  text-decoration: none;
  font-weight: 600;
}

#footer .footer__links a:hover {
  color: #2563eb;
}

@media (max-width: 640px) {
  #footer .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #footer .footer__links {
    align-items: flex-start;
  }
}

.legalPage #footer .footer__links a {
  color: #000;
}

.legalPage #footer .footer__links a:hover {
  color: #2563eb;
}
