/**
 * SERENILEADS.CSS - Fichier CSS unique et consolidé
 * Chemin : /public/assets/css/serenileads.css
 * 
 * Structure :
 * 1. Variables CSS
 * 2. Reset et base
 * 3. Typographie
 * 4. Layout (container)
 * 5. Composants communs (logo, boutons, formulaires)
 * 6. Header / Navigation
 * 7. Footer
 * 8. Page d'accueil (hero, calculateur, sections)
 * 9. Page de résultat
 * 10. Pages secondaires (CGV, mentions légales, contact)
 * 11. Widgets (cookies, social proof, chatbot)
 * 12. Utilitaires
 * 13. Media queries
 */

/* ===========================================
   1. VARIABLES CSS
   =========================================== */
:root {
    /* Couleurs principales */
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #e0e7ff;
    --secondary: #764ba2;
    --secondary-light: #f3e8ff;
    
    /* Couleurs de texte */
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Couleurs de fond */
    --bg: #ffffff;
    --bg-warm: #fefdfb;
    --bg-alt: #f8fafc;
    --bg-dark: #1a1a2e;
    
    /* Couleurs d'état */
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    
    /* Bordures */
    --border: #e2e8f0;
    
    /* Polices */
    --font-body: 'Hind Madurai', system-ui, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Tailles de police */
    --text-sm: 0.875rem;
    --text-base: 1.1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    
    /* Espacements */
    --spacing-section: 100px;
    --spacing-lg: 3rem;
    --spacing-md: 2rem;
    --spacing-sm: 1.5rem;
    --spacing-xs: 1rem;
    
    /* Ombres */
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    
    /* Rayons */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 0.3s ease;
    
    /* Largeurs */
    --container-max: 1200px;
    
    /* Line-height */
    --line-height: 1.7;
}

/* ===========================================
   2. RESET ET BASE
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================================
   3. TYPOGRAPHIE
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    color: var(--primary);
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
}

h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ===========================================
   4. LAYOUT (CONTAINER)
   =========================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Pages résultat simulation : une seule « gouttière » utile sur mobile (évite container + carte + blocs) */
@media (max-width: 768px) {
    .page-simulation-result header > .container,
    .page-simulation-result .result-hero-section > .container,
    .page-simulation-result .services-section > .container,
    .page-simulation-result .section.section-results > .container,
    .page-simulation-result .email-capture-section > .container,
    .page-simulation-result .guarantees-section > .container,
    .page-simulation-result .result-footer-section > .container,
    .page-simulation-result .trial-banner-section > .container,
    .page-simulation-result .form-section > .container {
        padding-left: max(10px, env(safe-area-inset-left, 0px));
        padding-right: max(10px, env(safe-area-inset-right, 0px));
    }

    .page-simulation-result .email-capture-section {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .page-simulation-result .email-capture-card {
        padding: 1.2rem 0.6rem 1.35rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-simulation-result .email-capture-icon {
        margin-bottom: 1.15rem;
    }

    .page-simulation-result .email-capture-subtitle {
        margin-bottom: 1.25rem;
    }

    .page-simulation-result .simulation-recap {
        margin-left: 0;
        margin-right: 0;
    }

    .page-simulation-result .result-pricing {
        padding: 1.15rem 0.75rem;
    }
}

/* ===========================================
   5. COMPOSANTS COMMUNS
   =========================================== */

/* ----- Logo ----- */
.logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.logo-with-baseline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-baseline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 0.15rem;
    line-height: 1;
}

/* ----- Boutons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-muted);
}

.btn-lg {
    padding: 18px 36px;
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

/* ----- Formulaires ----- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-control,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg-alt);
    transition: all var(--transition);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* ----- Alertes ----- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.alert-danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

.alert-success {
    background: var(--success-light);
    color: #047857;
    border: 1px solid #6ee7b7;
}

/* ===========================================
   6. HEADER / NAVIGATION
   =========================================== */
header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    transition: color var(--transition);
}

header nav a:hover {
    color: var(--primary);
}

header nav .btn {
    padding: 10px 20px;
}

/* Navbar Bootstrap (pages secondaires) */
.navbar {
    background: white;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-brand.logo-with-baseline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-brand.logo-with-baseline:hover,
.navbar-brand.logo-with-baseline:focus {
    text-decoration: none;
}

/* ===========================================
   7. FOOTER
   =========================================== */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand .logo-with-baseline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-brand .logo-with-baseline .logo {
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-base);
    line-height: var(--line-height);
}

.footer-col h4 {
    font-size: var(--text-base);
    margin-bottom: 1.25rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: var(--text-base);
}

/* ===========================================
   8. PAGE D'ACCUEIL
   =========================================== */

/* ----- Sections génériques ----- */
.section {
    padding: var(--spacing-section) 0;
}

.section-label {
    display: block;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: var(--text-lg);
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* ----- Hero ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-light);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ----- Key Points ----- */
.key-points {
    margin-bottom: 2rem;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.key-point:last-child {
    border-bottom: none;
}

.key-point-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
}

.key-point-text {
    font-size: var(--text-base);
}

.key-point-text strong {
    color: var(--text);
}

/* ----- Calculator Card ----- */
.calculator-intro {
    text-align: center;
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.calculator-card {
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 15px 30px -10px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.15);
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.calculator-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    border-radius: 32px 32px 0 0;
}

.calculator-card h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 1.25rem;
    color: #c7d2fe;
    text-shadow: 0 2px 15px rgba(199, 210, 254, 0.3);
}

.calculator-card h2 i {
    color: #c7d2fe !important;
}

.calculator-card .form-subtitle {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
    text-align: center;
}

.calculator-card .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.calculator-card .form-control,
.calculator-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.calculator-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.calculator-card .form-control:focus,
.calculator-card .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.15);
    color: white;
}

.calculator-card .form-select option {
    background: #1e1b4b;
    color: white;
}

.calculator-card .form-text {
    color: rgba(255, 255, 255, 0.55);
}

.calculator-card .btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 
        0 4px 15px rgba(249, 115, 22, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: none;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 14px;
}

.calculator-card .btn-primary:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    box-shadow: 
        0 6px 20px rgba(249, 115, 22, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ----- Method Grid ----- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.method-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.method-card p {
    font-size: var(--text-base);
    color: var(--text-light);
    margin: 0;
}

/* ----- BANT Infographic ----- */
.bant-infographic {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.bant-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.bant-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.bant-item:nth-child(1) .bant-circle { background: #667eea; }
.bant-item:nth-child(2) .bant-circle { background: linear-gradient(135deg, #667eea, #6a6bdb); }
.bant-item:nth-child(3) .bant-circle { background: linear-gradient(135deg, #6a6bdb, #7058cc); }
.bant-item:nth-child(4) .bant-circle { background: #764ba2; }

.bant-label {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.bant-label span {
    font-weight: 400;
    color: var(--text-light);
}

.bant-question {
    font-size: var(--text-base);
    color: var(--text-light);
    font-style: italic;
}

/* ----- Results Section ----- */
.section-results {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.section-results h2,
.section-results .section-label {
    color: white;
}

.section-results .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.result-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--transition);
}

.result-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: white !important;
    display: block;
    margin-bottom: 0.5rem;
}

.result-stat-label {
    font-size: var(--text-base);
    color: white !important;
    font-weight: 500;
    display: block;
}

/* ----- Sectors ----- */
.sectors-showcase {
    margin-top: 4rem;
    text-align: center;
}

.sectors-showcase h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sector-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    color: var(--text-light);
    transition: all 0.2s ease;
}

.sector-tag:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* ----- Testimonials ----- */
.section-testimonials {
    background: var(--bg-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-stars i {
    color: #fbbf24;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text);
    line-height: var(--line-height);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.author-info strong {
    display: block;
    font-size: var(--text-base);
    color: var(--text);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ----- Guarantees ----- */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guarantee-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--success-light), var(--bg));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    transition: all var(--transition);
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
}

.guarantee-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    font-size: var(--text-base);
    color: var(--text-light);
    margin: 0;
}

/* ----- Checklist ----- */
.section-checklist {
    background: var(--bg-warm);
}

.checklist-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.checklist-icon {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
    font-size: var(--text-base);
}

.checklist-item span {
    font-size: var(--text-base);
    color: var(--text-light);
    line-height: 1.5;
}

/* ----- FAQ ----- */
.section-faq {
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-card p {
    font-size: var(--text-base);
    color: var(--text-light);
    line-height: var(--line-height);
    margin: 0;
}

/* ----- Featured Testimonial ----- */
.section-featured-testimonial {
    background: var(--bg-alt);
    padding: 60px 0;
}

.section-featured-testimonial .section-label {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.featured-quote {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.featured-quote blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.featured-quote-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.featured-quote-author strong {
    display: block;
    color: var(--text);
    font-size: var(--text-base);
    margin-bottom: 0.25rem;
}

.featured-quote-author span {
    color: var(--text-light);
    font-size: var(--text-base);
}

/* ===========================================
   9. PAGE DE RÉSULTAT
   =========================================== */

/* ----- Loading Overlay ----- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000;
}

.loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ----- Result Hero Section ----- */
.result-hero-section {
    background: var(--bg-alt);
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.result-hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 3rem;
}

.result-pricing {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pricing-context {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-activity,
.pricing-zone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.pricing-separator {
    color: var(--text-muted);
}

.pricing-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-unit {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-market {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.pricing-source {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--success);
}

.pricing-value-proposition {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-value-proposition strong {
    display: block;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-value-proposition p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.pricing-capacity {
    font-size: 0.95rem;
    color: var(--text-light);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ----- Trial Banner ----- */
.trial-banner-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4ff 100%);
    padding: 2rem 0;
}

.trial-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trial-banner i {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trial-banner-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.trial-banner-content strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.trial-banner-content span {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ----- Services Section ----- */
.services-section {
    background: white;
    padding: 5rem 0;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.services-highlight {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-highlight strong {
    font-weight: 700;
}

/* ----- Form Section (Checkout) ----- */
.form-section {
    background: var(--bg-alt);
    padding: 5rem 0;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 3rem;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
    max-width: 650px;
    margin: 0 auto;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form .form-group {
    margin-bottom: 1rem;
}

.checkout-form .form-group-small {
    flex: 0 0 35%;
}

.checkout-form .form-group-large {
    flex: 1;
}

.checkout-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.checkout-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ----- Guarantees Section (Result page) ----- */
.guarantees-section {
    background: white;
    padding: 3rem 0;
}

.guarantees-section .guarantees-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ----- Result Footer Section ----- */
.result-footer-section {
    background: var(--bg-alt);
    padding: 3rem 0 5rem;
    text-align: center;
}

.result-footer-section .btn-outline {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ----- Modal (Free Trial) ----- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 520px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-body {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-highlight {
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.modal-highlight strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modal-highlight .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions button {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.modal-btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 2px solid var(--border) !important;
}

.modal-btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db !important;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* ----- Volume Insuffisant Page ----- */
.result-section {
    position: relative;
}

.result-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.result-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.result-context {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.result-activity,
.result-zone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.result-separator {
    color: var(--text-muted);
}

.result-card-negative {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--warning);
}

.result-icon-negative {
    width: 70px;
    height: 70px;
    background: var(--warning-light);
    color: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.result-card-negative h2 {
    font-family: var(--font-heading);
    color: #92400e;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.result-card-negative p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    text-align: center;
}

.result-suggestions {
    margin-top: 4rem;
    text-align: center;
}

.result-suggestions h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.suggestion-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.suggestion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.suggestion-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.suggestion-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.result-actions {
    margin-top: 2.5rem;
}

/* ===========================================
   10. PAGES SECONDAIRES (CGV, Contact, etc.)
   =========================================== */

/* ----- Page Header ----- */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.page-header .lead {
    opacity: 0.9;
    text-align: center;
}

/* ----- Content Card ----- */
.content-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 50px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* ----- Content Sections ----- */
.content-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-section h2 {
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    text-align: left;
}

.content-section h3 {
    color: #444;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-section p {
    margin-bottom: 12px;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 6px;
}

/* ----- Info Box ----- */
.info-box {
    background: var(--bg-alt);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-box p {
    margin-bottom: 5px;
    text-align: left;
}

/* ----- Summary Box ----- */
.summary-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.summary-box h2 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.summary-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.summary-box li {
    margin-bottom: 8px;
}

/* ----- Table of Contents ----- */
.toc {
    background: var(--bg-alt);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.toc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.toc ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    color: var(--primary);
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}

/* ===========================================
   11. WIDGETS
   =========================================== */

/* Note: Les styles des widgets (cookies, social-proof, chatbot) 
   sont intégrés directement dans leurs fichiers PHP respectifs
   pour maintenir l'encapsulation */

/* ===========================================
   12. UTILITAIRES
   =========================================== */

/* ----- Accessibilité ----- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ----- Text utilities ----- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }

/* ----- Spacing utilities ----- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* ===========================================
   13. MEDIA QUERIES
   =========================================== */

/* ----- Tablet (max 1024px) ----- */
@media (max-width: 1024px) {
    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .key-points {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    /* Grids */
    .method-grid,
    .results-grid,
    .testimonials-grid,
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* BANT */
    .bant-infographic {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .bant-item {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
    
    /* Footer */
    footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- Mobile (max 768px) ----- */
@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    /* Header nav hidden */
    header nav {
        display: none;
    }
    
    /* Calculator */
    .calculator-card {
        padding: 1.5rem;
        border-radius: 24px;
    }
    
    /* Grids */
    .method-grid,
    .results-grid,
    .guarantees-grid,
    .testimonials-grid,
    .faq-grid,
    .checklist-grid,
    .services-grid,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    /* BANT */
    .bant-infographic {
        flex-direction: column;
        align-items: center;
    }
    
    .bant-item {
        flex: 0 0 100%;
        max-width: 250px;
    }
    
    /* Footer */
    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand .logo {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-baseline {
        font-size: 0.75rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    /* Form row */
    .form-row,
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Result page */
    .result-hero-section {
        padding: 6.5rem 0 3rem;
    }
    
    .result-hero-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .result-pricing {
        padding: 1.5rem 1rem;
    }
    
    .pricing-value {
        font-size: 3rem;
    }
    
    .pricing-activity,
    .pricing-zone,
    .result-activity,
    .result-zone {
        font-size: 1rem;
    }
    
    /* Trial banner */
    .trial-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trial-banner-content {
        text-align: center;
    }
    
    .trial-banner-content strong {
        font-size: 1.25rem;
    }
    
    .trial-banner-content span {
        font-size: 1rem;
    }
    
    /* Services */
    .services-section {
        padding: 3.5rem 0;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Form section */
    .form-section {
        padding: 3.5rem 0;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Guarantees section */
    .guarantees-section .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .guarantee-item {
        font-size: 0.95rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    /* Volume insuffisant */
    .result-title {
        font-size: 1.5rem;
    }
    
    .result-card-negative {
        padding: 2rem 1.5rem;
    }
    
    .result-card-negative h2 {
        font-size: 1.5rem;
    }
    
    .result-suggestions h2 {
        font-size: 1.5rem;
    }
    
    /* Pages secondaires */
    .content-card {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ----- Small mobile (max 480px) ----- */
@media (max-width: 480px) {
    .result-hero-section {
        padding: 6rem 0 2.5rem;
    }
    
    .result-hero-title {
        font-size: 1.25rem;
    }
    
    .result-pricing {
        padding: 1.5rem 1rem;
    }
    
    .pricing-value {
        font-size: 2.5rem;
    }
    
    .pricing-unit {
        font-size: 1rem;
    }
    
    .trial-banner-section {
        padding: 1.5rem 0;
    }
    
    .trial-banner i {
        font-size: 2.5rem;
    }
    
    .trial-banner-content strong {
        font-size: 1.125rem;
    }
    
    .trial-banner-content span {
        font-size: 0.95rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .form-section {
        padding: 3rem 0;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-card {
        padding: 1.5rem 1rem;
    }
    
    .guarantees-section .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
    
    .result-footer-section {
        padding: 2.5rem 0 4rem;
    }
    
    .result-title {
        font-size: 1.25rem;
    }
    
    .result-card-negative {
        padding: 1.5rem 1rem;
    }
    
    .result-card-negative h2 {
        font-size: 1.25rem;
    }
    
    .result-icon-negative {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .result-suggestions h2 {
        font-size: 1.25rem;
    }
    
    .suggestion-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Email capture responsive (tailles typo / formulaire — paddings carte gérés par .page-simulation-result) */
    .email-capture-card::before {
        width: 60px;
    }
    
    .email-capture-icon {
        width: 75px;
        height: 75px;
    }
    
    .email-capture-icon i {
        font-size: 2.25rem;
    }
    
    .email-capture-title {
        font-size: 1.5rem;
    }
    
    .email-capture-subtitle {
        font-size: 1.05rem;
    }
    
    .email-input-wrapper {
        flex-direction: column;
        border-radius: var(--radius-sm);
    }

    .email-input-wrapper .email-input {
        min-width: 0;
        width: 100%;
    }
    
    .email-input {
        border-radius: var(--radius-sm);
        border-right: 2px solid var(--border);
    }
    
    .btn-email-submit {
        border-radius: var(--radius-sm);
        margin-top: 0.75rem;
        padding: 1rem 1.5rem;
    }
    
    .email-capture-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .benefit-item {
        width: fit-content;
    }
    
    /* Simulation recap responsive */
    .simulation-recap {
        flex-direction: column;
        gap: 0;
        margin: 2rem 1rem 0;
    }
    
    .recap-item {
        padding: 1.25rem 1rem;
    }
    
    .recap-item:not(:last-child)::after {
        width: 80%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .account-hero-badge {
        font-size: 0.95rem;
        padding: 0.7rem 1.25rem;
    }
}

/* ===========================================
   EMAIL CAPTURE SECTION - Styles principaux
   =========================================== */
.email-capture-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
}

.email-capture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.email-capture-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.email-capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 0 0 4px 4px;
}

.email-capture-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
}

.email-capture-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    animation: rotate-border 20s linear infinite;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.email-capture-icon i {
    font-size: 2.75rem;
    color: white;
}

.email-capture-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.email-capture-title strong {
    color: var(--primary);
}

.email-capture-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.email-capture-form {
    max-width: 520px;
    margin: 0 auto;
}

.email-input-wrapper {
    display: flex;
    gap: 0;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 1.15rem 1.5rem;
    border: 2px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 1.05rem;
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fafbfc;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
    background: white;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.btn-email-submit {
    padding: 1.15rem 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-email-submit:hover {
    transform: translateX(2px);
    box-shadow: -4px 0 15px rgba(102, 126, 234, 0.3);
}

.email-capture-privacy {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.email-capture-privacy i {
    color: var(--success);
    font-size: 1.1rem;
}

.email-capture-legal {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 1rem 0 0;
    line-height: 1.45;
    padding: 0 0.15rem;
}

.email-capture-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--success-light);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ===========================================
   BLOC PRIX OFFRE D'ESSAI (page résultat)
   =========================================== */
.trial-pricing-box {
    text-align: center;
    margin: 1.25rem 0;
    padding: 1rem 0.75rem;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.12);
}

.trial-pricing-box__compare {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.trial-pricing-box__total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin: 0.35rem 0 0.25rem;
}

.trial-pricing-box__ttc {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trial-pricing-box__ht {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.trial-pricing-box__ht-line {
    display: inline-block;
    max-width: 100%;
}

/* ===========================================
   CURSEUR OFFRE D'ESSAI (volume de prospects test)
   =========================================== */
.trial-slider-field {
    text-align: center;
    margin: 0 0 1.75rem;
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(102, 126, 234, 0.35);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.04) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Curseur desktop / stepper mobile */
.trial-volume-desktop {
    display: block;
}

.trial-volume-mobile {
    display: none;
}

.trial-slider-field__hint--desktop {
    display: block;
}

.trial-slider-field__hint--mobile {
    display: none;
}

.trial-slider-field__value--desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .trial-volume-desktop {
        display: none !important;
    }

    .trial-volume-mobile {
        display: block;
    }

    .trial-slider-field__value--desktop-only {
        display: none !important;
    }

    .trial-slider-field__hint--desktop {
        display: none !important;
    }

    .trial-slider-field__hint--mobile {
        display: block;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .page-simulation-result .trial-slider-field {
        padding: 0.65rem 0.4rem 0.75rem;
        margin-bottom: 1rem;
    }

    .trial-pricing-box {
        padding: 0.75rem 0.4rem;
        margin: 0.85rem 0;
    }

    .trial-pricing-box__total {
        font-size: 1.65rem;
    }
}

.trial-slider-field__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: rgba(102, 126, 234, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.65rem;
}

.trial-slider-field__badge i {
    font-size: 1rem;
}

.trial-slider-field__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.trial-slider-field__hint {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0 0 1rem;
    line-height: 1.5;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

.trial-slider-field__hint strong {
    color: var(--text);
}

/* Stepper mobile (− valeur +), liste si plafond > 12 */
.trial-volume-mobile {
    margin: 0.35rem 0 0.25rem;
}

.trial-stepper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    max-width: 22rem;
    margin: 0 auto;
}

.trial-stepper__btn {
    flex: 0 0 3.25rem;
    min-height: 3.25rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(102, 126, 234, 0.45);
    background: linear-gradient(180deg, #fff 0%, #f1f5ff 100%);
    color: var(--primary);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
    -webkit-tap-highlight-color: transparent;
}

.trial-stepper__btn:hover:not(:disabled) {
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.trial-stepper__btn:active:not(:disabled) {
    transform: scale(0.97);
}

.trial-stepper__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.trial-stepper__readout {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(102, 126, 234, 0.55);
    background: rgba(102, 126, 234, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trial-stepper__num {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.trial-stepper__legend {
    margin-top: 0.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
}

.trial-stepper-jump {
    margin-top: 0.65rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.trial-stepper-jump__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--primary);
    margin-bottom: 0.3rem;
    text-align: center;
}

.trial-stepper-jump__select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text);
    background: #fff;
}

.trial-stepper-jump__select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.trial-slider-field__value {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 0.35rem;
}

.trial-slider-field__value-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 1ch;
}

.trial-slider-field__value-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.trial-slider-wrap {
    position: relative;
    padding: 0.85rem 0.35rem 0.5rem;
    margin: 0 auto;
    max-width: 100%;
}

/* Curseur : piste + gros bouton circulaire (thumb) */
.trial-slider-input {
    --trial-fill-pct: 100%;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2.75rem;
    background: transparent;
    cursor: grab;
    margin: 0;
}

.trial-slider-input:active {
    cursor: grabbing;
}

.trial-slider-input:focus {
    outline: none;
}

.trial-slider-input:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.45);
    outline-offset: 4px;
    border-radius: 8px;
}

.trial-slider-input::-webkit-slider-runnable-track {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--primary) 0%,
        var(--primary) var(--trial-fill-pct),
        #e2e8f0 var(--trial-fill-pct),
        #e2e8f0 100%
    );
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.trial-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    margin-top: -10px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow:
        0 2px 8px rgba(102, 126, 234, 0.35),
        0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.trial-slider-input:hover::-webkit-slider-thumb {
    transform: scale(1.06);
    box-shadow:
        0 3px 12px rgba(102, 126, 234, 0.45),
        0 6px 18px rgba(0, 0, 0, 0.14);
}

.trial-slider-input:active::-webkit-slider-thumb {
    transform: scale(1.02);
    cursor: grabbing;
}

.trial-slider-input::-moz-range-track {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--primary) 0%,
        var(--primary) var(--trial-fill-pct),
        #e2e8f0 var(--trial-fill-pct),
        #e2e8f0 100%
    );
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.trial-slider-input::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow:
        0 2px 8px rgba(102, 126, 234, 0.35),
        0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.trial-slider-input:hover::-moz-range-thumb {
    transform: scale(1.06);
}

.trial-slider-ticks {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.35rem;
    padding: 0 0.15rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.trial-slider-ticks span:first-child {
    text-align: left;
}

.trial-slider-ticks span:last-child {
    text-align: right;
}

/* Variante page compte (fond formulaire blanc / gris léger) */
.form-card .trial-slider-field {
    border-color: rgba(102, 126, 234, 0.28);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.07) 0%, rgba(248, 250, 252, 0.9) 100%);
    text-align: left;
}

.form-card .trial-slider-field__hint {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.form-card .trial-slider-field__value {
    justify-content: flex-start;
}

.form-card .trial-volume-mobile {
    text-align: center;
}

.form-card .trial-stepper {
    max-width: none;
    justify-content: flex-start;
}

.form-card .trial-stepper-jump {
    max-width: none;
}

@media (max-width: 480px) {
    .trial-slider-field__title {
        font-size: 1.05rem;
    }

    .trial-slider-field__value-num {
        font-size: 1.9rem;
    }

    .trial-slider-input::-webkit-slider-thumb,
    .trial-slider-input::-moz-range-thumb {
        width: 40px;
        height: 40px;
    }

    .trial-slider-input::-webkit-slider-thumb {
        margin-top: -13px;
    }
}

/* ===========================================
   ACCOUNT HERO - Styles pour la page compte
   =========================================== */
.account-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.account-hero-badge i {
    font-size: 1.4rem;
}

.result-hero-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Simulation recap - Version améliorée */
.simulation-recap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    margin-top: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.recap-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1.25rem;
    position: relative;
    background: white;
    transition: background var(--transition);
}

.recap-item:hover {
    background: var(--bg-alt);
}

.recap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border);
}

.recap-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.recap-value {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.recap-separator {
    display: none;
}

/* ===========================================
   OFFRE D'ESSAI — note première commande & badge garantie
   =========================================== */
.trial-first-order-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.75rem 0 0;
    line-height: 1.4;
    text-align: center;
}

.trial-first-order-note i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.trial-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1.5rem auto 0;
    max-width: 520px;
    text-align: left;
}

.trial-guarantee-badge__icon {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
    line-height: 1;
}

.trial-guarantee-badge__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trial-guarantee-badge__text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.trial-guarantee-badge__text span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .trial-guarantee-badge {
        flex-direction: row;
        padding: 0.85rem 1rem;
    }

    .trial-guarantee-badge__icon {
        font-size: 1.6rem;
    }
}
