/* ============================================================================================================================================
   ACCUEIL — SOCLE VISUEL
   ============================================================================================================================================ */
.main-wrapper {
    --home-shell: min(100% - 40px, 1240px);
    --home-ink: #07101f;
    --home-muted: #607089;
    --home-line: rgba(148, 163, 184, 0.22);
    --home-blue: var(--pc-blue-600);
    --home-pink: var(--pc-pink-500);
    --home-grid:
        linear-gradient(90deg, rgba(226, 232, 240, 0.58) 1px, transparent 1px),
        linear-gradient(180deg, rgba(226, 232, 240, 0.58) 1px, transparent 1px);
    background: #f8fafc;
    color: var(--home-ink);
}

.container {
    width: var(--home-shell);
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* ============================================================================================================================================
   HERO
   ============================================================================================================================================ */
.hero-premium {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: calc(var(--header-height) + 34px) 0 68px;
    background:
        var(--home-grid),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #eef3fb 100%);
    background-size: 72px 72px, 72px 72px, auto;
    overflow: hidden;
    isolation: isolate;
}

.hero-premium .container {
    width: min(100% - 56px, 1270px);
    max-width: 1270px;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, var(--home-ink) 18% 55%, var(--home-blue) 55% 100%);
}

.hero-premium::after {
    content: 'PUBLICARD.NET';
    position: absolute;
    right: -5vw;
    bottom: 10px;
    color: rgba(15, 23, 42, 0.045);
    font-family: var(--font-head);
    font-size: clamp(5.8rem, 13vw, 13rem);
    font-weight: 950;
    line-height: 0.8;
    letter-spacing: -0.045em;
    pointer-events: none;
    z-index: 0;
}

/* === GRILLE (TEXTE À GAUCHE / VISUEL À DROITE) === */
.hero-split {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(465px, 0.98fr);
    gap: clamp(58px, 5vw, 96px);
    align-items: start;
    margin-bottom: 38px;
}

/* === TYPOGRAPHIE & BOUTONS (STYLE INITIAL RESTAURÉ) === */
.hero-txt {
    position: relative;
    z-index: 10;
    max-width: 880px;
    min-width: 0;
    padding-top: 22px;
}

.hero-headline {
    max-width: 880px;
    margin: 0 0 18px;
    color: var(--home-ink);
    font-family: var(--font-head);
    font-size: var(--home-hero-title-size);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

.text-gradient-royal {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    background: linear-gradient(90deg, var(--home-blue) 0%, #7c3aed 48%, var(--home-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    max-width: 640px;
    margin: 0 0 22px;
    color: var(--home-muted);
    font-size: var(--home-hero-copy-size);
    font-weight: 600;
    line-height: 1.52;
}

.hero-btn-wrapper,
.builder-cta-row {
    --pc-button-primary-width: 330px;
}

.hero-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}
/* === VISUEL CAROUSEL 3D (OPAQUE & PROPRE) === */
.hero-visu {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1100px;
    width: 100%;
    min-width: 0;
    overflow: visible;
    transform: none;
}
.hero-visu::before {
    display: none;
}
.horizontal-carousel-container {
    width: min(100%, 710px);
    height: 100%;
    margin-left: auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-carousel-loader { position: absolute; inset: 0; z-index: 40; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease; }
.hero-carousel-loader::before { content: ""; width: 22px; height: 22px; border: 2px solid rgba(15,23,42,0.12); border-top-color: rgba(37,99,235,0.72); border-radius: 50%; animation: heroCarouselLoaderSpin 0.8s linear infinite; }
.horizontal-carousel-container.is-loading .hero-carousel-loader { opacity: 1; visibility: visible; }
.horizontal-carousel-container.is-loading .carousel-track { opacity: 0; }
.horizontal-carousel-container.is-loading .carousel-card { transition: none; }
.carousel-track { position: relative; width: 100%; height: 510px; transform-style: preserve-3d; opacity: 1; transition: opacity 0.22s ease; }
.carousel-card { position: absolute; top: 48%; left: 50%; width: 255px; height: 510px; transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); transform-origin: center center; display: flex; justify-content: center; align-items: center; }
@keyframes heroCarouselLoaderSpin { to { transform: rotate(360deg); } }
/* Positions Cartes (Avec Brightness filter au lieu de transparence pour le réalisme) */
.carousel-card.pos-center { transform: translate(-50%, -50%) scale(1.03); z-index: 30; opacity: 1; filter: brightness(1); }
.carousel-card.pos-right { transform: translate(12%, -50%) scale(0.86) translateZ(-50px); z-index: 20; opacity: 1; filter: brightness(0.72); }
.carousel-card.pos-left { transform: translate(-112%, -50%) scale(0.86) translateZ(-50px); z-index: 20; opacity: 1; filter: brightness(0.72); }
.carousel-card.pos-far-right { transform: translate(46%, -50%) scale(0.7) translateZ(-100px); z-index: 10; opacity: 1; filter: brightness(0.54) blur(1px); }
.carousel-card.pos-far-left { transform: translate(-146%, -50%) scale(0.7) translateZ(-100px); z-index: 10; opacity: 1; filter: brightness(0.54) blur(1px); }
.carousel-card.pos-hidden { transform: translate(-50%, -50%) scale(0); opacity: 0; z-index: 0; pointer-events: none; }


/* === IMAGE CARTE / TÉLÉPHONE INTÉGRÉ === */
.carousel-full-img {
    width: 100%; 
    height: 100%; 
    object-fit: contain; /* Empêche de rogner les bords de votre téléphone s'il ne fait pas exactement 250x500px */
    display: block; 
    filter: drop-shadow(0 22px 44px rgba(15, 23, 42, 0.28));
}

/* === FEATURES GRID === */
.hero-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 4px auto 24px;
    max-width: 1180px;
    position: relative;
    z-index: 20;
}

.feat-card-premium {
    --feature-accent: var(--home-blue);
    --feature-soft: rgba(37, 99, 235, 0.08);
    --feature-border: rgba(37, 99, 235, 0.16);
    --feature-border-hover: rgba(37, 99, 235, 0.30);
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    min-height: 150px;
    padding: 22px 20px;
    border: 1px solid var(--home-line);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feat-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--feature-soft), transparent 48%);
    opacity: 0.9;
    pointer-events: none;
}

.feat-card-premium:hover {
    transform: translateY(-4px);
    border-color: var(--feature-border-hover);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.095);
}

.feat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--feature-accent), rgba(255, 255, 255, 0) 68%);
    z-index: 2;
}
.feat-card-premium:nth-child(2) {
    --feature-accent: #10B981;
    --feature-soft: rgba(16, 185, 129, 0.08);
    --feature-border: rgba(16, 185, 129, 0.16);
    --feature-border-hover: rgba(16, 185, 129, 0.28);
}
.feat-card-premium:nth-child(3) {
    --feature-accent: #8B5CF6;
    --feature-soft: rgba(139, 92, 246, 0.08);
    --feature-border: rgba(139, 92, 246, 0.16);
    --feature-border-hover: rgba(139, 92, 246, 0.28);
}

.feat-card-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border: 1px solid var(--feature-border);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92)),
        var(--feature-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--feature-accent);
    font-size: 1.22rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-card-premium:hover .feat-card-icon {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.feat-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.feat-content .feat-title {
    font-family: var(--font-head);
    font-size: var(--home-card-title-size);
    font-weight: 900;
    color: var(--home-ink);
    margin: 0 0 8px;
    line-height: 1.18;
}
.feat-content p {
    font-size: var(--home-card-copy-size);
    color: #43536a;
    line-height: 1.66;
    margin: 0;
    font-weight: 680;
}

@media (max-width: 1200px) {
    .hero-premium .container {
        width: min(100% - 40px, 1240px);
        max-width: 1240px;
    }
    .hero-split {
        grid-template-columns: minmax(430px, 0.95fr) minmax(420px, 1.05fr);
        gap: clamp(40px, 4.5vw, 62px);
    }
    .hero-headline {
        font-size: var(--home-hero-title-size);
    }
    .hero-btn-wrapper,
    .builder-cta-row {
        --pc-button-primary-width: 300px;
        --pc-button-primary-padding-x: 16px;
        --pc-button-primary-font-size: 0.95rem;
    }
    .carousel-card {
        width: 240px;
        height: 480px;
    }
    .carousel-track {
        height: 490px;
    }
}

/* === RESPONSIVE MOBILE (CORRECTIF : RADIUS LOGIQUE, BOUTONS PILULE, PAS DE SCROLL) === */
@media (max-width: 992px) {
.hero-premium { padding: calc(var(--header-height) + 44px) 0 64px; }
.hero-split { display: flex; flex-direction: column; text-align: center; gap: 25px; width: 100% }
.hero-txt { display: contents; }
.hero-headline { order: 1;  margin: 0 auto 8px; padding: 0; font-size: var(--home-hero-title-size); line-height: 1.04; max-width: 680px; }
.hero-subtext { order: 3; font-size: var(--home-hero-copy-size); line-height: 1.58; margin: 0 auto 25px auto; padding: 0; max-width: 560px; }
/* Espacement réduit à 10px comme demandé précédemment */
.hero-btn-wrapper { order: 4; flex-direction: column; align-items: center; width: 100%; gap: 15px; margin-bottom: 10px; }
.hero-btn-wrapper,
.builder-cta-row {
    --pc-button-primary-width: min(100%, 320px);
}
.hero-visu { order: 2; width: 100dvw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); height: min(560px, 128vw); overflow: hidden; position: relative; perspective: 800px; }
.hero-visu::before { inset: 36px 5% 48px; border-radius: 28px; }
.horizontal-carousel-container { width: 100%; height: 100%; }
.carousel-track { width: 100%; height: 100%; }
.carousel-card { width: 210px; height: 420px; display: flex; }
.carousel-card.pos-center { transform: translate(-50%, -50%) scale(1.2); z-index: 30; opacity: 1; filter: brightness(1); }
.carousel-card.pos-right { transform: translate(25%, -50%) scale(0.85) translateZ(-40px); z-index: 20; opacity: 1; filter: brightness(0.7); }
.carousel-card.pos-left { transform: translate(-125%, -50%) scale(0.85) translateZ(-40px); z-index: 20; opacity: 1; filter: brightness(0.7); }
.carousel-card.pos-far-right { transform: translate(90%, -50%) scale(0.7) translateZ(-80px); z-index: 10; opacity: 1; filter: brightness(0.5) blur(1px); }
.carousel-card.pos-far-left { transform: translate(-190%, -50%) scale(0.7) translateZ(-80px); z-index: 10; opacity: 1; filter: brightness(0.5) blur(1px); }
/* --- FEATURES MOBILE --- */
.hero-features-row { grid-template-columns: 1fr; margin-top: 0; gap: 12px; padding: 0 10px; margin-bottom: 40px; }
.feat-card-premium { grid-template-columns: 52px minmax(0, 1fr); min-height: 0; text-align: left; padding: 18px; gap: 14px; }
.feat-card-icon { width: 52px; height: 52px; font-size: 1.16rem; }
.feat-card-accent { height: 3px; }
.feat-content .feat-title { font-size: var(--home-card-title-size); }
.feat-content p { font-size: var(--home-card-copy-size); line-height: 1.58; }
}

@media (max-width: 640px) {
    .hero-premium::after {
        right: auto;
        left: -10vw;
        bottom: 44%;
        font-size: 5.6rem;
        opacity: 0.8;
    }
    .hero-headline {
        font-size: var(--home-hero-title-size);
        letter-spacing: -0.03em;
    }
    .hero-subtext {
        max-width: 34ch;
    }
    .hero-visu {
        height: 500px;
    }
    .carousel-card {
        width: 190px;
        height: 380px;
    }
    .hero-btn-wrapper,
    .builder-cta-row {
        --pc-button-primary-min-height: 56px;
    }
}


/* ===========================================================================================================================================
   SECTION POURQUOI PUBLICARD
   =========================================================================================================================================== */

.section-features-grid {
    position: relative;
    z-index: 2;
    padding: 104px 0;
    background:
        var(--home-grid),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 54%, #eef3fb 100%);
    background-size: 72px 72px, 72px 72px, auto;
    overflow: hidden;
}

.section-features-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: max(20px, calc((100% - 1240px) / 2));
    width: min(620px, calc(100% - 40px));
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, var(--home-ink) 18% 55%, var(--home-blue) 55% 100%);
}

.features-header {
    --section-head-max-width: 820px;
    --section-head-bottom: 42px;
    --section-copy-max-width: 680px;
    display: block;
    padding-right: 0;
}

.features-header__title {
    min-width: 0;
}

.features-header .section-copy {
    margin-right: auto;
}

.badge-soft {
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    color: var(--home-blue);
}

.text-gradient-features {
    display: inline-block;
    background: linear-gradient(90deg, var(--home-blue), #7c3aed 58%, var(--home-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-publicard-board {
    display: grid;
    grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
    gap: 22px;
    align-items: stretch;
}

.why-summary-card {
    position: relative;
    display: block;
    align-self: stretch;
    height: auto;
    min-height: 0;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        #07101f;
    background-size: 34px 34px, 34px 34px, auto;
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.why-summary-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink), var(--home-blue), #ffffff);
}

.why-summary-eyebrow,
.feature-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: var(--home-eyebrow-size);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-summary-eyebrow {
    margin-bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
}

.why-summary-card strong {
    display: block;
    max-width: 9ch;
    margin: 0 0 18px;
    font-family: var(--font-head);
    font-size: clamp(2.35rem, 3.7vw, 4.15rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.why-summary-card p {
    max-width: 34ch;
    margin: 0;
    color: #cbd5e1;
    font-family: var(--font-body);
    font-size: var(--home-card-copy-size);
    font-weight: 650;
    line-height: 1.7;
}

.why-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
}

.why-proof-grid div {
    min-width: 0;
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.why-proof-grid span {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
}

.why-proof-grid small {
    display: block;
    color: #b7c5d8;
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 1.25;
}

.features-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: stretch;
    align-content: stretch;
    height: 100%;
}

.feature-box {
    --feature-accent: var(--home-blue);
    --feature-soft: rgba(37, 99, 235, 0.08);
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 204px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--feature-accent);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.09);
}

.feature-box--wide {
    grid-column: span 2;
    min-height: 184px;
}

.feature-box--wide {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 28px;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        #ffffff;
    background-size: 32px 32px, 32px 32px, auto;
}

.feature-box--guarantee {
    --feature-accent: #16a34a;
    --feature-soft: #f0fdf4;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    min-height: 204px;
    background:
        linear-gradient(90deg, rgba(22, 163, 74, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        #ffffff;
    background-size: 34px 34px, 34px 34px, auto;
    border-color: rgba(22, 163, 74, 0.22);
    color: var(--home-ink);
    animation: guaranteeCardAttention 5.2s ease-in-out infinite;
}

.feature-box--guarantee.feature-box--wide {
    --feature-accent: #16a34a;
    --feature-soft: #f0fdf4;
    grid-column: span 2;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 184px;
    padding: 28px;
}

.feature-index {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(15, 23, 42, 0.18);
    font-family: var(--font-head);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: var(--feature-soft);
    color: var(--feature-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-box--wide .icon-wrapper {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
}

.feature-copy {
    min-width: 0;
    padding-right: 22px;
}

.feature-kicker {
    margin-bottom: 12px;
    background: var(--feature-soft);
    color: var(--feature-accent);
}

.feature-box h3 {
    margin: 0 0 9px;
    color: var(--home-ink);
    font-family: var(--font-head);
    font-size: var(--home-card-title-size);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.feature-box p {
    margin: 0;
    color: #43536a;
    font-family: var(--font-body);
    font-size: var(--home-card-copy-size);
    font-weight: 650;
    line-height: 1.65;
    text-wrap: pretty;
}

.feature-box:nth-child(1) { --feature-accent: #16a34a; --feature-soft: #f0fdf4; }
.feature-box:nth-child(2) { --feature-accent: #2563eb; --feature-soft: #eff6ff; }
.feature-box:nth-child(3) { --feature-accent: #db2777; --feature-soft: #fdf2f8; }
.feature-box:nth-child(4) { --feature-accent: #0d9488; --feature-soft: #ecfeff; }
.feature-box:nth-child(5) { --feature-accent: #16a34a; --feature-soft: #f0fdf4; }
.feature-box:nth-child(6) { --feature-accent: #4f46e5; --feature-soft: #eef2ff; }
.feature-box:nth-child(7) { --feature-accent: #ea580c; --feature-soft: #fff7ed; }
.feature-box:nth-child(8) { --feature-accent: #7c3aed; --feature-soft: #f5f3ff; }
.feature-box:nth-child(9) { --feature-accent: #0284c7; --feature-soft: #f0f9ff; }

.feature-box--guarantee::before {
    width: 5px;
    background: linear-gradient(180deg, #16a34a 0 52%, #2563eb 52% 100%);
}

.feature-box--guarantee::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a 0 55%, #2563eb 55% 100%);
    transform-origin: left center;
    animation: guaranteeBarRun 3.8s ease-in-out infinite;
}

.feature-box--guarantee .feature-index {
    color: rgba(22, 163, 74, 0.24);
}

.guarantee-seal {
    position: relative;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 16px;
    background: #ffffff;
    color: #16a34a;
    font-size: 1.25rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    animation: guaranteeSealTap 2.8s ease-in-out infinite;
}

.feature-box--guarantee.feature-box--wide .guarantee-seal {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1.45rem;
}

.feature-box--guarantee .feature-kicker {
    background: #f0fdf4;
    color: #15803d;
}

.feature-box--guarantee h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    color: var(--home-ink);
    font-size: var(--home-card-title-size);
    line-height: 1.18;
}

.feature-box--guarantee h3 span:first-child {
    color: #16a34a;
}

.feature-box--guarantee h3 span:last-child {
    color: #2563eb;
}

.feature-box--guarantee p {
    color: #43536a;
}

.guarantee-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.guarantee-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.guarantee-tag--satisfied {
    background: #16a34a;
}

.guarantee-tag--refund {
    background: #2563eb;
}

@keyframes guaranteeSealTap {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    44% {
        transform: rotate(-5deg) scale(1.04);
    }

    58% {
        transform: rotate(4deg) scale(1.02);
    }
}

@keyframes guaranteeBarRun {
    0%, 100% {
        transform: scaleX(0.34);
    }

    52% {
        transform: scaleX(1);
    }
}

@keyframes guaranteeCardAttention {
    0%, 100% {
        border-color: rgba(22, 163, 74, 0.22);
    }

    48% {
        border-color: rgba(37, 99, 235, 0.24);
    }
}

@media (max-width: 1100px) {
    .why-publicard-board {
        grid-template-columns: 1fr;
    }

    .why-summary-card {
        height: auto;
        min-height: auto;
    }

    .features-grid-wrapper {
        height: auto;
    }

}

@media (max-width: 760px) {
    .features-header {
        gap: 22px;
    }

    .features-grid-wrapper {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 6px 20px 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .why-publicard-board {
        position: relative;
    }

    .features-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .feature-box,
    .feature-box--wide,
    .feature-box--guarantee {
        grid-column: auto;
        grid-template-columns: 48px minmax(0, 1fr);
        flex: 0 0 min(76vw, 324px);
        min-height: 0;
        padding: 20px;
        border-radius: 18px;
        scroll-snap-align: center;
    }

    .feature-box--wide .icon-wrapper,
    .icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .feature-copy {
        padding-right: 8px;
    }

    .feature-box--guarantee {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        flex-basis: min(76vw, 324px);
    }

    .feature-box--guarantee.feature-box--wide {
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
        flex-basis: min(76vw, 324px);
        min-height: 0;
        padding: 20px;
    }

    .guarantee-seal {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .feature-box--guarantee.feature-box--wide .guarantee-seal {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.15rem;
    }

    .feature-box h3 {
        font-size: var(--home-card-title-size);
    }

    .feature-box--guarantee h3 {
        font-size: var(--home-card-title-size);
    }

    .feature-box p {
        font-size: var(--home-card-copy-size);
        line-height: 1.58;
    }

    .guarantee-tags {
        margin-top: 14px;
    }

    .why-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .why-proof-grid div {
        padding: 12px 8px;
    }

    .why-proof-grid small {
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-box--guarantee,
    .feature-box--guarantee::after,
    .guarantee-seal {
        animation: none;
    }
}





/* =================================================================================================================================================================
   SECTION BUILDER, APPS & REVIEWS (CONDENSED)
   ================================================================================================================================================================= */

/* --- BUILDER --- */


.section-builder-light {
    position: relative;
    padding: 108px 0;
    background:
        var(--home-grid),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #eef3fb 100%);
    background-size: 72px 72px, 72px 72px, auto;
    overflow: visible;
}

.section-builder-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: max(20px, calc((100% - 1240px) / 2));
    width: min(620px, calc(100% - 40px));
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, var(--home-ink) 18% 55%, var(--home-blue) 55% 100%);
}

.builder-split { 
    display: grid; 
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: stretch;
    position: relative;
}

.builder-text {
    position: relative;
    align-self: start;
    z-index: 3;
    width: 100%;
    max-width: 690px;
    padding: 8px 0 18px;
}

.builder-text::before {
    content: "";
    position: absolute;
    top: -24px;
    left: -28px;
    width: 132px;
    height: 132px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(236, 72, 153, 0.10));
    transform: rotate(-8deg);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.builder-visual-sticky {
    --builder-sticky-lift: 40px;
    position: relative;
    align-self: stretch;
    min-width: 0;
    min-height: calc(100% + var(--builder-sticky-lift));
    margin-top: calc(-1 * var(--builder-sticky-lift));
}

.builder-head {
    --section-head-bottom: 32px;
    max-width: 690px;
}

.badge-pill-purple {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    color: var(--home-blue);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.builder-heading {
    max-width: 690px;
    color: var(--home-ink);
    font-size: var(--home-section-title-size);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}
.text-gradient-pink { background: linear-gradient(90deg, var(--home-blue), #7c3aed, var(--home-pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.builder-sub {
    position: relative;
    max-width: 660px;
    margin-top: 4px;
    color: #31435c;
    font-size: var(--home-section-copy-size);
    font-weight: 720;
    line-height: 1.68;
}

.builder-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    counter-reset: builder-feature;
    gap: 12px;
    max-width: 690px;
    margin-bottom: 34px;
    border-top: 0;
}
.builder-cta-row {
    --builder-cta-main-width: min(100%, 430px);
    --builder-cta-demo-width: min(100%, 410px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(100%, 680px);
}

.builder-cta-row .btn-premium-main,
.builder-cta-row .btn-demo-builder {
    flex: 0 0 auto;
    max-width: 100% !important;
}

.builder-cta-row .btn-premium-main {
    width: var(--builder-cta-main-width) !important;
    white-space: normal !important;
    line-height: 1.12 !important;
}

.builder-cta-row .btn-demo-builder {
    width: var(--builder-cta-demo-width) !important;
}
.feat-item-premium {
    --tile-accent: var(--home-blue);
    --tile-soft: rgba(37, 99, 235, 0.09);
    --tile-border-hover: rgba(37, 99, 235, 0.28);
    --tile-icon-shadow: rgba(37, 99, 235, 0.17);
    counter-increment: builder-feature;
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 116px;
    padding: 17px 16px 16px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feat-item-premium::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--tile-accent), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.feat-item-premium::after {
    content: counter(builder-feature, decimal-leading-zero);
    position: absolute;
    right: 12px;
    top: 10px;
    color: rgba(15, 23, 42, 0.055);
    font-family: var(--font-head);
    font-size: 2.45rem;
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.feat-item-premium:hover {
    transform: translateY(-3px);
    border-color: var(--tile-border-hover);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.09);
}

.icon-sq-premium {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--tile-soft), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tile-accent);
    font-size: 1.04rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.075);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-item-premium > div {
    position: relative;
    z-index: 1;
}
.feat-item-premium h4,
.feat-item-premium .feat-item-title {
    color: var(--home-ink);
    margin: 0 0 6px;
    font-family: var(--font-head);
    font-size: var(--home-small-title-size);
    font-weight: 900;
    line-height: 1.18;
}
.feat-item-premium p {
    color: #4b5d75;
    margin: 0;
    font-size: var(--home-small-copy-size);
    font-weight: 650;
    line-height: 1.55;
}

.feat-item-premium:hover .icon-sq-premium {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px var(--tile-icon-shadow);
}

.feat-item-premium:nth-child(2) { --tile-accent: #db2777; --tile-soft: rgba(219, 39, 119, 0.09); --tile-border-hover: rgba(219, 39, 119, 0.28); --tile-icon-shadow: rgba(219, 39, 119, 0.15); }
.feat-item-premium:nth-child(3) { --tile-accent: #0d9488; --tile-soft: rgba(13, 148, 136, 0.09); --tile-border-hover: rgba(13, 148, 136, 0.28); --tile-icon-shadow: rgba(13, 148, 136, 0.15); }
.feat-item-premium:nth-child(4) { --tile-accent: #7c3aed; --tile-soft: rgba(124, 58, 237, 0.09); --tile-border-hover: rgba(124, 58, 237, 0.28); --tile-icon-shadow: rgba(124, 58, 237, 0.15); }
.feat-item-premium:nth-child(5) { --tile-accent: #ea580c; --tile-soft: rgba(234, 88, 12, 0.09); --tile-border-hover: rgba(234, 88, 12, 0.28); --tile-icon-shadow: rgba(234, 88, 12, 0.15); }
.feat-item-premium:nth-child(6) { --tile-accent: #4f46e5; --tile-soft: rgba(79, 70, 229, 0.09); --tile-border-hover: rgba(79, 70, 229, 0.28); --tile-icon-shadow: rgba(79, 70, 229, 0.15); }
.feat-item-premium:nth-child(7) { --tile-accent: #16a34a; --tile-soft: rgba(22, 163, 74, 0.09); --tile-border-hover: rgba(22, 163, 74, 0.28); --tile-icon-shadow: rgba(22, 163, 74, 0.15); }
.feat-item-premium:nth-child(8) { --tile-accent: #ca8a04; --tile-soft: rgba(202, 138, 4, 0.09); --tile-border-hover: rgba(202, 138, 4, 0.28); --tile-icon-shadow: rgba(202, 138, 4, 0.15); }

/* --- VISUEL & TOOLS --- */
.builder-visual-area { 
    box-sizing: border-box;
    position: -webkit-sticky; 
    position: sticky !important;
    top: calc(var(--pc-header-top, 0px) + var(--pc-header-shell, 86px) + 24px - var(--builder-sticky-lift, 0px));
    align-self: start;
    width: 100%;
    max-width: 100%;
    z-index: 10;
    display: flex; 
    justify-content: center; 
    align-items: center;
    min-height: 560px;
    padding: 35px 46px;
    perspective: 1000px;
    height: fit-content;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 38px;
    background:
        linear-gradient(90deg, rgba(226, 232, 240, 0.26) 1px, transparent 1px),
        linear-gradient(180deg, rgba(226, 232, 240, 0.26) 1px, transparent 1px),
        linear-gradient(145deg, #07101f 0%, #0f172a 48%, #172554 100%);
    background-size: 34px 34px, 34px 34px, auto;
    box-shadow: 0 34px 86px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}
.builder-visual-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--home-pink) 0 22%, #ffffff 22% 38%, var(--home-blue) 38% 100%);
    z-index: 1;
}
.builder-visual-area::after {
    content: "STUDIO";
    position: absolute;
    left: 28px;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.055);
    font-family: var(--font-head);
    font-size: clamp(4.6rem, 8vw, 8rem);
    font-weight: 950;
    line-height: 0.8;
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
}
.tool-float { position: absolute; width: 54px; height: 54px; background: #FFFFFF; border: 1px solid rgba(226, 232, 240, 0.95); border-radius: 17px; display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 38px rgba(15,23,42,0.22); z-index: 20; color: var(--home-blue); font-size: 1.15rem; }
.color-picker { top: 15%; left: 34px; animation: floatTool 4s ease-in-out infinite; }
.dot-preview { width: 14px; height: 14px; background: #9D174D; border-radius: 50%; position: absolute; bottom: 8px; right: 8px; border: 2px solid white; }
.font-picker { bottom: 17%; right: 34px; animation: floatTool 5s ease-in-out infinite reverse; font-family: 'Great Vibes', cursive; font-size: 1.6rem; }
@keyframes floatTool { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-10px);} }

/* --- CONTENEUR ET IMAGE DE BASE --- */
.phone-builder-frame { width: 288px; max-width: min(100%, 288px); position: relative; z-index: 5; transform: rotateY(-7deg); transition: 0.5s; }
.builder-visual-area:hover .phone-builder-frame { transform: rotateY(0); }
.screen-full-image { width: 100%; height: auto; display: block; filter: drop-shadow(0 34px 68px rgba(0,0,0,0.34)); }

/* --- LA FENÊTRE DE L'ÉCRAN (Empêche les apps de déborder sur les bords du téléphone) --- */
/* Calibré pour s'insérer exactement dans le cadre de votre nouvelle image */
.screen-bounds { position: absolute; top: 1.6%; left: 5.5%; width: 89%; height: 97%; border-radius: 42px; overflow: hidden; z-index: 10; }

/* --- LES ZONES DE CLIC (Positionnées par rapport à .screen-bounds) --- */
.click-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; }
.builder-click-hint { position: absolute; top: 40.5%; left: 50%; transform: translate(-50%,-50%); z-index: 12; display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; background: rgba(15,23,42,0.82); color: #FFFFFF; font-size: .72rem; font-weight: 700; letter-spacing: .15px; line-height: 1.2; white-space: nowrap; pointer-events: none; transition: opacity .25s ease, visibility .25s ease, transform .25s ease; animation: builderHintAttention 2.2s cubic-bezier(.22,.61,.36,1) infinite; }
.builder-click-hint i { font-size: .78rem; }

/* Zone 1 : Le bloc de contact (Insta, Linkedin, Email) */
.zone-contact { position: absolute; top: 45%; left: 13%; width: 74%; height: 15%; display: flex; flex-direction: column; }
.hotspot-row { flex: 1; cursor: pointer; border-radius: 10px; position: relative; overflow: hidden; }

/* Zone 2 : La grille des 6 icônes (Whatsapp, Map, etc.) */
.zone-grid { position: absolute; top: 62.5%; left: 18%; width: 64%; height: 13%; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; }
.hotspot-icon { cursor: pointer; border-radius: 20px; position: relative; overflow: hidden; }

/* Zone 3 : Les gros boutons du bas (Partager, Enregistrer) */
.zone-buttons { position: absolute; top: 78%; left: 8%; width: 84%; height: 7%; display: flex; gap: 15px; }
.hotspot-btn { flex: 1; cursor: pointer; border-radius: 30px; position: relative; overflow: hidden; }

.builder-visual-area:not(.guide-dismissed) .zone-contact, .builder-visual-area:not(.guide-dismissed) .zone-grid, .builder-visual-area:not(.guide-dismissed) .zone-buttons { overflow: hidden; }
.builder-visual-area:not(.guide-dismissed) .zone-contact::after, .builder-visual-area:not(.guide-dismissed) .zone-grid::after, .builder-visual-area:not(.guide-dismissed) .zone-buttons::after { content: ""; position: absolute; top: 0; bottom: 0; left: -46%; width: 46%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 50%, rgba(255,255,255,0) 100%); opacity: 0; pointer-events: none; transform: translateX(0); animation: builderTouchSweep 3.6s ease-in-out infinite; }
.builder-visual-area:not(.guide-dismissed) .zone-contact::after { animation-delay: 0s; }
.builder-visual-area:not(.guide-dismissed) .zone-grid::after { animation-delay: 1.2s; }
.builder-visual-area:not(.guide-dismissed) .zone-buttons::after { animation-delay: 2.4s; }
.builder-visual-area.guide-dismissed .builder-click-hint { opacity: 0; visibility: hidden; transform: translate(-50%,-46%); animation: none; }
.builder-visual-area.guide-dismissed .zone-contact::after, .builder-visual-area.guide-dismissed .zone-grid::after, .builder-visual-area.guide-dismissed .zone-buttons::after { display: none; }

@keyframes builderHintAttention { 0%,100% { transform: translate(-50%,-50%) translateY(0) scale(1); opacity: .94; } 20% { transform: translate(-50%,-50%) translateY(-2px) scale(1.02); opacity: 1; } 40% { transform: translate(-50%,-50%) translateY(0) scale(1); opacity: .96; } 60% { transform: translate(-50%,-50%) translateY(-1px) scale(1.03); opacity: 1; } 80% { transform: translate(-50%,-50%) translateY(0) scale(1); opacity: .96; } }
@keyframes builderTouchSweep {
    0%,22% { opacity: 0; transform: translateX(0); }
    28% { opacity: 1; transform: translateX(0); }
    58% { opacity: 1; transform: translateX(330%); }
    72%,100% { opacity: 0; transform: translateX(330%); }
}

@media (max-width: 1200px) {
    .builder-split {
        grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
        gap: clamp(28px, 4vw, 52px);
    }
    .builder-heading {
        font-size: var(--home-section-title-size);
    }
    .builder-visual-area {
        min-height: 512px;
        padding: 30px 32px;
    }
    .phone-builder-frame {
        width: 264px;
    }
    .color-picker {
        left: 24px;
    }
    .font-picker {
        right: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .builder-click-hint { animation: none; }
    .builder-visual-area:not(.guide-dismissed) .zone-contact::after, .builder-visual-area:not(.guide-dismissed) .zone-grid::after, .builder-visual-area:not(.guide-dismissed) .zone-buttons::after { animation: none; width: 100%; left: 0; opacity: .45; transform: none; background: rgba(255,255,255,0.32); }
}

@media (max-width: 992px) {
    .builder-click-hint { top: 39%; width: 94%; max-width: none; white-space: normal; text-align: center; justify-content: center; line-height: 1.25; padding: 8px 11px; font-size: .78rem; font-weight: 800; gap: 7px; }
    .builder-click-hint i { font-size: .82rem; }
    .builder-split { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
    .builder-text { display: contents; }
    .builder-text::before {
        display: none;
    }
    .builder-head {
        max-width: none;
        margin-bottom: 28px;
    }
    .builder-heading {
        font-size: var(--home-section-title-size);
        line-height: 1.08;
    }
    .builder-sub {
        max-width: 58ch;
        padding: 16px 18px;
        border-radius: 16px;
    }
    .builder-visual-sticky {
        --builder-sticky-lift: 0px;
        order: 2;
        align-self: auto;
        min-height: auto;
        margin-top: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .builder-visual-area {
        position: relative;
        top: auto;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: auto;
        display: flex;
        justify-content: center;
        margin: 10px 0 36px 0;
        padding: 28px 16px 34px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }
    .builder-visual-area::before {
        left: 20px;
        right: 20px;
    }
    .builder-visual-area::after {
        left: 18px;
        bottom: 16px;
        font-size: clamp(3.8rem, 16vw, 5.8rem);
    }
    .phone-builder-frame {
        width: min(82vw, 320px);
        transform: none;
    }
    .builder-visual-area:hover .phone-builder-frame {
        transform: none;
    }
    .tool-float {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 1rem;
    }
    .color-picker {
        top: 12%;
        left: 16px;
    }
    .font-picker {
        right: 16px;
        bottom: 13%;
    }
    .builder-grid-premium { order: 3; grid-template-columns: 1fr; width: 100%; margin-bottom: 30px; gap: 12px; }
    .feat-item-premium { min-height: 0; padding: 16px; border-radius: 18px; }
    .builder-cta-row { order: 4; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 10px; }
}

/* --- MICRO-APPS --- */
.app-layer { position: absolute; inset: 0; width: auto; height: auto; border-radius: inherit; background: #FFF; z-index: 50; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); overflow: hidden; clip-path: inset(0 round 42px); display: flex; flex-direction: column; pointer-events: none; will-change: transform; }
.app-layer.open { transform: translateY(0); pointer-events: auto; }
.app-header { width: 100%; box-sizing: border-box; height: 90px; padding: 35px 20px 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #eee; }
.app-back-btn { color: #007AFF; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 5px; font-size: 1rem; }
.app-title { font-weight: 700; color: #000; font-size: 1rem; }
.app-actions { width: 30px; text-align: right; color: #007AFF; }
.app-body { flex: 1; overflow-y: auto; position: relative; background: #F2F2F7; }
.app-body::-webkit-scrollbar { display: none; }



.wa-chat-bg { background: #E5DDD5; height: 100%; padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.wa-bubble { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 0.9rem; position: relative; box-shadow: 0 1px 1px rgba(0,0,0,0.1); }
.wa-in { background: #FFF; align-self: flex-start; border-top-left-radius: 0; }
.wa-out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 0; }
.wa-time { font-size: 0.65rem; color: #999; text-align: right; margin-top: 4px; }
.wa-footer { padding: 10px; background: #F0F0F0; display: flex; gap: 10px; align-items: center; }
.wa-input { flex: 1; background: #FFF; border-radius: 20px; height: 35px; border: none; padding: 0 15px; }

.map-view { width: 100%; height: 100%; background: #F3F4F6; position: relative; overflow: hidden; }
.map-road { position: absolute; background: #FFF; border: 1px solid #E5E7EB; }
.road-1 { top: 30%; left: 0; width: 100%; height: 30px; transform: rotate(5deg); }
.road-2 { top: 0; left: 40%; width: 30px; height: 100%; transform: rotate(5deg); }
.map-path { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
.map-pin { position: absolute; top: 48%; left: 42%; color: #EA4335; font-size: 2rem; z-index: 5; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); animation: bouncePin 1s infinite alternate; }
@keyframes bouncePin { to { transform: translateY(-10px); } }
.map-card { position: absolute; bottom: 30px; left: 20px; right: 20px; background: #FFF; padding: 15px; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); z-index: 10; }

.insta-header { display: flex; padding: 20px; gap: 20px; align-items: center; background: #FFF; }
.insta-avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); padding: 3px; }
.insta-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 3px solid #FFF; object-fit: cover; }
.insta-stats { display: flex; gap: 15px; text-align: center; flex: 1; justify-content: space-around; }
.stat-num { font-weight: 700; display: block; color: #000; }
.stat-label { font-size: 0.75rem; color: #666; }
.insta-bio { padding: 0 20px 20px; font-size: 0.9rem; background: #FFF; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.insta-post { aspect-ratio: 1; background: #eee; position: relative; }

.contact-hero { background: linear-gradient(to bottom, #f2f2f7, #fff); padding: 20px; text-align: center; border-bottom: 1px solid #e5e5e5; }
.c-avatar-large { width: 100px; height: 100px; background: #9D174D; border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; font-weight: bold; }
.form-group { background: #FFF; margin-top: 20px; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; padding-left: 20px; }
.form-row { display: flex; padding: 12px 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.form-row:last-child { border-bottom: none; }
.f-label { width: 80px; font-size: 0.9rem; color: #000; }
.f-val { color: #007AFF; font-size: 0.95rem; }

.qr-modal { height: 100%; background: #1E293B; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #FFF; }
.qr-card { background: #FFF; padding: 30px; border-radius: 20px; text-align: center; width: 60%; display:flex; flex-direction:column; align-items:center; min-height: 420px; }
.qr-code-img { width: 100%; aspect-ratio: 1; background: #000; margin-bottom: 15px; }

.mail-form { padding: 20px; background: #FFF; height: 100%; }
.mail-row { border-bottom: 1px solid #eee; padding: 10px 0; display: flex; gap: 10px; font-size: 0.95rem; }
.mail-label { color: #999; }
.mail-body { margin-top: 20px; font-family: sans-serif; line-height: 1.5; color: #333; }
.qr-title{ font-weight:700; color:#333; margin-bottom:10px; }

.qr-name{ color:#252525; font-size:1rem; margin-top: 0px; line-height: 1.2; }
.qr-brand{ margin-top: auto; padding-top: 14px; color:#f18f16; font-size:0.9rem; font-weight:600; opacity:0.9; }









/* ================================================================================================================================================
   SECTION DIGITIZE PRO (Animation Paper -> Phone)
   =============================================================================================================================================== */
/* ================================================================================================================================================
   SECTION DIGITIZE PRO (Animation 3D Canvas / Vanilla JS avec Profil Réel)
   =============================================================================================================================================== */
.section-digitize-pro {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    background:
        var(--home-grid),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-size: 72px 72px, 72px 72px, auto;
}

.section-digitize-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, var(--home-ink) 18% 55%, var(--home-blue) 55% 100%);
}

.digitize-split { display: grid; grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1fr); grid-template-areas: "visual content" "visual cta"; gap: clamp(42px, 6vw, 78px); align-items: center; }
.digitize-content { grid-area: content; }
.badge-capsule { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(37, 99, 235, 0.14); background: #ffffff; color: var(--home-blue); padding: 8px 16px; border-radius: 50px; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06); font-weight: 850; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.title-digitize { color: var(--home-ink); font-size: var(--home-section-title-size); line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.02em; }
.text-gradient-animate { background: linear-gradient(90deg, var(--home-blue), #7c3aed, var(--home-pink)); background-size: 100% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: none; }
.desc-digitize { font-size: var(--home-section-copy-size); color: #31435c; font-weight: 720; line-height: 1.68; margin-bottom: 30px; }
.comparison-box { background: rgba(255, 255, 255, 0.94); border: 1px solid var(--home-line); border-radius: 20px; padding: 20px; margin-bottom: 5px; box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055); }
.compare-row { display: flex; align-items: center; gap: 15px; font-weight: 750; font-size: 1rem; margin-bottom: 10px; }
.compare-row.old { color: #94a3b8; text-decoration: line-through; }
.icon-c { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.old .icon-c { background: #fee2e2; color: #ef4444; }
.new .icon-c { background: #dcfce7; color: #16a34a; }
.digitize-split > .btn-transform { grid-area: cta; justify-self: start; align-self: start; margin-top: 20px; position: relative; z-index: 30; }

/* --- CONTENEUR ANIMATION --- */
.dg-anim {
    grid-area: visual;
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    z-index: 10;
}

/* ============================
   PILE DE CARTES
   ============================ */
.dg-pile {
    position: absolute;
    width: 340px;
    height: 210px;
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateZ(-25deg) scale(1.05);
}

/* Carte individuelle */
.dg-card {
    position: absolute;
    inset: 0;
    width: 340px;
    height: 210px;
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    backface-visibility: hidden;
}

/* Positions empilées — décalage subtil */
.dg-c1 { transform: translate3d(-4px, 4px, -50px); z-index: 1; }
.dg-c2 { transform: translate3d(-3px, 3px, -40px); z-index: 2; }
.dg-c3 { transform: translate3d(-2px, 2px, -30px); z-index: 3; }
.dg-c4 { transform: translate3d(-1px, 1px, -20px); z-index: 4; }
.dg-c5 { transform: translate3d(0px, 0px, -10px); z-index: 5; }
.dg-main { transform: translate3d(1px, -1px, 0px); z-index: 10; box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15); }

/* Contenu de la carte */
.dg-card-ui {
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}
.dg-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}
.dg-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F1F5F9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.dg-card-info h4 {
    font-size: 1.15rem;
    color: #0F172A;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}
.dg-card-info p {
    font-size: 0.7rem;
    color: #2563EB;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin: 3px 0 0;
}
.dg-card-lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.dg-card-lines span {
    font-size: 0.78rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.dg-card-lines i {
    color: #3B82F6;
    width: 14px;
    text-align: center;
    font-size: 0.75rem;
}

/* Ligne de scan */
.dg-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    box-shadow: none;
    opacity: 0;
    z-index: 20;
}

/* ============================
   TELEPHONE
   ============================ */
.dg-phone {
    position: absolute;
    opacity: 0;
    transform: scale(0.6) translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.dg-phone-frame {
    width: 280px;
    height: 570px;
    background: #0F172A;
    border-radius: 40px;
    padding: 7px;
    box-shadow:
        0 0 0 2px #334155,
        0 25px 60px -10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}
.dg-phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0F172A;
    border-radius: 14px;
    z-index: 30;
}
.dg-phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 33px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dg-screen-banner {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #2563EB, #8B5CF6);
    flex-shrink: 0;
}
.dg-screen-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    margin-top: -44px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.dg-phone-screen h3 {
    margin: 12px 0 0;
    font-size: 1.3rem;
    color: #0F172A;
    font-weight: 800;
}
.dg-screen-role {
    font-size: 0.72rem;
    color: #4F46E5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0 22px;
}
.dg-screen-actions {
    display: flex;
    gap: 8px;
    width: 82%;
    margin-bottom: 18px;
}
.dg-btn-save {
    flex: 1;
    height: 42px;
    background: #0F172A;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
}
.dg-btn-qr {
    width: 42px;
    height: 42px;
    background: #EEF2FF;
    border-radius: 11px;
    border: 1px solid #E0E7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    font-size: 1.1rem;
}
.dg-screen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 82%;
}
.dg-grid-item {
    height: 44px;
    border-radius: 11px;
    border: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.dg-wa { color: #25D366; background: #E8FBF0; border-color: #D1F7E0; }
.dg-li { color: #0077B5; background: #E5F4FD; border-color: #CCE9FA; }
.dg-em { color: #EA4335; background: #FCECEB; border-color: #F9D9D7; }
.dg-mp { color: #FBBC05; background: #FEF8E6; border-color: #FDF1CC; }

/* ============================
   VORTEX + ANNEAUX
   ============================ */
.dg-vortex {
    position: absolute;
    width: 350px;
    height: 350px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.dg-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
}
.dg-ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: none;
}
.dg-ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: none;
}
.dg-ring-3 {
    width: 350px;
    height: 350px;
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: none;
}

/* Scan line animation only */
.dg-scan-line.scanning {
    animation: dgScan 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Ring expand animation */
.dg-ring.expanding {
    animation: dgRingExpand 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Phone float animation — scale piloté par --ps */
.dg-phone.floating {
    animation: dgFloat 3.5s ease-in-out infinite;
}
.dg-phone { --ps: 0.78; }

/* ============================
   KEYFRAMES
   ============================ */
@keyframes dgScan {
    0%   { top: 0; opacity: 0; }
    8%   { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes dgFloat {
    0%, 100% { transform: scale(var(--ps)) translateY(0); }
    50%      { transform: scale(var(--ps)) translateY(-14px); }
}
@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes dgRingExpand {
    0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
    30%  { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
    50%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* ============================
   RESPONSIVE DIGITIZE
   ============================ */
@media (max-width: 992px) {
    .digitize-split { display: flex; flex-direction: column; text-align: center; gap: 20px; }
    .digitize-content { order: 1; width: 100%; text-align: left; }
    .dg-anim { order: 2; height: 380px; }
    .dg-pile { transform: rotateX(45deg) rotateZ(-25deg) scale(0.85); }
    .dg-vortex { width: 260px; height: 260px; }
    .dg-ring-1 { width: 120px; height: 120px; }
    .dg-ring-2 { width: 190px; height: 190px; }
    .dg-ring-3 { width: 260px; height: 260px; }
    .btn-transform { order: 3; margin: 20px auto 0 auto; }
    .title-digitize { margin-bottom: 12px; }
    .badge-capsule { margin: 0 0 20px 0; justify-content: flex-start; }
    .comparison-box { text-align: left; }
}




/* =============================================================================================================================================================
   SECTION NFC — PREMIUM REDESIGN
   =========================================================================================================================================================== */

/* ===========================================================================
   NFC SECTION — PREMIUM
   =========================================================================== */
.nfc-section {
    --nfc-bg: #060a14;
    --nfc-surface: rgba(255,255,255,0.04);
    --nfc-border: rgba(255,255,255,0.08);
    --nfc-text: #e2e8f0;
    --nfc-muted: #94a3b8;
    --nfc-accent-1: #818cf8;
    --nfc-accent-2: #38bdf8;

    position: relative;
    background: var(--nfc-bg);
    padding: 120px 0 100px;
    overflow: hidden;
    color: white;
}

/* --- Trame de fond --- */
.nfc-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* --- Section Header (centré) --- */
.nfc-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.nfc-header-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.nfc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nfc-surface);
    border: 1px solid var(--nfc-border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--nfc-text);
    font-weight: 600;
    font-family: var(--font-body);
    backdrop-filter: blur(8px);
}

.nfc-chip i {
    color: var(--nfc-accent-1);
    font-size: 0.82rem;
}

.nfc-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,191,36,0.07);
    border: 1px solid rgba(251,191,36,0.18);
    color: #fbbf24;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nfc-pulse {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    animation: nfcPulse 2s ease-in-out infinite;
}

@keyframes nfcPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.nfc-title {
    font-family: var(--font-head);
    font-size: var(--home-section-title-size);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
    color: white;
}

.nfc-gradient {
    background: linear-gradient(135deg, var(--nfc-accent-1) 0%, var(--nfc-accent-2) 50%, #a78bfa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nfcGradientShift 6s ease-in-out infinite;
}

@keyframes nfcGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.nfc-subtitle {
    font-family: var(--font-body);
    font-size: var(--home-section-copy-size);
    color: #d7e2f0;
    line-height: 1.72;
    max-width: 580px;
    margin: 0 auto;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    font-weight: 680;
}

/* --- Main Grid (visual left, content right) --- */
.nfc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* --- Visual Column --- */
.nfc-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nfc-showcase {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3 / 4.9;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 32px 64px -16px rgba(0,0,0,0.6),
        0 0 0 1px var(--nfc-border),
        0 0 80px -20px rgba(129,140,248,0.1);
}

.nfc-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.nfc-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel dots */
.nfc-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    justify-content: center;
    z-index: 1;
}

.nfc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nfc-dot:hover {
    border-color: rgba(255,255,255,0.5);
}

.nfc-dot.active {
    background: var(--nfc-accent-1);
    border-color: var(--nfc-accent-1);
    box-shadow: none;
    width: 24px;
    border-radius: 100px;
}

/* --- Content Column --- */
.nfc-content {
    display: flex;
    flex-direction: column;
}

/* --- Material Selector — Cards --- */
.nfc-materials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.nfc-section .mat-radio {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--nfc-surface);
    border: 1px solid var(--nfc-border);
    padding: 14px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--nfc-muted);
    font-family: var(--font-body);
    text-align: left;
    width: 100%;
}

.mat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--nfc-border);
    flex-shrink: 0;
    font-size: 0.92rem;
    color: var(--nfc-muted);
    transition: all 0.3s ease;
}

.mat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mat-name {
    font-weight: 600;
    font-size: var(--home-small-title-size);
    color: var(--nfc-text);
    letter-spacing: 0.2px;
}

.mat-desc {
    font-size: var(--home-small-copy-size);
    color: #cbd5e1;
    font-weight: 600;
    line-height: 1.35;
}

.nfc-section .mat-radio:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

.nfc-section .mat-radio.active {
    background: rgba(129,140,248,0.08);
    border-color: rgba(129,140,248,0.35);
    box-shadow: none;
}

.nfc-section .mat-radio.active .mat-icon {
    background: linear-gradient(135deg, var(--nfc-accent-1), var(--nfc-accent-2));
    border-color: transparent;
    color: white;
}

.nfc-section .mat-radio.active .mat-name {
    color: white;
}

/* --- Feature Cards --- */
.nfc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.nfc-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: 14px;
    background: var(--nfc-surface);
    border: 1px solid var(--nfc-border);
    transition: border-color 0.3s ease;
}

.nfc-feat:hover {
    border-color: rgba(255,255,255,0.12);
}

.nfc-feat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(129,140,248,0.12), rgba(56,189,248,0.08));
    border: 1px solid rgba(129,140,248,0.15);
    font-size: 1rem;
    color: var(--nfc-accent-1);
}

.nfc-feat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nfc-feat-title {
    font-size: var(--home-small-title-size);
    font-weight: 600;
    color: var(--nfc-text);
    font-family: var(--font-body);
}

.nfc-feat-desc {
    font-size: var(--home-small-copy-size);
    color: #cbd5e1;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.35;
}

/* --- Divider --- */
.nfc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--nfc-border) 20%, var(--nfc-border) 80%, transparent);
    margin: 32px 0;
}

/* --- Waitlist (styles in newsletter.css) --- */

/* ===========================================================================
   NFC — RESPONSIVE
   =========================================================================== */
@media (max-width: 992px) {
    .nfc-section {
        padding: 80px 0 64px;
    }

    .nfc-section-header {
        margin-bottom: 48px;
    }

    .nfc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nfc-visual { order: 1; }
    .nfc-content { order: 2; }

    .nfc-showcase {
        max-width: 260px;
    }

    /* Matériaux en ligne scrollable */
    .nfc-materials {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
    }

    .nfc-section .mat-radio {
        flex-shrink: 0;
        min-width: 170px;
    }

    .nfc-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .nfc-feat {
        padding: 16px 10px;
    }

    .nfc-divider {
        margin: 28px 0;
    }
}

@media (max-width: 640px) {
    .nfc-section {
        padding: 56px 0 48px;
    }

    .nfc-section-header {
        margin-bottom: 32px;
        text-align: center;
    }

    .nfc-header-badges {
        justify-content: center;
        margin-bottom: 24px;
    }

    .nfc-title {
        font-size: var(--home-section-title-size);
        letter-spacing: -0.5px;
    }

    .nfc-subtitle {
        font-size: var(--home-section-copy-size);
        line-height: 1.62;
        padding: 14px 16px;
    }

    .nfc-grid {
        gap: 32px;
    }

    .nfc-showcase {
        max-width: 220px;
    }

    .nfc-dots {
        margin-top: 16px;
    }

    /* Matériaux empilés sur petit mobile */
    .nfc-materials {
        flex-direction: column;
        overflow-x: visible;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfc-section .mat-radio {
        min-width: 0;
        width: 100%;
        padding: 12px 16px;
    }

    /* Features discrets — inline simple */
    .nfc-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
    }

    .nfc-feat {
        flex-direction: row;
        text-align: left;
        padding: 0;
        gap: 6px;
        background: none;
        border: none;
        align-items: center;
    }

    .nfc-feat:hover { border-color: transparent; }

    .nfc-feat-icon {
        width: auto;
        height: auto;
        background: none;
        border: none;
        font-size: 0.7rem;
        color: var(--nfc-accent-1);
        flex-shrink: 0;
    }

    .nfc-feat-title {
        font-size: var(--home-small-title-size);
        font-weight: 500;
        color: var(--nfc-muted);
    }

    .nfc-feat-desc {
        display: none;
    }

    .nfc-divider {
        margin: 24px 0;
    }
}







/* ==============================================================================================================================================
   SECTION EXEMPLES (REAL MOCKUPS - SCROLL INTERACTIF) - Corrigé & Condensé
   ============================================================================================================================================= */

.section-examples-light {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #07101f;
    background-size: 72px 72px, 72px 72px, auto;
    overflow: hidden;
    position: relative;
    padding: 108px 0 0;
}

.section-examples-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, #ffffff 18% 19%, var(--home-blue) 19% 54%, var(--pc-slate-900) 54% 76%, var(--home-blue) 76% 100%);
}

/* En-tête */
.section-examples-light .container { text-align: left; align-items: flex-start; position: relative; z-index: 1; }
.section-examples-light .section-title-dark { color: #F1F5F9; text-align: left; }
.section-examples-light .text-highlight { color: #93C5FD; }
.section-examples-light .section-head {
    --section-copy-color: #d7e2f0;
    --section-copy-strong-color: #ffffff;
    --section-copy-surface: rgba(255, 255, 255, 0.07);
    --section-copy-border: rgba(255, 255, 255, 0.13);
    --section-copy-shadow: none;
}
.section-examples-light .section-sub-dark { color: #d7e2f0; }

/* Badge */
.section-examples-light .badge-pill-light { background: rgba(255, 255, 255, 0.08); color: #CBD5E1; border: 1px solid rgba(255, 255, 255, 0.12); }

/* Sélecteurs globaux inchangés */
.section-title-dark { color: #1E293B; text-align: left; }
.text-highlight { color: #2563EB; }
.section-sub-dark { color: #3f4f66; }
.badge-pill-light { background: #F1F5F9; color: #475569; font-size: 0.8rem; }

/* Wrapper du Scroll — position relative pour l'overlay CTA */
.examples-scroll-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
    -webkit-mask-image: none;
    mask-image: none;
}

/* Track du carrousel */
.examples-track {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    padding: 52px max(50px, calc((100vw - 1240px) / 2 + 20px)) 164px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}
.examples-track::-webkit-scrollbar { display: none; }
.examples-track.active { cursor: grabbing; scroll-behavior: auto; }

/* CTA en overlay fondu — aucune séparation visible */
.examples-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 60px;
    height: 200px;
    background: linear-gradient(to top, #07101f 40%, rgba(7, 16, 31, 0.92) 65%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}
.examples-cta-overlay__lead {
    margin: 0;
    color: #CBD5E1;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 500;
    pointer-events: auto;
}
.examples-cta-overlay .btn-premium-main {
    pointer-events: auto;
}

/* Téléphone (Conteneur) */
.phone-mockup-real {
    position: relative;
    width: 246px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
}
.phone-mockup-real:hover {
    transform: translateY(-8px) scale(1.04);
    z-index: 5;
}

/* Image avec ombre portée */
.example-full-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
    pointer-events: none;
    transition: filter 0.35s ease;
}
.phone-mockup-real:hover .example-full-img {
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.30));
}

/* Responsive */
@media (max-width: 768px) {
    .section-examples-light { padding: 58px 0 0; }
    .examples-track { gap: 20px; padding: 32px 20px 90px; }
    .phone-mockup-real { width: 211px; }
    .examples-track { padding-bottom: 200px; }
    .examples-cta-overlay { height: 220px; padding-bottom: 25px; gap: 18px; flex-direction: column; align-items: center; justify-content: flex-end; }
}



/* =========================================================================================================================================
   SECTION REVIEWS SPOTLIGHT
   ========================================================================================================================================= */
/* ---- SECTION REVIEWS POP-OUT CARROUSEL ---- */
.section-reviews-popout {
    position: relative;
    background:
        var(--home-grid),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    background-size: 72px 72px, 72px 72px, auto;
    padding: 108px 0 72px;
    overflow: hidden;
}

.section-reviews-popout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, var(--home-ink) 18% 55%, var(--home-blue) 55% 100%);
}

.rv-popout-header {
    --section-head-max-width: 700px;
    --section-head-bottom: 50px;
}

/* Stage : fleches + viewport */
.rv-popout-stage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fleches */
.rv-popout-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--home-line);
    background: #FFFFFF;
    color: var(--home-ink);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    margin-top: 100px;
}
.rv-popout-arrow:hover {
    background: var(--home-ink);
    border-color: var(--home-ink);
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

/* Viewport */
.rv-popout-viewport {
    position: relative;
    width: 100%;
    min-height: 344px;
}

/* Carte empilee */
.rv-popout-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv-popout-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
/* Positions d'entree */
.rv-popout-card.enter-right { opacity: 0; transform: translateX(60px) scale(0.95); }
.rv-popout-card.enter-left  { opacity: 0; transform: translateX(-60px) scale(0.95); }
/* Positions de sortie */
.rv-popout-card.exit-left  { opacity: 0; transform: translateX(-60px) scale(0.95); position: absolute; }
.rv-popout-card.exit-right { opacity: 0; transform: translateX(60px) scale(0.95); position: absolute; }

/* Inner card */
.rv-popout-card__inner {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--home-line);
    border-radius: 26px;
    padding: 48px 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.10);
    overflow: visible;
}

/* Avatar pop-out */
.rv-popout-avatar-wrap {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    z-index: 2;
}
.rv-popout-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--home-ink);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}
.rv-popout-avatar-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--home-blue);
    color: #FFFFFF;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
}

/* Etoiles */
.rv-popout-card__stars {
    display: flex;
    gap: 3px;
    color: #F59E0B;
    font-size: 0.95rem;
    margin-bottom: 20px;
    margin-top: 12px;
}

/* Citation */
.rv-popout-card__quote {
    margin: 0 0 24px;
}
.rv-popout-card__quote p {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--home-card-copy-size);
    line-height: 1.72;
    color: #334155;
}

/* Meta auteur */
.rv-popout-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.rv-popout-card__name {
    font-family: var(--font-head);
    font-size: var(--home-small-title-size);
    font-weight: 700;
    color: var(--home-ink);
}
.rv-popout-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #ECFDF5;
    border: 1px solid #BBF7D0;
    color: #047857;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Product tag */
.rv-popout-card__product {
    padding: 5px 14px;
    border-radius: 999px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #1D4ED8;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Dots */
.rv-popout-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.rv-popout-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #CBD5E1;
    transition: width 0.3s ease, background 0.3s ease;
}
.rv-popout-dot.active {
    width: 28px;
    background: var(--home-blue);
}

/* Barre de progression */
.rv-popout-progress {
    max-width: 200px;
    height: 3px;
    background: #E2E8F0;
    border-radius: 999px;
    margin: 16px auto 0;
    overflow: hidden;
}
.rv-popout-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--home-blue);
    border-radius: 999px;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
    .section-reviews-popout { padding: var(--spacing-section-mobile) 0 36px; }

    /* Stage : carte pleine largeur, flèches en dessous */
    .rv-popout-stage {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 20px;
        max-width: 100%;
    }

    /* Flèches sous la carte, côte à côte */
    .rv-popout-arrow {
        position: static;
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
        margin-top: 0;
    }

    .rv-popout-arrow--prev { order: 2; }
    .rv-popout-arrow--next { order: 3; }
    .rv-popout-viewport { order: 1; min-height: auto; width: 100%; }

    /* Inner card */
    .rv-popout-card__inner {
        padding: 48px 24px 28px;
        border-radius: 16px;
        text-align: center;
        align-items: center;
    }

    /* Avatar */
    .rv-popout-avatar-wrap { width: 56px; height: 56px; top: -28px; }
    .rv-popout-avatar { font-size: 1.1rem; }
    .rv-popout-avatar-badge { bottom: -10px; right: -10px; }

    /* Étoiles */
    .rv-popout-card__stars { justify-content: center; margin-top: 8px; margin-bottom: 16px; }

    /* Citation */
    .rv-popout-card__quote { margin-bottom: 20px; }
    .rv-popout-card__quote p { font-size: var(--home-card-copy-size); line-height: 1.65; }

    /* Meta : centré, empilé si besoin */
    .rv-popout-card__meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* Flèches : absolues sur les côtés de la carte, centrées verticalement */
    .rv-popout-stage {
        position: relative;
    }

    .rv-popout-stage .rv-popout-arrow--prev,
    .rv-popout-stage .rv-popout-arrow--next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
        margin: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .rv-popout-stage .rv-popout-arrow--prev { left: 4px; }
    .rv-popout-stage .rv-popout-arrow--next { right: 4px; }

    .rv-popout-dots { margin-top: 20px; }
    .rv-popout-progress { margin-top: 12px; }
}

@media (max-width: 400px) {
    .rv-popout-card__inner { padding: 44px 18px 24px; }
    .rv-popout-card__quote p { font-size: var(--home-card-copy-size); }
    .rv-popout-card__name { font-size: var(--home-small-title-size); }
    .rv-popout-card__verified { font-size: 0.6rem; }
}

/* ==========================================================================
   SECTION "CE QUE VOUS POUVEZ FAIRE" (ONGLETS SAAS)
   ========================================================================== */
.section-wycd-dark {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #07101f;
    background-size: 72px 72px, 72px 72px, auto;
    padding: 108px 0;
    position: relative;
    overflow: hidden;
}

.section-wycd-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--home-pink) 0 18%, #ffffff 18% 19%, var(--home-blue) 19% 54%, var(--pc-slate-900) 54% 76%, var(--home-blue) 76% 100%);
}

.wycd-header {
    --section-head-bottom: 50px;
    --section-copy-max-width: 650px;
    --section-copy-color: #d7e2f0;
    --section-copy-strong-color: #ffffff;
    --section-copy-surface: rgba(255, 255, 255, 0.065);
    --section-copy-border: rgba(255, 255, 255, 0.13);
    --section-copy-shadow: none;
}
.wycd-title { font-family: var(--font-head); font-size: var(--home-section-title-size); font-weight: 900; color: #FFFFFF; line-height: 1.05; letter-spacing: -0.02em; }
.wycd-subtitle { font-family: var(--font-body); font-size: var(--home-section-copy-size); color: #d7e2f0; line-height: 1.7; font-weight: 700; }
.wycd-subtitle strong { color: #E2E8F0; font-weight: 850; }
.wycd-footer-cta { margin-top: 71px; display: flex; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; text-align: center; }
.wycd-footer-cta__lead { margin: 0; color: #CBD5E1; font-family: var(--font-body); font-size: var(--home-card-copy-size); line-height: 1.5; }
.wycd-tabs-wrapper { border: 1px solid rgba(148, 163, 184, 0.16); border-radius: 24px; background: rgba(255, 255, 255, 0.045); margin-bottom: 35px; width: 100%; padding: 8px; }
.wycd-tabs { display: flex; justify-content: space-between; align-items: stretch; list-style: none; padding: 0; margin: 0 auto; max-width: 1100px; }
.wycd-tab { flex: 1; position: relative; padding: 18px 10px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; color: #94A3B8; font-family: var(--font-head); font-weight: 800; font-size: 1rem; transition: color 0.25s ease, background-color 0.25s ease; border-radius: 18px; text-align: center; }
.wycd-tab i { font-size: 1.4rem; transition: transform 0.3s ease; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wycd-tab:hover { color: #E2E8F0; }
.wycd-tab:hover i { transform: translateY(-2px); }
.wycd-tab.active { color: #FFFFFF; background: rgba(255, 255, 255, 0.10); }
.wycd-tab.active::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 8px; height: 3px; background: linear-gradient(90deg, var(--home-pink), var(--home-blue)); border-radius: 999px; }
.wycd-content-wrapper { position: relative; max-width: 1000px; margin: 0 auto; min-height: 500px; display: flex; justify-content: center; align-items: center; }
.wycd-content { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transform: translateY(15px); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s; display: flex; justify-content: center; }
.wycd-content.active { position: relative; opacity: 1; visibility: visible; transform: translateY(0); }
.wycd-image { width: 100%; max-width: 860px; height: auto; border-radius: 24px; border: 1px solid rgba(148, 163, 184, 0.16); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18); display: block; margin: 0 auto; }

/* Responsive Mobile & Tablette */
@media (max-width: 992px) {
.wycd-image {  width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw);   margin-right: calc(50% - 50vw); border-radius: 0;     }
.section-wycd-dark { padding: 64px 0; }
.wycd-title { font-size: var(--home-section-title-size); }
.wycd-tabs-outer { position: relative; }
.wycd-tabs-outer.has-overflow::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 0; top: 0; bottom: 1px; width: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(to right, transparent, #07101f 60%); color: rgba(255,255,255,0.5); font-size: 0.75rem; pointer-events: none; animation: wycdScrollHint 1.5s ease-in-out infinite; z-index: 3; }
@keyframes wycdScrollHint { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.wycd-tabs-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
.wycd-tabs-wrapper::-webkit-scrollbar { display: none; }
.wycd-tabs { width: max-content; gap: 8px; }
.wycd-tab { flex: 0 0 auto; padding: 12px 16px; font-size: 0.85rem; gap: 8px; white-space: nowrap; }
.wycd-content-wrapper { min-height: 300px; touch-action: pan-y; }
.wycd-footer-cta { margin-top: 50px; gap: 18px; flex-direction: column; }
.wycd-footer-cta__lead { font-size: var(--home-card-copy-size); }
}
