﻿      @import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Oswald:wght@200;300;400;500;600&display=swap");

      .possible-homepage {
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        background: #fdf9f3;
        overflow-x: hidden;
      }

      .possible-homepage .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
        width: 100% !important;
      }

      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --beige: #fdf9f3;
        --cream: #f2e9e0;
        --card-bg: #efe6d7;
        --dark: #232323;
        --white: #ffffff;
        --font-display: "Libre Baskerville", Georgia, serif;
        --font-body: "Oswald", sans-serif;
      }
      html {
        font-size: 16px;
        scroll-behavior: smooth;
      }
      .possible-homepage {
        font-family: var(--font-body);
        color: var(--dark);
        background: var(--beige);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      /* Neutralise les règles globales du thème (ex: h2, p { text-align:center; }) */
      :where(.possible-homepage) h2,
      :where(.possible-homepage) p {
        text-align: left;
      }

      :where(.possible-homepage) h2,
      :where(.possible-homepage) h2 em {
        font-style: normal !important;
      }

      /* Rétablit l'italique uniquement sur les mots volontairement balisés en <em> */
      .possible-homepage .section-title em,
      .possible-homepage .founder-content h2 em {
        font-style: italic !important;
      }

      /* â”€â”€â”€ GLOBAL TYPOGRAPHY â”€â”€â”€ */
      /* Display titles: Libre Baskerville 400, 1.4rem */
      /* Section subtitles: Oswald 300, .8rem, opacity .55 */
      /* Body / labels: Oswald 300-400, .75rem */
      /* Accent / quotes: Libre Baskerville italic, .75rem */

      /* â”€â”€â”€ BUTTONS â”€â”€â”€ */
      .btn-dark {
        display: block;
        width: 100%;
        text-align: center;
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        background: var(--dark);
        color: #fff;
        border: none;
        padding: 16px 40px;
        cursor: pointer;
        text-decoration: none;
      }
      .btn-cream {
        display: inline-block;
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        background: var(--cream);
        color: var(--dark);
        border: none;
        padding: 16px 40px;
        cursor: pointer;
        text-decoration: none;
      }

      /* â”€â”€â”€ STICKY CTA â”€â”€â”€ */
      .possible-homepage .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        z-index: 2147483000;
        padding: 12px 24px;
        background: var(--beige);
        border-top: 1px solid rgba(35, 35, 35, 0.06);
        opacity: 0;
        transform: translateY(100%);
        transition:
          opacity 0.4s ease,
          transform 0.4s ease;
        pointer-events: none;
      }
      .possible-homepage .sticky-cta.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .possible-homepage .sticky-cta a {
        display: block;
        width: 100%;
        text-align: center;
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: var(--dark);
        color: #fff;
        padding: 15px 0;
        text-decoration: none;
      }

      /* â”€â”€â”€ SECTION COMMON â”€â”€â”€ */
      .section-pad {
        padding: 40px 24px;
      }
      .section-title {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 8px;
      }
      .section-title em {
        font-style: italic;
      }
      .section-sub {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.72rem;
        color: rgba(35, 35, 35, 0.5);
        letter-spacing: 0.5px;
        line-height: 1.5;
        margin-bottom: 28px;
      }

      /* â•â•â• HERO â•â•â• */
      .hero {
        position: relative;
        width: 100%;
        height: 100dvh;
        min-height: 600px;
        overflow: hidden;
        background: #232323;
      }
      .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.12) 0%,
          rgba(0, 0, 0, 0.18) 50%,
          rgba(0, 0, 0, 0.48) 100%
        );
      }
      .hero-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 0 24px;
      }
      .hero-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 0;
      }
      .hero-bottom {
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
      }
      .hero-bottom h1 {
        font-family: var(--font-display);
        font-size: 1.7rem;
        font-weight: 400;
        font-style: normal !important;
        white-space: nowrap;
        line-height: 1.3;
        color: #fff;
        letter-spacing: -0.01em;
        margin: 0;
      }
      .hero-bottom h1 em {
        font-style: normal !important;
      }
      .hero-sub {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 300;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--cream);
        margin: 18px 0 0;
        opacity: 0.8;
        text-align: center;
      }
      .hero-tag {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 300;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--cream);
        margin: 14px 0 0;
        opacity: 0.7;
        text-align: center;
      }

      /* â•â•â• STEPS â•â•â• */
      .steps-section {
        padding: 40px 24px 16px;
      }
      .step {
        display: flex;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 28px;
      }
      .step-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        width: 44px;
      }
      .step-num {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 400;
        color: var(--dark);
        opacity: 1;
        line-height: 1;
      }
      .step-line {
        width: 18px;
        height: 1px;
        background: var(--dark);
        opacity: 1;
      }
      .step-bar {
        width: 1.5px;
        flex: 1;
        background: var(--dark);
        opacity: 1;
        min-height: 20px;
      }
      .step-right h3 {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 2px 0 0;
        line-height: 1.3;
      }
      .step-right p {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-weight: 400;
        line-height: 1.6;
        color: var(--dark);
        opacity: 0.45;
        margin: 8px 0 0;
      }

      /* â•â•â• PRODUITS â•â•â• */
      .produits {
        padding: 24px 24px 40px;
      }
      .prod-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
      }
      .prod-scroll::-webkit-scrollbar {
        display: none;
      }
      .prod-card {
        flex: 0 0 68%;
        scroll-snap-align: start;
      }
      .prod-img {
        width: 100%;
        aspect-ratio: 3/4;
        background: var(--cream);
        overflow: hidden;
      }
      .prod-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .prod-label {
        display: none;
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark);
        opacity: 0.5;
        margin-top: 8px;
        text-align: center;
      }
      .prod-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding: 8px 0;
      }
      .prod-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(35, 35, 35, 0.15);
        transition: all 0.25s;
        padding: 0;
        min-width: 8px;
        min-height: 8px;
        cursor: pointer;
      }
      .prod-dot.active {
        background: var(--dark);
        width: 22px;
        border-radius: 3px;
      }

      /* â•â•â• OFFRE â•â•â• */
      .offre-section {
        padding: 40px 22px;
      }
      .offre-card {
        border: 1px solid rgba(35, 35, 35, 0.08);
        background: var(--card-bg);
      }
      .offre-tabs {
        display: flex;
        border-bottom: 1px solid rgba(35, 35, 35, 0.06);
      }
      .offre-tab {
        flex: 1;
        padding: 15px 8px 13px;
        background: transparent;
        color: var(--dark);
        border: none;
        border-bottom: 2px solid transparent;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        opacity: 0.35;
        transition: all 0.25s;
      }
      .offre-tab.active {
        opacity: 1;
        border-bottom-color: var(--dark);
      }
      .offre-tab span {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .offre-tab small {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-style: italic;
        opacity: 0.5;
      }
      .offre-body {
        padding: 28px 20px 28px;
        background-color: #f2e9e0;
      }
      .offre-price {
        text-align: center;
        margin-bottom: 20px;
      }
      .offre-price h3 {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 400;
        margin: 0;
        line-height: 1;
        display: inline-flex;
        align-items: flex-start;
      }
      .offre-price h3 span {
        font-size: 1.1rem;
        margin-top: 4px;
      }
      .offre-price p {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-style: italic;
        opacity: 0.6;
        margin: 8px 0 0;
        text-align: center;
      }
      .offre-urgency {
        font-family: var(--font-body);
        font-size: 0.6rem;
        font-weight: 300;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        opacity: 0.55;
        margin: 0 0 24px;
      }
      .offre-sep {
        width: 36px;
        height: 1px;
        background: var(--dark);
        opacity: 0.15;
        margin: 0 auto 24px;
      }
      .offre-metrics {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-bottom: 28px;
      }
      .offre-metric {
        text-align: center;
      }
      .offre-metric .val {
        font-family: var(--font-body);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.02em;
        color: var(--dark);
      }
      .offre-metric p {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.75;
        margin: 6px 0 0;
      }
      .offre-feature {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
      }
      .offre-feature .check {
        font-family: var(--font-display);
        font-size: 0.72rem;
        opacity: 0.55;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .offre-feature p {
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
        opacity: 0.8;
      }
      .offre-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 16px 0;
        background: var(--dark);
        color: var(--cream);
        text-decoration: none;
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-top: 24px;
      }
      .engage-cards {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
      }
      .engage-card {
        flex: 1;
        padding: 16px 6px 14px;
        background: transparent;
        color: var(--dark);
        border: 1px solid rgba(35, 35, 35, 0.1);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        position: relative;
        transition: all 0.25s;
      }
      .engage-card.active {
        background: var(--dark);
        color: var(--cream);
        border-color: transparent;
      }
      .engage-card .label {
        font-family: var(--font-body);
        font-size: 0.6rem;
        font-weight: 300;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.4;
      }
      .engage-card.active .label {
        opacity: 0.7;
      }
      .engage-card .price {
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1;
        display: inline-flex;
        align-items: flex-start;
      }
      .engage-card .price small {
        font-size: 0.6rem;
        margin-top: 2px;
      }
      .engage-card .per {
        font-family: var(--font-body);
        font-size: 0.55rem;
        font-weight: 300;
        opacity: 0.3;
        letter-spacing: 0.04em;
      }
      .engage-card.active .per {
        opacity: 0.5;
      }
      .engage-badge {
        position: absolute;
        top: -8px;
        font-family: var(--font-display);
        font-size: 0.72rem;
        font-style: italic;
        color: var(--dark);
        background: var(--card-bg);
        padding: 1px 6px;
        opacity: 0.5;
      }
      .engage-card.active .engage-badge {
        opacity: 0;
      }

      /* â•â•â• AVIS â•â•â• */
      .avis {
        padding: 40px 24px;
      }
      .avis-stats {
        display: flex;
        gap: 0;
        margin-bottom: 28px;
      }
      .avis-stat {
        flex: 1;
        text-align: center;
        padding: 18px 0;
      }
      .avis-stat:not(:last-child) {
        border-right: 1px solid rgba(35, 35, 35, 0.08);
      }
      .avis-stat-num {
        font-family: var(--font-display);
        font-size: 1.5rem;
        margin-bottom: 4px;
      }
      .avis-stat-label {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.58rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(35, 35, 35, 0.4);
      }
      .avis-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
      }
      .avis-scroll::-webkit-scrollbar {
        display: none;
      }
      .avis-card {
        flex: 0 0 84%;
        scroll-snap-align: start;
        border: 1px solid rgba(35, 35, 35, 0.08);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .avis-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .avis-stars {
        font-size: 0.65rem;
        letter-spacing: 3px;
        color: var(--dark);
      }
      .avis-date {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.55rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(35, 35, 35, 0.3);
      }
      .avis-text {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 0.72rem;
        line-height: 1.6;
        margin: 0;
      }
      .avis-footer {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .avis-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.55rem;
        color: rgba(35, 35, 35, 0.45);
        flex-shrink: 0;
      }
      .avis-author {
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.65rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0;
      }
      .avis-member {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.55rem;
        color: rgba(35, 35, 35, 0.35);
        margin-top: 1px;
        margin-bottom: 0;
      }
      .avis-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding: 8px 0;
      }
      .avis-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(35, 35, 35, 0.15);
        transition: all 0.25s;
        padding: 0;
        min-width: 8px;
        min-height: 8px;
        cursor: pointer;
      }
      .avis-dot.active {
        background: var(--dark);
        width: 22px;
        border-radius: 3px;
      }

      /* â•â•â• FOUNDER â•â•â• */
      .founder {
        position: relative;
        min-height: 560px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .founder-bg {
        position: absolute;
        inset: 0;
      }
      .founder-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }
      .founder-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(253, 249, 243, 0) 15%,
          rgba(35, 35, 35, 0.55) 55%,
          rgba(35, 35, 35, 0.92) 100%
        );
      }
      .founder-content {
        position: relative;
        z-index: 2;
        padding: 0 24px 40px;
        text-align: center;
      }
      .founder-content h2,
      .founder-content p {
        text-align: center;
      }
      .founder-content h2 {
        font-family: var(--font-display);
        font-weight: 400;
        color: #fff;
        font-size: 1.35rem;
        line-height: 1.35;
        margin: 0 0 16px;
      }
      .founder-content h2 em {
        font-style: italic;
      }
      .founder-quote {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: 0.72rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.7);
        margin: 0 0 24px;
      }
      .founder-slogan {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.4;
        color: #fff;
        margin: 0 0 18px;
      }
      .founder-name {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.72rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin: 0;
      }

      /* â•â•â• DIFFERENCIATEURS â•â•â• */
      .diff-grid {
        display: flex;
        flex-direction: column;
      }
      .diff-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 16px 0;
        border-bottom: 1px solid rgba(35, 35, 35, 0.06);
      }
      .diff-item:first-child {
        padding-top: 0;
      }
      .diff-item:nth-child(2) {
        padding-top: 0;
      }
      .diff-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .diff-left {
        flex-shrink: 0;
        width: 28px;
      }
      .diff-num {
        font-family: var(--font-display);
        font-size: 0.8rem;
        color: var(--dark);
        position: relative;
      }
      .diff-num::after {
        content: "";
        display: block;
        width: 14px;
        height: 1.5px;
        background: var(--dark);
        margin-top: 3px;
      }
      .diff-content h3 {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.72rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 3px;
      }
      .diff-content p {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: 0.72rem;
        color: rgba(35, 35, 35, 0.5);
        line-height: 1.5;
        margin: 0;
      }

      /* â•â•â• FAQ â•â•â• */
      .faq-item {
        border-top: 1px solid rgba(35, 35, 35, 0.08);
      }
      .faq-item:last-child {
        border-bottom: 1px solid rgba(35, 35, 35, 0.08);
      }
      .faq-q {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 18px 0;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        gap: 10px;
      }
      .faq-q > span:first-child {
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 0.78rem;
        letter-spacing: 0.3px;
        line-height: 1.45;
        color: var(--dark);
        flex: 1;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
      }
      .faq-icon {
        position: relative;
        display: inline-block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-left: auto;
        margin-top: 3px;
        font-size: 0;
      }
      .faq-icon::before,
      .faq-icon::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 12px;
        height: 1.5px;
        background: rgba(35, 35, 35, 0.45);
        transform: translate(-50%, -50%);
        transition:
          opacity 0.22s ease,
          transform 0.22s ease;
      }
      .faq-icon::after {
        width: 1.5px;
        height: 12px;
      }
      .faq-item.open .faq-icon {
        transform: none;
      }
      .faq-item.open .faq-icon::after {
        opacity: 0;
        transform: translate(-50%, -50%) scaleY(0.2);
      }
      .faq-item.open .faq-icon::before {
        opacity: 1;
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .faq-a-inner {
        padding-bottom: 18px;
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: 0.72rem;
        line-height: 1.6;
        color: rgba(35, 35, 35, 0.5);
      }

      /* â•â•â• CTA FINAL â•â•â• */
      .cta-final {
        position: relative;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
      }
      .cta-bg {
        position: absolute;
        inset: 0;
      }
      .cta-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }
      .cta-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(35, 35, 35, 0) 40%,
          rgba(35, 35, 35, 0.55) 70%,
          rgba(35, 35, 35, 0.9) 100%
        );
      }
      .cta-content {
        position: relative;
        z-index: 2;
        padding: 0 24px 48px;
        text-align: center;
      }
      .cta-content h2 {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        color: #fff;
        font-size: 1.35rem;
        line-height: 1.35;
        margin-bottom: 28px;
        text-align: center;
      }

      /* â•â•â• FOOTER â•â•â• */
      .footer {
        background: var(--beige);
        padding: 16px 24px 110px;
      }
      .footer-logo {
        margin-bottom: 24px;
      }
      .footer-logo img {
        height: 14px;
        display: block;
        opacity: 0.6;
      }
      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
        margin-bottom: 20px;
      }
      .footer-links a {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.62rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(35, 35, 35, 0.35);
        text-decoration: none;
      }
      .footer-copy {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.55rem;
        color: rgba(35, 35, 35, 0.2);
        letter-spacing: 0.5px;
      }

      .desktop-categories,
      .desktop-garantie {
        display: none;
      }
      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-6px);
        }
        60% {
          transform: translateY(-3px);
        }
      }

      @media (min-width: 992px) {
        .section-pad,
        .steps-section,
        .produits,
        .offre-section,
        .avis,
        .desktop-categories,
        .desktop-garantie {
          padding-left: 60px;
          padding-right: 60px;
          max-width: 1200px;
          margin: 0 auto;
        }

        .desktop-categories,
        .desktop-garantie {
          display: block;
        }

        .hero {
          min-height: 700px;
        }

        .hero-content {
          padding: 0 60px;
        }

        .hero-nav {
          max-width: 1200px;
          padding: 28px 0;
        }

        .hero-bottom {
          max-width: 800px;
          padding-bottom: 40px;
        }

        .hero-bottom h1 {
          font-size: 3.2rem;
          line-height: 1.25;
        }

        .hero-sub,
        .hero-tag {
          font-size: 0.82rem;
        }

        .section-pad {
          padding-top: 80px;
          padding-bottom: 80px;
        }

        .section-title {
          font-size: 2.2rem;
          line-height: 1.3;
          margin-bottom: 10px;
        }

        .section-sub {
          font-size: 0.82rem;
          margin-bottom: 40px;
        }

        .steps-section {
          padding-top: 80px;
          padding-bottom: 40px;
        }

        .step {
          gap: 24px;
          margin-bottom: 36px;
        }

        .step-left {
          width: 50px;
        }

        .step-num {
          font-size: 2rem;
        }

        .step-right h3 {
          font-size: 0.82rem;
          margin-top: 2px;
        }

        .step-right p {
          font-size: 0.82rem;
          margin-top: 10px;
        }

        .desktop-categories {
          padding-top: 40px;
          padding-bottom: 60px;
        }

        .desktop-categories-grid {
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 12px;
        }

        .desktop-category-card {
          position: relative;
          display: block;
          aspect-ratio: 3 / 4;
          overflow: hidden;
          color: inherit;
          text-decoration: none;
        }

        .desktop-category-card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transform: scale(1);
          transition: transform 0.35s ease;
        }

        .desktop-category-card::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0);
          transition: background 0.35s ease;
          pointer-events: none;
        }

        .desktop-category-card:hover img {
          transform: scale(1.04);
        }

        .desktop-category-card:hover::after {
          background: rgba(0, 0, 0, 0.12);
        }

        .desktop-category-card:focus-visible {
          outline: 2px solid rgba(242, 233, 224, 0.8);
          outline-offset: 2px;
        }

        .desktop-category-label {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          color: #fff;
          white-space: nowrap;
          text-transform: uppercase;
          letter-spacing: 0.12em;
          font-size: 0.82rem;
          text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
        }

        .produits {
          display: none;
        }

        .prod-scroll {
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 24px;
          overflow: visible;
          padding-bottom: 0;
        }

        .prod-card {
          min-width: 0;
          width: 100%;
        }

        .prod-label {
          display: block;
          margin-top: 12px;
          font-size: 0.72rem;
        }

        .prod-dots {
          display: none;
        }

        .offre-section {
          max-width: 800px;
          margin: 0 auto;
          padding-top: 80px;
          padding-bottom: 80px;
        }

        .offre-body {
          padding: 40px 36px;
        }

        .offre-price h3 {
          font-size: 3rem;
        }

        .offre-price p,
        .offre-metric p,
        .offre-feature p {
          font-size: 0.78rem;
        }

        .offre-urgency {
          font-size: 0.65rem;
          margin-bottom: 28px;
        }

        .offre-metrics {
          gap: 40px;
          margin-bottom: 32px;
        }

        .engage-cards {
          gap: 10px;
          margin-bottom: 28px;
        }

        .engage-card {
          padding: 18px 8px 16px;
        }

        .engage-card .price {
          font-size: 1.3rem;
        }

        .desktop-garantie {
          max-width: 800px;
          padding-top: 60px;
          padding-bottom: 60px;
          text-align: center;
        }

        .diff-grid {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 0 48px;
        }

        .diff-item {
          gap: 18px;
          padding: 20px 0;
        }

        .founder {
          min-height: 600px;
        }

        .founder-content {
          max-width: 700px;
          padding: 0 60px 60px;
          text-align: left;
          margin: 0;
        }

        .founder-content h2,
        .founder-content p {
          text-align: left;
        }

        .founder-content h2 {
          font-size: 1.8rem;
          margin-bottom: 20px;
        }

        .founder-quote {
          font-size: 0.82rem;
          margin-bottom: 28px;
        }

        .founder-slogan {
          font-size: 1.1rem;
          margin-bottom: 20px;
        }

        .founder-name {
          font-size: 0.78rem;
        }

        .avis {
          padding-top: 80px;
          padding-bottom: 80px;
        }

        .avis-scroll {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 20px;
          overflow: visible;
          padding-bottom: 0;
        }

        .avis-card {
          min-width: 0;
          width: 100%;
          padding: 28px 24px;
          gap: 16px;
        }

        .avis-text {
          font-size: 0.78rem;
        }

        .avis-dots {
          display: none;
        }

        .faq-q {
          align-items: center;
          gap: 40px;
          padding: 24px 0;
        }

        .faq-q > span:first-child {
          font-size: 0.78rem;
        }

        .faq-a-inner {
          max-width: 600px;
          font-size: 0.78rem;
          padding-bottom: 20px;
        }

        .cta-final {
          min-height: 560px;
        }

        .cta-content {
          padding: 0 60px 64px;
        }

        .cta-content h2 {
          font-size: 1.8rem;
          margin-bottom: 32px;
        }

        .hero-bottom h1 br {
          display: none;
        }

        .possible-homepage .sticky-cta {
          display: none;
        }
      }

      @media (max-width: 1199px) {
        .possible-homepage .sticky-cta {
          display: block !important;
        }
      }
