@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@500;700;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    color: #e2e8f0; /* Blanc cassé pour le texte */
    line-height: 1.6;
    background-color: #0f172a; /* Fond très sombre */
    /* IMPORTANT : On ajoute une image de fond subtile pour la texture */
    background-image: 
        radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(56, 189, 248, 0.15) 0px, transparent 50%);
    background-attachment: fixed; /* L'effet reste fixe quand on scroll */
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif; /* Police plus "Tech/Future" */
    color: white;
    letter-spacing: -0.5px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: #f97316; text-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
.highlight { color: #f97316; position: relative; }

/* BOUTONS NÉONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-main {
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: white;
    border: none;
    /* L'effet Glow qui change tout */
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); 
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
}

.btn-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.btn-white:hover { background: rgba(255,255,255,0.2); }

.btn-small {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 50px;
}

/* NAVBAR GLASS */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; color: white; font-family: 'Outfit', sans-serif;}

/* HERO SECTION IMPOSANTE */
.hero {
    text-align: center;
    padding: 120px 0 100px 0;
    position: relative;
}

.badge {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3.5rem; /* Très gros */
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.subtitle { font-size: 1.25rem; color: #94a3b8; margin-bottom: 40px; max-width: 600px; margin-inline: auto; }
.price-tag-hero { font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 40px; }
.small-text { font-size: 1rem; color: #64748b; font-weight: 400; }

/* CARTES EN VERRE (GLASSMORPHISM) */
.pain-points { padding: 100px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px;}

.card {
    background: rgba(255, 255, 255, 0.03); /* Transparence */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Bordure fine */
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.5); /* Bordure orange au survol */
    background: rgba(255, 255, 255, 0.05);
}

.card .icon { font-size: 2.5rem; margin-bottom: 20px; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.card p { color: #94a3b8; }

/* OFFER SECTION (Le Bloc Principal) */
.offer { padding: 80px 0; }

.offer-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Lueur orange derrière l'offre */
.offer-box::before {
    content:''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.offer-header { text-align: center; padding: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
.offer-header .price { font-size: 5rem; font-weight: 800; color: #f97316; margin: 10px 0; text-shadow: 0 0 30px rgba(249,115,22,0.3); }

.offer-body { padding: 50px; position: relative; }
.offer-body ul { list-style: none; margin-bottom: 40px; }
.offer-body li { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; color: #e2e8f0; }
.offer-body li strong { color: white; margin-left: 10px; margin-right: 5px; }

.disclaimer { background: rgba(249, 115, 22, 0.1); color: #fdba74; padding: 20px; border-radius: 12px; font-size: 0.9rem; text-align: center; margin-bottom: 30px; border: 1px solid rgba(249, 115, 22, 0.2); }

.offer-body .btn { width: 100%; text-align: center; }

/* ABOUT SECTION */
.about { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { margin-bottom: 24px; font-size: 2.5rem; }
.about-text p { color: #94a3b8; margin-bottom: 20px; font-size: 1.1rem; }

.profile-pic {
    width: 100%; max-width: 400px; border-radius: 20px; display: block; margin: 0 auto;
    filter: grayscale(100%) contrast(1.2); /* Noir et blanc artistique */
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5); /* Grosse ombre */
}

/* FOOTER */
footer { text-align: center; padding: 100px 0 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
footer h2 { margin-bottom: 20px; font-size: 2rem; }
footer p { color: #94a3b8; margin-bottom: 40px; }
.footer-links { margin-top: 60px; color: #475569; font-size: 0.9rem; }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .profile-pic { margin-bottom: 40px; }
    .offer-header .price { font-size: 4rem; }
}

/* --- CSS PAGE CONTACT DÉDIÉE --- */

.contact-page {
    padding: 60px 0 100px 0;
    min-height: 100vh;
}

.form-wrapper {
    background: rgba(15, 23, 42, 0.6); /* Fond sombre semi-transparent */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px; /* Plus large pour le confort */
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-section h3 {
    color: #f97316; /* Orange PMV */
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 40px 0;
}

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

/* Style des Inputs Files (Fichiers) */
input[type="file"] {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    width: 100%;
    cursor: pointer;
}

.small-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 5px;
    font-style: italic;
}

.btn-large {
    padding: 20px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.form-footer-text {
    text-align: center;
    margin-top: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .form-wrapper { padding: 30px 20px; }
    .form-header h1 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
}