:root {
    --bg: #0a0a0c;
    --surface: #121217;
    --surface-light: #1e1e26;
    --text: #ffffff;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --accent: #d946ef;
    --accent-glow: rgba(217, 70, 239, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --container: 1200px;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px; /* Augment de base pour viter les bords colls */
}

/* --- BACKGROUND --- */
.stars {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #111 0%, #000 100%);
}

.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 40%);
}

/* --- NAVBAR --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo img { height: 36px; width: 36px; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* --- HERO --- */
.hero {
    padding: 140px 0 120px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.badge {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: inline-block;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-dim);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-btns { display: flex; gap: 20px; }

.btn {
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--primary-glow);
}

.btn-secondary {
    background: var(--surface);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-light);
    transform: translateY(-5px);
}

.hero-image { position: relative; width: 100%; }

.floating-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    animation: floating 8s ease-in-out infinite;
    transform-origin: center;
    width: 110%;
    margin-left: -5%;
}

.floating-card.secondary { 
    animation-delay: -2s; 
    box-shadow: 0 30px 70px rgba(0,0,0,0.5); 
    width: 120%;
    margin-left: -10%;
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.floating-card img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floating 8s ease-in-out infinite;
}

.hero-logo-temp {
    width: 180px !important;
    border-radius: 40px;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    opacity: 0.9;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1.5deg); }
}

/* --- STATS SECTION --- */
.they-trust-us {
    background: rgba(255,255,255,0.02);
    padding: 80px 0;
    margin-bottom: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 { font-size: 3.5rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.stat-box p { color: var(--text-dim); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- FEATURES --- */
.features { padding: 100px 0; }

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 800; }
.section-title p { color: var(--text-dim); font-size: 1.2rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px 40px;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(139, 92, 246, 0.4);
    background: var(--surface-light);
}

.f-icon {
    font-size: 2.2rem;
    margin-bottom: 28px;
    background: rgba(139, 92, 246, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-card h3 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 700; }
.feature-card p { color: var(--text-dim); font-size: 1rem; line-height: 1.7; }

/* --- RELIABILITY / PROMO --- */
.dashboard-promo { padding: 120px 0; }
.promo-content { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.promo-text h2 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 32px; }
.promo-text p { color: var(--text-dim); margin-bottom: 40px; font-size: 1.15rem; }

.reliability-box { display: grid; gap: 20px; }
.rel-item { 
    display: flex; gap: 20px; align-items: flex-start; 
    text-decoration: none; color: inherit; padding: 16px; 
    border-radius: 16px; transition: background 0.3s;
    border: 1px solid transparent;
}
a.rel-item:hover { background: rgba(255,255,255,0.03); border-color: var(--border); }

.rel-icon { font-size: 1.5rem; background: rgba(139, 92, 246, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 14px; flex-shrink: 0; }
.rel-item h4 { font-size: 1.15rem; margin-bottom: 4px; color: var(--text); }
.rel-item p { font-size: 0.95rem; line-height: 1.4; color: var(--text-dim); margin: 0; }

.promo-visual {
    width: 100%;
}

/* --- CTA FINAL --- */
.cta-final {
    padding: 140px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.cta-final h2 { font-size: 3.5rem; margin-bottom: 24px; font-weight: 800; }
.cta-final p { color: var(--text-dim); font-size: 1.3rem; margin-bottom: 48px; }

/* --- FOOTER (Inspiré de l'ancien site) --- */
footer {
    background: #050508;
    padding: 100px 0 60px;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.footer-left { flex: 1; }
.footer-logo { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-logo-img { height: 48px; width: 48px; }
.footer-tagline { font-size: 1.1rem; color: var(--text-dim); margin: 0; }

.nav-social { display: flex; gap: 16px; margin-top: 32px; }
.social-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icon:hover { background: var(--primary); color: white; transform: translateY(-5px); }

.footer-right { flex: 2; display: flex; justify-content: space-between; gap: 40px; }
.footer-column h3 { font-size: 1rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; letter-spacing: 1px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { text-decoration: none; color: var(--text-dim); transition: color 0.3s; font-size: 0.95rem; }
.footer-column ul li a:hover { color: white; }



/* --- RESPONSIVE / MOBILE --- */
@media (max-width: 1000px) {
    .container { padding: 0 32px; }
    
    /* Navbar: Cacher les liens secondaires */
    .nav-links a:not(.nav-cta) { display: none; }
    
    .hero { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 60px; 
        padding-top: 60px; 
        padding-bottom: 80px;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 32px; font-size: 1.1rem; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    /* Reset des images hero pour pas qu'elles touchent les bords */
    .floating-card { width: 100%; margin-left: 0; }
    .floating-card.secondary { width: 100%; margin-left: 0; }
    
    .stats-wrapper { flex-direction: column; gap: 48px; }
    .stat-box h3 { font-size: 2.5rem; }
    
    .features { padding: 80px 0; }
    .feature-card { 
        padding: 32px 24px; 
        margin: 0 12px; /* Laisse de la marge sur les bords */
    }
    .feature-card p { font-size: 0.9rem; } /* Baisse de la taille de police */
    
    .dashboard-promo { padding: 100px 0; }
    .promo-content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .promo-text h2 { font-size: 2.4rem; }
    .promo-text p { max-width: 100%; font-size: 1rem; }
    .reliability-box { justify-content: center; text-align: left; }
    .rel-item p { font-size: 0.85rem; } /* Baisse de la taille de police sur les modules */
    .promo-visual { padding: 0 10px; }

    .footer-container { 
        flex-direction: column; 
        gap: 64px; 
        text-align: center;
    }
    
    .footer-left { display: flex; flex-direction: column; align-items: center; }
    .nav-social { justify-content: center; }
    
    .footer-right { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; 
        text-align: left;
    }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .footer-right { grid-template-columns: 1fr; text-align: center; }
}

/* --- COOKIE BANNER --- *//* --- COOKIE BANNER HIGH-CONTRAST --- */
.white-biscuit {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 500px;
    max-width: calc(100vw - 40px);
    background: rgba(255, 255, 255, 0.95); /* Fond blanc tranchant */
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
    display: none;
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #111; /* Texte sombre pour le contraste */
}

.eating-or-not { display: flex; flex-direction: column; gap: 20px; }
.i-am-hungry h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; color: #000; font-weight: 800; }
.i-am-hungry p { font-size: 0.95rem; color: #333; line-height: 1.3; }

.the-second-btn-of-truth { margin-top: 10px; }
.btn-of-truth {
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-of-truth.accept {
    width: 100%;
    padding: 16px;
    background: #000; /* Bouton noir sur fond blanc : ultra visible */
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.btn-of-truth.refuse {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    color: #666;
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-of-truth.accept:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3); }

@media (max-width: 1024px) {
    .white-biscuit { width: 440px; bottom: 20px; right: 20px; padding: 25px; }
}

@media (max-width: 768px) {
    .white-biscuit { 
        bottom: 0 !important; right: 0 !important; left: 0 !important; 
        width: 100% !important; max-width: 100% !important;
        border-radius: 30px 30px 0 0; padding: 30px 20px;
    }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
