/* --- CONFIGURATION & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-size: 1.05rem; /* base text size for premium readability */
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .btn-primary, .btn-shiny, .btn-pricing, .nav-links a, .pricing-grid .p-tag, .p-price, .comp-card-header, .availability-widget, .duel-header, .section-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

:root {
    --bg: #fafafa; /* Off-white épuré style Apple */
    --bg-alt: #f4f4f5; /* Gris-zinc doux Tailwind pour sections */
    --accent: #2B59FF; /* Bleu Alinead Électrique */
    --accent-glow: rgba(43, 89, 255, 0.12);
    --text: #0f172a; /* Slate-900 pour contrastes parfaits */
    --text-dim: #475569; /* Slate-600 pour les descriptions */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-heavy: #ffffff; /* Cartes blanches solides pour détachement premium */
    --glass-border: rgba(15, 23, 42, 0.06);
    --card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Transition amortie haut de gamme */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Padding asymétrique : titre toujours proche de son propre contenu */
.section-pad { padding: 130px 0 90px; }

/* --- UI ELEMENTS --- */
.text-gradient {
    background: linear-gradient(90deg, #2B59FF, #5A82FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.2rem;  /* titre collé à son sous-titre/contenu */
    letter-spacing: -1.5px;
}

.section-title.left { text-align: left; }
.accent { color: var(--accent); }

/* --- HEADER --- */
header {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(240, 240, 238, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.4s ease, padding 0.4s ease, background 0.4s ease;
}

header.header-hidden {
    transform: translateY(-110%) !important;
    opacity: 0;
}

header.scrolled {
    padding: 0.6rem 0;
    background: rgba(240, 240, 238, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-centered {
    display: flex;
    justify-content: space-between; /* Toujours aligné sur les bords */
    align-items: center;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: all 0.4s ease;
}

/* En haut, on veut le logo vraiment au milieu */
header:not(.scrolled) .header-centered {
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

header:not(.scrolled) .header-spacer {
    display: none; /* Cache le spacer en haut */
}

.logo { 
    display: flex; 
    align-items: center;
    text-decoration: none; 
}

.logo-img { 
    height: 26px; 
    width: auto; 
    transition: all 0.4s ease; 
}

header.scrolled .logo-img {
    height: 20px;
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    list-style: none;
    padding: 0;
    margin: 0;
}

header:not(.scrolled) .nav-links {
    justify-content: center;
    width: 100%;
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    list-style: none; /* Enlève les points */
    padding: 0;
    margin: 0;
}

.nav-links a { 
    text-decoration: none; /* Enlève le soulignement bleu */
    color: var(--text-dim); 
    font-weight: 600; 
    font-size: 1rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition); 
}

.nav-links a:hover { 
    color: var(--text); 
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--accent);
    color: white;
    font-size: 1rem;
    padding: 1rem 2.4rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px -5px var(--accent-glow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -5px var(--accent-glow);
}

.btn-shiny {
    background: rgba(43, 89, 255, 0.06);
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 89, 255, 0.2);
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.btn-shiny:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 8px 20px -5px var(--accent-glow);
}

.mobile-menu-toggle {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

/* --- HERO & TRUST BANNER --- */
#hero { padding: 200px 0 100px; text-align: center; }
.badge { background: rgba(59, 130, 246, 0.1); color: var(--accent); border: 1px solid var(--accent); padding: 0.6rem 1.4rem; border-radius: 100px; font-size: 0.9rem; font-weight: 700; margin-bottom: 2.5rem; display: inline-block; }
#hero h1 { font-size: clamp(2.5rem, 7vw, 4.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -2px; }
.subtitle { font-size: 1rem; color: var(--text-dim); max-width: 800px; margin: 0 auto 4rem; line-height: 1.6; }

.pulse { animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* --- UNIFIED TRUST BAND MINIMALIST --- */
.unified-trust-band { margin-top: 40px; padding: 12px 0; background: var(--bg-alt); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.unified-trust-content { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 3rem; }
.ut-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.ut-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 768px) {
    .unified-trust-content { gap: 1rem; flex-direction: column; align-items: center; }
    .unified-trust-band { margin-top: 20px; }
}

/* --- DUEL SECTION (TRANSFORMATION) --- */
.duel-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.duel-side {
    background: var(--glass-heavy);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.duel-side.obsolete {
    opacity: 0.7;
    filter: grayscale(0.5) blur(0.5px);
}

.duel-side.premium {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(255, 255, 255, 0.02));
}

.duel-header {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
}

.obsolete .duel-header { color: #ef4444; }
.premium .duel-header { color: #10b981; }

.duel-list { list-style: none; display: flex; flex-direction: column; gap: 2.5rem; }
.duel-list li { display: flex; gap: 1.5rem; align-items: flex-start; }

.duel-icon {
    min-width: 45px;
    height: 45px;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium .duel-icon.check {
    background: rgba(43, 89, 255, 0.08);
    color: var(--accent);
}

.duel-text strong { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; }
.duel-text p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.4; }

.duel-vs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 100%;
}
.duel-vs::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--glass-border);
    transform: translateX(-50%);
    z-index: 1;
}
.duel-vs-text {
    background: var(--bg);
    padding: 1rem 0.5rem;
    z-index: 2;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}


/* --- ANATOMY SECTION --- */
.anatomy-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 6rem; align-items: center; margin-top: 4rem; }

.mockup-frame {
    background: var(--glass-heavy);
    border: 8px solid var(--glass-border);
    border-radius: 40px;
    padding: 1.2rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.mockup-screen {
    background: #0f172a;
    border-radius: 20px;
    height: 500px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

/* Style "Faux site" dans le mockup */
.fake-site-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass-border); }
.f-logo { font-weight: 800; font-size: 0.8rem; }
.f-btn { background: var(--accent); padding: 0.4rem 0.8rem; border-radius: 8px; font-size: 0.7rem; font-weight: 700; }
.fake-site-hero { padding: 4rem 2rem; text-align: center; }
.f-badge { color: #10b981; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.fake-site-hero h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 2rem; }
.f-cta { background: white; color: black; padding: 1rem; border-radius: 10px; font-weight: 800; font-size: 0.8rem; }

/* Hotspots (points interactifs) */
.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.2);
    animation: pulse-notif 2s infinite;
}

.hs1 { top: 15%; right: 10%; }
.hs2 { bottom: 20%; left: 5%; }
.hs3 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.hotspot::after {
    content: attr(data-label);
    position: absolute;
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.hotspot:hover::after,
.hotspot.active::after {
    opacity: 1;
    top: -50px;
}

.anatomy-details { display: flex; flex-direction: column; gap: 3rem; }
.anatomy-item { display: flex; gap: 2rem; align-items: flex-start; }
.anatomy-num { 
    font-size: 1.2rem; 
    font-weight: 800; 
    color: var(--accent); 
    background: rgba(59, 130, 246, 0.1); 
    min-width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.anatomy-text h3 { margin-bottom: 0.5rem; }
.anatomy-text p { color: var(--text-dim); }

@media (max-width: 1024px) {
    .anatomy-container { grid-template-columns: 1fr; gap: 4rem; }
    .mockup-screen { height: 400px; }
}

/* --- PROCESS SECTION --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 5rem; margin-top: 5rem; }
.step { text-align: center; position: relative; }
.step-number { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 1.5rem; font-size: 1.2rem; box-shadow: 0 0 20px var(--accent-glow); }
.step h3 { margin-bottom: 1rem; }
.step p { color: var(--text-dim); }

/* --- AVAILABILITY WIDGET --- */
.availability-widget { background: rgba(16, 185, 129, 0.1); border: 1px solid #10b981; color: #10b981; padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.pulse-green { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* --- CONTACT V5 (HUMANISE) --- */
.contact-v5-wrapper { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.founder-card-v5 { background: var(--glass-heavy); border: 1px solid var(--glass-border); padding: 2.5rem; border-radius: 32px; }
.founder-top { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.founder-avatar { width: 64px; height: 64px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; }
.founder-quote { font-style: italic; color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.4; }
.founder-badge-v5 { font-size: 0.8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.glass-form-v5 { background: var(--glass-heavy); padding: 3rem; border-radius: 32px; border: 1px solid var(--glass-border); }
.ultimate-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.input-group label { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
input {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 1.1rem;
    border-radius: 12px;
    color: var(--text);
    width: 100%;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}
input::placeholder {
    color: #94a3b8;
}
input:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-trust { font-size: 0.85rem; color: var(--text-dim); text-align: center; margin-top: 0.5rem; }

/* --- ROI COMPARISON TABLE (style premium & symétrique) --- */
.roi-section {
    background: var(--bg-alt); /* fond légèrement différent pour se démarquer */
}

.roi-intro {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.roi-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    background: rgba(43, 89, 255, 0.07);
    border: 1px solid rgba(43, 89, 255, 0.15);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
}

/* ---- Le tableau ---- */
.roi-comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px -20px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

/* ---- EN-TÊTE : 3 colonnes parfaitement égales ---- */
.roi-table-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: #f8faff;
    border-bottom: 2px solid var(--glass-border);
}

.roi-th-empty {
    padding: 2rem;
    border-right: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-end;
}

.roi-th {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.roi-th-bad { border-right: 1px solid var(--glass-border); }

/* La colonne Alinead a un fond bleu très doux */
.roi-th-good {
    background: rgba(43, 89, 255, 0.04);
}

.roi-th-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.roi-th-bad .roi-th-icon { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.roi-th-good .roi-th-icon { background: rgba(43, 89, 255, 0.1); color: var(--accent); }

.roi-th span {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.roi-th-bad span { color: var(--text); }
.roi-th-good span { color: var(--accent); }

.roi-th small {
    font-size: 0.76rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ---- LIGNES ---- */
.roi-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s ease;
}

.roi-row:last-of-type { border-bottom: none; }

.roi-row:hover { background: rgba(43, 89, 255, 0.012); }

.roi-label {
    padding: 1.5rem 2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-right: 1px solid var(--glass-border);
}

.roi-label svg { flex-shrink: 0; opacity: 0.5; }

.roi-cell {
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Colonne rouge : fond très légèrement rosé */
.roi-cell-bad {
    color: #9f1239;
    background: rgba(239, 68, 68, 0.025);
    border-right: 1px solid var(--glass-border);
}

.roi-cell-bad svg { color: #ef4444; flex-shrink: 0; }

/* Colonne Alinead : fond bleu très doux, texte foncé, surbrillance */
.roi-cell-good {
    color: var(--text);
    font-weight: 700;
    background: rgba(43, 89, 255, 0.04);
}

.roi-cell-good svg { color: #10b981; flex-shrink: 0; }

/* ---- FOOTER CTA ---- */
.roi-table-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-top: 2px solid var(--glass-border);
    background: #f8faff;
}

.roi-tf-empty {
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
}

.roi-tf-bad {
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--glass-border);
}

.roi-tf-good {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 89, 255, 0.04);
}

/* ---- RESPONSIVE mobile ---- */
@media (max-width: 768px) {
    .roi-comparison-table { border-radius: 16px; }

    /* Sur mobile : on masque la colonne "critère" et on passe en 2 colonnes */
    .roi-table-head { grid-template-columns: 1fr 1fr; }
    .roi-th-empty { display: none; }

    .roi-row { grid-template-columns: 1fr 1fr; }
    .roi-label { display: none; }

    .roi-table-footer { grid-template-columns: 1fr 1fr; }
    .roi-tf-empty { display: none; }

    .roi-th { padding: 1.5rem 1rem; }
    .roi-th-icon { width: 40px; height: 40px; }
    .roi-cell { padding: 1.2rem 1rem; font-size: 0.82rem; }
    .roi-tf-bad, .roi-tf-good { padding: 1.2rem 1rem; }
}



/* --- PRICING GRID V6 --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.price-card {
    background: var(--glass-heavy);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.price-card.featured {
    border-color: rgba(43, 89, 255, 0.15);
    background: #ffffff;
    box-shadow: 0 30px 60px -15px rgba(43, 89, 255, 0.08), var(--card-shadow);
    transform: scale(1.05);
    z-index: 10;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 40px 80px -15px rgba(43, 89, 255, 0.12), var(--card-shadow);
}

.price-card.featured::before {
    content: "RECOMMANDÉ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.p-tag { font-size: 0.8rem; font-weight: 800; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.p-price { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; line-height: 1; color: var(--text); }
.p-price span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
.p-desc { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 2rem; min-height: 3rem; }

.p-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.p-features li { margin-bottom: 1rem; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text-dim); }
.p-features li::before { content: "✓"; color: #10b981; font-weight: 900; }

.btn-pricing {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.price-card:not(.featured) .btn-pricing {
    background: rgba(43, 89, 255, 0.05);
    color: var(--accent);
    border: 1px solid rgba(43, 89, 255, 0.15);
}

.price-card:not(.featured) .btn-pricing:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 10px 25px -5px var(--accent-glow);
}

.price-card.featured .btn-pricing {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.price-card.featured .btn-pricing:hover {
    background: #1a42cc;
    border-color: #1a42cc;
    box-shadow: 0 15px 30px -5px rgba(43, 89, 255, 0.3);
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
    .price-card.featured { transform: scale(1); }
}

/* --- FAQ ACCORDÉON --- */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
details { background: var(--glass-heavy); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem; cursor: pointer; transition: var(--transition); }
details[open] { border-color: var(--accent); background: rgba(255,255,255,0.06); }
summary { font-size: 1.1rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; transition: var(--transition); }
details[open] summary::after { content: "-"; transform: rotate(180deg); }
.faq-content { padding-top: 1.5rem; color: var(--text-dim); border-top: 1px solid var(--glass-border); margin-top: 1rem; }

/* --- CONTACT ITEMS --- */
.direct-contact-info { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.direct-contact-info p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-link-item { text-decoration: none; color: var(--text); font-size: 1rem; transition: var(--transition); display: flex; align-items: center; gap: 0.8rem; font-weight: 600; }
.contact-link-item:hover { color: var(--accent); transform: translateX(5px); }

/* --- FOOTER & STICKY --- */
footer { padding: 60px 0; border-top: 1px solid var(--glass-border); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.f-links { display: flex; gap: 2rem; }
.f-links a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: var(--transition); }
.f-links a:hover { color: white; }
.f-copy { color: var(--text-dim); font-size: 0.9rem; }
.mobile-cta-sticky { display: none; position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); width: 90%; background: var(--accent); color: white; padding: 1.3rem; border-radius: 100px; text-align: center; font-weight: 800; z-index: 2000; box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4); text-decoration: none; transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.mobile-cta-sticky:hover { background: #1a42cc; transform: translateX(-50%) translateY(-2px); box-shadow: 0 18px 45px rgba(59, 130, 246, 0.5); }
.mobile-cta-sticky.hidden { opacity: 0 !important; transform: translateX(-50%) translateY(120px) !important; pointer-events: none !important; }
body.no-scroll .mobile-cta-sticky { display: none !important; }

/* --- PROGRESS BAR --- */
.progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; z-index: 2000; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent), #a78bfa); width: 0%; transition: width 0.1s; }

/* Ancien bandeau supprimé */

/* --- COMPARISON TABLE --- */
.comparison-wrapper { margin-top: 6rem; overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; background: var(--glass-heavy); border-radius: 24px; overflow: hidden; border: 1px solid var(--glass-border); }
.comp-table th, .comp-table td { padding: 2rem; text-align: left; border-bottom: 1px solid var(--glass-border); }
.comp-table th { background: rgba(255,255,255,0.03); color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.comp-table .feature { font-weight: 700; width: 30%; }
.comp-table .old-way { color: #ef4444; width: 35%; opacity: 0.6; }
.comp-table .alinead-way { color: #10b981; width: 35%; background: rgba(16, 185, 129, 0.05); font-weight: 800; }
.alinead-way .check { display: inline-block; margin-right: 0.5rem; }

/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .section-pad { padding: 120px 0 80px; }
    .pricing-grid { gap: 1.5rem; }
    .anatomy-container { gap: 3rem; }
}

@media (max-width: 1024px) {
    /* Header & Mobile Navigation */
    header:not(.scrolled) .header-centered {
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0 !important;
        padding: 0.8rem 1.5rem !important;
    }
    header:not(.scrolled) .header-spacer {
        display: none !important;
    }
    .header-centered {
        padding: 0 1.5rem;
        justify-content: space-between;
    }
    .logo-img {
        height: 40px;
    }
    header.scrolled .logo-img {
        height: 32px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
    }
    .mobile-menu-toggle span {
        width: 100%;
        height: 2.5px;
        background-color: var(--text);
        border-radius: 2px;
        transition: var(--transition);
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(240, 240, 238, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 4rem 2rem;
        z-index: 1000;
        margin: 0;
        list-style: none;
        visibility: hidden;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    }
    .nav-links.active {
        right: 0;
        visibility: visible;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.8rem;
        color: var(--text);
    }
    .nav-links a.btn-shiny {
        background: var(--accent);
        color: white !important;
        border-radius: 12px;
        margin-top: 1rem;
        border: none;
        display: inline-block;
        width: 85%;
        box-shadow: 0 10px 20px rgba(43, 89, 255, 0.3);
    }
    .nav-links a.btn-shiny:hover {
        background: #1a42cc;
    }

    /* Layout Adaptations */
    .duel-container {
        grid-template-columns: 1fr;
    }
    .duel-vs {
        width: 100%;
        height: 40px;
        margin: 1.5rem 0;
    }
    .duel-vs::before {
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        transform: translateY(-50%);
    }
    .duel-vs-text {
        padding: 0.5rem 1rem;
    }
    .anatomy-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .mockup-screen {
        height: 400px;
    }
    .process-grid {
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    /* Centering Cards & Proportions */
    .comp-card, .price-card {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .mobile-cta-sticky {
        display: block;
    }
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .section-title.left {
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-v5-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-pad { padding: 70px 0 50px; }
    header { height: 60px; }
    #hero { padding: 140px 0 60px; }
    .subtitle { font-size: 1.1rem; margin-bottom: 2.5rem; }
    
    .trust-grid { gap: 1.2rem; justify-content: center; }
    .trust-item { font-size: 0.9rem; }

    .duel-side { padding: 2rem; border-radius: 24px; }
    .duel-list { gap: 1.5rem; }
    
    .comparison-cards {
        flex-direction: column;
        gap: 2rem;
    }
    .comp-vs {
        margin: 0.5rem 0;
    }
    .comp-card.ownership {
        transform: translateY(0);
    }
    
    .comp-card { padding: 2rem; }
    .p-amount { font-size: 3rem; }
    
    .contact-v5-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .glass-form-v5 { padding: 2rem; border-radius: 24px; }
    .founder-card-v5 { padding: 2rem; border-radius: 24px; }
    
    .price-card { padding: 2rem; border-radius: 24px; }
    .p-price { font-size: 2.8rem; }
}

@media (max-width: 480px) {
    #hero h1 { font-size: 2.2rem; letter-spacing: -1px; line-height: 1.1; }
    .section-title { font-size: 2rem; margin-bottom: 2.5rem; letter-spacing: -0.5px; }
    .btn-primary { width: 100%; text-align: center; padding: 1rem 1.5rem; }
    .cta-group { width: 100%; }
    
    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        justify-items: center;
        padding: 0 1rem;
    }
    .trust-item {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .mockup-frame { border-width: 4px; padding: 0.8rem; border-radius: 24px; }
    .mockup-screen { height: 350px; }
    .fake-site-hero h1 { font-size: 1.4rem; }
    .fake-site-hero { padding: 3rem 1rem; }
    .fake-site-header { padding: 1rem; }
    
    .anatomy-item { gap: 1rem; }
    .anatomy-num { min-width: 40px; height: 40px; font-size: 1rem; }
    
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
    
    .footer-grid { text-align: center; }
    .f-links { flex-direction: column; gap: 1rem; }
    
    .hotspot::after {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
