/* #region GLOBAL - RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* #endregion GLOBAL - RESET */

/* #region GLOBAL - ROOT VARIABLES */
:root {
  --cp-bg-alt: #ffffff;
  --bleu-nuit: #07143a;
  --texte: #111827;
  --muted: #6b7280;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0px 18px 45px rgba(15, 23, 42, 0.12);
  --cp-green: #1b5e20;
  --cp-gold: #c9a34e;
  --cp-bg: #fdf7e9;
  --cp-text: #1b1b1b;
  --fond-alt: #ffffff;
}

/* #endregion GLOBAL - ROOT VARIABLES */

/* #region GLOBAL - BASE ELEMENTS */
body.page {
  margin: 0px;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--texte);
  background-color: var(--cp-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* #endregion GLOBAL - BASE ELEMENTS */

/* #region GLOBAL - LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: max(20px, 5vw);
  padding-right: max(20px, 5vw);
  margin-left: auto;
  margin-right: auto;
}

/* #endregion GLOBAL - LAYOUT */

/* #region GLOBAL - UTILITIES */
.is-hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

/* #endregion GLOBAL - UTILITIES */

/* #region GLOBAL - BREAKPOINTS (FIXES) */
/* Base: < 480px */

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion GLOBAL - BREAKPOINTS (FIXES) */

/* #region INDEX - HERO SECTION (WRAPPER) */
.cp2-hero-section {
  position: relative;
  min-height: 80vh;
  background-image: linear-gradient(rgba(253, 247, 233, 0.85),
      rgba(253, 247, 233, 0.9)),
    url("/images/hero.webp");
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - HERO SECTION (WRAPPER) */


/* #region INDEX - NAVBAR (MOBILE-FIRST) */
.cp2-nav {
  position: fixed;
  top: 16px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.cp2-nav-bar {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-left: 24px;
  padding-right: 24px;
  pointer-events: auto;
}

.cp2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 999px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  box-shadow: 0px 12px 30px rgba(15, 23, 42, 0.12);
}

/* Header qui change au scroll */
.cp2-nav-inner.is-scrolled {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.cp2-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cp2-nav-logo-img {
  height: clamp(50px, 6vw, 60px);
}

/* Mobile-first : menu desktop caché */
.cp2-nav-center {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-grow: 1;
}

.cp2-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.cp2-nav-link {
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cp-green);
  font-weight: 600;
}

.cp2-nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  cursor: pointer;
}

.cp2-nav-lang-item {
  font-size: 13px;
}

.cp2-nav-lang-item--active {
  font-weight: 700;
  color: var(--cp-gold);
}

/* Mobile-first : CTA desktop caché */
.cp2-nav-inner>.cp2-nav-cta {
  display: none;
}

.cp2-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 999px;
  background-color: #00bb63;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cp2-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 24px rgba(0, 187, 99, 0.4);
}

.cp2-nav-cta--full {
  justify-content: center;
  width: 100%;
}

.cp2-nav-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp2-nav-cta-icon i {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
}

/* Mobile-first : burger visible */
.cp2-nav-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-width: 0px;
  border-style: none;
  background-color: transparent;
  cursor: pointer;
  margin-left: 12px;
}

.cp2-nav-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  margin-top: 3px;
  margin-bottom: 3px;
}

/* Menu mobile déroulant */
.cp2-nav-mobile {
  display: none;
  margin-top: 10px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 16px 40px rgba(15, 23, 42, 0.16);
}

.cp2-nav-mobile--open {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.cp2-nav-mobile-menu {
  list-style: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.cp2-nav-mobile-link {
  display: block;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #4b5563;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f3f4f6;
  font-weight: 600;
}

.cp2-nav-mobile-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
}

.cp2-nav-mobile-bottom .cp2-nav-lang {
  margin-top: 8px;
}

.cp2-nav-mobile .cp2-nav-cta--full {
  display: inline-flex;
  flex: 1 1 auto;
  width: auto;
  max-width: 260px;
  min-width: 0px;
  padding-top: 10px;
  padding-right: 18px;
  padding-bottom: 10px;
  padding-left: 18px;
  font-size: 12px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: 0px;
  border-radius: 24px;
}

/* @media (min-width: 480px) {
} */

@media (min-width: 601px) {
  .cp2-nav-cta-icon i {
    font-size: 25px;
  }
}

/* @media (min-width: 768px) {
} */

/* Desktop navbar (équivalent de max-width: 1060px inversé) */
@media (min-width: 1061px) {
  .cp2-nav-center {
    display: flex;
  }

  .cp2-nav-inner>.cp2-nav-cta {
    display: inline-flex;
  }

  .cp2-nav-burger {
    display: none;
  }
}

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - NAVBAR (MOBILE-FIRST) */


/* #region INDEX - HERO (CONTENT) */
.cp2-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.cp2-hero-inner {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.cp2-hero-intro {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a34e;
  font-weight: 800;
  padding-top: 70px;
}

.cp2-hero-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: clamp(28px, 5vw, 60px);
  line-height: 1.3;
  color: #1b5e20;
  padding-left: 10px;
  padding-right: 10px;
}

.cp2-hero-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 2vw, 18px);
  color: #6b7280;
  max-width: 900px;
  padding-left: 10px;
  padding-right: 10px;
}

.cp2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-direction: column;
  width: 100%;
}

.cp2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  border-radius: 999px;
  border-width: 0px;
  border-style: none;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
}

.cp2-btn:hover {
  transform: translateY(-2px);
}

.cp2-btn-primary {
  background-color: #1b5e20;
  color: #ffffff;
  box-shadow: 0px 10px 30px rgba(27, 94, 32, 0.3);
}

.cp2-btn-secondary {
  background-color: #ffffff;
  color: #1b5e20;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.1);
}

.cp2-hero-phone-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0px 18px 45px rgba(15, 23, 42, 0.25);
  font-weight: 800;
}

/* @media (min-width: 480px) {
} */

@media (min-width: 601px) {
  .cp2-hero-actions {
    flex-direction: row;
    width: auto;
  }

  .cp2-btn {
    width: auto;
  }
}

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - HERO (CONTENT) */

/* #region INDEX - OUR EXPERTISE (APPROACH + FLIP CARDS) */
.cp-approach {
  position: relative;
  padding-top: 140px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  background-color: var(--cp-bg);
  margin-bottom: 50px;
}

.cp-approach__title {
  position: sticky;
  top: 50vh;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 140px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  margin-bottom: 40px;
  color: rgba(27, 94, 32, 0.45);
  /* OK A */
}

.cp-approach__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  grid-template-columns: 1fr;
}

.cp-card {
  background-color: transparent;
  border-width: 0px;
  border-style: none;
  border-color: transparent;
  border-radius: 28px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  perspective: 1000px;
  height: 100%;
}

.cp-card__inner {
  position: relative;
  width: 100%;
  min-height: 280px;
  /* OK B */
  border-radius: 28px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  transform-style: preserve-3d;
  transition-property: transform, box-shadow;
  transition-duration: 600ms;
  transition-timing-function: ease;
}

@media (hover: hover) and (pointer: fine) {
  .cp-card:hover .cp-card__inner {
    transform: rotateY(180deg) translateY(-4px);
  }
}

.cp-card:hover .cp-card__inner {
  transform: rotateY(180deg);
  box-shadow: 0px 26px 70px rgba(0, 0, 0, 0.12);
}

.cp-card__face {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 28px;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-card__face--front {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  background-color: #ffffff;
  overflow: hidden;
}

.cp-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.cp-card__overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-image: linear-gradient(180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.60) 100%);
  color: #ffffff;
}

/* OK C : micro-ombre sur la face avant au hover */
.cp-card:hover .cp-card__face--front {
  box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.10);
}

.cp-card__overlay-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.cp-card__face--back {
  background-color: #ffffff;
  transform: rotateY(180deg);
}

.cp-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  color: var(--texte);
}

.cp-card__text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.cp-card__btn {
  margin-top: 20px;
  align-self: flex-start;
  padding-top: 10px;
  padding-right: 18px;
  padding-bottom: 10px;
  padding-left: 18px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--cp-green);
  background-color: white;
  color: var(--cp-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition-property: background-color, color, transform;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cp-card__btn:hover {
  background-color: #ffffff;
  color: var(--cp-green);
  transform: translateY(-2px);
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
  .cp-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* @media (min-width: 1024px) {
  .cp-approach__grid {
    grid-template-columns: repeat(3, 1fr);
  }
} */

/* @media (min-width: 1440px) {
} */

/* Exceptions existantes (rendu identique) */
@media (min-width: 768px) {
  .cp-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cp-approach__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* #endregion INDEX - OUR EXPERTISE (APPROACH + FLIP CARDS) */

/* #region INDEX - ABOUT (CP-ABOUT) */
.cp-about {
  padding-top: 80px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  background-image: linear-gradient(135deg, #021b2c 0%, var(--cp-green) 100%);
  color: #ffffff;
  margin-top: 50px;
}

.cp-about__container {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.cp-about__eyebrow {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  text-align: center;
  font-size: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-gold);
  font-weight: 400;
}

.cp-about__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.cp-about__grid {
  display: grid;
  gap: 40px;
  /* align-items: center; */
  align-items: stretch;
  grid-template-columns: 1fr;
}

.cp-about__media {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  height: 100%;
}

.cp-about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.35);
  border-width: 2px;
  border-style: solid;
  border-color: var(--cp-gold);
}

.cp-about__content {
  background-color: rgba(3, 30, 35, 0.72);
  border-radius: 28px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0px 18px 50px rgba(0, 0, 0, 0.35);
}

.cp-about__label {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}

.cp-about__headline {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-size: 22px;
  font-weight: 600;
}

.cp-about__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.cp-about__list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-left: 20px;
}

.cp-about__item {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  font-size: 15px;
  line-height: 1.6;
}

.cp-card__btn2 {
  display: inline-block;
  margin-top: 16px;
  padding-top: 10px;
  padding-right: 18px;
  padding-bottom: 10px;
  padding-left: 18px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--cp-green);
  background-color: #ffffff;
  color: var(--cp-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition-property: background-color, color, transform;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cp-card__btn2:hover {
  background-color: var(--cp-green);
  color: #ffffff;
  transform: translateY(-2px);
}

/* @media (min-width: 480px) {
} */

@media (min-width: 768px) {
  .cp-about__content {
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
  }
}

@media (min-width: 900px) {
  .cp-about__grid {
    grid-template-columns: minmax(0px, 1fr) minmax(0px, 1.1fr);
  }
}

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */

@media (max-width: 899px) {
  .cp-about__title {
    font-size: 32px;
  }
}

/* #endregion INDEX - ABOUT (CP-ABOUT) */

/* #region INDEX - MISSION & VISION (BRAND HERO + MV CARDS) */
.brand-hero {
  padding-top: 40px;
  padding-right: 0px;
  padding-bottom: 40px;
  padding-left: 0px;
  color: black;
  text-align: center;
  background-color: var(--cp-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.brand-hero .container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cp-green);
}

.brand-hero__subtitle {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cp-gold);
}

.mission-vision-grid {
  display: grid;
  gap: 32px;
  margin-top: 35px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
}

.mv-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding-right: 32px;
  padding-left: 32px;
  text-align: center;
  font-size: 18px;
}

.mv-card__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--cp-green);
}

.mv-card__text {
  text-align: justify;
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - MISSION & VISION (BRAND HERO + MV CARDS) */

/* #region INDEX - BRAND PROMISE */
.promise-section {
  padding-top: 50px;
  padding-right: 0px;
  padding-bottom: 100px;
  padding-left: 0px;
  text-align: center;
  background-image: linear-gradient(135deg, #021b2c 0%, var(--cp-green) 100%);
  color: white;
}

.promise-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.promise-description {
  font-size: clamp(15px, 2vw, 18px);
  margin-left: 50px;
  margin-right: 50px;
}

.promise-label {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cp-gold);
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - BRAND PROMISE */


/* #region INDEX - BLOG (CAROUSEL) */
.cp-blog {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: var(--fond);
}

.cp-blog__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}

.cp-blog__header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cp-blog__eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cp-gold);
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 500;
}

.cp-blog__title {
  font-size: 28px;
  line-height: 1.2;
  color: var(--bleu-nuit);
  margin-bottom: 12px;
}

.cp-blog__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 0px;
}

.cp-blog__carousel {
  position: relative;
}

.cp-blog__viewport {
  overflow: hidden;
}

.cp-blog__track {
  display: flex;
  transition-property: transform;
  transition-duration: 900ms;
  transition-timing-function: ease-in-out;
}

.cp-blog__slide {
  flex-basis: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  column-gap: 24px;
}

.cp-blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--fond-alt);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(7, 20, 58, 0.06);
  border-radius: 16px;
  box-shadow: 0px 18px 45px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition-property: transform;
  transition-duration: 250ms;
  transition-timing-function: ease;
}

.cp-blog-card:hover {
  transform: translateY(-6px);
}

.cp-blog-card__image-wrapper {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.cp-blog-card__image {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-blog-card__body {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.cp-blog-card__title {
  font-size: 18px;
  line-height: 1.3;
  color: var(--bleu-nuit);
  margin-bottom: 10px;
}

.cp-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.cp-blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cp-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  margin-bottom: 16px;
}

.cp-blog-card__link:hover {
  text-decoration: underline;
}

.cp-blog-card__meta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.cp-blog-card__time-icon {
  font-size: 14px;
}

.cp-blog-card__time-text {
  font-size: 13px;
}

/* @media (min-width: 480px) {
} */

@media (max-width: 768px) {
  .cp-blog {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cp-blog__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cp-blog__title {
    font-size: 24px;
  }

  .cp-blog__slide {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

@media (max-width: 1024px) {
  .cp-blog {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cp-blog__slide {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    row-gap: 24px;
  }
}

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - BLOG (CAROUSEL) */

/* #region INDEX - PARTNERS LOGOS */
.cp2-partners {
  background-color: #ffffff;
  padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
}

.cp2-hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.cp2-hero-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  min-width: 80px;
  flex-basis: 100%;
}

.cp2-hero-logo--surex {
  height: 80px;
}

.cp2-hero-logo--assure_go {
  height: 60px;
}

@media (min-width: 480px) {
  .cp2-hero-logo {
    flex-basis: auto;
  }
}

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion INDEX - PARTNERS LOGOS */



/* #region INDEX - FOOTER */
.cp-footer {
  background-color: var(--cp-bg);
  background-image: linear-gradient(135deg, #021b2c 0%, var(--cp-green) 100%);
  color: var(--cp-bg-alt);
  padding-top: 64px;
  padding-bottom: 40px;
}

.cp-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}

.cp-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  column-gap: 32px;
  row-gap: 24px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(248, 250, 252, 0.08);
  padding-bottom: 24px;
}

.cp-footer__col {
  font-size: 14px;
  line-height: 1.6;
}

.cp-footer__logo {
  display: inline-flex;
  align-items: center;
}

.cp-footer__logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.cp-footer__tagline {
  margin-top: 12px;
  margin-bottom: 0px;
  color: rgba(249, 250, 251, 0.8);
}

.cp-footer__heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cp-gold);
  margin-top: 4px;
  margin-bottom: 12px;
}

.cp-footer__list {
  list-style-type: none;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
}

.cp-footer__item {
  margin-bottom: 6px;
  font-size: 15px;
}

.cp-footer__item:last-child {
  margin-bottom: 0px;
}

.cp-footer__item--social {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.cp-footer__link {
  color: rgba(249, 250, 251, 0.9);
  text-decoration: none;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cp-footer__link:hover {
  color: var(--cp-gold);
}

.cp-footer__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(249, 250, 251, 0.7);
}

.cp-footer__disclaimer-text {
  margin-top: 0px;
  margin-bottom: 0px;
}

.cp-footer__disclaimer-bold {
  font-weight: 800;
  color: white;
}

.cp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 12px;
  column-gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(249, 250, 251, 0.7);
}

.cp-footer__bottom-left {
  display: flex;
  align-items: center;
  row-gap: 4px;
  column-gap: 12px;
  flex-wrap: wrap;
}

.cp-footer__copyright {
  white-space: nowrap;
}

.cp-footer__legal-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 8px;
}

.cp-footer__legal-link {
  color: rgba(249, 250, 251, 0.7);
  text-decoration: none;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cp-footer__legal-link:hover {
  color: var(--cp-gold);
}

.cp-footer__separator {
  color: rgba(249, 250, 251, 0.4);
}

.cp-footer__bottom-right {
  margin-left: auto;
  font-style: italic;
}

.cp-footer__credit {
  white-space: nowrap;
}

.cp-footer__credit-link {
  color: rgba(249, 250, 251, 0.9);
  text-decoration: none;
  font-weight: 500;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(201, 163, 78, 0.7);
  padding-bottom: 1px;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.cp-footer__credit-link:hover {
  color: var(--cp-gold);
}

.cp-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  text-decoration: none;
  margin-top: 20px;
}

.cp-footer__social-link:hover {
  background-color: var(--cp-gold);
}

.cp-footer__social-icon {
  font-size: 14px;
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */

@media (max-width: 960px) {
  .cp-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .cp-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cp-footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cp-footer__top {
    grid-template-columns: 1fr;
  }

  .cp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cp-footer__bottom-right {
    margin-left: 0px;
  }

  .cp-footer__credit {
    white-space: normal;
  }
}

/* #endregion INDEX - FOOTER */

/* #region GLOBAL - COOKIES (BANNER + MODAL) */
.cp-cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}

.cp-cookie-banner__inner {
  display: grid;
  grid-template-columns: auto minmax(0px, 1fr) auto;
  column-gap: 24px;
  row-gap: 16px;
  align-items: center;
}

.cp-cookie-banner__icon-wrap {
  display: flex;
  align-items: flex-start;
}

.cp-cookie-banner__icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--bleu-nuit);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-cookie-banner__icon {
  font-size: 20px;
  color: #ffffff;
}

.cp-cookie-banner__content {
  display: grid;
  row-gap: 4px;
}

.cp-cookie-banner__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bleu-nuit);
}

.cp-cookie-banner__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-text);
}

.cp-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.cp-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 22px;
  padding-bottom: 10px;
  padding-left: 22px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background-color: #ffffff;
  color: var(--bleu-nuit);
}

.cp-cookie-banner__btn--primary {
  background-color: var(--cp-green);
  border-color: var(--cp-green);
  color: #ffffff;
}

.cp-cookie-banner__btn--outline {
  background-color: #ffffff;
  border-color: var(--bleu-nuit);
  color: var(--bleu-nuit);
}

.cp-cookie-banner__btn--ghost {
  background-color: transparent;
  border-color: var(--cp-gold);
  color: var(--cp-gold);
}

.cp-cookie-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cp-cookie-modal.is-open {
  display: flex;
}

.cp-cookie-modal__backdrop {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(15, 23, 42, 0.4);
}

.cp-cookie-modal__dialog {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin-right: 16px;
  margin-left: 16px;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  border-radius: var(--radius-lg);
  background-color: var(--cp-bg-alt);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.cp-cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}

.cp-cookie-modal__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bleu-nuit);
}

.cp-cookie-modal__close {
  border-width: 0px;
  border-style: none;
  background-color: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.cp-cookie-modal__body {
  margin-top: 12px;
}

.cp-cookie-modal__intro {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 14px;
  color: var(--cp-text);
}

.cp-cookie-modal__categories {
  display: grid;
  row-gap: 12px;
}

.cp-cookie-modal__category {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
}

.cp-cookie-modal__category-text {
  display: grid;
  row-gap: 2px;
}

.cp-cookie-modal__category-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bleu-nuit);
}

.cp-cookie-modal__category-desc {
  font-size: 13px;
  color: var(--muted);
}

.cp-cookie-modal__category-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cp-cookie-modal__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.cp-cookie-modal__chip--locked {
  background-color: #e5e7eb;
  color: #4b5563;
}

.cp-cookie-modal__switch {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 22px;
  align-items: center;
}

.cp-cookie-modal__switch-input {
  opacity: 0;
  width: 0px;
  height: 0px;
}

.cp-cookie-modal__switch-slider {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #e5e7eb;
  border-radius: 999px;
  transition-property: background-color, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.cp-cookie-modal__switch-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px rgba(15, 23, 42, 0.2);
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.cp-cookie-modal__switch-input:checked+.cp-cookie-modal__switch-slider {
  background-color: var(--cp-green);
}

.cp-cookie-modal__switch-input:checked+.cp-cookie-modal__switch-slider::before {
  transform: translateX(18px);
}

.cp-cookie-modal__footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.cp-cookie-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-right: 18px;
  padding-bottom: 8px;
  padding-left: 18px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cp-cookie-modal__btn--primary {
  background-color: var(--cp-green);
  border-color: var(--cp-green);
  color: #ffffff;
}

.cp-cookie-modal__btn--secondary {
  background-color: #ffffff;
  border-color: #e5e7eb;
  color: var(--bleu-nuit);
}

/* @media (min-width: 480px) {
} */

/* @media (min-width: 768px) {
} */

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */

@media (max-width: 900px) {
  .cp-cookie-banner__inner {
    grid-template-columns: minmax(0px, 1fr);
  }

  .cp-cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .cp-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cp-cookie-banner__btn {
    width: 100%;
  }

  .cp-cookie-banner__actions {
    justify-content: stretch;
  }

  .cp-cookie-modal__dialog {
    margin-right: 12px;
    margin-left: 12px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* #endregion GLOBAL - COOKIES (BANNER + MODAL) */


/*=================================================== About Us =================================================
==============================================================================================================*/

/* #region ABOUT - HERO ABOUT */
.cp-about_about_us {
  padding-top: 220px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  background-image: linear-gradient(135deg, #021b2c 0%, var(--cp-green) 100%);
  color: #ffffff;
  margin-top: 0px;
}

.page-about .cp-about__text {
  font-size: 16px;
}

.page-about .cp-about__title {
  font-size: 32px;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {}

@media (min-width: 1440px) {}

/* #endregion ABOUT - HERO ABOUT */

/* #region ABOUT - CORE VALUES */
.values-section {
  padding-top: 60px;
  padding-right: 0px;
  padding-bottom: 60px;
  padding-left: 0px;
  background-color: #f9fafb;
}

.values-section .container {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.values-section__header {
  text-align: center;
  max-width: 720px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
}

.values-section__pretitle {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cp-green);
  font-weight: 600;
}

.values-section__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-size: 32px;
  font-weight: 700;
  color: var(--cp-green);
}

.values-section__description {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0px 14px 40px rgba(15, 23, 42, 0.08);
}

.value-card__number {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-gold);
}

.value-card__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--cp-green);
}

.value-card__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* Breakpoints fixes (mobile-first) */
@media (min-width: 480px) {}

@media (min-width: 768px) {
  .values-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) {}

@media (min-width: 1440px) {}

/* #endregion ABOUT - CORE VALUES */

/* #region ABOUT - STRATEGIC PILLARS */
.pillars-section {
  padding-top: 60px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  background-color: #021b2c;
  color: #ffffff;
}

.pillars-section .container {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.pillars-header {
  text-align: center;
  max-width: 640px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
}

.pillars-header__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 30px;
  font-weight: 700;
}

.pillars-header__subtitle {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pillar-card {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border-radius: 20px;
  background-color: rgba(3, 30, 35, 0.85);
  box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.pillar-card__icon {
  width: 40px;
  height: 40px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--cp-green);
  font-size: 20px;
}

.pillar-card__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 700;
}

.pillar-card__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Breakpoints fixes (mobile-first) */
@media (min-width: 480px) {}

@media (min-width: 768px) {
  .pillars-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {}

@media (min-width: 1440px) {}

/* #endregion ABOUT - STRATEGIC PILLARS */

/*===================================================================== PAGE OUR EXPERTISE =================================================*/

/* #region OUR EXPERTISE - TITLE (CP-APPROACH__TITLE2) */
.cp-approach__title2 {
  width: 100%;
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-green);
  font-size: 42px;
  line-height: 1.1;
}

/* @media (min-width: 480px) {
  .cp-approach__title2 {
    font-size: 56px;
  }
} */

@media (min-width: 480px) {
  .cp-approach__title2 {
    font-size: 56px;
  }
}

@media (min-width: 768px) {
  .cp-approach__title2 {
    font-size: 70px;
  }
}

@media (min-width: 1024px) {
  .cp-approach__title2 {
    font-size: 80px;
  }
}

@media (min-width: 1440px) {
  .cp-approach__title2 {
    font-size: 90px;
  }
}

/* #endregion OUR EXPERTISE - TITLE (CP-APPROACH__TITLE2) */



/* #region OUR EXPERTISE - DETAIL CARDS (CP-EXPERT) */
.cp-expert-section {
  max-width: 1100px;
  margin-top: 100px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.cp-expert-section {
  scroll-margin-top: 120px;
}

.cp-expert-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* Header (bandeau vert) */
.cp-expert-card__header {
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  background-color: var(--cp-green);
  color: #ffffff;
}

.cp-expert-card__title {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

.cp-expert-card__subtitle {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

/* Corps de carte */
.cp-expert-card__body {
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  background-color: #ffffff;
}

.cp-expert-card__intro {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Titre section avec barre */
.cp-expert-card__section-heading {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.cp-expert-card__section-bar {
  display: inline-block;
  width: 4px;
  height: 32px;
  border-radius: 9999px;
  background-color: var(--cp-gold);
}

.cp-expert-card__section-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--cp-green);
}

/* Steps */
.cp-expert-card__steps {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  margin-bottom: 32px;
}

.cp-expert-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  align-items: flex-start;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-radius: 16px;
  background-color: #fef7e9;
}

.cp-expert-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fffbf2;
  border-width: 2px;
  border-style: solid;
  border-color: var(--cp-gold);
  color: var(--cp-green);
  font-size: 18px;
}

.cp-expert-step__content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.cp-expert-step__title {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--cp-green);
}

.cp-expert-step__text {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* Note (estate planning) */
.cp-expert-card__note {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

/* CTA bloc */
.cp-expert-card__cta {
  margin-top: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-radius: 16px;
  background-image: linear-gradient(to right, #f6fbf7 0%, #fdf7e9 100%);
}

.cp-expert-card__cta-text {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.cp-expert-card__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 28px;
  padding-bottom: 12px;
  padding-left: 28px;
  border-radius: 9999px;
  border-width: 0px;
  border-style: none;
  background-color: var(--cp-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.16);
  transition-property: background-color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.cp-expert-card__cta-button:hover {
  background-color: #14401a;
  transform: translateY(-2px);
  box-shadow: 0px 14px 32px rgba(0, 0, 0, 0.2);
}

.cp-expert-card__cta-button:focus-visible {
  outline: 2px solid var(--cp-gold);
  outline-offset: 3px;
}

/* @media (min-width: 480px) {
} */

@media (min-width: 768px) {
  .cp-expert-card__header {
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .cp-expert-card__body {
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }
}

/* @media (min-width: 1024px) {
} */

/* @media (min-width: 1440px) {
} */
/* #endregion OUR EXPERTISE - DETAIL CARDS (CP-EXPERT) */

/*===================================================================== FIN PAGE OUR EXPERTISE =================================================*/


/*===================================================================== PAGE LET'S TALK =================================================*/

/* #region CONTACT - SECTION */
.cp-contact {
  padding-top: 140px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
}

.cp-contact__container {
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {
  .cp-contact__container {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .cp-contact {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .cp-contact__container {
    grid-template-columns: minmax(0px, 1.15fr) minmax(0px, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1440px) {}

/* #endregion CONTACT - SECTION */

/* #region CONTACT - INTRO */
.cp-contact__eyebrow {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cp-gold);
}

.cp-contact__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--cp-green);
}

.cp-contact__text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.cp-contact__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.cp-contact__detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cp-contact__detail-icon {
  width: 32px;
  height: 32px;
  align-items: center;
  background-color: var(--cp-bg);
  color: var(--cp-green);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.cp-contact__detail-icon.fa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.cp-contact__detail-icon.fa-solid::before {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  top: 0px;
}


.cp-contact__detail-link {
  color: var(--cp-green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.cp-contact__detail-link:hover {
  text-decoration: underline;
}

.cp-contact__detail-text {
  font-size: 15px;
  color: var(--cp-green);
  font-weight: 600;
}

.cp-contact__legal-note {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {
  .cp-contact__title {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .cp-contact__title {
    font-size: 38px;
  }
}

@media (min-width: 1440px) {
  .cp-contact__title {
    font-size: 42px;
  }
}

/* #endregion CONTACT - INTRO */

/* #region CONTACT - FORM */
.cp-contact__form-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 18px 45px rgba(15, 23, 42, 0.08);
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.cp-contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cp-contact__field {
  display: grid;
  gap: 6px;
}

.cp-contact__label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.cp-contact__input {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #111827;
  outline: none;
  background-color: #ffffff;
}

.cp-contact__select {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #111827;
  outline: none;
  background-color: #ffffff;
}

.cp-contact__textarea {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #111827;
  outline: none;
  resize: vertical;
  min-height: 140px;
}

.cp-contact__input:focus,
.cp-contact__select:focus,
.cp-contact__textarea:focus {
  border-color: var(--cp-green);
  box-shadow: 0px 0px 0px 1px rgba(27, 94, 32, 0.22);
}

.cp-contact__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cp-contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.cp-contact__checkbox-label input[type="checkbox"] {
  margin-top: 3px;
}

.cp-contact__checkbox-text {
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
}

.cp-contact__legal-link {
  color: var(--cp-green);
  text-decoration: underline;
  font-weight: 700;
}

.cp-contact__legal-link:hover {
  text-decoration: none;
}

.cp-contact__form-note {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 12px;
  color: #6b7280;
}

.cp-contact__submit {
  padding-top: 12px;
  padding-right: 18px;
  padding-bottom: 12px;
  padding-left: 18px;
  border-width: 0px;
  border-style: none;
  border-radius: 999px;
  background-color: var(--cp-green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp-contact__submit:hover {
  background-color: #134321;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {
  .cp-contact__form-wrapper {
    padding-top: 28px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
  }
}

@media (min-width: 1024px) {}

@media (min-width: 1440px) {}

/* #endregion CONTACT - FORM */


/*===================================================================== FIN PAGE LET'S TALK =================================================*/

/*===================================================================== PAGE DISCLAIMER =================================================*/

/* #region LEGAL - DISCLAIMER (CP-LEGAL) */
.cp-legal {
  background-color: var(--cp-bg);
  padding-top: 140px;
  padding-right: 0px;
  padding-bottom: 60px;
  padding-left: 0px;
}

.cp-legal__container {
  max-width: 1100px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
}

.cp-legal__eyebrow {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cp-gold);
  font-weight: 600;
}

.cp-legal__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
  font-size: 32px;
  line-height: 1.15;
  color: var(--cp-green);
  font-weight: 800;
}

.cp-legal__content {
  max-width: 820px;
  background-color: #ffffff;
  border-radius: 24px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  box-shadow: 0px 18px 45px rgba(15, 23, 42, 0.08);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(7, 20, 58, 0.06);
}

.cp-legal__content p {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.cp-legal__content p:last-child {
  margin-bottom: 0px;
}

/* @media (min-width: 480px) */
@media (min-width: 480px) {
  .cp-legal {
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .cp-legal__title {
    font-size: 36px;
  }

  .cp-legal__content {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  .cp-legal__content p {
    font-size: 16px;
  }
}

/* @media (min-width: 768px) */
@media (min-width: 768px) {
  .page-legal .cp-legal {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
  }

  .cp-legal__title {
    font-size: 44px;
  }

  .cp-legal__content {
    border-radius: 28px;
    padding-top: 28px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
  }
}

/* @media (min-width: 1024px) */
@media (min-width: 1024px) {
  .cp-legal {
    padding-top: 180px;
    padding-bottom: 90px;
  }

  .cp-legal__title {
    font-size: 48px;
  }

  .cp-legal__content {
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
  }
}

/* @media (min-width: 1440px) */
@media (min-width: 1440px) {
  .cp-legal__container {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* #endregion LEGAL - DISCLAIMER (CP-LEGAL) */


/*===================================================================== FIN PAGE DISCLAIMER =================================================*/

/*===================================================================== PAGE Terms of Use =================================================*/


/* #region TERMS - LEGAL HERO (CP2-LEGAL-HERO) */
.cp2-legal-hero {
  padding-top: 120px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  background-color: var(--cp-bg);
}

.cp2-legal-hero-inner {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.cp2-legal-hero-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  color: var(--cp-gold);
}

.cp2-legal-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  color: var(--cp-green);
}

.cp2-legal-hero-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  color: var(--cp-text);
}

@media (min-width: 480px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
  .cp2-legal-hero {
    padding-top: 140px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (min-width: 1440px) {}

/* #endregion TERMS - LEGAL HERO (CP2-LEGAL-HERO) */

/* #region TERMS - LEGAL LAYOUT (CP2-LEGAL) */
.cp2-legal {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  padding-left: 20px;
  background-color: var(--cp-bg);
}

.cp2-legal-inner {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  align-items: flex-start;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
  .cp2-legal {
    padding-right: 40px;
    padding-left: 40px;
  }

  .cp2-legal-inner {
    grid-template-columns: 280px 1fr;
    column-gap: 40px;
    row-gap: 0px;
  }
}

@media (min-width: 1440px) {}

/* #endregion TERMS - LEGAL LAYOUT (CP2-LEGAL) */

/* #region TERMS - SIDEBAR (CP2-LEGAL-SIDEBAR) */
.cp2-legal-sidebar {
  position: static;
}

.cp2-legal-sidebar-card {
  background-color: var(--fond-alt);
  border-radius: 16px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: var(--shadow-soft);
}

.cp2-legal-sidebar-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  color: var(--cp-green);
}

.cp2-legal-sidebar-list {
  list-style: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.cp2-legal-sidebar-item {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-weight: 500;
  line-height: 2;
}

.cp2-legal-sidebar-item:last-child {
  margin-bottom: 0px;
}

.cp2-legal-sidebar-link {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

.cp2-legal-sidebar-link:hover {
  text-decoration: underline;
  color: var(--cp-gold);
}

@media (min-width: 480px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
  .cp2-legal-sidebar {
    position: sticky;
    top: 120px;
  }
}

@media (min-width: 1440px) {}

/* #endregion TERMS - SIDEBAR (CP2-LEGAL-SIDEBAR) */

/* #region TERMS - CONTENT (CP2-LEGAL-CONTENT) */
.cp2-legal-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text);
  text-align: justify;
  margin-right: 50px;
  margin-left: 50px;
}

.cp2-legal-section {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 32px;
  margin-left: 0px;
}

/* #region TERMS - ANCHOR OFFSET (FIX NAV OVERLAP) */
.cp2-legal-section {
  scroll-margin-top: 110px;
}

@media (min-width: 480px) {
  .cp2-legal-section {
    scroll-margin-top: 120px;
  }
}

@media (min-width: 768px) {
  .cp2-legal-section {
    scroll-margin-top: 130px;
  }
}

@media (min-width: 1024px) {
  .cp2-legal-section {
    scroll-margin-top: 140px;
  }
}

@media (min-width: 1440px) {
  .cp2-legal-section {
    scroll-margin-top: 150px;
  }
}

/* #endregion TERMS - ANCHOR OFFSET (FIX NAV OVERLAP) */


.cp2-legal-section:last-child {
  margin-bottom: 0px;
}

.cp2-legal-section-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  color: var(--cp-green);
}

.cp2-legal-section p {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
}

@media (min-width: 480px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {}

@media (min-width: 1440px) {}

/* #endregion TERMS - CONTENT (CP2-LEGAL-CONTENT) */




/*===================================================================== FIN PAGE Terms of Use =================================================*/


/*=====================================================================  PAGE Privacy Policy =================================================*/

/* ===================== Privacy Policy (pp-*) ===================== */

.pp-main {
  width: 100%;
}

/* Container aligné sur cp2-legal (padding 20 -> 40 à 1024px) */
.pp-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1024px) {
  .pp-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ===================== HERO ===================== */

.pp-hero {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 40px;
  background-color: var(--cp-bg);
}

/* Hero limité à 960px comme cp2-legal-hero-inner */
.pp-hero .pp-container {
  max-width: 960px;
}

@media (min-width: 1024px) {
  .pp-hero {
    padding-top: 140px;
  }
}

.pp-kicker {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 8px;
  margin-left: 0px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cp-gold);
  opacity: 1;
}

.pp-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 32px;
  font-weight: 700;
  color: var(--cp-green);
  letter-spacing: 0px;
  line-height: 1.2;
}

.pp-meta {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--cp-text);
  opacity: 1;
}

/* ===================== LAYOUT ===================== */

.pp-layout {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: var(--cp-bg);
}

.pp-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .pp-grid {
    grid-template-columns: 280px 1fr;
    column-gap: 40px;
    row-gap: 0px;
  }
}

/* ===================== SIDEBAR ===================== */

.pp-sidebar {
  position: static;
}

@media (min-width: 1024px) {
  .pp-sidebar {
    position: sticky;
    top: 110px;
  }
}

.pp-sidebar-card {
  background-color: var(--fond-alt);
  border-radius: 16px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: var(--shadow-soft);
  border-width: 0px;
}

.pp-sidebar-title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cp-green);
  letter-spacing: 0px;
  text-transform: none;
  opacity: 1;
}

.pp-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding-right: 0px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--cp-green) rgba(0, 0, 0, 0.10);
}

@media (max-width: 1023px) {
  .pp-nav {
    max-height: none;
    overflow-y: visible;
    scrollbar-gutter: auto;
  }
}

.pp-nav-link {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  line-height: 2;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-radius: 0px;
  border-width: 0px;
  opacity: 1;
  transition: none;
}

.pp-nav-link:hover {
  text-decoration: underline;
  color: var(--cp-gold);
  background: transparent;
}

/* ===================== CONTENT ===================== */

.pp-content {
  width: 100%;
  min-width: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text);
  text-align: justify;
}

.pp-section {
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  scroll-margin-top: 110px;
}

@media (min-width: 480px) {
  .pp-section {
    scroll-margin-top: 120px;
  }
}

@media (min-width: 768px) {
  .pp-section {
    scroll-margin-top: 130px;
  }
}

@media (min-width: 1024px) {
  .pp-section {
    scroll-margin-top: 140px;
  }
}

@media (min-width: 1440px) {
  .pp-section {
    scroll-margin-top: 150px;
  }
}

.pp-section+.pp-section {
  margin-top: 32px;
}

.pp-h2 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--cp-green);
  letter-spacing: 0px;
}

.pp-content p {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text);
  opacity: 1;
}

.pp-list {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  padding-left: 18px;
}

.pp-li {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text);
  opacity: 1;
}


/*===================================================================== FIN PAGE Privacy Policy =================================================*/


/*=============================================================== PAGE THANK YOU ===============================================*/

.cp-thankyou {
  padding-top: 140px;
  padding-right: 0px;
  padding-bottom: 90px;
  padding-left: 0px;
  position: relative;
  overflow: hidden;
}

.cp-thankyou::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 520px;
  opacity: 0.18;
  filter: blur(2px);
  pointer-events: none;
}

.cp-thankyou::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -260px;
  width: 640px;
  height: 640px;
  border-radius: 640px;
  opacity: 0.12;
  filter: blur(2px);
  pointer-events: none;
}

.cp-thankyou__container {
  max-width: 980px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cp-thankyou__container::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 860px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.cp-thankyou__card {
  max-width: 860px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 34px;
  padding-right: 22px;
  padding-bottom: 30px;
  padding-left: 22px;
  border-radius: 22px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cp-thankyou__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
  padding-right: 14px;
  padding-bottom: 10px;
  padding-left: 14px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.22);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.cp-thankyou__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  opacity: 0.9;
}

.cp-thankyou__eyebrow {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 800;
  font-size: clamp(18px, 4vw, 40px);
}

.cp-thankyou__title {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 14px;
  margin-left: 0px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--cp-green);
}

.cp-thankyou__text {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  max-width: 640px;
  line-height: 1.7;
  opacity: 0.95;
}

.cp-thankyou__divider {
  width: 100%;
  max-width: 520px;
  height: 1px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  opacity: 0.22;
}

.cp-thankyou__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.cp-thankyou__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding-top: 12px;
  padding-right: 18px;
  padding-bottom: 12px;
  padding-left: 18px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.25);
  transform: translateY(0px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
  color: var(--cp-gold);
  font-weight: 500;
}

.cp-thankyou__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0px 18px 44px var(--cp-green);
  border-color: rgba(255, 255, 255, 0.22);
}

.cp-thankyou__btn:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.cp-thankyou__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.10);
  opacity: 0.92;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.cp-thankyou__link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18);
}

.cp-thankyou__link:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.cp-thankyou__alt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.95;
}

.cp-thankyou__contact {
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  transition: border-bottom-color 180ms ease, opacity 180ms ease;
}

.cp-thankyou__contact:hover {
  border-bottom-color: rgba(255, 255, 255, 0.30);
  opacity: 1;
}

.cp-thankyou__dot {
  opacity: 0.55;
}

@media (min-width: 768px) {
  .cp-thankyou__card {
    padding-top: 44px;
    padding-right: 44px;
    padding-bottom: 38px;
    padding-left: 44px;
  }
}

@media (min-width: 1024px) {
  .cp-thankyou {
    padding-top: 160px;
    padding-bottom: 110px;
  }

  .cp-thankyou__title {
    margin-bottom: 16px;
  }

  .cp-thankyou__text {
    margin-bottom: 28px;
  }
}


/*=============================================================== FIN PAGE THANK YOU ===============================================*/































/*======================================= Les animations =========================================== */

/* ========================================================================== */
/* ======================= SYSTÈME D'ANIMATIONS CONSOLIDÉ =================== */
/* ========================================================================== */

/* --- 1. COMPORTEMENT DE BASE (Le Fade Up standard) --- */
/* Définition de la TRANSITION sur la classe de base. Le délai DOIT être appliqué ici. */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  /* État initial: vient du bas */

  /* CRITIQUE: La propriété transition complète est définie une seule fois ici */
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform, filter;
}

/* Quand le JS ajoute .is-visible : */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 2. VARIANTE : BLUR (Style Apple) --- */
/* Utilisation HTML : class="animate-on-scroll anim-blur" */
.animate-on-scroll.anim-blur {
  filter: blur(10px);
  transform: scale(0.95);
  /* Écrase le translateY(30px) */
  /* NOTE: PAS de propriété 'transition' ici pour que le délai soit hérité du haut */
}

.animate-on-scroll.anim-blur.is-visible {
  filter: blur(0);
  transform: scale(1);
}

/* --- 3. VARIANTE : POP (Effet rebond) --- */
/* Utilisation HTML : class="animate-on-scroll anim-pop" */
.animate-on-scroll.anim-pop {
  transform: scale(0.8) translateY(20px);
  /* On modifie seulement la fonction de timing pour l'effet rebond */
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.anim-pop.is-visible {
  transform: scale(1) translateY(0);
}

/* --- 4. VARIANTE : SLIDE (Gauche / Droite) --- */
/* Utilisation HTML : class="animate-on-scroll anim-left" ou "anim-right" */
.animate-on-scroll.anim-left {
  transform: translateX(-50px);
}

.animate-on-scroll.anim-right {
  transform: translateX(50px);
}

/* Reset commun pour gauche/droite quand visible */
.animate-on-scroll.anim-left.is-visible,
.animate-on-scroll.anim-right.is-visible {
  transform: translateX(0);
}

/* --- 5. DÉLAIS (Pour l'effet cascade) --- */
/* C'est la propriété qui est ajoutée à la transition définie au point 1. */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}

.delay-700 {
  transition-delay: 0.7s;
}

.delay-800 {
  transition-delay: 0.8s;
}

.delay-900 {
  transition-delay: 0.9s;
}

.delay-1000 {
  transition-delay: 1s;
}

.delay-3000 {
  transition-delay: 3s;
}

.delay-4000 {
  transition-delay: 4s;
}

@media (max-width: 767px) {

  .animate-on-scroll.anim-left,
  .animate-on-scroll.anim-right {
    transform: translateY(30px);
  }

  .animate-on-scroll.anim-left.is-visible,
  .animate-on-scroll.anim-right.is-visible {
    transform: translateY(0px);
  }
}