/* KOZALIA RESPONSIVE + CURSOR DOT */
:root {
    --bg-dark: #030305;
    --c-dev: #8b5cf6;
    --c-event: #f59e0b;
    --c-design: #ec4899;
    --c-video: #06b6d4;
    --c-com: #10b981;
    --c-saas: #6366f1;
    --text: #ffffff;
    --font-main: 'Space Grotesk', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none;
}

/* CURSEUR CUSTOM : POINT BLANC */
.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.cursor-dot.hover {
    width: 20px;
    height: 20px;
    background: var(--c-design);
    box-shadow: 0 0 20px var(--c-design);
}

/* CURSOR GLOW (Halo) */
.cursor-glow {
    position: fixed; top: 0; left: 0; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(3, 3, 5, 0) 70%);
    transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
    mix-blend-mode: screen; transition: width 0.3s, height 0.3s;
}

/* PARTICLES */
#particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR GLASS */
.navbar {
    padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 100;
    background: rgba(3, 3, 5, 0.5); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-nav { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #fff; text-decoration: none; cursor: none; }
.dot { color: var(--c-design); }

/* BURGER MENU (Mobile) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
}
.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; cursor: none; }
.btn-gradient-nav {
    background: linear-gradient(90deg, var(--c-dev), var(--c-design));
    padding: 8px 20px; border-radius: 4px; color: white; border: none; font-weight: 700; cursor: none;
}

/* HERO */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; position: relative; padding-top: 80px;
}
.hero-container { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* ORBIT SYSTEM & LOGO */
.orbit-system {
    position: relative; width: 450px; height: 450px;
    display: flex; justify-content: center; align-items: center; margin-bottom: 40px;
}
.center-logo-img { 
    z-index: 10; width: 250px; height: 250px;
    display: flex; justify-content: center; align-items: center;
}
.logo-animate {
    width: 100%; height: auto;
    filter: invert(1) brightness(2) drop-shadow(0 0 15px rgba(255,255,255,0.3));
    animation: colorPulse 8s infinite alternate;
}
@keyframes colorPulse {
    0% { filter: invert(1) brightness(2) drop-shadow(0 0 20px var(--c-video)); }
    100% { filter: invert(1) brightness(2) drop-shadow(0 0 20px var(--c-design)); }
}
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.orbit-1 { width: 100%; height: 100%; border-top: 2px solid var(--c-video); animation: spin 10s linear infinite; }
.orbit-2 { width: 75%; height: 75%; border-bottom: 2px solid var(--c-design); animation: spin 15s linear infinite reverse; }
.orbit-3 { width: 120%; height: 120%; border-left: 1px solid var(--c-event); opacity: 0.5; animation: spin 25s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* TEXTE & GRADIENT */
.hero-text-content { max-width: 900px; z-index: 2; }
.hero-title-bold {
    font-family: var(--font-display); font-size: 5.5rem; font-weight: 900; line-height: 1;
    margin-bottom: 30px; text-transform: uppercase; letter-spacing: -2px;
    background: linear-gradient(to bottom, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-bio { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 40px; }
.scroll-indicator { 
    display: inline-flex; align-items: center; gap: 10px; color: var(--c-design); 
    text-decoration: none; font-weight: 600; cursor: none;
}

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 60px; }
.title-gradient {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900;
    background: linear-gradient(90deg, var(--c-dev), var(--c-design));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.line-deco { width: 100px; height: 4px; background: var(--c-design); margin: 20px auto; }

/* CARDS GLASS */
.services-section { padding: 100px 0; }
.grid-causes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.card-cause {
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px;
    display: flex; flex-direction: column; justify-content: space-between; transition: 0.3s; cursor: none;
}
.card-cause:hover {
    background: rgba(255, 255, 255, 0.07); transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.icon-box { width: 50px; height: 50px; border-radius: 10px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.card-cause h3 { font-family: var(--font-display); font-size: 1.3rem; }
.card-cause p { color: #cbd5e1; margin-bottom: 20px; }
.link-detail { text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 5px; cursor: none; }
.color-dev .icon-box, .color-dev .link-detail { color: var(--c-dev); }
.color-event .icon-box, .color-event .link-detail { color: var(--c-event); }
.color-design .icon-box, .color-design .link-detail { color: var(--c-design); }
.color-video .icon-box, .color-video .link-detail { color: var(--c-video); }
.color-com .icon-box, .color-com .link-detail { color: var(--c-com); }
.color-saas .icon-box, .color-saas .link-detail { color: var(--c-saas); }

/* JAWDAPLUS - 3 CARTES EN TRIANGLE */
.jawda-section { padding: 100px 0; background: linear-gradient(to bottom, var(--bg-dark), #061e16); }
.jawda-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.glass-panel-large {
    background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 20px;
}
.tag-flagship { color: var(--c-com); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.jawda-title { font-family: var(--font-display); font-size: 3.5rem; margin: 15px 0 10px; }
.plus-green { color: var(--c-com); }

.jawda-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.jawda-desc { 
    color: #cbd5e1; 
    font-size: 1.05rem; 
    margin-bottom: 35px;
    line-height: 1.6;
}

/* JAWDA FEATURES ENHANCED */
.jawda-features-enhanced {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--c-com);
    border-radius: 8px;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: var(--c-com);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.feature-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-jawda { 
    background: var(--c-com); 
    color: #000; 
    padding: 15px 35px; 
    border-radius: 50px; 
    border: none; 
    font-weight: 700; 
    cursor: none;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-jawda:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* --- 3 CARTES EN TRIANGLE --- */
.jawda-visual { position: relative; height: 500px; }

.glass-panel {
    position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); padding: 20px 25px; border-radius: 15px;
    display: flex; flex-direction: column; align-items: center; gap: 10px; width: 140px; color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s; cursor: none;
}

.glass-panel:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.1) !important;
    z-index: 100;
    border-color: var(--c-com);
}

/* POSITIONS EN TRIANGLE (1 en haut, 2 en bas) */
.panel-1 { 
    top: 15%; 
    left: 50%; 
    transform: translateX(-50%); 
    animation: floatV 6s ease-in-out infinite; 
}
.panel-2 { 
    bottom: 20%; 
    left: 20%; 
    animation: floatD 7s ease-in-out infinite; 
}
.panel-3 { 
    bottom: 20%; 
    right: 20%; 
    animation: floatD 8s ease-in-out infinite reverse; 
}

@keyframes floatV {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}
@keyframes floatD {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.glass-panel i { font-size: 2rem; color: var(--c-com); }
.glass-panel span { font-size: 0.9rem; font-weight: 600; }

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* MODAL */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 1000; display: none; justify-content: center; align-items: center;
}
.modal-overlay.active { display: flex; }
.glass-modal {
    background: rgba(30, 30, 36, 0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 20px; width: 90%; max-width: 500px;
    position: relative;
}
.close-modal { 
    position: absolute; top: 15px; right: 20px; background: none; border: none; 
    color: #fff; font-size: 2rem; cursor: none; 
}
.modal-header { margin-bottom: 30px; }
.modal-header h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; }
.modal-subtitle { color: #94a3b8; font-size: 0.9rem; }

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--c-com);
    border-radius: 12px;
    margin-bottom: 20px;
}
.success-message.show { display: block; }
.success-message i { font-size: 3rem; color: var(--c-com); margin-bottom: 15px; }
.success-message h4 { font-size: 1.3rem; margin-bottom: 10px; }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { 
    width: 100%; padding: 12px; background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; 
    font-family: var(--font-main); font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--c-design);
    background: rgba(255,255,255,0.08);
}
.btn-submit { 
    width: 100%; padding: 15px; background: linear-gradient(90deg, var(--c-dev), var(--c-design)); 
    border: none; border-radius: 8px; color: #fff; font-weight: 700; cursor: none;
    display: flex; justify-content: center; align-items: center; gap: 10px;
}

/* FOOTER */
footer { padding: 50px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; }
.copyright { font-size: 0.8rem; color: #64748b; margin-top: 10px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .jawda-flex { grid-template-columns: 1fr; }
    .jawda-visual { height: 400px; margin-top: 40px; }
}

@media (max-width: 768px) {
    /* BURGER MENU */
    .burger-menu { display: flex; }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(3, 3, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        transition: right 0.3s;
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { right: 0; }

    /* HERO */
    .orbit-system { width: 300px; height: 300px; }
    .center-logo-img { width: 150px; height: 150px; }
    .hero-title-bold { font-size: 3rem; }
    .hero-bio { font-size: 1rem; }

    /* JAWDA */
    .jawda-title { font-size: 2.5rem; }
    .jawda-tagline { font-size: 1.1rem; }
    .jawda-desc { font-size: 0.95rem; }
    .jawda-visual { height: 300px; }
    .glass-panel { width: 110px; padding: 15px 20px; font-size: 0.85rem; }
    .glass-panel i { font-size: 1.5rem; }

    .feature-item {
        gap: 15px;
        padding: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title-bold { font-size: 2.2rem; }
    .orbit-system { width: 250px; height: 250px; }
    .center-logo-img { width: 120px; height: 120px; }
    .grid-causes { grid-template-columns: 1fr; }
    .jawda-title { font-size: 2rem; }
    .jawda-tagline { font-size: 1rem; }

    .feature-item {
        gap: 12px;
        padding: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }
}



/* ========== JAWDAPLUS SECTION OPTIMISÉE (ESPACE RÉDUIT) ========== */
.jawda-section { 
    padding: 60px 0; /* Réduit de 100px à 60px */
    background: linear-gradient(to bottom, var(--bg-dark), #061e16); 
}

.jawda-flex {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr; /* Optimisation de l'espace */
    gap: 40px; /* Réduit de 60px à 40px */
    align-items: center;
}

.jawda-content {
    padding: 40px; /* Réduit de 50px à 40px */
}

.tag-flagship { 
    color: var(--c-com); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
    display: block;
    margin-bottom: 15px; /* Réduit de 20px à 15px */
}

.jawda-title { 
    font-family: var(--font-display); 
    font-size: 3.5rem; 
    margin-bottom: 15px; /* Réduit de 20px à 15px */
}

.plus-green { color: var(--c-com); }

.jawda-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 15px; /* Réduit de 20px à 15px */
    line-height: 1.4;
}

.jawda-desc { 
    color: #cbd5e1; 
    font-size: 1.05rem; 
    margin-bottom: 25px; /* Réduit de 30px à 25px */
    line-height: 1.6;
}

/* FEATURES COMPACTES */
.jawda-features-enhanced {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Réduit de 20px à 15px */
    margin-bottom: 25px; /* Réduit de 30px à 25px */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px; /* Réduit de 20px à 15px */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px; /* Réduit de 50px à 45px */
    height: 45px;
    min-width: 45px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-com);
    font-size: 1.3rem; /* Réduit de 1.5rem à 1.3rem */
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1rem; /* Réduit de 1.1rem à 1rem */
    margin-bottom: 5px;
    color: #fff;
}

.feature-text p {
    color: #94a3b8;
    font-size: 0.85rem; /* Réduit de 0.9rem à 0.85rem */
    line-height: 1.4;
    margin: 0;
}

.btn-jawda { 
    background: var(--c-com); 
    color: #000; 
    padding: 14px 32px; /* Réduit de 15px 35px */
    border-radius: 50px; 
    border: none; 
    font-weight: 700; 
    cursor: none;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-jawda:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* CARTES VISUELLES (TRIANGLE) - COMPACTES */
.jawda-visual {
    position: relative;
    height: 400px; /* Réduit de 500px à 400px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-panel {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px; /* Réduit de 30px à 25px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Réduit de 15px à 12px */
    transition: 0.4s;
    cursor: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-panel i {
    font-size: 2rem; /* Réduit de 2.5rem à 2rem */
    color: var(--c-com);
}

.glass-panel span {
    font-weight: 700;
    font-size: 0.95rem; /* Réduit de 1rem à 0.95rem */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-panel:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--c-com);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

/* DISPOSITION TRIANGLE COMPACTE */
.panel-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float1 4s ease-in-out infinite;
}

.panel-2 {
    bottom: 20px; /* Réduit de 30px à 20px */
    left: 0;
    animation: float2 5s ease-in-out infinite;
}

.panel-3 {
    bottom: 20px; /* Réduit de 30px à 20px */
    right: 0;
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* RESPONSIVE JAWDA */
@media (max-width: 1024px) {
    .jawda-flex { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .jawda-visual {
        height: 350px; /* Réduit pour tablette */
    }
}

@media (max-width: 768px) {
    .jawda-section { padding: 40px 0; }

    .jawda-content { padding: 30px; }

    .jawda-title { font-size: 2.5rem; }

    .jawda-tagline { font-size: 1.1rem; }

    .jawda-desc { font-size: 0.95rem; }

    .jawda-visual { height: 300px; }

    .glass-panel {
        padding: 20px;
    }

    .glass-panel i { font-size: 1.8rem; }

    .glass-panel span { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .jawda-title { font-size: 2rem; }

    .jawda-tagline { font-size: 1rem; }

    .jawda-content { padding: 20px; }

    .jawda-visual { height: 280px; }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* --- OPTIMISATION JAWDA (MODIFICATIONS DEMANDÉES) --- */
.jawda-section { padding: 60px 0 !important; } /* Gain d'espace */

.jawda-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 4.2rem !important; /* Plus grand et plus tech */
    line-height: 1.1;
}

.jawda-desc {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    max-width: 850px;
}

/* SYSTEME DE FLIP CARDS */
.jawda-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card {
    background-color: transparent;
    width: 160px;
    height: 160px;
    perspective: 1000px;
    position: absolute;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.flip-card-front {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-card-back {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #000;
    transform: rotateY(180deg);
    padding: 20px;
}

.flip-card-back p {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #000 !important;
}

.flip-card-front i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 10px;
}

.flip-card-front span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- MODIFICATIONS V3 : CARTES VERTICALES + OPTIMISATIONS --- */

/* Agrandissement des titres des features */
.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem !important; /* Agrandi de 1rem à 1.2rem */
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

/* Optimisation largeur des cartes flip */
.flip-card {
    width: 200px !important; /* Agrandi de 160px à 200px */
    height: 180px !important; /* Agrandi de 160px à 180px */
}

.flip-card-back p {
    font-size: 0.9rem !important; /* Légèrement plus grand */
    line-height: 1.5 !important;
}

/* Disposition VERTICALE à GAUCHE */
.jawda-visual {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 40px 0 !important;
}

.flip-card {
    position: relative !important; /* Plus de position absolute */
    animation: none !important; /* Suppression des animations float */
}

/* Suppression des positions spécifiques panel-1, panel-2, panel-3 */
.panel-1, .panel-2, .panel-3 {
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* Ajustement du layout global Jawda pour mieux répartir l'espace */
.jawda-flex {
    grid-template-columns: 1.5fr 0.5fr !important; /* Plus d'espace pour le contenu texte */
    gap: 50px !important;
}

@media (max-width: 1024px) {
    .jawda-flex {
        grid-template-columns: 1fr !important;
    }

    .jawda-visual {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}



.flip-card {
    animation: float 3s ease-in-out infinite !important;
}

/* Décalage des animations pour un effet naturel */
.flip-card:nth-child(1) {
    animation-delay: 0s !important;
}

.flip-card:nth-child(2) {
    animation-delay: 0.5s !important;
}

.flip-card:nth-child(3) {
    animation-delay: 1s !important;
}

/* Pause de l'animation au survol */
.flip-card:hover {
    animation-play-state: paused !important;
}

/* --- PROPOSITION DE NOUVELLES FONTS STYLE --- */

/* OPTION 1 : INTER (Ultra moderne, très lisible, utilisé par GitHub, Vercel) */
.font-option-1 {
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Sora', 'Inter', sans-serif;
}

/* OPTION 2 : SORA (Géométrique, tech, futuriste) */
.font-option-2 {
    --font-main: 'Inter', sans-serif;
    --font-display: 'Sora', sans-serif;
}

/* OPTION 3 : SPACE GROTESK (Actuel mais optimisé) */
.font-option-3 {
    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* APPLICATION PAR DÉFAUT : OPTION 2 (SORA pour titres + INTER pour textes) */
:root {
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    --font-display: 'Sora', 'Inter', sans-serif !important;
}

body {
    font-family: var(--font-main) !important;
}

h1, h2, h3, h4, h5, h6, .hero-title, .jawda-title, .section-title {
    font-family: var(--font-display) !important;
}

/* Optimisation de la lisibilité avec Inter */
body, p, .feature-text p, .card-cause p {
    font-family: var(--font-main) !important;
    letter-spacing: -0.01em;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* === ANIMATION DE FLOTTEMENT RENFORCÉE (V6) === */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px);
        opacity: 0.95;
    }
}

/* Application sur les cartes glass-panel */
.glass-panel {
    animation: floatUp 3.5s ease-in-out infinite !important;
}

/* Décalage progressif pour effet naturel */
.panel-1 {
    animation-delay: 0s !important;
}

.panel-2 {
    animation-delay: 0.6s !important;
}

.panel-3 {
    animation-delay: 1.2s !important;
}

/* Pause de l'animation au survol */
.glass-panel:hover {
    animation-play-state: paused !important;
}

/* ==== CORRECTIF RESPONSIVE MOBILE (V6 FIX) ==== */
@media (max-width: 768px) {
    .jawda-section {
        padding: 40px 0;
    }

    .jawda-flex {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .jawda-content {
        padding: 20px;
    }

    .jawda-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .jawda-tagline {
        font-size: 1.05rem !important;
    }

    .jawda-desc {
        font-size: 0.9rem !important;
    }

    /* Cartes sous le texte, centrées, en colonne */
    .jawda-visual {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 10px !important;
        padding: 20px 0 !important;
    }

    .glass-panel {
        position: relative !important;
        width: 85% !important;
        max-width: 280px !important;
        padding: 20px !important;
        /* On garde l'animation de flottement mais on reset les positions absolues */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .panel-1, .panel-2, .panel-3 {
        animation-duration: 3s !important;
    }
}

@media (max-width: 480px) {
    .jawda-title {
        font-size: 1.8rem !important;
    }
    .glass-panel {
        width: 90% !important;
        max-width: 240px !important;
    }
}

/* === SECTION QUI SOMMES-NOUS === */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #061e16, var(--bg-dark));
}

.about-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.about-quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 2.5rem;
    color: var(--c-design);
    opacity: 0.5;
}

.about-content {
    padding: 20px 20px 20px 40px;
}

.about-highlight {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-design);
    margin-bottom: 25px;
}

.about-content p {
    font-style: italic;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-quote-icon {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-content {
        padding: 0;
    }
    
    .about-highlight {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

/* === CONSENT CHECKBOX STYLE JAWDAPLUS === */
.consent-container-jawda {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.consent-label-jawda {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.consent-label-jawda input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-jawda {
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.consent-label-jawda:hover .checkmark-jawda {
    border-color: #fff;
}

.consent-label-jawda input[type="checkbox"]:checked ~ .checkmark-jawda {
    background-color: transparent;
    border-color: #fff;
}

.checkmark-jawda::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: none;
}

.consent-label-jawda input[type="checkbox"]:checked ~ .checkmark-jawda::after {
    display: block;
}

.consent-text-main {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.consent-text-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

