#header {
    z-index: 100;
}

/****** Formulaire connexion **********/
 .wengel-login-section {
    background: #f3f3f3;
    padding: 22px 0 36px;
  }

  .wengel-login-section *,
  .wengel-login-section *::before,
  .wengel-login-section *::after {
    box-sizing: border-box;
  }

  .wengel-login-section .login-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 26px;
  }

  .wengel-login-section .login-box {
    display: flex;
    align-items: stretch;
    min-height: 274px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(90deg, #f40039 0%, #f40039 34%, #1d202d 62%, #1d202d 100%);
  }

  .wengel-login-section .login-left,
  .wengel-login-section .login-right {
    width: 50%;
  }

  .wengel-login-section .login-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 34px;
    text-align: center;
  }

  .wengel-login-section .login-lock {
    width: 62px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
  }

  .wengel-login-section .login-message {
    margin: 0;
    max-width: 430px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 700; /* bold */
  }

  .wengel-login-section .login-separator {
    width: 345px;
    max-width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 0 16px;
  }

  .wengel-login-section .login-subtitle {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700; /* bold */
  }

  .page-customer-account #content .no-account a, 
  .wengel-login-section .create-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 12px;
    background: #1d202d;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .wengel-login-section .create-account-btn:hover {
    background: #bfd400;
    color: #1d202d;
    transform: translateY(-2px);
  }

  .wengel-login-section .login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 36px;
  }

  .wengel-login-section .login-form {
    width: 100%;
    max-width: 485px;
  }

  .wengel-login-section .form-group {
    position: relative;
    margin-bottom: 19px;
  }

  .wengel-login-section .login-input {
    width: 100%;
    height: 44px;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #f3f3f3;
    color: #1d202d;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 400;
  }

  .wengel-login-section .login-input::placeholder {
    color: #a7a7a7;
    opacity: 1;
    font-style: italic;
  }

  .wengel-login-section .password-group .login-input {
    padding-right: 54px;
  }

  .wengel-login-section .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wengel-login-section .toggle-password svg {
    width: 24px;
    height: 24px;
    fill: #4c4c4c;
    transition: fill 0.25s ease, transform 0.25s ease;
  }

  .wengel-login-section .toggle-password:hover svg {
    fill: #1d202d;
    transform: scale(1.05);
  }

  .wengel-login-section .form-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 6px;
  }

  .wengel-login-section .login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: #bfd400;
    color: #1d202d;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  }

  .wengel-login-section .login-btn:hover {
    background: #ffffff;
    color: #1d202d;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .wengel-login-section .forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.25s ease, opacity 0.25s ease;
  }

  .wengel-login-section .forgot-password:hover {
    color: #bfd400;
  }

  @media (max-width: 991px) {
    .wengel-login-section .login-box {
      flex-direction: column;
      background: linear-gradient(180deg, #f40039 0%, #f40039 42%, #1d202d 65%, #1d202d 100%);
    }

    .wengel-login-section .login-left,
    .wengel-login-section .login-right {
      width: 100%;
    }

    .wengel-login-section .login-left {
      padding: 34px 24px 26px;
    }

    .wengel-login-section .login-right {
      padding: 26px 24px 34px;
    }

    .wengel-login-section .login-message {
      font-size: 17px;
    }
  }

  @media (max-width: 767px) {
    .wengel-login-section {
      padding: 18px 0 28px;
    }

    .wengel-login-section .login-inner {
      padding: 0 15px;
    }

    .wengel-login-section .login-box {
      border-radius: 18px;
    }

    .wengel-login-section .login-left,
    .wengel-login-section .login-right {
      padding-left: 18px;
      padding-right: 18px;
    }

    .wengel-login-section .login-lock {
      width: 52px;
      margin-bottom: 12px;
    }

    .wengel-login-section .login-message {
      font-size: 16px;
    }

    .wengel-login-section .login-separator {
      margin: 18px 0 14px;
    }

    .wengel-login-section .form-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .wengel-login-section .login-btn {
      min-width: 140px;
    }
  }

/******* Navigation **********/

  .wengel-nav-ancres {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding: 20px 0px;
    background: #ffffff;
    justify-content: center;
  }

  .wengel-nav-ancres a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 22px;
    border-radius: 999px;
    background: #1d202d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500; /* Montserrat Medium */
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
  }

  .wengel-nav-ancres a:hover {
    background: #bfd400;
    color: #1d202d;
    text-decoration: none;
  }

  .wengel-nav-ancres a.devis-btn {
    background: #bfd400;
    color: #1d202d;
    font-weight: 800; /* Montserrat ExtraBold */
    padding: 0 26px;
  }

  .wengel-nav-ancres a.devis-btn:hover {
    background: #1d202d;
    color: #ffffff;
  }

  @media (max-width: 991px) {
    .wengel-nav-ancres {
      gap: 14px;
      /*padding: 16px;*/
    }

    .wengel-nav-ancres a {
      /*font-size: 13px;*/
      min-height: 36px;
      padding: 0 10px;
    }

    .wengel-nav-ancres a.devis-btn {
      padding: 0 22px;
    }
  }

  @media (max-width: 767px) {
    .wengel-nav-ancres {
      gap: 10px;
    }
  }
/***** CSS P2 ****/  
.wengel-hero {
    background: white;
    padding: 46px 0 54px;
    overflow: hidden;
  }

  .wengel-hero *,
  .wengel-hero *::before,
  .wengel-hero *::after {
    box-sizing: border-box;
  }

  .wengel-hero .hero-inner {
    /*max-width: 1480px;*/
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 48px;*/
  }

  .wengel-hero .hero-left {
    flex: 0 0 48%;
    /*max-width: 720px;*/
  }

  .wengel-hero .hero-title {
    margin: 0 0 12px;
    color: #1d202d;
    font-size: 42px;
    line-height: 0.98;
    font-weight: 800; /* Montserrat ExtraBold */
    letter-spacing: -1.5px;
  }

  .wengel-hero .hero-title span {
    display: block;
    margin-top: 8px;
    color: #bfd400;
  }

  .wengel-hero .hero-text {
    margin: 0;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.34;
    font-weight: 400; /* Montserrat Regular */
    letter-spacing: -0.2px;
  }

  .wengel-hero .hero-text + .hero-text {
    margin-top: 28px;
  }

  .wengel-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 56px;
  }

  .wengel-hero .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 0 28px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 600; /* Montserrat SemiBold */
    transition: all 0.28s ease;
    white-space: nowrap;
  }

  .wengel-hero .hero-btn.btn-primary {
    background: #bfd400;
    color: #1d202d;
  }

  .wengel-hero .hero-btn.btn-primary:hover {
    background: #1d202d;
    color: #ffffff;
  }

  .wengel-hero .hero-btn.btn-secondary {
    background: #1d202d;
    color: #ffffff;
  }

  .wengel-hero .hero-btn.btn-secondary:hover {
    background: #bfd400;
    color: #1d202d;
  }

  .wengel-hero .hero-right {
    flex: 0 0 46%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wengel-hero .card-scene {
    position: relative;
    width: 584px;
    height: 430px;
  }

  .wengel-hero .scene-back {
    position: absolute;
    left: 103px;
    top: 32px;
    width: 449px;
    height: auto;
    z-index: 1;
  }

  .wengel-hero .dot-small {
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #bfd400;
    z-index: 2;
    opacity: 0;
    transform: scale(0.4);
    animation: fadeDot 0.45s ease forwards;
    animation-delay: 1.1s;
  }

  .wengel-hero .dot-left {
    left: 75px;
    top: 245px;
  }

  .wengel-hero .dot-top {
    right: 31px;
    top: 91px;
  }

  .wengel-hero .card-pack {
    position: absolute;
    left: 73px;
    top: 18px;
    width: 390px;
    height: 295px;
    z-index: 3;
  }

  .wengel-hero .card-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 265px;
    height: 233px;
    opacity: 0;
    transform-origin: center center;
    animation: none;
    filter: drop-shadow(0 10px 12px rgba(0,0,0,0.22));
  }

  .wengel-hero .card-item img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Positions finales proches du visuel fourni */
  .wengel-hero .card-1 {
    z-index: 3;
    animation: cardOne 1.1s cubic-bezier(.2,.8,.2,1) forwards;
  }

  .wengel-hero .card-2 {
    z-index: 4;
    animation: cardTwo 1.1s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.18s;
  }

  .wengel-hero .card-3 {
    z-index: 5;
    animation: cardThree 1.1s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.34s;
  }

  .wengel-hero .card-4 {
    z-index: 6;
    animation: cardFour 1.1s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.5s;
  }

  .wengel-hero .badge {
    position: absolute;
    z-index: 7;
    opacity: 0;
    transform: translateY(18px) scale(0.8);
    animation: badgeIn 0.55s ease forwards;
    animation-delay: 1.15s;
  }

  .wengel-hero .badge img {
    display: block;
    width: 100%;
    height: auto;
  }

  .wengel-hero .badge-n1 {
    left: 0;
    top: 184px;
    width: 98px;
  }

  .wengel-hero .badge-50 {
    right: 0;
    top: 44px;
    width: 122px;
  }

  .wengel-hero .badge-economies {
    left: 121px;
    bottom: 0;
    width: 117px;
  }

  .wengel-hero .badge-2008 {
    right: 25px;
    bottom: 28px;
    width: 82px;
  }

  @keyframes cardOne {
    0% {
      opacity: 0;
      transform: translate(120px, 28px) rotate(-16deg) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate(0, 10px) rotate(-29deg) scale(1);
    }
  }

  @keyframes cardTwo {
    0% {
      opacity: 0;
      transform: translate(120px, 28px) rotate(-16deg) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate(62px, 0) rotate(-13deg) scale(1);
    }
  }

  @keyframes cardThree {
    0% {
      opacity: 0;
      transform: translate(120px, 28px) rotate(-16deg) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate(123px, 6px) rotate(4deg) scale(1);
    }
  }

  @keyframes cardFour {
    0% {
      opacity: 1;
      transform: translate(120px, 28px) rotate(-16deg) scale(0.94);
    }
    100% {
      opacity: 1;
      transform: translate(188px, 40px) rotate(25deg) scale(1.02);
    }
  }

  @keyframes badgeIn {
    0% {
      opacity: 0;
      transform: translateY(18px) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeDot {
    0% {
      opacity: 0;
      transform: scale(0.4);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 1400px) {
    .wengel-hero .hero-title {
      font-size: 54px;
    }

    .wengel-hero .hero-text {
      font-size: 21px;
    }

    .wengel-hero .card-scene {
      transform: scale(0.92);
      transform-origin: center center;
    }
  }

  @media (max-width: 1199px) {
    .wengel-hero .hero-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
    }

    .wengel-hero .hero-left,
    .wengel-hero .hero-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-hero .hero-right {
      justify-content: center;
    }

    .wengel-hero .hero-title {
      font-size: 48px;
    }

    .wengel-hero .hero-text {
      font-size: 20px;
    }
  }

  @media (max-width: 767px) {
    .wengel-hero {
      padding: 34px 0 40px;
    }

    .wengel-hero .hero-inner {
      padding: 0 20px;
    }

    .wengel-hero .hero-title {
      font-size: 36px;
      letter-spacing: -0.8px;
    }

    .wengel-hero .hero-text {
      font-size: 18px;
      line-height: 1.45;
    }

    .wengel-hero .hero-buttons {
      margin-top: 34px;
      gap: 12px;
    }

    .wengel-hero .hero-btn {
      width: 100%;
      min-height: 48px;
      border-radius: 16px;
    }

    .wengel-hero .card-scene {
      width: 100%;
      max-width: 584px;
      height: 0;
      padding-bottom: 73.63%;
      transform: scale(1);
    }

    .wengel-hero .scene-back {
      left: 17.6%;
      top: 7.4%;
      width: 76.9%;
    }

    .wengel-hero .card-pack {
      left: 12.5%;
      top: 4.2%;
      width: 66.8%;
      height: 68.6%;
    }

    .wengel-hero .card-item {
      width: 77.5%;
      height: auto;
    }

    .wengel-hero .dot-left {
      top: 57%;
      width: 5%;
      height: 5%;
      min-width: 18px;
      min-height: 18px;
    }

    .wengel-hero .dot-top {
      right: 5.3%;
      top: 21.2%;
      width: 5%;
      height: 5%;
      min-width: 18px;
      min-height: 18px;
    }

    .wengel-hero .badge-n1 {
      left: 0;
      top: 42.8%;
      width: 16.8%;
      min-width: 74px;
    }

    .wengel-hero .badge-50 {
      right: 0;
      top: 10.2%;
      width: 20.9%;
      min-width: 88px;
    }

    .wengel-hero .badge-economies {
      left: 20.7%;
      bottom: 0;
      width: 20%;
      min-width: 86px;
    }

    .wengel-hero .badge-2008 {
      right: 4.3%;
      bottom: 6.5%;
      width: 14%;
      min-width: 64px;
    }
  }
/******* CSS P3 *******/  
  .wengel-message-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    background-color: white;
  }

  .wengel-message-block .message-icon {
    width: 42px;
    height: auto;
    display: block;
    margin-bottom: 18px;
  }

  .wengel-message-block .typing-line {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: #1d202d;
    max-width: 900px;
    min-height: 72px;
  }

  .wengel-message-block .typing-text::after {
    content: "|";
    margin-left: 3px;
    animation: blink-caret 0.8s infinite;
  }

  .wengel-message-block .typing-text.done::after {
    content: "";
    animation: none;
  }

  @keyframes blink-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  @media (max-width: 767px) {
    .wengel-message-block .typing-line {
      font-size: 18px;
      min-height: 84px;
    }

    .wengel-message-block .message-icon {
      width: 34px;
    }
  }


/******** CSS P4 *********/  
.wengel-highlights {
    padding: 20px 0;
    background-color: white;
  }

  .wengel-highlights .highlights-inner {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .wengel-highlights .highlights-box {
    background: #2d3256;
    border-radius: 22px;
    padding: 26px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
  }

  .wengel-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
  }

  .wengel-highlights .highlight-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: #bfd400;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wengel-highlights .highlight-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: transform 0.3s ease;
  }

  /* Animation déclenchée */
  .wengel-highlights.animate .highlight-icon {
    animation: wengelIconIntro 0.8s ease forwards;
  }

  .wengel-highlights.animate .highlight-item:nth-child(2) .highlight-icon {
    animation-delay: 0.15s;
  }

  .wengel-highlights.animate .highlight-item:nth-child(3) .highlight-icon {
    animation-delay: 0.3s;
  }

  /* Hover */
  .wengel-highlights .highlight-item:hover .highlight-icon {
    transform: translateY(-4px) rotate(-4deg) scale(1.06);
  }

  .highlight-text {
    color: #fff;
  }

  .highlight-top {
    font-size: 23px;
    font-weight: 700;
    display: block;
  }

  .highlight-bottom {
    font-size: 23px;
    font-weight: 400;
    display: block;
  }

  @keyframes wengelIconIntro {
    0% {
      opacity: 0;
      transform: translateY(10px) scale(0.9);
    }
    60% {
      opacity: 1;
      transform: translateY(-3px) scale(1.05);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  } 

  @media (max-width: 767px) {
    .wengel-highlights .highlights-inner{
      padding: 0
    }

    .wengel-highlights .highlights-box{
      flex-direction: column;
      padding: 15px;
      align-items: baseline;
    }
  }
  
/****** CSS P5 ********/
.wengel-local-section {
    background: white;
    padding: 70px 0;
    overflow: hidden;
  }

  .wengel-local-section *,
  .wengel-local-section *::before,
  .wengel-local-section *::after {
    box-sizing: border-box;
  }

  .wengel-local-section .local-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 30px;*/
  }

  .wengel-local-section .local-left {
    flex: 0 0 47%;
    max-width: 690px;
  }

  .wengel-local-section .local-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 18px;
    background: #1d202d;
    color: #ffffff;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .wengel-local-section .local-title {
    margin: 0 0 22px;
    color: #1d202d;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1.5px;
  }

  .wengel-local-section .local-title span {
    display: block;
    margin-top: 8px;
    color: #bfd400;
  }

  .wengel-local-section .local-text {
    margin: 0;
    color: #2c2f3c;
    font-size: 23px;
    line-height: 1.33;
    font-weight: 400;
    letter-spacing: -0.2px;
  }

  .wengel-local-section .local-text + .local-text {
    margin-top: 24px;
  }

  .wengel-local-section .local-text strong {
    font-weight: 700;
    color: #1d202d;
  }

  .wengel-local-section .local-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
  }

  .wengel-local-section .local-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 32px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    transition: all 0.28s ease;
    white-space: nowrap;
  }

  .wengel-local-section .local-btn.btn-primary {
    background: #bfd400;
    color: #1d202d;
  }

  .wengel-local-section .local-btn.btn-primary:hover {
    background: #1d202d;
    color: #ffffff;
  }

  .wengel-local-section .local-btn.btn-secondary {
    background: #1d202d;
    color: #ffffff;
  }

  .wengel-local-section .local-btn.btn-secondary:hover {
    background: #bfd400;
    color: #1d202d;
  }

  .wengel-local-section .local-right {
    flex: 0 0 46%;
    display: flex;
    justify-content: center;
  }

  .wengel-local-section .photo-scene {
    position: relative;
    width: 680px;
    height: 510px;
  }

  .wengel-local-section .scene-note {
    position: absolute;
    top: 8px;
    right: 18px;
    width: 310px;
    z-index: 10;
  }

  .wengel-local-section .photo-card {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    will-change: transform;
    transition: transform 0.12s linear;
  }

  .wengel-local-section .photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Positions finales proches du visuel */
  .wengel-local-section .photo-1 {
    left: 0;
    top: 0;
    width: 311px;
    height: 168px;
  }

  .wengel-local-section .photo-2 {
    left: 18px;
    top: 184px;
    width: 167px;
    height: 298px;
  }

  .wengel-local-section .photo-3 {
    left: 196px;
    top: 188px;
    width: 136px;
    height: 93px;
  }

  .wengel-local-section .photo-4 {
    right: 0;
    top: 71px;
    width: 303px;
    height: 201px;
  }

  .wengel-local-section .photo-5 {
    left: 207px;
    bottom: 0;
    width: 273px;
    height: 210px;
  }

  .wengel-local-section .photo-6 {
    right: 14px;
    bottom: 91px;
    width: 186px;
    height: 122px;
  }

  @media (max-width: 1450px) {
    .wengel-local-section .local-title {
      font-size: 58px;
    }

    .wengel-local-section .local-text {
      font-size: 21px;
    }

    .wengel-local-section .photo-scene {
      transform: scale(0.93);
      transform-origin: center center;
    }
  }

  @media (max-width: 1199px) {
    .wengel-local-section .local-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }

    .wengel-local-section .local-left,
    .wengel-local-section .local-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-local-section .local-right {
      justify-content: center;
    }

    .wengel-local-section .local-title {
      font-size: 48px;
      line-height: 1;
    }

    .wengel-local-section .local-tag {
      font-size: 21px;
    }

    .wengel-local-section .local-text {
      font-size: 19px;
    }
  }

  @media (max-width: 767px) {
    .wengel-local-section {
      padding: 46px 0;
    }

    .wengel-local-section .local-inner {
      padding: 0 20px;
      gap: 28px;
    }

    .wengel-local-section .local-tag {
      min-height: 40px;
      padding: 0 20px;
      border-radius: 16px;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .wengel-local-section .local-title {
      font-size: 38px;
      letter-spacing: -0.8px;
      margin-bottom: 18px;
    }

    .wengel-local-section .local-text {
      font-size: 17px;
      line-height: 1.45;
    }

    .wengel-local-section .local-buttons {
      margin-top: 26px;
      gap: 12px;
    }

    .wengel-local-section .local-btn {
      width: 100%;
      min-height: 48px;
      border-radius: 16px;
    }

    .wengel-local-section .photo-scene {
      width: 100%;
      max-width: 680px;
      height: 0;
      padding-bottom: 75%;
      transform: none;
    }

    .wengel-local-section .scene-note {
      top: 0.5%;
      right: 2%;
      width: 42%;
    }

    .wengel-local-section .photo-card {
      border-radius: 16px;
    }

    .wengel-local-section .photo-1 {
      left: 0;
      top: 0;
      width: 45.74%;
      height: 24.71%;
    }

    .wengel-local-section .photo-2 {
      left: 2.65%;
      top: 36.08%;
      width: 24.56%;
      height: 43.92%;
    }

    .wengel-local-section .photo-3 {
      left: 28.82%;
      top: 36.86%;
      width: 20%;
      height: 18.24%;
    }

    .wengel-local-section .photo-4 {
      right: 0;
      top: 13.92%;
      width: 44.56%;
      height: 39.41%;
    }

    .wengel-local-section .photo-5 {
      left: 30.44%;
      bottom: 0;
      width: 40.15%;
      height: 41.18%;
    }

    .wengel-local-section .photo-6 {
      right: 2.06%;
      bottom: 17.84%;
      width: 27.35%;
      height: 23.92%;
    }
  }
  
/******** CSS P6 **********/
.wengel-categories {
    background: white;
    padding: 36px 0 70px;
  }

  .wengel-categories *,
  .wengel-categories *::before,
  .wengel-categories *::after {
    box-sizing: border-box;
  }

  .wengel-categories .categories-inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .wengel-categories .categories-title {
    margin: 0 0 32px;
    text-align: center;
    color: #1d202d;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800; /* Montserrat ExtraBold */
    letter-spacing: -0.5px;
  }

  .wengel-categories .categories-title span {
    color: #bfd400;
  }

  .wengel-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px 18px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .wengel-categories .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 122px;
    padding: 18px 14px 14px;
    border: 1px solid #c8ccd5;
    border-radius: 20px;
    background: #eceef2;
    text-decoration: none;
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  }

  .wengel-categories .category-card:hover {
    background: #bfd400;
    border-color: #bfd400;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .wengel-categories .category-icon-box {
    width: 66px;
    height: 58px;
    border-radius: 18px;
    background: #2d3256;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.28s ease;
  }

  .wengel-categories .category-card:hover .category-icon-box {
    transform: translateY(-2px);
  }

  .wengel-categories .category-icon {
    max-width: 34px;
    max-height: 34px;
    width: auto;
    height: auto;
    display: block;
  }

  .wengel-categories .category-label {
    text-align: center;
    color: #2d3256;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400; /* Montserrat Regular */
  }

  @media (max-width: 1300px) {
    .wengel-categories .categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 991px) {
    .wengel-categories {
      padding: 30px 0 50px;
    }

    .wengel-categories .categories-title {
      font-size: 28px;
      margin-bottom: 26px;
    }

    .wengel-categories .categories-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 767px) {
    .wengel-categories .categories-inner {
      padding: 0 15px;
    }

    .wengel-categories .categories-title {
      font-size: 24px;
      line-height: 1.2;
    }

    .wengel-categories .categories-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .wengel-categories .category-card {
      min-height: 116px;
      padding: 16px 10px 12px;
      border-radius: 18px;
    }

    .wengel-categories .category-icon-box {
      width: 60px;
      height: 54px;
      border-radius: 16px;
      margin-bottom: 12px;
    }

    .wengel-categories .category-icon {
      max-width: 30px;
      max-height: 30px;
    }

    .wengel-categories .category-label {
      font-size: 13px;
    }
  }
  
/***** CSS P7 *******/
.wengel-loisirs-final {
    background: white;
    padding: 34px 0 50px;
  }

  .wengel-loisirs-final *,
  .wengel-loisirs-final *::before,
  .wengel-loisirs-final *::after {
    box-sizing: border-box;
  }

  .wengel-loisirs-final .loisirs-final-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .wengel-loisirs-final .loisirs-final-box {
    background: #2f355d;
    border-radius: 22px;
    min-height: 500px;
    padding: 0 42px 0 38px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 46px;
    overflow: hidden;
  }

  /* COLONNE GAUCHE */
  .wengel-loisirs-final .loisirs-left {
    flex: 0 0 46%;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .wengel-loisirs-final .badge-245 {
    position: absolute;
    left: 0;
    top: 24px;
    width: 138px;
    height: auto;
    z-index: 3;
    animation: badgeBubbleIn 0.9s cubic-bezier(.2,.8,.2,1) 0.2s both,
               badgeBreath 4.2s ease-in-out 1.2s infinite;
  }

  .wengel-loisirs-final .visual-loisirs {
    position: absolute;
    left: 14px;
    bottom: -2px;
    width: 610px;
    max-width: none;
    height: auto;
    z-index: 2;
    display: block;
    animation: visualFloatSoft 5.5s ease-in-out infinite;
    transform-origin: center bottom;
  }

  /* COLONNE DROITE */
  .wengel-loisirs-final .loisirs-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 34px 0;
  }

  .wengel-loisirs-final .content-wrap {
    width: 100%;
    max-width: 680px;
  }

  .wengel-loisirs-final .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 30px;
    border-radius: 18px;
    background: #bfd400;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .wengel-loisirs-final .section-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 53px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -1.2px;
  }

  .wengel-loisirs-final .section-title span {
    color: #bfd400;
  }

  .wengel-loisirs-final .section-text {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 400;
    max-width: 650px;
  }

  .wengel-loisirs-final .pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-top: 34px;
    max-width: 660px;
  }

  .wengel-loisirs-final .pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    background: #1d202d;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .wengel-loisirs-final .pill:hover {
    background: #bfd400;
    color: #1d202d;
    transform: translateY(-3px);
  }

  .wengel-loisirs-final .pill-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
    flex: 0 0 26px;
    transition: transform 0.25s ease;
  }

  .wengel-loisirs-final .pill:hover .pill-icon {
    transform: translateY(-1px);
  }

  .wengel-loisirs-final .pill-label {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
  }

  @keyframes visualFloatSoft {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes badgeBubbleIn {
    0% {
      opacity: 0;
      transform: scale(0.35);
    }
    65% {
      opacity: 1;
      transform: scale(1.08);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes badgeBreath {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.04);
    }
    100% {
      transform: scale(1);
    }
  }

  @media (max-width: 1450px) {
    .wengel-loisirs-final .section-title {
      font-size: 48px;
    }

    .wengel-loisirs-final .section-text {
      font-size: 19px;
    }

    .wengel-loisirs-final .visual-loisirs {
      width: 560px;
    }
  }

  @media (max-width: 1199px) {
    .wengel-loisirs-final .loisirs-final-box {
      flex-direction: column;
      padding: 24px 24px 34px;
      min-height: auto;
      gap: 20px;
    }

    .wengel-loisirs-final .loisirs-left,
    .wengel-loisirs-final .loisirs-right {
      flex: 0 0 100%;
      width: 100%;
    }

    .wengel-loisirs-final .loisirs-left {
      min-height: 420px;
    }

    .wengel-loisirs-final .visual-loisirs {
      left: 0;
      transform: translateX(-50%);
      width: 500px;
      bottom: -2px;
    }

    .wengel-loisirs-final .badge-245 {
      left: 18px;
      top: 18px;
      width: 120px;
    }

    .wengel-loisirs-final .loisirs-right {
      padding: 0;
    }

    .wengel-loisirs-final .section-title {
      font-size: 42px;
    }

    .wengel-loisirs-final .section-text {
      font-size: 18px;
    }
  }

  @media (max-width: 767px) {
    .wengel-loisirs-final {
      padding: 22px 0 36px;
    }

    .wengel-loisirs-final .loisirs-final-inner {
      padding: 0 15px;
    }

    .wengel-loisirs-final .loisirs-final-box {
      border-radius: 18px;
      padding: 18px 16px 24px;
    }

    .wengel-loisirs-final .loisirs-left {
      min-height: 300px;
    }

    .wengel-loisirs-final .badge-245 {
      width: 92px;
      left: 6px;
      top: 8px;
    }

    .wengel-loisirs-final .visual-loisirs {
      width: 360px;
      left: 0;
      bottom: -2px;
      transform: translateX(-50%);
    }

    .wengel-loisirs-final .section-tag {
      min-height: 40px;
      padding: 0 18px;
      border-radius: 14px;
      font-size: 17px;
      margin-bottom: 14px;
    }

    .wengel-loisirs-final .section-title {
      font-size: 33px;
      letter-spacing: -0.6px;
      margin-bottom: 14px;
    }

    .wengel-loisirs-final .section-text {
      font-size: 16px;
      line-height: 1.4;
    }

    .wengel-loisirs-final .pills-grid {
      gap: 10px;
      margin-top: 24px;
    }

    .wengel-loisirs-final .pill {
      min-height: 42px;
      padding: 0 14px;
      border-radius: 14px;
      gap: 10px;
    }

    .wengel-loisirs-final .pill-icon {
      width: 22px;
      height: 22px;
      flex-basis: 22px;
    }

    .wengel-loisirs-final .pill-label {
      font-size: 13px;
    }
  }
  
/******* CSS P8 *******/
.wengel-billetterie {
    background: white;
    padding: 0px 0 70px;
    overflow: hidden;
  }

  .wengel-billetterie *,
  .wengel-billetterie *::before,
  .wengel-billetterie *::after {
    box-sizing: border-box;
  }

  .wengel-billetterie .billetterie-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .wengel-billetterie .billetterie-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  /* LEFT */
  .wengel-billetterie .billetterie-left {
    flex: 0 0 48%;
    max-width: 690px;
  }

  .wengel-billetterie .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 36px;
    border-radius: 18px;
    background: #1d202d;
    color: #ffffff;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .wengel-billetterie .section-title {
    margin: 0 0 6px;
    color: #1d202d;
    font-size: 60px;
    line-height: 0.97;
    font-weight: 800;
    letter-spacing: -1.2px;
  }

  .wengel-billetterie .section-title span {
    color: #bfd400;
  }

  .wengel-billetterie .section-subtitle {
    margin: 0 0 28px;
    color: #2f355d;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
  }

  .wengel-billetterie .stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .wengel-billetterie .stat-card {
    width: 182px;
    min-height: 94px;
    border-radius: 18px;
    background: #eceef2;
    border: 1px solid #d2d5dd;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px 10px;
  }

  .wengel-billetterie .stat-number {
    color: #1d202d;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.5px;
  }

  .wengel-billetterie .stat-label {
    margin-top: 4px;
    color: #5c6276;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
  }

  .wengel-billetterie .section-text {
    margin: 0;
    color: #323647;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 400;
    max-width: 660px;
  }

  .wengel-billetterie .section-text strong {
    font-weight: 700;
    color: #1d202d;
  }

  .wengel-billetterie .plus-box {
    margin-top: 34px;
    background: #1d202d;
    border-radius: 20px;
    min-height: 92px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 565px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .wengel-billetterie .plus-box.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wengel-billetterie .plus-label {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
  }

  .wengel-billetterie .plus-icon {
    width: 48px;
    height: 48px;
    display: block;
    flex: 0 0 48px;
  }

  .wengel-billetterie .plus-text {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 400;
  }

  .wengel-billetterie .plus-text span {
    color: #bfd400;
    font-weight: 500;
  }

  /* RIGHT */
  .wengel-billetterie .billetterie-right {
    flex: 0 0 46%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wengel-billetterie .orbit-scene {
    position: relative;
    width: 660px;
    height: 660px;
    max-width: 100%;
  }

  .wengel-billetterie .orbit-ring {
    position: absolute;
    inset: 70px;
    border: 1.8px solid #202435;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.95;
  }

  .wengel-billetterie .orbit-track {
    position: absolute;
    inset: 70px;
    z-index: 2;
    animation: wengelOrbitRotate 28s linear infinite;
    transform-origin: center center;
  }

  .wengel-billetterie .orbit-item {
    position: absolute;
    width: 76px;
    height: 76px;
    margin-left: -38px;
    margin-top: -38px;
    border-radius: 20px;
    background: #bfd400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
    animation: wengelOrbitCounter 28s linear infinite;
  }

  .wengel-billetterie .orbit-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
  }

  .wengel-billetterie .orbit-item.item-1 { left: 13%; top: 56%; }
  .wengel-billetterie .orbit-item.item-2 { left: 29%; top: 16%; }
  .wengel-billetterie .orbit-item.item-3 { left: 77%; top: 12%; }
  .wengel-billetterie .orbit-item.item-4 { left: 92%; top: 44%; }
  .wengel-billetterie .orbit-item.item-5 { left: 82%; top: 76%; }
  .wengel-billetterie .orbit-item.item-6 { left: 58%; top: 95%; }
  .wengel-billetterie .orbit-item.item-7 { left: 34%; top: 86%; }
  .wengel-billetterie .orbit-item.item-8 { left: 8%; top: 28%; }

  .wengel-billetterie .visual-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: wengelVisualFloat 6s ease-in-out infinite;
  }

  .wengel-billetterie .visual-core img {
    display: block;
    width: 100%;
    height: auto;
  }

  @keyframes wengelOrbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes wengelOrbitCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
  }

  @keyframes wengelVisualFloat {
    0% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
    100% { transform: translate(-50%, -50%) translateY(0); }
  }

  @media (max-width: 1450px) {
    .wengel-billetterie .section-title {
      font-size: 54px;
    }

    .wengel-billetterie .section-text,
    .wengel-billetterie .section-subtitle {
      font-size: 20px;
    }

    .wengel-billetterie .orbit-scene {
      width: 590px;
      height: 590px;
    }

    .wengel-billetterie .visual-core {
      width: 390px;
    }
  }

  @media (max-width: 1199px) {
    .wengel-billetterie .billetterie-box {
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
    }

    .wengel-billetterie .billetterie-left,
    .wengel-billetterie .billetterie-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-billetterie .billetterie-right {
      justify-content: center;
    }

    .wengel-billetterie .section-title {
      font-size: 46px;
    }

    .wengel-billetterie .section-subtitle,
    .wengel-billetterie .section-text {
      font-size: 18px;
    }
  }

  @media (max-width: 767px) {
    .wengel-billetterie {
      padding: 34px 0 44px;
    }

    .wengel-billetterie .billetterie-inner {
      padding: 0 18px;
    }

    .wengel-billetterie .section-tag {
      min-height: 40px;
      padding: 0 22px;
      border-radius: 15px;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .wengel-billetterie .section-title {
      font-size: 36px;
      letter-spacing: -0.7px;
    }

    .wengel-billetterie .section-subtitle,
    .wengel-billetterie .section-text {
      font-size: 16px;
    }

    .wengel-billetterie .stats-row {
      gap: 14px;
      margin-bottom: 26px;
    }

    .wengel-billetterie .stat-card {
      width: calc(50% - 7px);
      min-height: 82px;
      border-radius: 16px;
    }

    .wengel-billetterie .stat-number {
      font-size: 34px;
    }

    .wengel-billetterie .stat-label {
      font-size: 12px;
    }

    .wengel-billetterie .plus-box {
      padding: 16px 18px;
      gap: 12px;
      min-height: 82px;
      border-radius: 18px;
    }

    .wengel-billetterie .plus-label {
      font-size: 20px;
    }

    .wengel-billetterie .plus-icon {
      width: 40px;
      height: 40px;
      flex-basis: 40px;
    }

    .wengel-billetterie .plus-text {
      font-size: 16px;
    }

    .wengel-billetterie .orbit-scene {
      width: 100%;
      height: 0;
      padding-bottom: 100%;
    }

    .wengel-billetterie .orbit-ring,
    .wengel-billetterie .orbit-track {
      inset: 11%;
    }

    .wengel-billetterie .orbit-item {
      width: 58px;
      height: 58px;
      margin-left: -29px;
      margin-top: -29px;
      border-radius: 16px;
    }

    .wengel-billetterie .orbit-item img {
      width: 30px;
      height: 30px;
    }

    .wengel-billetterie .visual-core {
      width: 64%;
    }
  } 
  
/************ CSS Section 9 *******************/
.wengel-bons-section {
  background: white;
  padding: 60px 0 80px;
  overflow: hidden;
}

.wengel-bons-section *,
.wengel-bons-section *::before,
.wengel-bons-section *::after {
  box-sizing: border-box;
}

.wengel-bons-section .bons-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.wengel-bons-section .bons-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wengel-bons-section .bons-left {
  flex: 0 0 48%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-width: 0;
}

.wengel-bons-section .bons-visual-wrap {
  position: relative;
  width: 640px;
  max-width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
  perspective: 1200px;
}

.wengel-bons-section .bons-visual-wrap.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wengel-bons-section .bons-visual-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 70%;
  height: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,212,0,0.18) 0%, rgba(191,212,0,0.08) 40%, transparent 75%);
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wengel-bons-section .bons-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.18));
  animation: bonsFloat 6s ease-in-out infinite;
  transition: transform 0.2s ease;
}

@keyframes bonsFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.wengel-bons-section .bons-right {
  flex: 0 0 48%;
  max-width: 680px;
  min-width: 0;
}

.wengel-bons-section .tags-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.wengel-bons-section .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.wengel-bons-section .section-tag.dark {
  background: #1d202d;
  color: #fff;
}

.wengel-bons-section .section-tag.green {
  background: #bfd400;
  color: #fff;
}

.wengel-bons-section .section-title {
  margin: 0 0 18px;
  color: #1d202d;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 800;
}

.wengel-bons-section .section-title span {
  color: #bfd400;
}

.wengel-bons-section .section-text {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  color: #323647;
}

.wengel-bons-section .section-text strong {
  font-weight: 700;
  color: #1d202d;
}

.wengel-bons-section .stats-row {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.wengel-bons-section .stat-card {
  width: 180px;
  min-height: 92px;
  border-radius: 20px;
  background: #eceef2;
  border: 1px solid #d7dbe2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
}

.wengel-bons-section .stat-number {
  font-size: 50px;
  font-weight: 800;
  color: #1d202d;
  line-height: 1;
}

.wengel-bons-section .stat-label {
  font-size: 14px;
  color: #5c6276;
  text-align: center;
  line-height: 1.15;
}

@media (max-width: 1200px) {
  .wengel-bons-section .bons-box {
    flex-direction: column;
    gap: 40px;
  }

  .wengel-bons-section .bons-left,
  .wengel-bons-section .bons-right {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .wengel-bons-section .bons-left {
    justify-content: center;
  }

  .wengel-bons-section .bons-right {
    text-align: left;
  }

  .wengel-bons-section .section-title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .wengel-bons-section {
    padding: 40px 0;
  }

  .wengel-bons-section .bons-inner {
    padding: 0 20px;
  }

  .wengel-bons-section .section-title {
    font-size: 34px;
  }

  .wengel-bons-section .section-text {
    font-size: 16px;
  }

  .wengel-bons-section .stat-card {
    width: calc(50% - 7px);
  }

  .wengel-bons-section .section-tag {
    font-size: 18px;
    min-height: 40px;
    padding: 0 20px;
  }
} 

/************* CSS section 10 ******************/
.wengel-cagnotte-section {
    background: white;
    padding: 36px 0 54px;
  }

  .wengel-cagnotte-section *,
  .wengel-cagnotte-section *::before,
  .wengel-cagnotte-section *::after {
    box-sizing: border-box;
  }

  .wengel-cagnotte-section .cagnotte-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .wengel-cagnotte-section .cagnotte-box {
    background: linear-gradient(90deg, #1f2234 0%, #1d2031 100%);
    border-radius: 24px;
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    overflow: hidden;
    padding: 0 44px 0 34px;
  }

  .wengel-cagnotte-section .cagnotte-left {
    flex: 0 0 33%;
    position: relative;
    min-height: 235px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .wengel-cagnotte-section .pig-scene {
    position: relative;
    width: 300px;
    height: 235px;
  }

  .wengel-cagnotte-section .pig-main {
    position: absolute;
    left: 8px;
    bottom: -2px;
    width: 250px;
    height: auto;
    display: block;
    z-index: 2;
  }

  .wengel-cagnotte-section .ticket {
    position: absolute;
    display: block;
    z-index: 3;
    will-change: transform, opacity;
  }

  .wengel-cagnotte-section .ticket-1 {
    width: 36px;
    left: 28px;
    top: 72px;
    transform: rotate(-24deg) translate(0, 0);
    animation: ticketOneFloat 2.7s ease-in-out infinite;
  }

  .wengel-cagnotte-section .ticket-2 {
    width: 34px;
    left: 80px;
    top: 70px;
    transform: rotate(-12deg) translate(0, 0);
    animation: ticketTwoFloat 2.7s ease-in-out infinite 0.22s;
  }

  .wengel-cagnotte-section .cagnotte-right {
    flex: 0 0 56%;
    max-width: 610px;
  }

  .wengel-cagnotte-section .cagnotte-title {
    margin: 0 0 12px;
    color: #bfd400;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800; /* Montserrat ExtraBold */
    letter-spacing: -0.7px;
  }

  .wengel-cagnotte-section .cagnotte-text {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 400; /* Montserrat Regular */
    max-width: 600px;
  }

  .wengel-cagnotte-section .cagnotte-text strong {
    font-weight: 700;
    color: #ffffff;
  }

  @keyframes ticketOneFloat {
    0% {
      transform: rotate(-24deg) translate(0, 0) scale(0.96);
      opacity: 0;
    }
    18% {
      opacity: 1;
    }
    45% {
      transform: rotate(-18deg) translate(-8px, -8px) scale(1);
      opacity: 1;
    }
    70% {
      transform: rotate(-20deg) translate(-4px, -4px) scale(1);
      opacity: 1;
    }
    100% {
      transform: rotate(-24deg) translate(0, 0) scale(0.96);
      opacity: 0.95;
    }
  }

  @keyframes ticketTwoFloat {
    0% {
      transform: rotate(-12deg) translate(0, 0) scale(0.96);
      opacity: 0;
    }
    18% {
      opacity: 1;
    }
    45% {
      transform: rotate(-8deg) translate(6px, -9px) scale(1);
      opacity: 1;
    }
    70% {
      transform: rotate(-10deg) translate(3px, -5px) scale(1);
      opacity: 1;
    }
    100% {
      transform: rotate(-12deg) translate(0, 0) scale(0.96);
      opacity: 0.95;
    }
  }

  @media (max-width: 1199px) {
    .wengel-cagnotte-section .cagnotte-box {
      gap: 28px;
      padding: 0 28px 0 24px;
    }

    .wengel-cagnotte-section .cagnotte-title {
      font-size: 30px;
    }

    .wengel-cagnotte-section .cagnotte-text {
      font-size: 18px;
    }
  }

  @media (max-width: 991px) {
    .wengel-cagnotte-section .cagnotte-box {
      flex-direction: column;
      align-items: flex-start;
      padding: 22px 22px 26px;
      min-height: auto;
    }

    .wengel-cagnotte-section .cagnotte-left,
    .wengel-cagnotte-section .cagnotte-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-cagnotte-section .cagnotte-left {
      min-height: 220px;
      justify-content: flex-start;
    }

    .wengel-cagnotte-section .pig-scene {
      width: 280px;
      height: 220px;
    }
  }

  @media (max-width: 767px) {
    .wengel-cagnotte-section {
      padding: 24px 0 38px;
    }

    .wengel-cagnotte-section .cagnotte-inner {
      padding: 0 15px;
    }

    .wengel-cagnotte-section .cagnotte-box {
      border-radius: 20px;
      padding: 18px 16px 22px;
      gap: 14px;
    }

    .wengel-cagnotte-section .cagnotte-left {
      min-height: 190px;
    }

    .wengel-cagnotte-section .pig-scene {
      width: 230px;
      height: 180px;
    }

    .wengel-cagnotte-section .pig-main {
      width: 190px;
      left: 6px;
      bottom: -2px;
    }

    .wengel-cagnotte-section .ticket-1 {
      width: 28px;
      left: 18px;
      top: 56px;
    }

    .wengel-cagnotte-section .ticket-2 {
      width: 27px;
      left: 58px;
      top: 54px;
    }

    .wengel-cagnotte-section .cagnotte-title {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .wengel-cagnotte-section .cagnotte-text {
      font-size: 16px;
      line-height: 1.28;
    }
  }
  
/******************* Css section 11 **********************/
.wengel-vacances-section {
    background: white;
    padding: 34px 0 54px;
    overflow: hidden;
  }

  .wengel-vacances-section *,
  .wengel-vacances-section *::before,
  .wengel-vacances-section *::after {
    box-sizing: border-box;
  }

  .wengel-vacances-section .vacances-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .wengel-vacances-section .vacances-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
    margin-bottom: 18px;
  }

  .wengel-vacances-section .vacances-left {
    flex: 0 0 48%;
    max-width: 600px;
  }

  .wengel-vacances-section .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 42px;
    border-radius: 18px;
    background: #1d202d;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .wengel-vacances-section .section-title {
    margin: 0 0 16px;
    color: #1d202d;
    font-size: 60px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1.1px;
  }

  .wengel-vacances-section .section-title span {
    color: #bfd400;
  }

  .wengel-vacances-section .section-text {
    margin: 0;
    color: #323647;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 400;
    max-width: 590px;
  }

  .wengel-vacances-section .stat-card {
    width: 234px;
    min-height: 96px;
    margin-top: 18px;
    border-radius: 22px;
    background: #eceef2;
    border: 1px solid #d6dae2;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 12px 12px;
  }

  .wengel-vacances-section .stat-number {
    color: #1d202d;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.8px;
  }

  .wengel-vacances-section .stat-label {
    margin-top: 3px;
    color: #666c7e;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 400;
  }

  .wengel-vacances-section .vacances-right {
    flex: 0 0 46%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .wengel-vacances-section .visual-wrap {
    width: 700px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
  }

  .wengel-vacances-section .visual-wrap.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .wengel-vacances-section .visual-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  .wengel-vacances-section .vacances-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .wengel-vacances-section .vacance-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 18px;
    background: #1d202d;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .wengel-vacances-section .vacance-pill:hover {
    background: #bfd400;
    color: #1d202d;
    transform: translateY(-3px);
  }

  .wengel-vacances-section .vacance-pill img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex: 0 0 28px;
  }

  .wengel-vacances-section .vacance-pill span {
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
  }

  @media (max-width: 1199px) {
    .wengel-vacances-section .vacances-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
    }

    .wengel-vacances-section .vacances-left,
    .wengel-vacances-section .vacances-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-vacances-section .vacances-right {
      justify-content: center;
    }

    .wengel-vacances-section .section-title {
      font-size: 48px;
    }

    .wengel-vacances-section .section-text {
      font-size: 19px;
    }
  }

  @media (max-width: 767px) {
    .wengel-vacances-section {
      padding: 26px 0 38px;
    }

    .wengel-vacances-section .vacances-inner {
      padding: 0 16px;
    }

    .wengel-vacances-section .section-tag {
      min-height: 40px;
      padding: 0 24px;
      border-radius: 15px;
      font-size: 19px;
      margin-bottom: 14px;
    }

    .wengel-vacances-section .section-title {
      font-size: 36px;
      letter-spacing: -0.7px;
      margin-bottom: 14px;
    }

    .wengel-vacances-section .section-text {
      font-size: 16px;
      line-height: 1.35;
    }

    .wengel-vacances-section .stat-card {
      width: 210px;
      min-height: 86px;
      border-radius: 18px;
    }

    .wengel-vacances-section .stat-number {
      font-size: 40px;
    }

    .wengel-vacances-section .stat-label {
      font-size: 13px;
    }

    .wengel-vacances-section .vacances-pills {
      gap: 8px;
    }

    .wengel-vacances-section .vacance-pill {
      min-height: 42px;
      padding: 0 14px;
      gap: 10px;
      border-radius: 16px;
    }

    .wengel-vacances-section .vacance-pill img {
      width: 24px;
      height: 24px;
      flex-basis: 24px;
    }

    .wengel-vacances-section .vacance-pill span {
      font-size: 15px;
    }
  }
  
  
/****** CSS section 12 ******/
.wengel-espace-cse {
    background: white;
    padding: 34px 0 60px;
    overflow: hidden;
  }

  .wengel-espace-cse *,
  .wengel-espace-cse *::before,
  .wengel-espace-cse *::after {
    box-sizing: border-box;
  }

  .wengel-espace-cse .espace-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .wengel-espace-cse .espace-top {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 72px;
  }

  .wengel-espace-cse .espace-top-title {
    margin: 0 0 12px;
    color: #bfd400;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.7px;
  }

  .wengel-espace-cse .espace-top-text {
    margin: 0;
    color: #2f3446;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 400;
  }

  .wengel-espace-cse .espace-top-text strong {
    font-weight: 700;
    color: #1d202d;
  }

  .wengel-espace-cse .espace-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .wengel-espace-cse .espace-left {
    flex: 0 0 49%;
    max-width: 620px;
  }

  .wengel-espace-cse .espace-title {
    margin: 0 0 18px;
    color: #1d202d;
    font-size: 64px;
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -1.2px;
  }

  .wengel-espace-cse .espace-text {
    margin: 0 0 28px;
    color: #323647;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 400;
    max-width: 610px;
  }

  .wengel-espace-cse .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
    margin-bottom: 34px;
    max-width: 640px;
  }

  .wengel-espace-cse .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5063;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
  }

  .wengel-espace-cse .feature-check {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    position: relative;
  }

  .wengel-espace-cse .feature-check::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 7px;
    height: 12px;
    border-right: 2px solid #bfd400;
    border-bottom: 2px solid #bfd400;
    transform: rotate(40deg) scale(0.95);
    transform-origin: center;
    animation: wengelCheckFloat 2.4s ease-in-out infinite;
  }

  .wengel-espace-cse .feature-item:nth-child(2) .feature-check::before {
    animation-delay: 0.12s;
  }

  .wengel-espace-cse .feature-item:nth-child(3) .feature-check::before {
    animation-delay: 0.24s;
  }

  .wengel-espace-cse .feature-item:nth-child(4) .feature-check::before {
    animation-delay: 0.36s;
  }

  .wengel-espace-cse .feature-item:nth-child(5) .feature-check::before {
    animation-delay: 0.48s;
  }

  .wengel-espace-cse .feature-item:nth-child(6) .feature-check::before {
    animation-delay: 0.60s;
  }

  .wengel-espace-cse .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 34px;
    border-radius: 18px;
    background: #bfd400;
    color: #1d202d;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .wengel-espace-cse .cta-btn:hover {
    background: #1d202d;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .wengel-espace-cse .espace-right {
    flex: 0 0 43%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .wengel-espace-cse .pc-wrap {
    width: 560px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
  }

  .wengel-espace-cse .pc-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wengel-espace-cse .pc-wrap img {
    display: block;
    width: 90%;
    height: auto;
  }

  @keyframes wengelCheckFloat {
    0% {
      transform: rotate(40deg) translateY(0) scale(0.95);
    }
    50% {
      transform: rotate(40deg) translateY(-2px) scale(1);
    }
    100% {
      transform: rotate(40deg) translateY(0) scale(0.95);
    }
  }

  @media (max-width: 1300px) {
    .wengel-espace-cse .espace-title {
      font-size: 56px;
    }

    .wengel-espace-cse .espace-text,
    .wengel-espace-cse .espace-top-text {
      font-size: 20px;
    }

    .wengel-espace-cse .espace-top-title {
      font-size: 36px;
    }
  }

  @media (max-width: 1199px) {
    .wengel-espace-cse .espace-main {
      flex-direction: column;
      align-items: flex-start;
      gap: 34px;
    }

    .wengel-espace-cse .espace-left,
    .wengel-espace-cse .espace-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-espace-cse .espace-right {
      justify-content: center;
    }

    .wengel-espace-cse .espace-title {
      font-size: 48px;
    }

    .wengel-espace-cse .features-grid {
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .wengel-espace-cse {
      padding: 28px 0 40px;
    }

    .wengel-espace-cse .espace-inner {
      padding: 0 16px;
    }

    .wengel-espace-cse .espace-top {
      margin-bottom: 40px;
    }

    .wengel-espace-cse .espace-top-title {
      font-size: 28px;
      line-height: 1.1;
    }

    .wengel-espace-cse .espace-top-text {
      font-size: 16px;
      line-height: 1.35;
    }

    .wengel-espace-cse .espace-title {
      font-size: 38px;
      letter-spacing: -0.7px;
      margin-bottom: 14px;
    }

    .wengel-espace-cse .espace-text {
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 22px;
    }

    .wengel-espace-cse .features-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 26px;
    }

    .wengel-espace-cse .feature-item {
      font-size: 15px;
    }

    .wengel-espace-cse .cta-btn {
      width: 100%;
      min-height: 46px;
      border-radius: 16px;
      font-size: 16px;
    }
  } 
  
  
/********* Section 13 *******/
.wengel-site-cse-section {
    background: white;
    padding: 28px 0 60px;
    overflow: hidden;
  }

  .wengel-site-cse-section *,
  .wengel-site-cse-section *::before,
  .wengel-site-cse-section *::after {
    box-sizing: border-box;
  }

  .wengel-site-cse-section .site-cse-inner {
    /*max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;*/
  }

  .wengel-site-cse-section .site-cse-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 34px;
  }

  .wengel-site-cse-section .site-cse-left {
    /*flex: 0 0 46%;*/
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .wengel-site-cse-section .visual-wrap {
    /*width: 740px;*/
    max-width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
  }

  .wengel-site-cse-section .visual-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wengel-site-cse-section .visual-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  .wengel-site-cse-section .site-cse-right {
    /*flex: 0 0 48%;*/
    /*max-width: 690px;*/
  }

  .wengel-site-cse-section .site-cse-title {
    margin: 0 0 16px;
    color: #1d202d;
    font-size: 56px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -1px;
  }

  .wengel-site-cse-section .site-cse-text {
    margin: 0 0 34px;
    color: #323647;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 400;
    max-width: 650px;
  }

  .wengel-site-cse-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 36px;
  }

  .wengel-site-cse-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5063;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
  }

  .wengel-site-cse-section .feature-check {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    position: relative;
  }

  .wengel-site-cse-section .feature-check::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 7px;
    height: 12px;
    border-right: 2px solid #bfd400;
    border-bottom: 2px solid #bfd400;
    transform: rotate(40deg) scale(0.95);
    transform-origin: center;
    animation: wengelSiteCheckFloat 2.4s ease-in-out infinite;
  }

  .wengel-site-cse-section .feature-item:nth-child(2) .feature-check::before { animation-delay: 0.12s; }
  .wengel-site-cse-section .feature-item:nth-child(3) .feature-check::before { animation-delay: 0.24s; }
  .wengel-site-cse-section .feature-item:nth-child(4) .feature-check::before { animation-delay: 0.36s; }
  .wengel-site-cse-section .feature-item:nth-child(5) .feature-check::before { animation-delay: 0.48s; }
  .wengel-site-cse-section .feature-item:nth-child(6) .feature-check::before { animation-delay: 0.60s; }
  .wengel-site-cse-section .feature-item:nth-child(7) .feature-check::before { animation-delay: 0.72s; }
  .wengel-site-cse-section .feature-item:nth-child(8) .feature-check::before { animation-delay: 0.84s; }
  .wengel-site-cse-section .feature-item:nth-child(9) .feature-check::before { animation-delay: 0.96s; }
  .wengel-site-cse-section .feature-item:nth-child(10) .feature-check::before { animation-delay: 1.08s; }
  .wengel-site-cse-section .feature-item:nth-child(11) .feature-check::before { animation-delay: 1.20s; }
  .wengel-site-cse-section .feature-item:nth-child(12) .feature-check::before { animation-delay: 1.32s; }
  .wengel-site-cse-section .feature-item:nth-child(13) .feature-check::before { animation-delay: 1.44s; }
  .wengel-site-cse-section .feature-item:nth-child(14) .feature-check::before { animation-delay: 1.56s; }

  .wengel-site-cse-section .cards-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    max-width: 1270px;
    margin: 26px auto 36px;
  }

  .wengel-site-cse-section .info-card {
    min-height: 92px;
    border-radius: 20px;
    background: #eceef2;
    border: 1px solid #d6dae2;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    text-decoration: none;
    color: #1d202d;
    opacity: 0;
    transform: translateY(26px);
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease,
      opacity 0.7s ease;
  }

  .wengel-site-cse-section .info-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wengel-site-cse-section .info-card:hover {
    background: #bfd400;
    color: #1d202d;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  }

  .wengel-site-cse-section .info-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    flex: 0 0 48px;
  }

  .wengel-site-cse-section .info-card span {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
  }

  .wengel-site-cse-section .bottom-cta {
    text-align: center;
  }

  .wengel-site-cse-section .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 34px;
    border-radius: 18px;
    background: #bfd400;
    color: #1d202d;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .wengel-site-cse-section .cta-btn:hover {
    background: #1d202d;
    color: #ffffff;
    transform: translateY(-2px);
  }

  @keyframes wengelSiteCheckFloat {
    0% {
      transform: rotate(40deg) translateY(0) scale(0.95);
    }
    50% {
      transform: rotate(40deg) translateY(-2px) scale(1);
    }
    100% {
      transform: rotate(40deg) translateY(0) scale(0.95);
    }
  }

  @media (max-width: 1300px) {
    .wengel-site-cse-section .site-cse-title {
      font-size: 50px;
    }

    .wengel-site-cse-section .site-cse-text {
      font-size: 19px;
    }

    .wengel-site-cse-section .cards-row {
      gap: 20px;
    }
  }

  @media (max-width: 1199px) {
    .wengel-site-cse-section .site-cse-top {
      flex-direction: column;
      gap: 34px;
    }

    .wengel-site-cse-section .site-cse-left,
    .wengel-site-cse-section .site-cse-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-site-cse-section .site-cse-left {
      justify-content: center;
    }

    .wengel-site-cse-section .site-cse-title {
      font-size: 44px;
    }

    .wengel-site-cse-section .features-grid {
      max-width: 100%;
    }

    .wengel-site-cse-section .cards-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .wengel-site-cse-section {
      padding: 24px 0 40px;
    }

    .wengel-site-cse-section .site-cse-inner {
      padding: 0 16px;
    }

    .wengel-site-cse-section .site-cse-title {
      font-size: 36px;
      letter-spacing: -0.7px;
      margin-bottom: 14px;
    }

    .wengel-site-cse-section .site-cse-text {
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 24px;
    }

    .wengel-site-cse-section .features-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .wengel-site-cse-section .feature-item {
      font-size: 15px;
    }

    .wengel-site-cse-section .cards-row {
      grid-template-columns: 1fr;
      gap: 14px;
      margin: 22px auto 28px;
    }

    .wengel-site-cse-section .info-card {
      min-height: 82px;
      border-radius: 18px;
      padding: 16px 18px;
    }

    .wengel-site-cse-section .info-card img {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
    }

    .wengel-site-cse-section .info-card span {
      font-size: 17px;
    }

    .wengel-site-cse-section .cta-btn {
      width: 100%;
      min-height: 46px;
      border-radius: 16px;
      font-size: 16px;
    }
  } 
  
/******** Section 14 ********/
  .wengel-trust-slider {
    background: #f3f3f3;
    padding: 30px 0 40px;
    overflow: hidden;
  }

  .wengel-trust-slider *,
  .wengel-trust-slider *::before,
  .wengel-trust-slider *::after {
    box-sizing: border-box;
  }

  .wengel-trust-slider .trust-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .wengel-trust-slider .trust-title {
    margin: 0 0 12px;
    text-align: center;
    color: #1d202d;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
  }

  .wengel-trust-slider .trust-box {
    background: #1d202d;
    border-radius: 24px;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
  }

  .wengel-trust-slider .trust-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: wengelTrustScroll 28s linear infinite;
  }

  .wengel-trust-slider .trust-box:hover .trust-track {
    animation-play-state: paused;
  }

  .wengel-trust-slider .trust-slide {
    flex: 0 0 auto;
    width: 176px;
    height: 74px;
    margin: 0 8px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
  }

  .wengel-trust-slider .trust-slide img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
  }

  @keyframes wengelTrustScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 991px) {
    .wengel-trust-slider .trust-title {
      font-size: 30px;
    }

    .wengel-trust-slider .trust-slide {
      width: 158px;
      height: 68px;
      border-radius: 18px;
    }

    .wengel-trust-slider .trust-slide img {
      max-height: 42px;
    }
  }

  @media (max-width: 767px) {
    .wengel-trust-slider {
      padding: 24px 0 32px;
    }

    .wengel-trust-slider .trust-inner {
      padding: 0 15px;
    }

    .wengel-trust-slider .trust-title {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .wengel-trust-slider .trust-box {
      border-radius: 20px;
      padding: 14px 0;
    }

    .wengel-trust-slider .trust-slide {
      width: 138px;
      height: 62px;
      margin: 0 6px;
      border-radius: 16px;
      padding: 8px 14px;
    }

    .wengel-trust-slider .trust-slide img {
      max-height: 36px;
    }
  }
  
  
/*********** Section 15 - Avis Google *****/
.wengel-google-reviews {
  background: #f3f3f3;
  padding: 40px 0 60px;
  overflow: hidden;
}

.wengel-google-reviews *,
.wengel-google-reviews *::before,
.wengel-google-reviews *::after {
  box-sizing: border-box;
}

.wengel-google-reviews .inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.wengel-google-reviews .google-header {
  text-align: center;
  margin-bottom: 34px;
}

.wengel-google-reviews .google-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.wengel-google-reviews .google-g {
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  background: conic-gradient(
    #4285f4 0 25%,
    #34a853 25% 50%,
    #fbbc05 50% 75%,
    #ea4335 75% 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wengel-google-reviews .google-title {
  color: #1d202d;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.wengel-google-reviews .rating-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.wengel-google-reviews .stars-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wengel-google-reviews .star-icon {
  width: 44px;
  height: 44px;
  display: block;
  fill: #fbbc05;
}

.wengel-google-reviews .card-stars .star-icon {
  width: 24px;
  height: 24px;
}

.wengel-google-reviews .rating-score {
  color: #1d202d;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.wengel-google-reviews .subtitle {
  color: #5c6276;
  font-size: 20px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}

.wengel-google-reviews .slider-wrap {
  overflow: hidden;
  position: relative;
}

.wengel-google-reviews .slider-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: wengelReviewsScroll 42s linear infinite;
}

.wengel-google-reviews .slider-wrap:hover .slider-track {
  animation-play-state: paused;
}

.wengel-google-reviews .review-card {
  width: 390px;
  min-height: 204px;
  background: #eceef2;
  border: 1px solid #d7dbe2;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  padding: 18px 20px 16px;
  flex: 0 0 auto;
}

.wengel-google-reviews .card-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
}

.wengel-google-reviews .review-text {
  margin: 0 0 18px;
  color: #4a5063;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  min-height: 96px;
}

.wengel-google-reviews .review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wengel-google-reviews .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wengel-google-reviews .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1d202d;
  color: #bfd400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 32px;
}

.wengel-google-reviews .name {
  color: #1d202d;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

@keyframes wengelReviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 767px) {
  .wengel-google-reviews {
    padding: 24px 0 40px;
  }

  .wengel-google-reviews .inner {
    padding: 0 16px;
  }

  .wengel-google-reviews .google-brand {
    gap: 10px;
    margin-bottom: 10px;
  }

  .wengel-google-reviews .google-g {
    font-size: 48px;
  }

  .wengel-google-reviews .google-title {
    font-size: 26px;
  }

  .wengel-google-reviews .rating-line {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wengel-google-reviews .star-icon {
    width: 32px;
    height: 32px;
  }

  .wengel-google-reviews .rating-score {
    font-size: 32px;
  }

  .wengel-google-reviews .subtitle {
    font-size: 18px;
  }

  .wengel-google-reviews .review-card {
    width: 310px;
    min-height: 196px;
    padding: 16px;
    border-radius: 18px;
  }

  .wengel-google-reviews .review-text {
    font-size: 15px;
    min-height: 92px;
  }
}


/********* Section 16 formulaire de contact *********************/
.wengel-contact-section {
    background: #f3f3f3;
    padding: 26px 0 50px;
    overflow: hidden;
  }

  .wengel-contact-section *,
  .wengel-contact-section *::before,
  .wengel-contact-section *::after {
    box-sizing: border-box;
  }

  .wengel-contact-section .contact-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .wengel-contact-section .contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .wengel-contact-section .contact-left {
    flex: 0 0 43%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .wengel-contact-section .contact-visual-wrap {
    width: 560px;
    max-width: 100%;
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
  }

  .wengel-contact-section .contact-visual-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wengel-contact-section .contact-visual-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  .wengel-contact-section .contact-right {
    flex: 0 0 49%;
    max-width: 660px;
  }

  .wengel-contact-section .contact-title {
    margin: 0 0 18px;
    color: #1d202d;
    font-size: 60px;
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -1px;
  }

  .wengel-contact-section .contact-form {
    width: 100%;
  }

  .wengel-contact-section .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
  }

  .wengel-contact-section .form-row.single {
    grid-template-columns: 1fr;
  }

  .wengel-contact-section .field,
  .wengel-contact-section .field-select,
  .wengel-contact-section .field-textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #e3e5ec;
    color: #1d202d;
    font-size: 16px;
    font-weight: 400;
    border-radius: 22px;
    box-shadow: none;
  }

  .wengel-contact-section .field,
  .wengel-contact-section .field-select {
    height: 46px;
    padding: 0 22px;
  }

  .wengel-contact-section .field-textarea {
    min-height: 210px;
    padding: 18px 22px;
    resize: vertical;
  }

  .wengel-contact-section .field::placeholder,
  .wengel-contact-section .field-textarea::placeholder {
    color: #9aa0b3;
    opacity: 1;
  }

  .wengel-contact-section .field-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #9aa0b3;
    cursor: pointer;
    padding-right: 48px;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239aa0b3' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10' fill='%239aa0b3' opacity='0.18'/><path d='m8 10 4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px 20px;
  }

  .wengel-contact-section .field-select:valid {
    color: #1d202d;
  }

  .wengel-contact-section .submit-wrap {
    margin-top: 12px;
  }

  .wengel-contact-section .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 18px;
    background: #bfd400;
    color: #1d202d;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .wengel-contact-section .submit-btn:hover {
    background: #1d202d;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .wengel-contact-section .form-note {
    margin-top: 12px;
    color: #5f6578;
    font-size: 13px;
    line-height: 1.35;
  }

  .wengel-contact-section .form-success {
    display: none;
    margin-top: 14px;
    color: #1d202d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
  }

  .wengel-contact-section .form-success.is-visible {
    display: block;
  }

  @media (max-width: 1199px) {
    .wengel-contact-section .contact-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 34px;
    }

    .wengel-contact-section .contact-left,
    .wengel-contact-section .contact-right {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
    }

    .wengel-contact-section .contact-left {
      justify-content: center;
    }

    .wengel-contact-section .contact-title {
      font-size: 48px;
    }
  }

  @media (max-width: 767px) {
    .wengel-contact-section {
      padding: 22px 0 36px;
    }

    .wengel-contact-section .contact-inner {
      padding: 0 16px;
    }

    .wengel-contact-section .contact-title {
      font-size: 38px;
      letter-spacing: -0.7px;
      margin-bottom: 14px;
    }

    .wengel-contact-section .form-row {
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }

    .wengel-contact-section .field,
    .wengel-contact-section .field-select {
      height: 44px;
      padding: 0 18px;
      border-radius: 18px;
      font-size: 15px;
    }

    .wengel-contact-section .field-textarea {
      min-height: 180px;
      padding: 16px 18px;
      border-radius: 18px;
      font-size: 15px;
    }

    .wengel-contact-section .submit-btn {
      width: 100%;
      min-height: 46px;
      border-radius: 16px;
      font-size: 16px;
    }
  } 


/**
 * Styles : wgl_loginblock.css
 * Module : wgl_loginblock
 * Auteur : Bibou la Tisane
 *
 * Chargé UNIQUEMENT sur la page de connexion.
 * -----------------------------------------------------------
 * Les classes fonctionnelles (erreurs, visibilité) sont déjà
 * définies. Ajoutez votre design à la suite.
 */

/* ---- Utilitaires ---- */

.wgl-hidden {
    display: none !important;
}

/* ---- Alertes globales ---- */

.wgl-alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.wgl-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wgl-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ---- Structure du formulaire ---- */

.wgl-contact-form-wrapper {
    /* Personnaliser le wrapper ici */
}

.wgl-form-row {
    display: flex;
    gap: 16px;
}

.wgl-form-row .wgl-form-group {
    flex: 1;
}

.wgl-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.wgl-form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* ---- Champs ---- */

.wgl-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.wgl-input:focus {
    outline: none;
    border-color: #666;
}

.wgl-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ---- État erreur ---- */

.wgl-has-error .field {
    border: 2px solid #dc3545;
}

.wgl-field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* ---- Champ obligatoire ---- */

.wgl-required {
    color: #dc3545;
}

/* ---- Footer formulaire ---- */

.wgl-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.wgl-required-legend {
    font-size: 12px;
    color: #666;
}

/* ---- Bouton submit ---- */

.wgl-btn-submit {
    padding: 10px 24px;
    font-size: 15px;
    cursor: pointer;
}

/* ---- Responsive ---- */

@media (max-width: 576px) {
    .wgl-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ================================================================
   ZONE LIBRE — Ajoutez votre design ci-dessous
   ================================================================ */
