/* ===== LOCAL FONTS - SCALE.COM PREMIUM STACK ===== */

/* Inter Variable - Primary body font (Scale.com pattern) */
@font-face {
        font-family: Inter;
    src: url('fonts/inter-latin-variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Geist - Small text & utility (Scale.com pattern) */
@font-face {
        font-family: Geist;
    src: url('fonts/geist-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
        font-family: Geist;
    src: url('fonts/geist-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
        font-family: Geist;
    src: url('fonts/geist-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Satoshi Variable - Headings (Aeonik alternative - Scale.com uses Aeonik) */
@font-face {
        font-family: Satoshi;
    src: url('fonts/Satoshi-Variable.woff2') format('woff2-variations');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

/* Aeonik - Premium headings font (Scale.com) */
@font-face {
        font-family: aeonik;
    src: url('fonts/aeonik-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
        font-family: aeonik;
    src: url('fonts/aeonik-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Aeonik Light (300) pour H1 */
@font-face {
    font-family: aeonik;
    src: url('fonts/aeonik-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Geist lowercase fallback */
@font-face {
        font-family: geist;
    src: url('fonts/geist-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --black-primary: #050505;
        --white: #fff;
        --gray-300: #d4d4d4;
        --gray-400: #a3a3a3;
        --gray-500: #737373;
        --gray-800: #262626;
        --blue-primary: #0084ff;
    }

    html {
        background: #050505 !important;
        font-family: Inter, "Inter Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }

    body {
        font-family: Inter, "Inter Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        background: var(--black-primary); /* fallback */
        background: #050505 !important;
        color: var(--white);
        line-height: 1.5;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Scale.com grain overlay - Premium US 2025 */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
        opacity: 0.04;
        mix-blend-mode: overlay;
        z-index: 9999;
    }

    h1, h2, h3 {
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
    }

    button {
        font-family: Inter, "Inter Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }

    /* Élimination complète des Arial */
    span, svg, path, circle, rect, line, polygon, polyline {
        font-family: inherit;
    }

    /* Announcement Bar */
    .announcement-bar {
        background: var(--black-primary);
        border-bottom: 1px solid rgb(255 255 255 / 8%);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
    }

    .announcement-icon {
        width: 18px;
        height: 18px;
        background: linear-gradient(135deg, #fff 0%, #d4d4d4 100%);
        clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    }

    .announcement-text {
        color: var(--gray-300);
        font-size: 14px;
    }

    .announcement-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s;
    }

    .announcement-link:hover {
        opacity: 0.7;
    }

    .announcement-link::after {
        content: ' →';
    }

    /* Navigation Header */
    .header {
        position: sticky;
        top: 0;
        background: rgb(0 0 15 / 80%);
        backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid rgb(255 255 255 / 8%);
        z-index: 1000;
    }

    .nav-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 32px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-left {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo {
        font-size: 24px;
        font-weight: 400;
        color: var(--white);
        text-decoration: none;
        margin-right: 48px;
    }

    .logo:hover {
        opacity: 0.7;
    }

    /* Dropdown Navigation */
    .nav-menu {
        display: flex;
        align-items: center;
        height: 100%;
        gap: 8px;
    }

    .nav-item {
        position: relative;
        height: 100%;
    }

    .nav-button {
        height: 100%;
        padding: 0 16px;
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--gray-300);
        background: none;
        border: none;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s;
        font-family: inherit;
    }

    .nav-button:hover,
    .nav-item:hover .nav-button {
        color: var(--white);
    }

    .nav-button svg {
        width: 10px;
        height: 10px;
        transition: transform 0.2s;
    }

    .nav-item:hover .nav-button svg {
        transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: rgb(10 10 10 / 98%);
        backdrop-filter: blur(40px);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgb(0 0 0 / 80%);
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .dropdown-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .dropdown-grid > div {
        display: flex;
        flex-direction: column;
    }

    .dropdown-section h4,
    .dropdown-grid h4 {
        font-size: 11px;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 12px 12px 8px;
    }

    .dropdown-link {
        display: block;
        padding: 10px 12px;
        color: var(--gray-300);
        text-decoration: none;
        font-size: 14px;
        border-radius: 6px;
        transition: all 0.2s;
        margin: 2px 0;
    }

    .dropdown-link:hover {
        background: rgb(255 255 255 / 5%);
        color: var(--white);
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
        border: none;
    }

    .btn-demo {
        background: var(--white);
        color: var(--black-primary);
    }

    .btn-demo:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgb(255 255 255 / 10%);
    }

    .btn-demo::after {
        content: ' →';
    }

    .btn-login {
        background: transparent;
        color: var(--gray-300);
    }

    .btn-login:hover {
        color: var(--white);
    }

    /* Hero Section - LAYOUT CÔTE À CÔTE */
    .hero {
        max-width: 1440px;
        margin: 0 auto;
        padding: 40px 32px 60px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .hero-content {
        flex: 0 0 50%;
        max-width: 600px;
    }

    .hero-pillars {
        font-family: geist, "geist Fallback", -apple-system, Arial, sans-serif;
        display: flex;
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
    }

    .pillar {
        font-family: geist, "geist Fallback", -apple-system, Arial, sans-serif;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--gray-300);
        font-weight: 500;
    }

    .pillar-icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pillar-icon svg {
        width: 100%;
        height: 100%;
    }

    .problem-icon,
    .feature-icon,
    .roi-icon,
    .counter-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .problem-icon svg,
    .feature-icon svg,
    .roi-icon svg,
    .counter-icon svg {
        width: 100%;
        height: 100%;
    }

    .hero-title {
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
        font-size: 72px;
        font-weight: 300;
        line-height: 80px;
        letter-spacing: 0;
        margin-bottom: 24px;
        color: var(--white);
    }

    .hero-title-accent {
        color: #BBDEF2;
    }

    .hero-description {
        font-size: 20px;
        line-height: 1.6;
        color: var(--gray-400);
        margin-bottom: 32px;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
        border: none;
        display: inline-block;
    }

    .btn-primary {
        background: var(--white);
        color: var(--black-primary);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgb(255 255 255 / 20%);
    }

    .btn-secondary {
        background: rgb(255 255 255 / 10%);
        color: var(--white);
        border: 1px solid rgb(255 255 255 / 20%);
    }

    .btn-secondary:hover {
        background: rgb(255 255 255 / 15%);
    }

    .hero-cta-subtext {
        font-size: 14px;
        color: var(--gray-500);
    }

    .hero-badges {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgb(255 255 255 / 10%);
    }

    .badge {
        font-family: geist, "geist Fallback", -apple-system, Arial, sans-serif;
        padding: 6px 12px;
        background: rgb(255 255 255 / 5%);
        border: 1px solid rgb(255 255 255 / 10%);
        border-radius: 6px;
        font-size: 12px;
        color: var(--gray-300);
        font-weight: 500;
    }

    .hero-testimonial {
        font-size: 14px;
        color: var(--gray-400);
        font-style: italic;
        margin-left: auto;
    }

    /* Blob Container - À DROITE du texte */
    .blob-container {
        flex: 0 0 45%;
        height: 700px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    #three-canvas {
        width: 100%;
        height: 100%;
        display: block;
        cursor: grab;
        background: transparent !important;
    }

    #three-canvas:active {
        cursor: grabbing;
    }

    /* Content Sections */
    .section {
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 32px;
        border-top: 1px solid rgb(255 255 255 / 8%);
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .section-title {
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--white);
    }

    .section-subtitle {
        font-size: 20px;
        color: var(--gray-400);
        line-height: 1.6;
    }

    /* Problem Section */
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 40px;
    }

    .problem-card {
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 32px;
        transition: all 0.3s;
    }

    .problem-card:hover {
        background: rgb(255 255 255 / 4%);
        border-color: rgb(255 255 255 / 15%);
        transform: translateY(-4px);
    }

    .problem-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--white);
    }

    .problem-stat {
        font-size: 32px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
    }

    .problem-card p {
        font-size: 16px;
        color: var(--gray-400);
        line-height: 1.6;
    }

    .problem-warning {
        font-size: 14px;
        color: #ff6b6b;
        font-weight: 500;
        margin-top: 8px;
    }

    .section-transition {
        text-align: center;
        font-size: 24px;
        color: var(--white);
        font-weight: 500;
        padding: 40px 0;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 40px;
        transition: all 0.3s;
    }


    .feature-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--white);
    }

    .feature-card h4 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 12px;
        color: var(--gray-300);
    }

    .feature-card p {
        font-size: 16px;
        color: var(--gray-400);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .feature-benefit {
        display: inline-block;
        padding: 8px 16px;
        background: rgb(255 255 255 / 5%);
        border-radius: 20px;
        font-size: 14px;
        color: var(--white);
        font-weight: 500;
    }

    /* ROI Section */
    .roi-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-bottom: 60px;
    }

    .roi-card {
        text-align: center;
        padding: 32px;
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
    }

    .roi-number {
        font-size: 48px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
    }

    .roi-label {
        font-size: 16px;
        color: var(--gray-400);
        margin-bottom: 4px;
    }

    .roi-detail {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 40px;
    }

    .testimonial {
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 32px;
    }

    .testimonial-quote {
        font-size: 18px;
        line-height: 1.6;
        color: var(--gray-300);
        margin-bottom: 20px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .testimonial-info {
        flex: 1;
    }

    .testimonial-name {
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
    }

    .testimonial-role {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* Capabilities Section */
    .capabilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .capability {
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 32px;
    }

    .capability h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--white);
    }

    .capability ul {
        list-style: none;
        padding: 0;
    }

    .capability li {
        font-size: 15px;
        color: var(--gray-400);
        padding: 8px 0;
        padding-left: 24px;
        position: relative;
    }

    .capability li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--gray-500);
    }

    .platforms {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .platform-icon {
        padding: 8px 16px;
        background: rgb(255 255 255 / 5%);
        border-radius: 8px;
        font-size: 14px;
        color: var(--gray-300);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Guarantees Section */
    .guarantees-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 60px;
    }

    .guarantee-card {
        background: rgb(255 255 255 / 2%);
        border: 1px solid rgb(255 255 255 / 8%);
        border-radius: 12px;
        padding: 40px;
        text-align: center;
    }

    .guarantee-badge {
        display: inline-block;
        padding: 8px 16px;
        background: rgb(255 255 255 / 10%);
        border: 1px solid rgb(255 255 255 / 20%);
        border-radius: 20px;
        font-size: 12px;
        color: var(--white);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .guarantee-card h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--white);
    }

    .guarantee-card p {
        font-size: 16px;
        color: var(--gray-400);
        line-height: 1.6;
    }

    /* Counter Section */
    .counter-box {
        background: rgb(255 255 255 / 3%);
        border: 1px solid rgb(255 255 255 / 15%);
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        margin: 40px auto;
        max-width: 600px;
    }

    .counter-number {
        font-size: 56px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
        transition: all 0.1s ease-out;
        font-variant-numeric: tabular-nums;
        letter-spacing: -0.02em;
    }

    .counter-label {
        font-size: 18px;
        color: var(--gray-300);
        margin-bottom: 12px;
    }

    .counter-detail {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* FAQ Section */
    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid rgb(255 255 255 / 8%);
        margin-bottom: 16px;
    }

    .faq-question {
        width: 100%;
        padding: 24px 0;
        background: none;
        border: none;
        color: var(--white);
        font-size: 20px;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.2s;
    }

    .faq-question:hover {
        color: var(--gray-300);
    }

    .faq-icon {
        font-size: 20px;
        transition: transform 0.3s;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        font-size: 16px;
        color: var(--gray-400);
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding-bottom: 24px;
    }

    /* CTA Final Section */
    .cta-final {
        text-align: center;
        padding: 80px 32px;
        background: rgb(255 255 255 / 2%);
        border-radius: 16px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .cta-final h2 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 24px;
        color: var(--white);
    }

    .cta-final p {
        font-size: 20px;
        color: var(--gray-400);
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-bottom: 32px;
    }

    .cta-reassurance {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* Partners Section */
    .partners {
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 32px;
        text-align: center;
        border-top: 1px solid rgb(255 255 255 / 8%);
    }

    .partners-text {
        font-size: 16px;
        color: var(--gray-400);
    }

    .partners-text strong {
        color: var(--white);
    }

    /* Footer */
    .footer {
        background: var(--black-primary);
        border-top: 1px solid rgb(255 255 255 / 8%);
        padding: 80px 0 40px;
    }

    .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-logo {
        font-size: 24px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 16px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.6;
        color: var(--gray-400);
    }

    .footer-column h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 16px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        font-size: 14px;
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-link:hover {
        color: var(--white);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 40px;
        border-top: 1px solid rgb(255 255 255 / 8%);
    }

    .footer-copy {
        font-size: 14px;
        color: var(--gray-500);
    }

    .footer-legal {
        display: flex;
        gap: 24px;
    }

    .footer-legal a {
        font-size: 14px;
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-legal a:hover {
        color: var(--white);
    }

    .footer-sovereign {
        text-align: center;
        padding-top: 24px;
        font-size: 14px;
        color: var(--gray-400);
    }

    /* Responsive */
    @media (width <= 1024px) {
        .hero {
            flex-direction: column;
            text-align: center;
        }

        .hero-content {
            flex: 1;
            max-width: 100%;
        }

        .blob-container {
            flex: 1;
            height: 500px;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-pillars {
        font-family: geist, "geist Fallback", -apple-system, Arial, sans-serif;
            justify-content: center;
        }

        .hero-badges {
            justify-content: center;
            flex-wrap: wrap;
        }

        .problem-grid,
        .features-grid,
        .roi-grid,
        .guarantees-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (width <= 768px) {
        .hero-title {
            font-size: 48px;
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
}

        .section-title {
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
            font-size: 36px;
        }

        .nav-menu {
            display: none;
        }

        .footer-top {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 16px;
        }

        .cta-buttons {
            flex-direction: column;
        }
    }

/* ===== Contact Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 15 / 95%);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgb(0 0 0 / 50%);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    border-bottom: 1px solid rgb(0 0 15 / 10%);
    background: var(--black-primary);
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgb(255 255 255 / 10%);
}

.modal-body {
    padding: 32px;
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-primary);
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgb(0 0 15 / 20%);
    border-radius: 8px;
    font-size: 15px;
        font-family: inherit;
    color: var(--black-primary);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgb(0 132 255 / 10%);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    font-size: 12px;
    color: var(--gray-500);
    text-align: right;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.btn-cancel {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgb(0 0 15 / 20%);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
        font-family: inherit;
}

.btn-cancel:hover {
    background: rgb(0 0 15 / 5%);
}

.btn-submit {
    flex: 2;
    padding: 14px 24px;
    background: var(--black-primary);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
        font-family: inherit;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    background: #1a1a2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(0 0 15 / 20%);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Trigger buttons styling */
.contact-trigger,
#contact-btn {
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (width <= 1024px) {
    .hero {
        flex-direction: column;
        padding: 60px 32px;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .blob-container {
        flex: 1;
        width: 100%;
        height: 500px;
    }

    .hero-title {
        font-size: 48px;
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
}

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all var(--transition-fast);
    }
}

@media (width <= 768px) {
    .hero-title {
        font-size: 36px;
        font-family: aeonik, "aeonik Fallback", -apple-system, Arial, sans-serif;
}

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .blob-container {
        height: 400px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ===== LOT 1 - CUSTOM CURSOR ===== */

@media (hover: none) {
    
}

@keyframes ripple-animation {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.btn,
.contact-trigger,
#contact-btn {
    position: relative;
    overflow: hidden;
}

/* ===== MICRO-INTERACTIONS ===== */

.problem-card:hover
    transform: translateY(-8px) scale(1.02);
}

.badge:hover {
    transform: scale(1.05);
}

.pillar:hover .pillar-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    50% { transform: translateY(-4px); }
}


/* ===== HORIZONTAL SCROLL SECTION - PREMIUM ===== */
.horizontal-scroll-section {
    background: var(--black-primary);
    overflow-x: clip;
    position: relative;
}

.horizontal-scroll-container {
    position: relative;
}

.horizontal-scroll-sticky {
    width: 100%;
}

.horizontal-scroll-track {
    display: flex;
    align-items: center;
}

.horizontal-slide {
    flex-shrink: 0;
}

/* Responsive: mobile = stack vertical */
@media (max-width: 768px) {
    .horizontal-slide > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .horizontal-slide {
        padding: 0 2rem !important;
    }
}
/* Évite le scroll horizontal global */
}

.horizontal-scroll-container {
    position: relative;
}

.horizontal-scroll-sticky {
    width: 100%;
    display: flex;
    align-items: center;
}

.horizontal-scroll-track {
    display: flex;
    align-items: center;
}

.horizontal-slide {
    flex-shrink: 0;
}

/* Responsive grid helper */
@media (max-width: 768px) {
    .horizontal-slide > div {
        grid-template-columns: 1fr !important;
    }
}


/* Pseudo-element pour inner glow gradient violet – VERSION SCALE EXACTE */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 70%);
    opacity: 0.7;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

/* Contenu au-dessus du pseudo-element */
.feature-card > * {
    position: relative;
    z-index: 1;
}

/* Hover state – respiration violette SUBTILE Scale.com */
.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.35) !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(139, 92, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

/* Icon container - Chrome sobre */
.feature-icon {
    width: 64px;
    height: 64px;
    color: #e4e4e7;
    margin-bottom: 0.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.08));
    transition: all 300ms ease-out;
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.15));
}

/* Titres avec couleur sobre */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #d4d4d8;
    margin: 0;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Badge benefit - ULTRA-TRANSPARENT Scale.com */
.feature-benefit {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    transition: all 300ms ease-out;
}

.feature-benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ===== FEATURE CARDS - SCALE.COM FINAL (ZÉRO VIOLET, NOIR ABSOLU) ===== */

.feature-card {
    /* Noir absolu Scale 2025 - OLED-friendly */
    background: #050303;
    background: linear-gradient(to bottom right, rgba(6, 4, 5, 0.98), rgba(3, 2, 4, 0.99));

    /* Glassmorphism fort */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    /* Bordure BLANCHE ultra-discrète - ZÉRO VIOLET */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;

    /* Box-shadow - ombre noire profonde, ZÉRO glow violet */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    /* Coins arrondis */
    border-radius: 24px;

    /* Position */
    position: relative;
    overflow: hidden;

    /* Padding et layout */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    /* Transition ÉCLAIR - 250ms comme Scale.com */
    transition: all 200ms cubic-bezier(0.05, 0.7, 0.2, 1);
}

/* Inner glow BLANC (pas violet) - optionnel mais Scale-like */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom right,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%);
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

/* Contenu au-dessus */
.feature-card > * {
    position: relative;
    z-index: 1;
}

/* Hover - contraste blanc/gris UNIQUEMENT, ZÉRO violet */
.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.20) !important;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

/* Icon container - Chrome pur */
.feature-icon {
    width: 64px;
    height: 64px;
    color: #e4e4e7;
    margin-bottom: 0.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 200ms cubic-bezier(0.05, 0.7, 0.2, 1);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.15));
}

/* Titres */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #d4d4d8;
    margin: 0;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Pills - BLANC PUR, quasi transparent, ZÉRO violet */
.feature-benefit {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    color: #ffffff;  /* BLANC PUR 100% - hyper lisible */
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-top: auto;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    transition: all 200ms cubic-bezier(0.05, 0.7, 0.2, 1);
}

.feature-benefit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}
