/* ========================================
   Landing Evidence - Styles
   ======================================== */

h2 {
  text-transform: initial !important;
}
body.landing-evidence.responsive main {
  margin-top: initial !important;
}
body.responsive #page {
  margin-top: 80px;
}

/* Variables */
:root {
  --color-primary: #ec6855;
  --color-secondary: #192436;
}
span.text-primary {
  color: var(--color-primary) !important;
}
/* Base */
.landing-evidence * {
  font-family: "Century Gothic", sans-serif !important;
}

.landing-evidence * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.btn {
  border-radius: 0 !important;
  &::after {
    display: none !important;
  }
  &.btn-primary:hover {
    background-color: var(--color-primary) !important;
    transition: all 0.3s ease-in-out;
  }
}
/* Header */
.landing-evidence #masthead {
  position: sticky;
  z-index: 100;
  top: 0;
}

.landing-evidence #masthead .site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #d8d8d8;
  height: 83px;
  display: flex;
  align-items: center;
}

.landing-evidence .site-header .inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-evidence .header-logo {
  display: flex;
  align-items: center;
}

.landing-evidence .header-logo img {
  height: 44px;
  width: auto;
}

.landing-evidence .header-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.landing-evidence .header-nav a {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #192436;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
}

.landing-evidence .header-nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: var(--color-primary);
  @media (min-width: 1024px) {
    right: -30px;
  }
}

.landing-evidence .header-nav a:hover {
  color: #000000;
}

.landing-evidence .header-button {
  background-color: #192436;
  color: #ffffff;
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 32px 15px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.landing-evidence .header-button:hover {
  background-color: #2a3a50;
}

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

.landing-evidence .hero-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  /* min-height: 100vh; */
}

.landing-evidence .hero-section .container-fluid {
  padding: 0;
  max-width: 100%;
}

/* .landing-evidence .hero-section .row {
  @media (min-width: 1280px) {
    min-height: calc(100vh - 83px);
  }
} */

/* Hero Left Column */
.landing-evidence .hero-left {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 120px;
  @media (min-width: 1680px) {
    padding-left: 250px;
  }
  @media (min-width: 1680px) {
    &:before {
      content: "";
      height: 600px;
      width: 600px;
      background-image: url(../../images/landing/evidence/decoration/1.svg);
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: -12%;
      left: -347px;
      z-index: 0;
    }
  }
}

.landing-evidence .hero-left-inner {
  position: relative;
  z-index: 2;

  @media (min-width: 1024px) {
    max-width: 550px;
  }
}

/* Grid Pattern Background */
/* .landing-evidence .hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(236, 104, 85, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(236, 104, 85, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  opacity: 0.5;
  z-index: 1;
} */

.landing-evidence .hero-title {
  @media (min-width: 768px) {
    padding-right: 100px;
  }
}

.landing-evidence .hero-title,
.landing-evidence .hero-title span {
  font-family: "Century Gothic", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: #192436;
  margin: 0 0 40px 0;
  @media (min-width: 768px) {
    font-size: 42px;
  }
}

.landing-evidence .hero-title::first-line {
  color: var(--color-primary);
}

.landing-evidence .hero-divider {
  width: 100%;
  max-width: 490px;
  height: 1px;
  background: #ec6855;
  margin-bottom: 30px;
}

.landing-evidence .hero-description {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #192436;
  margin: 0 0 30px 0;
  max-width: 490px;
}

.landing-evidence .lnd_ev_btn {
  display: inline-block;
  background-color: #192436;
  color: #ffffff;
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px 15px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.landing-evidence .lnd_ev_btn:hover {
  background-color: #2a3a50;
}

/* Hero Right Column - Image */
.landing-evidence .hero-right {
  position: relative;
  background-color: #f5f5f5;
  overflow: visible;
  @media (min-width: 1024px) {
    padding: 0;
  }
}

.landing-evidence .hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Color Bar Decoration */
.landing-evidence .hero-color-bar {
  position: absolute;
  left: -90px;
  top: 50%;
  width: 130px;
  height: 78%;
  background: var(--color-primary);
  z-index: 0;
  transform: translateY(-50%);
}

.landing-evidence .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  position: relative;
}

/* Price Card - Overlaying the image */
.landing-evidence .hero-card {
  position: absolute;
  bottom: 80px;
  left: 120px;
  background-color: #ffffffd4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  min-width: 350px;
  z-index: 10;
}

.landing-evidence .hero-card-label {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #192436;
  margin: 0 0 5px 0;
}

.landing-evidence .hero-card-price {
  font-family: "Century Gothic", sans-serif;
  font-size: 57px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.landing-evidence .hero-card-divider {
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  margin: 0 0 20px 0;
}

.landing-evidence .hero-card-delivery {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #192436;
  margin: 5px 0 20px 0;
}

.landing-evidence .hero-card-note {
  font-family: "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

/* ========================================
   USP Section
   ======================================== */

.landing-evidence .usp-section {
  position: relative;
  background-color: #ffede7;
  padding: 40px 0;
  /* @media (min-width: 992px){
        margin-top: -83px;
    } */
}

.landing-evidence .usp-section .inner {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  top: 10px;
}

.landing-evidence .usp-section .row {
  --bs-gutter-x: 4rem;
}

.landing-evidence .usp-section .row > [class*="col-"] {
  position: relative;
}

.landing-evidence .usp-section .row > [class*="col-"]:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 90px;
  background-color: var(--color-primary);
}

.landing-evidence .usp-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.landing-evidence .usp-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  margin: auto;
}

.landing-evidence .usp-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}
.landing-evidence .usp-item--3 .usp-icon {
      width: 100px;
    height: 100px;
    transform: translate(0px, -10px);
  margin: 0 auto;
}
.landing-evidence .usp-item--3 .usp-content {
  display: none;
  @media (min-width: 1024px) {
    display: block;
  }
}

.landing-evidence .usp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-evidence .usp-text {
  font-family: "Century Gothic", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #192436;
  margin: 0;
  @media (min-width: 1280px) {
    font-size: 18px;
  }
  @media (min-width: 1440px) {
    font-size: 24px;
  }
}

.landing-evidence .usp-subtext {
  font-family: "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #192436;
  opacity: 0.46;
  margin: 0;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1200px) {
  .landing-evidence .header-nav {
    position: static;
    transform: none;
    gap: 40px;
  }

  .landing-evidence .site-header .inner {
    justify-content: space-around;
    padding: 0 20px;
  }

  .landing-evidence .hero-left {
    padding-top: 100px !important;
    padding: 60px 40px;
  }

  /* .landing-evidence .hero-title {
    font-size: 48px;
  } */

  .landing-evidence .hero-color-bar {
    width: 60px;
    left: -30px;
  }

  .landing-evidence .hero-card {
    left: 20px;
    bottom: 60px;
    min-width: 300px;
  }

  .landing-evidence .usp-section .row {
    --bs-gutter-x: 2.5rem;
  }

  .landing-evidence .usp-section .row > [class*="col-"]::after {
    display: none;
  }

  .landing-evidence .usp-section .row > [class*="col-"]:nth-child(odd)::after {
    display: block;
    height: 50px;
  }

  .landing-evidence .usp-section .row > [class*="col-"]:last-child::after {
    display: none;
  }

  .landing-evidence .usp-text {
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .landing-evidence .site-header .inner {
    justify-content: space-around !important;
  }
  .landing-evidence .hero-title,
  .landing-evidence h1.hero-title span {
    font-size: 28px;
  }
}
@media (min-width: 1280px) {
  .landing-evidence .hero-title, .landing-evidence .hero-title span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .landing-evidence .hero-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .landing-evidence #masthead .site-header {
    height: auto;
    padding: 15px 0;
  }

  .landing-evidence .site-header .inner {
    flex-direction: column;
    gap: 15px;
  }

  .landing-evidence .header-nav {
    gap: 20px;
  }

  .landing-evidence .header-nav a,
  .landing-evidence .header-button,
  .landing-evidence .lnd_ev_btn {
    font-size: 16px;
  }

  .landing-evidence .header-button,
  .landing-evidence .lnd_ev_btn {
    padding: 12px 24px;
  }

  .landing-evidence .hero-section .row {
    min-height: auto;
    flex-direction: column;
  }

  .landing-evidence .hero-left,
  .landing-evidence .hero-right {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .landing-evidence .hero-left {
    padding: 40px;
  }

  .landing-evidence .hero-description {
    font-size: 16px;
  }

  .landing-evidence .hero-grid-pattern {
    background-size: 40px 40px;
  }

  .landing-evidence .hero-right {
    min-height: 400px;
  }

  .landing-evidence .hero-color-bar {
    display: none;
  }

  .landing-evidence .hero-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin: 20px;
    min-width: auto;
    padding: 25px 30px;
  }

  .landing-evidence .hero-card-price {
    font-size: 42px;
  }

  .landing-evidence .usp-section {
    padding: 30px 0;
  }

  .landing-evidence .usp-section .inner {
    padding: 0 20px;
  }

  .landing-evidence .usp-section .row {
    --bs-gutter-x: 2rem;
  }

  .landing-evidence .usp-section .row > [class*="col-"]::after {
    display: none;
  }

  .landing-evidence .usp-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .landing-evidence .usp-text {
    font-size: 18px;
  }

  .landing-evidence .usp-subtext {
    font-size: 11px;
  }
}

@media(max-width: 1023px){
  .usp-item--0 .usp-text{
  text-align: center;
  font-size: 12px;
  }
  .usp-item--0{
        flex-direction: column !important;
  }
}

/* ========================================
   Section Les plus du programme
   ======================================== */

.landing-evidence .plus-section {
  position: relative;
  background-color: #ffffff;
  padding: 80px 0 0 0;
  overflow: hidden;
  background-size: cover;
  background-position: center 0%;
  background-repeat: no-repeat;
  min-height: 90vh;
  transition: background-position 0.1s ease-out;
}

.landing-evidence .plus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.landing-evidence .plus-container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header avec titre */
.landing-evidence .plus-header {
  text-align: center;
  margin-bottom: 60px;
}

.landing-evidence .plus-title {
  font-family: "Century Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #192436;
  margin: 0;
  display: inline-block;
  position: relative;
  &:after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}
.landing-evidence .plus-title,
.landing-evidence .plus-title span {
  font-size: 30px;
}

.landing-evidence .plus-title span.text-primary {
  color: var(--color-primary);
}

/* Cards Grid */
.landing-evidence .plus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.landing-evidence .plus-card {
  background-color: #ffffffa6;
  padding: 50px 40px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.landing-evidence .plus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.landing-evidence .plus-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 40px;
  position: relative;
  &::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}

.landing-evidence .plus-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-evidence .plus-card-title {
  font-family: "Century Gothic", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0 0 20px 0;
}

.landing-evidence .plus-card-desc {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #192436;
  margin: 0;
}

/* Section Citation */
.landing-evidence .plus-quote-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -40px;
}

.landing-evidence .plus-quote-content {
  position: relative;
  max-width: 1100px;
  padding: 60px 40px;
}

.landing-evidence .plus-quote {
  font-family: "Century Gothic", sans-serif;
  font-weight: 100;
  font-style: italic;
  line-height: 1.4;
  color: #192436;
  margin: 0;
  position: relative;
  .line:nth-child(2) {
    left: 100px;
    position: relative;
  }
}
.landing-evidence .plus-quote,
.landing-evidence .plus-quote span {
  font-size: 24px;
  @media (min-width: 768px) {
    font-size: 40px;
  }
  @media (min-width: 1024px) {
    font-size: 60px;
  }
}

.landing-evidence .plus-quote span.text-primary {
  color: var(--color-primary);
  font-weight: 600;
}

.landing-evidence .plus-quote::before,
.landing-evidence .plus-quote::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../../images/landing/evidence/icons/quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}

.landing-evidence .plus-quote::before {
  top: -50px;
  left: -80px;
  @media (min-width: 1280px) {
    top: -38px;
    left: -75px;
  }
}

.landing-evidence .plus-quote::after {
  bottom: -50px;
  right: -150px;
  @media (min-width: 1280px) {
    bottom: -50px;
    right: 24px;
  }
}

/* ========================================
   Responsive - Section Les plus
   ======================================== */

@media (max-width: 1200px) {
  .landing-evidence .plus-container {
    padding: 0 30px;
  }

  .landing-evidence .plus-title {
    font-size: 30px;
  }

  .landing-evidence .plus-cards {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 30px;
  }

  /* .landing-evidence .plus-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  } */

  /* .landing-evidence .plus-quote {
    font-size: 36px;
  } */
}

@media (max-width: 767px) {
  .landing-evidence .plus-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
  .landing-evidence .plus-quote-content {
    padding: 10px 20px 50px 20px;
  }
  .landing-evidence .plus-quote {
    font-size: 24px;
  }
  .landing-evidence .plus-quote::before,
  .landing-evidence .plus-quote::after {
    width: 30px;
    height: 30px;
  }
  .landing-evidence .plus-quote::before {
    top: -10px;
    left: -17px;
  }

  .landing-evidence .plus-quote::after {
    bottom: -10px;
    right: 87px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .landing-evidence .plus-quote::before,
  .landing-evidence .plus-quote::after {
    width: 50px;
    height: 50px;
  }
  .landing-evidence .plus-quote::before {
    top: -12px;
    left: -32px;
  }

  .landing-evidence .plus-quote::after {
    bottom: -16px;
    right: 33px;
  }
}
@media (max-width: 768px) {
  .landing-evidence .plus-section {
    padding: 60px 0 0 0;
    min-height: auto;
  }

  .landing-evidence .plus-container {
    padding: 0 20px;
  }

  .landing-evidence .plus-header {
    margin-bottom: 40px;
  }

  .landing-evidence .plus-title {
    font-size: 32px;
  }

  .landing-evidence .plus-card {
    padding: 40px 30px;
  }

  .landing-evidence .plus-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .landing-evidence .plus-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .landing-evidence .plus-card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .landing-evidence .plus-card-desc {
    font-size: 15px;
  }

  .landing-evidence .plus-quote-section {
    min-height: auto;
    margin: 0 -20px;
  }

  /* .landing-evidence .plus-quote::before,
  .landing-evidence .plus-quote::after {
    width: 60px;
    height: 60px;
  } */
}

/* ========================================
   Section Nos typologies
   ======================================== */

.landing-evidence .typo-section {
  position: relative;
  background-color: var(--color-primary);
  padding: 80px 0;
}

.landing-evidence .typo-container {
  max-width: 90%;0 8% 80px 8%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Titre */
.landing-evidence .typo-title {
  font-family: "Century Gothic", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
}

/* Header Left : Icône + Sous-titre */
.landing-evidence .typo-header-left {
  display: flex;
  flex-direction: column;
  /*gap: 30px;*/
}

.landing-evidence .typo-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.landing-evidence .typo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-evidence .typo-subtitle {
  font-family: "Century Gothic", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  color: #192436;
  margin: 0;
  position: relative;
  &::after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #f6c1b2;
    position: absolute;
    left: 0;
    bottom: -30px;
  }
}

/* Description */
.landing-evidence .typo-description {
  padding: 40px 50px 40px 10px;
  text-align: left;
  font-weight: 400;
}

/* Espacement après la row */
.landing-evidence .typo-container > .row:nth-child(2) {
  /*margin-bottom: 60px;*/
  margin: 0 0% 40px 0%;
  @media (min-width: 768px) {
    margin: 0 8% 80px 8%;  
  }
}

.landing-evidence .typo-description p {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

/* Viewer */
.landing-evidence .typo-viewer {
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 300px;
    background-image: url(../../images/landing/evidence/decoration/2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
  }
}

.landing-evidence .typo-image-container {
  position: relative;
  width: 100%;
  background-color: #fff;
  min-height: 600px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  @media (min-width: 768px){
    min-height: 770px !important;
  }
  @media (min-width: 1024px){
    min-height: 600px;
  }
}

.landing-evidence .typo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (max-width: 1023px){
  .landing-evidence .typo-image {
      position: absolute;
      top: unset;
      bottom: 0;
      left: 0;
      width: 100%;
      height: fit-content;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      padding: 30px;
  }

}

.landing-evidence .typo-image.active {
  opacity: 1;
  pointer-events: auto;
}

.landing-evidence .typo-image img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  padding: 5%;
  object-position: center;
}

/* Info Card sur l'image */
.landing-evidence .typo-info-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: #ffffffd4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 35px 40px;
  min-width: 350px;
  z-index: 10;
  @media (min-width: 768px){
    background-color: #fff;
  }
  @media (min-width: 1024px){
    background-color: #ffffffd4;
  }
}

.landing-evidence .typo-info-label {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #192436;
  margin: 0 0 5px 0;
}

.landing-evidence .typo-info-price {
  font-family: "Century Gothic", sans-serif;
  font-size: 57px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.landing-evidence .typo-info-divider {
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  margin: 0 0 20px 0;
}

.landing-evidence .typo-info-delivery {
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #192436;
  margin: 0 0 20px 0;
}

.landing-evidence .typo-info-delivery strong {
  font-weight: 600;
}

.landing-evidence .typo-info-note {
  font-family: "Century Gothic", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: #666666;
  margin: 0;
}

/* Boutons de sélection */
.landing-evidence .typo-selection {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  gap: 7px;
  align-items: stretch;
  height: 70px;
  background-color: transparent;
}

.landing-evidence .typo-btn {
  flex: 1;
  background-color: #ffffff;
  border: none;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.landing-evidence .typo-btn:last-child {
  border-right: none;
}

.landing-evidence .typo-btn:hover {
  background-color: #f5f5f5;
}

.landing-evidence .typo-btn.active {
  background-color: #192436;
}

.landing-evidence .typo-btn.active::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #192436;
}

.landing-evidence .typo-btn-label {
  font-family: "Century Gothic", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-evidence .typo-btn.active .typo-btn-label {
  color: #ffffff;
}

.landing-evidence .typo-btn.active .typo-btn-label::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../../images/landing/evidence/icons/size.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
}

/* ========================================
   Responsive - Section Nos typologies
   ======================================== */

@media (max-width: 1200px) {
  .landing-evidence .typo-container {
    padding: 0 30px;
  }

  .landing-evidence .typo-title {
    font-size: 26px;
  }

  .landing-evidence .typo-subtitle {
    font-size: 30px;
  }

  .landing-evidence .typo-description {
    padding: 30px 40px;
  }

  .landing-evidence .typo-info-card {
    top: 30px;
    right: 30px;
    min-width: 300px;
    padding: 30px 35px;
  }

  .landing-evidence .typo-info-price {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .landing-evidence .typo-section {
    padding: 60px 0;
  }

  .landing-evidence .typo-container {
    padding: 0;
  }

  .landing-evidence .typo-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .landing-evidence .typo-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .landing-evidence .typo-icon {
    width: 50px;
    height: 50px;
  }

  .landing-evidence .typo-subtitle {
    font-size: 28px;
  }

  .landing-evidence .typo-description {
    padding: 25px 0px;
  }

  .landing-evidence .typo-description p {
    font-size: 16px;
  }

  .landing-evidence .typo-image-container {
    min-height: 520px;
  }

  .landing-evidence .typo-info-card {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px;
    min-width: auto;
    padding: 25px 30px;
  }

  .landing-evidence .typo-info-price {
    font-size: 42px;
  }

  .landing-evidence .typo-selection {
    position: relative;
    height: auto;
    flex-wrap: wrap;
  }

  .landing-evidence .typo-btn {
    flex: 0 0 calc(33.333% - 5px);
    min-height: 60px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }

  .landing-evidence .typo-btn:nth-child(3n) {
    border-right: none;
  }

  .landing-evidence .typo-btn:nth-last-child(-n + 3) {
    border-bottom: none;
  }

  .landing-evidence .typo-btn.active::before {
    display: none;
  }

  .landing-evidence .typo-btn-label {
    font-size: 16px;
  }

  .landing-evidence .typo-btn.active .typo-btn-label::before {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   Section Présentation + Caractéristiques
   ======================================== */

.landing-evidence .presentation-section {
  position: relative;
  background-color: #f5f5f5;
}

.landing-evidence .presentation-container {
  margin: 0 auto;
  padding-right: 20px;
  @media (min-width: 1280px) {
    padding: 50px 20px 0px 20px;
  }
  @media (min-width: 1440px) {
    padding-right: 220px;
  }
}

.landing-evidence .presentation-content {
  display: grid;
  grid-template-columns: 420px 1fr 440px;
  gap: 10px;
  align-items: center;
  @media (min-width: 1920px) {
    grid-template-columns: 490px 1fr 450px;
    gap: 80px;
  }
}

/* Image décorative */
.landing-evidence .presentation-image {
  position: relative;
      height: 100%;
    display: flex;
}

.landing-evidence .presentation-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  align-self: flex-end;
}

/* Bloc texte présentation */
.landing-evidence .presentation-text {
  padding-top: 40px;
}

.landing-evidence .presentation-title,
.landing-evidence .presentation-title span {
  font-family: "Century Gothic", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #192436;
  margin: 0 0 40px 0;
}
.landing-evidence .presentation-title {
  position: relative;
  &::after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    bottom: -20px;
  }
}

.landing-evidence .presentation-title span.text-primary {
  color: var(--color-primary);
}

.landing-evidence .presentation-desc {
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #192436;
  padding-right: 80px;
}

.landing-evidence .presentation-desc p {
  margin: 0 0 20px 0;
  font-weight: 100;
}

.landing-evidence .presentation-desc p:last-child {
  margin-bottom: 0;
}

/* Carte Caractéristiques techniques */
.landing-evidence .characteristics-card {
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 0 40px 0;
}

.landing-evidence .characteristics-icon {
  width: 100px;
  height: 100px;
  margin: 0 0 30px 0;
}

.landing-evidence .characteristics-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-evidence .characteristics-title {
  font-family: "Century Gothic", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0 0 30px 0;
  text-align: left;
}

.landing-evidence .characteristics-desc {
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #192436;
}

.landing-evidence .characteristics-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-evidence .characteristics-desc li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.landing-evidence .characteristics-desc li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
}

.landing-evidence .characteristics-desc p {
  margin: 0 0 15px 0;
}

.landing-evidence .characteristics-desc p:last-child {
  margin-bottom: 0;
  font-weight: 100;
}

/* ========================================
   Responsive - Section Présentation
   ======================================== */

@media (max-width: 1400px) {
  .landing-evidence .presentation-content {
    grid-template-columns: 400px 1fr 380px;
    gap: 60px;
  }

  .landing-evidence .characteristics-card {
    padding: 50px 40px;
  }
}

@media (max-width: 1200px) {
  .landing-evidence .presentation-section {
    padding: 80px 0;
  }

  .landing-evidence .presentation-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .landing-evidence .presentation-image {
    max-width: 490px;
    margin: 0 auto;
  }

  .landing-evidence .presentation-text {
    padding-top: 0;
  }

  .landing-evidence .characteristics-card {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .landing-evidence .presentation-content {
    grid-template-columns: 0.7fr 1.3fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .landing-evidence .presentation-section {
    padding: 60px 0;
  }

  .landing-evidence .presentation-container {
    padding: 0 20px;
  }

  .landing-evidence .presentation-content {
    gap: 40px;
  }

  .landing-evidence .presentation-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .landing-evidence .presentation-desc {
    font-size: 15px;
  }

  .landing-evidence .characteristics-card {
    padding: 40px 30px;
  }

  .landing-evidence .characteristics-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .landing-evidence .characteristics-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .landing-evidence .characteristics-desc {
    font-size: 15px;
  }

  /* Brochure Section - Mobile */
  .landing-evidence .brochure-section {
    padding: 60px 20px;
  }

  .landing-evidence .brochure-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .landing-evidence .brochure-content {
    flex-direction: column;

    @media (min-width: 768px) {
      gap: 40px;
    }
  }

  .landing-evidence .brochure-image {
    width: 100%;
  }

  .landing-evidence .brochure-form {
    width: 100%;
    padding: 40px 30px;
  }
}

/* ========================================
   Section Brochure
   ======================================== */

.landing-evidence .brochure-section {
  background-color: var(--color-primary);
  padding: 30px 10px;
  position: relative;
  overflow: hidden;
  @media (min-width: 768px) {
    padding: 100px 40px 120px;
    &::before,
    &::after {
      content: "";
      position: absolute;
      width: 440px;
      height: 100%;
      background-repeat: no-repeat;
      /* opacity: 0.8; */
      z-index: 0;
      top: 0;
      bottom: 0;
    }
    &::before {
      left: 0;
      background-image: url(../../images/landing/evidence/decoration/3.svg);
      background-position: right 40px center;
      background-size: cover;
    }
    &::after {
      right: 0;
      background-image: url(../../images/landing/evidence/decoration/4.svg);
      background-position: left -80px center;
      background-size: cover;
    }
  }
}

.landing-evidence .brochure-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Section */
.landing-evidence .brochure-header {
  text-align: center;
  margin-bottom: 60px;
}

.landing-evidence .brochure-title {
  font-family: "Century Gothic", sans-serif;
  font-size: 40px;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* Content Grid */
.landing-evidence .brochure-content {
  display: flex;
  align-items: stretch;
}

/* Image décorative */
.landing-evidence .brochure-image {
  flex: 0 0 auto;
  width: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Formulaire */
.landing-evidence .brochure-form {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  @media (min-width: 768px) {
    padding: 60px 50px;
  }
}

/* Styles pour Contact Form 7 */
.landing-evidence .brochure-form .wpcf7-form {
  margin: 0;
  .form-row {
    display: flex;
    flex-direction: column;

    @media (min-width: 768px) {
      flex-direction: row;
      gap: 30px;
    }
    div {
      @media (min-width: 768px) {
        width: 50%;
      }
    }
  }
}

.landing-evidence .brochure-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.landing-evidence .brochure-form input[type="text"],
.landing-evidence .brochure-form input[type="email"],
.landing-evidence .brochure-form input[type="tel"],
.landing-evidence .brochure-form textarea {
  width: 100%;
  padding: 18px 20px;
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  color: #192436;
  background-color: #f5f5f5;
  border: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  padding-left: 40px;
}

.landing-evidence .brochure-form input[type="text"]:focus,
.landing-evidence .brochure-form input[type="email"]:focus,
.landing-evidence .brochure-form input[type="tel"]:focus,
.landing-evidence .brochure-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ec695514;
}

.landing-evidence .brochure-form input::placeholder,
.landing-evidence .brochure-form textarea::placeholder {
  color: #192436 !important;
  font-style: normal !important;
}

.landing-evidence .brochure-form .wpcf7-submit {
  width: 100%;
  padding: 18px 40px;
  font-family: "Century Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #192436;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.landing-evidence .brochure-form .wpcf7-submit:hover {
  background-color: #0d1420;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 36, 54, 0.3);
}

.landing-evidence .brochure-form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #d32f2f;
  margin-top: -15px;
  margin-bottom: 10px;
  display: block;
}

.landing-evidence .brochure-form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.landing-evidence .brochure-form .wpcf7-mail-sent-ok {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
}

.landing-evidence .brochure-form .wpcf7-validation-errors,
.landing-evidence .brochure-form .wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #d32f2f;
  border: 1px solid #ef9a9a;
}

/* ========================================
   Footer Section
   ======================================== */

.landing-evidence .footer-evidence {
  background-color: #ffffff;
  padding: 60px 0 0 0;
  b {
    color: var(--color-primary);
    padding-bottom: 20px;
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .landing-evidence .footer-evidence .bottom-footer li,
  .landing-evidence .footer-evidence .bottom-footer a {
    font-size: clamp(10px, 1.2vw, 15px);
    white-space: nowrap;
  }
}

.landing-evidence .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 60px;
}

.landing-evidence .footer-logo img {
  height: auto;
  display: block;
}

.landing-evidence .footer-contact {
  text-align: left;
}

.landing-evidence .footer-contact p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

.landing-evidence .footer-contact-city {
  margin-bottom: 1.6rem !important;
}

.landing-evidence .footer-contact-email {
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 700;
  white-space: nowrap;
  font-size: 20px;
}

.landing-evidence .footer-contact-email:hover {
  color: #d55a48;
}

.landing-evidence .footer-contact-phone {
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0;
}

.landing-evidence .footer-contact-phone a {
  color: var(--color-primary);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-evidence .footer-contact-phone a:hover {
  color: #d55a48;
}

.landing-evidence .footer-social {
  text-align: left;
}

.landing-evidence .footer-social b {
  display: block;
  margin-bottom: 15px;
}

.landing-evidence .footer-social .social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.landing-evidence .footer-social .social-link {
  display: inline-block;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.landing-evidence .footer-social .social-link img {
  width: 52px;
  height: 52px;
  display: block;
  filter: brightness(0) saturate(100%) invert(13%) sepia(23%) saturate(1489%)
    hue-rotate(189deg) brightness(95%) contrast(95%);
}

.landing-evidence .footer-social .social-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.landing-evidence .footer-legal {
  text-align: left;
}

.landing-evidence .footer-legal .legal-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing-evidence .footer-legal .legal-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-evidence .footer-legal .legal-menu-list li {
  margin: 0;
}

.landing-evidence .footer-legal .legal-menu-list a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-evidence .footer-legal .legal-menu-list a:hover {
  color: var(--color-primary);
}

.landing-evidence .footer-legal .copyright {
  color: #000000;
  font-size: 14px;
  margin: 20px 0 0 0;
}

.landing-evidence .footer-landing-evidence {
  background-color: #192436;
}

/* Footer Responsive */

@media (max-width: 1023px) {
  .landing-evidence .footer-evidence {
    padding: 40px 0 0 0;
  }

  .landing-evidence .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0 20px 40px;
  }

  .landing-evidence .footer-contact {
    text-align: center;
  }

  .landing-evidence .footer-logo {
    text-align: center;
  }

  .landing-evidence .footer-logo img {
    margin: 0 auto;
    max-width: 250px;
  }

  .landing-evidence .footer-social {
    text-align: center;
  }

  .landing-evidence .footer-social .social-links {
    justify-content: center;
  }

  .landing-evidence .footer-legal {
    text-align: center;
  }
  .landing-evidence .footer-social {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .landing-evidence .footer-social .footer-contact-email {
    margin: 0 auto;
  }
}

.legal-menu-container {
  align-items: center;
  justify-content: center;
}

.header_sections {
  height: calc(100% - 162px);
}
#menu-menu-des-mentions-legales {
  display: flex;
  justify-content: center;
}
.landing-evidence .footer-evidence .bottom-footer li {
  margin: 0 10px;
}

.landing-evidence header .header-logo {
  width: fit-content;
}

.usp-section .usp-item {
  margin-bottom: 10px;
  @media (min-width: 1280px) {
    margin-bottom: 0;
    margin: 0 auto;
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .header-nav--hidden,
  .header-button--hidden {
    display: none !important;
  }
  .landing-evidence #menu-menu-des-mentions-legales {
    flex-direction: column;
    text-align: center;
  }
  .landing-evidence #menu-menu-des-mentions-legales li {
    margin: 0 0 10px 0;
  }
}
