﻿    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body.postcard-landing {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: #171717;
        background: #fff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        line-height: 1.6;
    }
    .postcard-landing h1, .postcard-landing h2, .postcard-landing h3, .postcard-landing h4 {
        line-height: 1.15;
        letter-spacing: -0.02em;
    }
    .postcard-landing a { text-decoration: none; color: inherit; }
    .postcard-landing img { max-width: 100%; height: auto; }

    /* ===== LAYOUT ===== */
    /* Vertical rail lines (decorative overlay) */
    .pc-rails {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        height: 100vh;
        border-left: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
        pointer-events: none;
        z-index: 50;
    }
    .pc-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    .pc-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    @media (min-width: 640px) { .pc-container { padding: 0 3rem; } }

    /* ===== NAVBAR ===== */
    .pc-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .pc-nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100px;
        padding: 0 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    .pc-logo {
        font-size: 1.25rem;
        font-weight: 800;
        color: #171717;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .pc-logo img {
        margin-top: -15px;
        max-width: none;
        height: 80px;
        width: auto;
        object-fit: contain;
    }
    .pc-nav-links { display: none; gap: 2rem; align-items: center; }
    @media (min-width: 768px) { .pc-nav-links { display: flex; } }
    .pc-nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: #525252;
        transition: color 0.15s;
    }
    .pc-nav-links a:hover { color: #171717; }

    /* Hamburger menu */
    .pc-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 200;
    }
    .pc-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #171717;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .pc-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .pc-hamburger.active span:nth-child(2) { opacity: 0; }
    .pc-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    @media (min-width: 768px) { .pc-hamburger { display: none; } }

    .pc-mobile-menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 150;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .pc-mobile-menu.active { display: flex; }
    .pc-mobile-menu a {
        font-size: 1.25rem;
        font-weight: 600;
        color: #171717;
        text-decoration: none;
        transition: color 0.15s;
    }
    .pc-mobile-menu a:hover { color: #2b6cb0; }
    .pc-mobile-menu .pc-nav-cta {
        margin-top: 1rem;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    @media (min-width: 768px) { .pc-mobile-menu { display: none !important; } }

    .pc-nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        background: #2b6cb0;
        color: #fff !important;
        font-size: 0.8125rem;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.15s;
        border: 1px solid #2b6cb0;
    }
    .pc-nav-cta:hover { background: #2b6cb0; border-color: #2b6cb0; }

    /* ===== HERO ===== */
    .pc-hero {
        position: relative;
        padding: 3rem 0 2rem;
        text-align: center;
        overflow: visible;
        width: 100%;
        z-index: 55;
    }
    @media (min-width: 640px) { .pc-hero { padding: 5rem 0 4rem; } }
    @media (min-width: 768px) { .pc-hero { padding: 6rem 0 5rem; } }
    .pc-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(254,113,0,0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    .pc-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #b55200;
        background: rgba(254,113,0,0.08);
        border: 1px solid rgba(254,113,0,0.2);
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        margin-bottom: 1rem;
    }
    @media (min-width: 640px) { .pc-pill { font-size: 0.9375rem; margin-bottom: 1.5rem; } }
    .pc-hero h1 {
        font-size: 1.75rem;
        font-weight: 500;
        color: #0a0a0a;
        max-width: 720px;
        margin: 0 auto 1rem;
    }
    @media (min-width: 640px) { .pc-hero h1 { font-size: 3.25rem; margin-bottom: 1.5rem; } }
    @media (min-width: 1024px) { .pc-hero h1 { font-size: 4rem; } }
    .pc-hero-mark {
        background: linear-gradient(180deg, transparent 55%, rgba(254,113,0,0.25) 55%, rgba(254,113,0,0.25) 90%, transparent 90%);
        padding: 0 0.15em;
    }
    .pc-hero-sub {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #525252;
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }
    @media (min-width: 640px) { .pc-hero-sub { font-size: 1.1875rem; line-height: 1.7; margin: 0 auto 2.5rem; } }

    /* ===== BUTTONS ===== */
    .pc-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        font-weight: 600;
        padding: 0.75rem 1.75rem;
        border-radius: 0.625rem;
        transition: all 0.2s;
        cursor: pointer;
        border: none;
    }
    .pc-btn-primary { color: #fff !important;
        background: #2b6cb0;
        color: #fff;
        box-shadow: 0 1px 2px rgba(43,108,176,0.3);
    }
    .pc-btn-primary:hover {
        background: #2b6cb0;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(43,108,176,0.35);
    }
    .pc-btn-secondary {
        background: #fff;
        color: #171717;
        border: 1px solid #d4d4d4;
    }
    .pc-btn-secondary:hover {
        background: #fafafa;
        border-color: #a3a3a3;
    }
    .pc-btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    /* ===== BADGES ===== */
    .pc-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.625rem;
        margin-top: 2rem;
    }
    .pc-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #737373;
        border: 1px solid #e5e5e5;
        padding: 0.375rem 0.875rem;
        border-radius: 9999px;
        background: #fff;
    }
    .pc-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ===== SECTIONS ===== */
    .pc-section {
        padding: 3.5rem 0;
        position: relative;
        z-index: 1;
    }
    @media (min-width: 640px) { .pc-section { padding: 5rem 0; } }
    .pc-hero.pc-section {
        z-index: 55;
    }
    .pc-section--prob {
        z-index: 10;
        overflow: visible;
    }
    @media (min-width: 768px) { .pc-section { padding: 6rem 0; } }
    .pc-section--muted { background: rgba(254,113,0,0.04); }
    /* Content constrained to rail width */
    .pc-section > .pc-container {
        max-width: 1200px;
    }
    /* Dotted separator between sections (full width) */
    .pc-dotted-sep {
        width: 100%;
        height: 1px;
        background-image: radial-gradient(circle, #d4d4d4 1px, transparent 1px);
        background-size: 8px 1px;
        background-repeat: repeat-x;
        background-position: center;
        position: relative;
        z-index: 0;
    }
    .pc-section-header {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 2rem;
    }
    @media (min-width: 640px) { .pc-section-header { margin: 0 auto 3.5rem; } }
    .pc-section-label {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #fe7100;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }
    .pc-section-title {
        font-size: 2rem;
        font-weight: 500;
        color: #0a0a0a;
        margin-bottom: 1rem;
    }
    @media (min-width: 640px) { .pc-section-title { font-size: 2.5rem; } }
    .pc-section-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #525252;
    }

    /* ===== CARDS ===== */
    .pc-grid { display: grid; gap: 1px; max-width: 1200px; margin-left: auto; margin-right: auto; }
    .pc-grid--3 { grid-template-columns: 1fr; }
    @media (min-width: 768px) { .pc-grid--3 { grid-template-columns: repeat(3, 1fr); } }
    .pc-grid--4 { grid-template-columns: 1fr; }
    @media (min-width: 640px) { .pc-grid--4 { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .pc-grid--4 { grid-template-columns: repeat(4, 1fr); } }

    .pc-card {
        background: #fff;
        padding: 2rem;
        transition: background 0.2s;
    }
    .pc-card:hover { background: #fafafa; }
    .pc-card-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }
    .pc-card-icon svg { width: 22px; height: 22px; }
    .pc-card-icon--red { background: #fef2f2; color: #dc2626; }
    .pc-card-icon--amber { background: #fffbeb; color: #d97706; }
    .pc-card-icon--indigo { background: rgba(254,113,0,0.1); color: #fe7100; }
    .pc-card-icon--emerald { background: #e8eef5; color: #2b6cb0; }
    .pc-card h3 {
        font-size: 1.0625rem;
        font-weight: 600;
        color: #0a0a0a;
        margin-bottom: 0.5rem;
    }
    .pc-card p {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: #525252;
    }

    /* ===== STEPS ===== */
    .pc-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: #fff;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (min-width: 1024px) {
        .pc-steps { grid-template-columns: repeat(4, 1fr); }
    }
    .pc-step {
        background: #fff;
        padding: 1.25rem 1rem;
        text-align: center;
        position: relative;
    }
    @media (min-width: 768px) { .pc-step { padding: 2rem; } }
    .pc-step:hover { background: #fafafa; }
    .pc-step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 9999px;
        background: transparent;
        font-weight: 700;
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        border: 2px solid currentColor;
    }
    .pc-step-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }
    .pc-step-icon svg { width: 32px; height: 32px; }
    .pc-step h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #0a0a0a;
        margin-bottom: 0.5rem;
    }
    .pc-step p {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #525252 !important;
    }

    /* ===== HIGHLIGHT BOX ===== */
    .pc-highlight {
        max-width: 680px;
        margin: 0 auto 3rem;
        padding: 2rem 2.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(254,113,0,0.04) 0%, #fff 100%);
        border: 1px solid rgba(254,113,0,0.15);
        text-align: center;
    }
    .pc-highlight p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #404040;
    }

    /* ===== AUDIENCE CARDS ===== */
    .pc-audience-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        background: transparent;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (min-width: 768px) { .pc-audience-grid { grid-template-columns: repeat(3, 1fr); } }
    .pc-audience-card {
        background: #fff;
        padding: 2rem;
        border-radius: 14px;
        border: 1px solid #e5e5e5;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .pc-audience-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .pc-audience-card .pc-card-icon { margin-bottom: 1rem; }
    .pc-audience-card h3 {
        font-size: 1.0625rem;
        font-weight: 600;
        color: #0a0a0a;
        margin-bottom: 0.5rem;
    }
    .pc-audience-card p {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: #525252;
    }

    /* ===== RGPD ===== */
    .pc-rgpd-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }
    @media (min-width: 768px) { .pc-rgpd-grid { grid-template-columns: 1fr 1fr; } }
    .pc-rgpd-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        background: #e8eef5;
        border-radius: 12px;
        border: 1px solid #d1fae5;
    }
    .pc-rgpd-visual svg { width: 120px; height: 100px; color: #2b6cb0; opacity: 0.7; }
    .pc-check-list { list-style: none; display: grid; gap: 1.25rem; }
    .pc-check-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .pc-check-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: #2b6cb0;
        margin-top: 2px;
    }
    .pc-check-item span {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: #404040;
    }
    .pc-check-item strong { color: #0a0a0a; }

    /* ===== FINAL CTA ===== */
    .pc-cta-section {
        padding: 6rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .pc-cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(254,113,0,0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    .pc-cta-title {
        font-size: 2rem;
        font-weight: 500;
        color: #0a0a0a;
        max-width: 500px;
        margin: 0 auto 1rem;
    }
    @media (min-width: 640px) { .pc-cta-title { font-size: 2.5rem; } }
    .pc-cta-desc {
        font-size: 1.0625rem;
        color: #525252;
        margin-bottom: 2rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ===== FOOTER ===== */
    .pc-footer {
        padding: 3rem 0;
        text-align: center;
        color: #a3a3a3;
        font-size: 0.8125rem;
        width: 100%;
    }
    .pc-footer a { color: #737373; transition: color 0.15s; }
    .pc-footer a:hover { color: #171717; }
    .pc-footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }


    /* ===== MODALES CGV / CONFIDENTIALITE ===== */
    .pc-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 9000;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    .pc-modal-overlay.active { display: flex; }
    .pc-modal {
        background: #fff;
        border-radius: 12px;
        max-width: 760px;
        width: 100%;
        max-height: 85vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0,0,0,0.18);
        position: relative;
    }
    .pc-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.75rem;
        border-bottom: 1px solid #e5e5e5;
        flex-shrink: 0;
    }
    .pc-modal-header h2 {
        font-size: 1.125rem;
        font-weight: 700;
        color: #171717;
        margin: 0;
    }
    .pc-modal-close {
        background: none;
        border: none;
        cursor: pointer;
        color: #737373;
        font-size: 1.5rem;
        line-height: 1;
        padding: 0.25rem;
        transition: color 0.15s;
    }
    .pc-modal-close:hover { color: #171717; }
    .pc-modal-body {
        overflow-y: auto;
        padding: 1.75rem;
        flex: 1;
        font-size: 0.9rem;
        color: #404040;
        line-height: 1.7;
    }
    .pc-modal-body h2 {
        font-size: 1rem;
        font-weight: 700;
        color: #171717;
        margin: 1.5rem 0 0.5rem;
    }
    .pc-modal-body h3 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #171717;
        margin: 1.25rem 0 0.4rem;
    }
    .pc-modal-body ul {
        padding-left: 1.25rem;
        margin: 0.5rem 0;
    }
    .pc-modal-body li { margin-bottom: 0.3rem; }
    .pc-modal-body p { margin: 0.5rem 0; }
    .pc-modal-body a { color: #2563eb; text-decoration: underline; }
    .pc-modal-body table {
        width: 100%;
        border-collapse: collapse;
        margin: 0.75rem 0;
        font-size: 0.85rem;
    }
    .pc-modal-body th, .pc-modal-body td {
        text-align: left;
        padding: 0.5rem 0.75rem;
        border: 1px solid #e5e5e5;
    }
    .pc-modal-body th { background: #f5f5f5; font-weight: 600; }
    .pc-modal-body strong { font-weight: 600; color: #262626; }
    .pc-modal-body .pc-modal-updated {
        font-size: 0.8rem;
        color: #737373;
        margin-bottom: 1rem;
    }

    /* ===== STAT BAR ===== */
    .pc-stat-bar {
        display: flex;
        justify-content: center;
        gap: 3rem;
        padding: 2.5rem 0;
        flex-wrap: wrap;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 0;
    }
    .pc-stat { text-align: center; }
    .pc-stat-value {
        font-size: 2.25rem;
        font-weight: 600;
        color: #0a0a0a;
        letter-spacing: -0.02em;
        line-height: 1;
    }
    .pc-stat-label {
        font-size: 0.8125rem;
        color: #737373;
        margin-top: 0.25rem;
        font-weight: 500;
    }

    /* ===== ANIMATIONS ===== */
    .pc-animate {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .pc-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    .pc-animate-delay-1 { transition-delay: 0.1s; }
    .pc-animate-delay-2 { transition-delay: 0.2s; }
    .pc-animate-delay-3 { transition-delay: 0.3s; }
    .pc-animate-delay-4 { transition-delay: 0.4s; }
    /* Disable animations on mobile for fonctionnement section */
    @media (max-width: 767px) {
        #fonctionnement .pc-animate {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

    /* ===== BOUNCE IN ===== */
    .pc-bounce {
        opacity: 0;
        transform: scale(0.3);
    }
    .pc-bounce.is-bounced {
        animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .pc-bounce-delay-1.is-bounced { animation-delay: 0.15s; }
    .pc-bounce-delay-2.is-bounced { animation-delay: 0.3s; }
    @keyframes bounceIn {
        0%   { opacity: 0; transform: scale(0.3); }
        50%  { opacity: 1; transform: scale(1.05); }
        70%  { transform: scale(0.95); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* ===== HERO POSTCARD ILLUSTRATION ===== */
    .pc-hero-layout {
        position: relative;
    }
    .pc-hero-postcard {
        display: block;
        margin: 2.5rem auto 0;
        width: 260px;
        height: auto;
        pointer-events: none;
        transform: rotate(-4deg);
    }
    @media (min-width: 1024px) {
        .pc-hero-postcard {
            position: absolute;
            right: 50%;
            top: 50%;
            transform: translateY(-50%) rotate(-6deg);
            width: 210px;
            z-index: 100;
            margin: 0;
            margin-right: -620px;
        }
    }
    @media (min-width: 1200px) {
        .pc-hero-postcard {
            width: 230px;
            margin-right: -640px;
        }
    }
    .pc-postcard-shadow {
        filter: drop-shadow(0 6px 16px rgba(0,0,0,0.10)) drop-shadow(0 2px 4px rgba(0,0,0,0.06));
    }

    /* ===== INLINE LOGO ===== */
    .pc-inline-logo {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        object-fit: cover;
        vertical-align: text-bottom;
        margin-right: 2px;
    }

    /* ===== QUOTE ===== */
    .pc-quote {
        max-width: 600px;
        margin: 3rem auto 0;
        text-align: center;
        font-style: italic;
    }
    .pc-quote p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #525252;
    }
    .pc-quote-author {
        margin-top: 1rem;
        font-style: normal;
        font-size: 0.875rem;
        font-weight: 600;
        color: #0a0a0a;
    }

    /* ===== GRID & DOT PATTERNS (Dub.co style) ===== */
    .pc-grid-bg, .pc-dots-bg {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
        pointer-events: none;
        z-index: 0;
    }
    .pc-grid-bg svg, .pc-dots-bg svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    /* Fade from top */
    .pc-grid-bg--fade-top {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    }
    /* Radial halo: grid visible at edges, fades out under center text */
    .pc-grid-bg--halo {
        -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 45%, transparent 0%, transparent 30%, rgba(0,0,0,0.3) 55%, black 80%);
        mask-image: radial-gradient(ellipse 50% 45% at 50% 45%, transparent 0%, transparent 30%, rgba(0,0,0,0.3) 55%, black 80%);
    }
    /* Fade from bottom */
    .pc-grid-bg--fade-bottom {
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%);
        mask-image: linear-gradient(to top, transparent 0%, black 40%);
    }
    /* Radial fade (center visible) */
    .pc-grid-bg--radial {
        -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
    }
    /* Fade from bottom-center */
    .pc-grid-bg--fade-up, .pc-dots-bg--fade-up {
        -webkit-mask-image: linear-gradient(to top, black 0%, transparent 60%);
        mask-image: linear-gradient(to top, black 0%, transparent 60%);
    }
    /* Dots: fade from top */
    .pc-dots-bg--fade-top {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    }
    /* Dots: radial center */
    .pc-dots-bg--radial {
        -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
        mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
    }
    /* Dots: fade bottom */
    .pc-dots-bg--fade-bottom {
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 50%);
        mask-image: linear-gradient(to top, transparent 0%, black 50%);
    }

    /* Ensure content is above grid */
    .pc-hero .pc-container,
    .pc-cta-section .pc-container,
    .pc-section .pc-container {
        position: relative;
        z-index: 1;
    }

    /* ===== PROBLEMATIQUE PARALLAX ===== */
    .pc-prob-scene {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        height: 240px;
        display: flex;
        justify-content: center;
    }
    .pc-float-card--prob-1,
    .pc-float-card--prob-2,
    .pc-float-card--prob-3 {
        width: 320px;
    }
    .pc-float-card--prob-1 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        transform: rotate(-2deg);
    }
    .pc-float-card--prob-2 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) rotate(0.5deg);
        top: 30px;
        z-index: 3;
    }
    .pc-float-card--prob-3 {
        position: absolute;
        right: 0;
        top: 10px;
        z-index: 2;
        transform: rotate(1.5deg);
    }
    @media (max-width: 767px) {
        .pc-prob-scene {
            height: auto;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .pc-prob-scene .pc-float-card.pc-float-card--prob-1,
        .pc-prob-scene .pc-float-card.pc-float-card--prob-2,
        .pc-prob-scene .pc-float-card.pc-float-card--prob-3 {
            position: relative !important;
            left: auto; right: auto; top: auto;
            width: 90%;
            max-width: 360px;
            transform: none !important;
        }
        .pc-prob-scene .pc-float-card--prob-2 {
            margin-bottom: 30px;
        }
    }

    /* ===== PARALLAX SHOWCASE ===== */
    .pc-parallax {
        position: relative;
        overflow: hidden;
        padding: 6rem 0 8rem;
        background: #fff;
    }
    .pc-parallax-header {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 4rem;
        position: relative;
        z-index: 2;
        padding: 0 1.5rem;
    }
    .pc-parallax-header h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #0a0a0a;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }
    @media (min-width: 640px) { .pc-parallax-header h2 { font-size: 2.5rem; } }
    .pc-parallax-header p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #525252;
    }
    .pc-parallax-scene {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        height: 520px;
    }
    @media (max-width: 767px) { .pc-parallax-scene { height: 900px; } }
    .pc-float-card {
        position: absolute;
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e5e5;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
        overflow: hidden;
        transition: transform 0.1s linear;
        will-change: transform;
    }
    /* Card 1: Postcart mockup - left */
    .pc-float-card--postcard {
        width: 340px;
        left: 5%;
        top: 20px;
        z-index: 3;
        transform: rotate(-4deg);
    }
    /* Card 2: Dashboard - right */
    .pc-float-card--dashboard {
        width: 380px;
        right: 5%;
        top: 0;
        z-index: 2;
        transform: rotate(3deg);
    }
    /* Card 3: Mini stats - center bottom */
    .pc-float-card--stats {
        width: 300px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
        bottom: 0;
        z-index: 4;
    }
    @media (max-width: 767px) {
        .pc-float-card--postcard,
        .pc-float-card--dashboard,
        .pc-float-card--stats {
            position: relative;
            left: auto; right: auto; top: auto; bottom: auto;
            width: 90%;
            max-width: 360px;
            margin: 0 auto 1.5rem;
            transform: none !important;
        }
        .pc-parallax-scene { display: flex; flex-direction: column; align-items: center; }
    }
    /* Postcart inner */
    .pc-mockup-postcard {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .pc-mockup-postcard-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .pc-mockup-stamp {
        width: 52px;
        height: 52px;
        border: 2px dashed #d4d4d4;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #a3a3a3;
        background: #fafafa;
    }
    .pc-mockup-brand {
        font-size: 0.75rem;
        font-weight: 600;
        color: #fe7100;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .pc-mockup-msg {
        font-size: 0.875rem;
        line-height: 1.5;
        color: #404040;
        font-style: italic;
        border-left: 3px solid #fe7100;
        padding-left: 0.75rem;
    }
    .pc-mockup-promo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(254,113,0,0.06);
        border-radius: 8px;
        border: 1px dashed rgba(254,113,0,0.3);
    }
    .pc-mockup-qr {
        width: 48px;
        height: 48px;
        background: #0a0a0a;
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(5,1fr);
        grid-template-rows: repeat(5,1fr);
        gap: 1px;
        padding: 4px;
    }
    .pc-mockup-qr span {
        background: #fff;
        border-radius: 1px;
    }
    .pc-mockup-qr span:nth-child(2),
    .pc-mockup-qr span:nth-child(4),
    .pc-mockup-qr span:nth-child(6),
    .pc-mockup-qr span:nth-child(8),
    .pc-mockup-qr span:nth-child(10),
    .pc-mockup-qr span:nth-child(13),
    .pc-mockup-qr span:nth-child(15),
    .pc-mockup-qr span:nth-child(17),
    .pc-mockup-qr span:nth-child(20),
    .pc-mockup-qr span:nth-child(22) {
        background: #0a0a0a;
    }
    .pc-mockup-promo-text {
        font-size: 0.8125rem;
        color: #525252;
    }
    .pc-mockup-promo-code {
        font-size: 1rem;
        font-weight: 700;
        color: #0a0a0a;
        letter-spacing: 0.08em;
    }

    /* Dashboard inner */
    .pc-mockup-dash {
        padding: 0;
    }
    .pc-mockup-dash-header {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .pc-mockup-dash-header svg { width: 18px; height: 18px; color: #fe7100; }
    .pc-mockup-dash-header span {
        font-size: 0.8125rem;
        font-weight: 600;
        color: #0a0a0a;
    }
    .pc-mockup-dash-stats {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .pc-mockup-dash-stat {
        padding: 1rem 1.25rem;
        border-right: 1px solid #f0f0f0;
    }
    .pc-mockup-dash-stat:last-child { border-right: none; }
    .pc-mockup-dash-stat-val {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0a0a0a;
    }
    .pc-mockup-dash-stat-label {
        font-size: 0.6875rem;
        color: #a3a3a3;
        margin-top: 2px;
    }
    .pc-mockup-dash-rows { padding: 0; }
    .pc-mockup-dash-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.625rem 1.25rem;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.8125rem;
    }
    .pc-mockup-dash-row:last-child { border-bottom: none; }
    .pc-mockup-dash-row-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #404040;
    }
    .pc-mockup-dash-row-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
    .pc-mockup-dash-row-right {
        font-weight: 600;
        color: #0a0a0a;
    }
    .pc-mockup-dash-row-tag {
        font-size: 0.6875rem;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 0.5rem;
    }

    /* Stats mini card */
    .pc-mockup-mini {
        padding: 1.25rem 1.5rem;
    }
    .pc-mockup-mini-title {
        font-size: 0.75rem;
        font-weight: 600;
        color: #a3a3a3;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.75rem;
    }
    .pc-mockup-mini-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    .pc-mockup-mini-row:last-child { margin-bottom: 0; }
    .pc-mockup-mini-label {
        font-size: 0.8125rem;
        color: #525252;
    }
    .pc-mockup-mini-bar-wrap {
        width: 100px;
        height: 6px;
        background: #f0f0f0;
        border-radius: 3px;
        overflow: hidden;
    }
    .pc-mockup-mini-bar {
        height: 100%;
        border-radius: 3px;
    }

    /* Hide WP admin bar spacing */
    html { margin-top: 0 !important; }
    #wpadminbar { display: none; }

    /* ===== PRICING CARDS ===== */
    .pc-pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    @media (min-width: 768px) { .pc-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
    .pc-pricing-card {
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e5e5;
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .pc-pricing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .pc-pricing-card.recommended {
        border: 2px solid #fe7100;
    }
    .pc-pricing-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: #fe7100;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 0.25rem 1rem;
        border-radius: 9999px;
        white-space: nowrap;
    }
    .pc-pricing-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 0.5rem;
    }
    .pc-pricing-price {
        font-size: 2.75rem;
        font-weight: 800;
        color: #0a0a0a;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    .pc-pricing-price span {
        font-size: 1rem;
        font-weight: 500;
        color: #737373;
    }
    .pc-pricing-tagline {
        font-size: 0.875rem;
        color: #737373;
        margin-top: 0.25rem;
        margin-bottom: 1.5rem;
    }
    .pc-pricing-credits {
        display: inline-block;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #fe7100;
        background: rgba(254,113,0,0.08);
        border: 1px solid rgba(254,113,0,0.2);
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        margin-bottom: 1.5rem;
    }
    .pc-pricing-features {
        list-style: none;
        text-align: left;
        display: grid;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .pc-pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.875rem;
        line-height: 1.5;
        color: #404040;
    }
    .pc-pricing-features li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: #2b6cb0;
        margin-top: 1px;
    }
    .pc-pricing-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 0.9375rem;
        font-weight: 600;
        padding: 0.75rem 1.75rem;
        border-radius: 0.625rem;
        transition: all 0.2s;
        cursor: pointer;
        border: 1px solid #d4d4d4;
        background: #fff;
        color: #171717;
    }
    .pc-pricing-cta:hover { background: #fafafa; border-color: #a3a3a3; }
    .pc-pricing-cta--primary {
        background: #fe7100;
        color: #fff;
        border-color: #fe7100;
        box-shadow: 0 1px 2px rgba(254,113,0,0.3);
    }
    .pc-pricing-cta--primary:hover {
        background: #d45f00;
        border-color: #d45f00;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(254,113,0,0.35);
    }
    .pc-pricing-note {
        text-align: center;
        margin-top: 2.5rem;
    }
    .pc-pricing-note p {
        font-size: 0.9375rem;
        line-height: 1.7;
        color: #525252;
        margin-bottom: 0.75rem;
    }
    .pc-pricing-note p.pc-pricing-note--small {
        font-size: 0.8125rem;
        color: #737373;
    }
    .pc-pricing-note a {
        color: #fe7100;
        font-weight: 500;
        transition: color 0.15s;
    }
    .pc-pricing-note a:hover { color: #b55200; }

    /* ===== MULTICANAL BULLET LIST ===== */
    .pc-card-bullets {
        list-style: none;
        display: grid;
        gap: 0.625rem;
        margin-top: 0.75rem;
    }
    .pc-card-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.9375rem;
        line-height: 1.65;
        color: #525252;
    }
    .pc-card-bullets li::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #fe7100;
        flex-shrink: 0;
        margin-top: 8px;
    }
    .pc-multicanal-closing {
        max-width: 680px;
        margin: 3rem auto 0;
        text-align: center;
    }
    .pc-multicanal-closing p {
        font-size: 1.0625rem;
        line-height: 1.7;
        color: #525252;
    }

    /* ===== MULTICANAL FLOATING MESSAGES ===== */
    .pc-multi-float-wa,
    .pc-multi-float-sms {
        display: none;
        position: absolute;
        z-index: 60;
        pointer-events: none;
    }
    @media (min-width: 1024px) {
        .pc-multi-float-wa,
        .pc-multi-float-sms {
            display: block;
        }
        .pc-multi-float-wa {
            right: -6rem;
            top: 8%;
            width: 210px;
            transform: rotate(-5deg);
        }
        .pc-multi-float-sms {
            right: -5rem;
            top: 62%;
            width: 185px;
            transform: rotate(4deg);
        }
    }
    @media (min-width: 1200px) {
        .pc-multi-float-wa {
            right: -5rem;
            width: 230px;
        }
        .pc-multi-float-sms {
            right: -4rem;
            top: 65%;
            width: 200px;
        }
    }

    /* ===== TARIF COMPARISON TABLE ===== */
    .pc-tarif-wrapper {
        max-width: 960px;
        margin: 0 auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pc-tarif-table {
        width: 100%;
        min-width: 640px;
        border-collapse: separate;
        border-spacing: 0;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }
    .pc-tarif-table th,
    .pc-tarif-table td {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        line-height: 1.5;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .pc-tarif-table th:first-child,
    .pc-tarif-table td:first-child {
        text-align: left;
        font-weight: 500;
        color: #525252;
        min-width: 200px;
    }
    /* Header row */
    .pc-tarif-table thead th {
        padding: 1.25rem 1.25rem 1rem;
        vertical-align: bottom;
        border-bottom: 2px solid #e5e5e5;
        background: #fafafa;
    }
    .pc-tarif-table thead th:first-child {
        background: #fafafa;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #737373;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .pc-tarif-th-name {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 0.125rem;
    }
    .pc-tarif-th-price {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0a0a0a;
        letter-spacing: -0.02em;
    }
    .pc-tarif-th-price span {
        font-size: 0.8125rem;
        font-weight: 500;
        color: #737373;
    }
    /* Growth highlighted column */
    .pc-tarif-col-growth {
        border-left: 2px solid #fe7100;
        border-right: 2px solid #fe7100;
    }
    .pc-tarif-table thead th.pc-tarif-col-growth {
        background: #fe7100;
        position: relative;
    }
    .pc-tarif-table thead th.pc-tarif-col-growth .pc-tarif-th-name,
    .pc-tarif-table thead th.pc-tarif-col-growth .pc-tarif-th-price,
    .pc-tarif-table thead th.pc-tarif-col-growth .pc-tarif-th-price span {
        color: #fff;
    }
    .pc-tarif-badge {
        display: inline-block;
        background: rgba(255,255,255,0.25);
        color: #fff;
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 0.2rem 0.75rem;
        border-radius: 9999px;
        margin-bottom: 0.375rem;
    }
    /* Section label rows */
    .pc-tarif-section-row td {
        background: #f7f7f8;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #737373;
        padding: 0.625rem 1.25rem;
    }
    /* Unit price emphasis */
    .pc-tarif-price-val {
        font-size: 1rem;
        font-weight: 700;
        color: #0a0a0a;
    }
    .pc-tarif-col-growth .pc-tarif-price-val {
        color: #fe7100;
    }
    .pc-tarif-free {
        font-size: 0.875rem;
        font-weight: 600;
        color: #2b6cb0;
    }
    /* Check / cross */
    .pc-tarif-check {
        color: #2b6cb0;
        font-size: 1.125rem;
        font-weight: 700;
    }
    .pc-tarif-cross {
        color: #d4d4d4;
        font-size: 1.125rem;
    }
    /* Feature value text */
    .pc-tarif-table td {
        color: #404040;
    }
    /* CTA row */
    .pc-tarif-cta-row td {
        border-bottom: none;
        padding: 1.25rem;
        background: #fafafa;
    }
    .pc-tarif-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0.625rem 1.5rem;
        border-radius: 0.5rem;
        transition: all 0.2s;
        cursor: pointer;
        border: 1px solid #d4d4d4;
        background: #fff;
        color: #171717;
        text-decoration: none;
    }
    .pc-tarif-cta:hover { background: #fafafa; border-color: #a3a3a3; }
    .pc-tarif-cta--primary {
        background: #2b6cb0;
        color: #fff;
        border-color: #2b6cb0;
        box-shadow: 0 1px 2px rgba(254,113,0,0.3);
    }
    .pc-tarif-cta--primary,
    .pc-tarif-cta--primary:hover,
    .pc-tarif-cta--primary:visited,
    .pc-tarif-cta--primary:active {
        background: #2b6cb0 !important;
        color: #fff !important;
        border-color: #2b6cb0 !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(43,108,176,0.35);
    }
    /* Last row corners */
    .pc-tarif-cta-row td:first-child { border-bottom-left-radius: 14px; }
    .pc-tarif-cta-row td:last-child { border-bottom-right-radius: 14px; }
    /* Alternating row tint */
    .pc-tarif-table tbody tr:nth-child(even):not(.pc-tarif-section-row):not(.pc-tarif-cta-row) td {
        background: #fafbfc;
    }
    .pc-tarif-table tbody tr:nth-child(even):not(.pc-tarif-section-row):not(.pc-tarif-cta-row) td.pc-tarif-col-growth {
        background: rgba(254,113,0,0.04);
    }
    /* Growth column subtle bg on odd rows too */
    .pc-tarif-table tbody tr:not(.pc-tarif-section-row):not(.pc-tarif-cta-row) td.pc-tarif-col-growth {
        background: rgba(254,113,0,0.03);
    }
    .pc-tarif-table tbody tr:nth-child(even):not(.pc-tarif-section-row):not(.pc-tarif-cta-row) td.pc-tarif-col-growth {
        background: rgba(254,113,0,0.06);
    }
    /* Bottom border of growth column on last body row before CTA */
    .pc-tarif-cta-row td.pc-tarif-col-growth {
        border-left: 2px solid #fe7100;
        border-right: 2px solid #fe7100;
        border-bottom: 2px solid #fe7100;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    /* Responsive: on mobile, show scroll hint */
    @media (max-width: 767px) {
        .pc-tarif-wrapper {
            margin: 0 -1rem;
            padding: 0 1rem;
            position: relative;
        }
        .pc-tarif-wrapper::after {
            content: '← glissez →';
            display: block;
            text-align: center;
            font-size: 0.75rem;
            color: #a3a3a3;
            margin-top: 0.5rem;
        }
        .pc-tarif-table th,
        .pc-tarif-table td {
            padding: 0.75rem 0.875rem;
            font-size: 0.8125rem;
        }
        .pc-tarif-th-price {
            font-size: 1.25rem;
        }
    }