/* ============================================
   SOS-DISQUE - Design System v2.0
   Refactored for consistency and maintainability
   ============================================ */

/* Skip link - accessible navigation */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #1a56db);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Screen reader only - accessible hidden text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ===================
       COLOR PALETTE
       =================== */

    /* Primary - Violet neon */
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #9333ea;
    --primary-bg: rgba(124, 58, 237, 0.1);
    --primary-bg-hover: rgba(124, 58, 237, 0.15);
    --primary-border: rgba(124, 58, 237, 0.3);

    /* Secondary - Violet clair */
    --secondary: #c4b5fd;
    --secondary-dark: #7c3aed;
    --secondary-light: #a78bfa;
    --secondary-bg: rgba(124, 58, 237, 0.08);

    /* CTA - Violet (boutons principaux) */
    --cta: #7c3aed;
    --cta-dark: #6d28d9;
    --cta-light: #9333ea;
    --cta-bg: rgba(124, 58, 237, 0.1);

    /* Accent - Yellow neon */
    --accent: #facc15;

    /* Semantic colors */
    --success: #16A34A;
    --success-dark: #15803d;
    --success-light: #22c55e;
    --success-bg: #f0fdf4;

    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: #fbbf24;
    --warning-bg: #fffbeb;
    --warning-border: #fcd34d;

    --error: #ef4444;
    --error-dark: #dc2626;
    --error-bg: #fef2f2;

    --info: #3b82f6;
    --info-dark: #1e40af;
    --info-light: #60a5fa;
    --info-bg: #eff6ff;
    --info-border: #bfdbfe;

    /* Neutrals — Dark theme */
    --dark: #0a0a1a;
    --gray-900: #e8edf5;
    --gray-800: #e2e8f0;
    --gray-700: #e2e8f0;
    --gray-600: #94a3b8;
    --gray-500: #b0bfcf;
    --gray-400: #8896a8;
    --gray-300: rgba(124, 58, 237, 0.2);
    --gray-200: #1a1a2e;
    --gray-100: #141425;
    --gray-50: #0f0f1a;
    --white: #ffffff;

    /* ===================
       SPACING SCALE
       =================== */
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 100px;

    /* ===================
       TYPOGRAPHY
       =================== */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 2rem;       /* 32px */
    --text-4xl: 2.5rem;     /* 40px */
    --text-5xl: 3rem;       /* 48px */

    /* Font weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* ===================
       BORDER RADIUS
       =================== */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50%;
    --radius-pill: 9999px;

    /* ===================
       SHADOWS
       =================== */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.6);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);

    /* ===================
       TRANSITIONS
       =================== */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;

    /* ===================
       Z-INDEX SCALE
       =================== */
    --z-dropdown: 1010;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 1100;
    --z-modal: 1200;
    --z-tooltip: 1300;

    /* ===================
       BREAKPOINTS (for reference)
       =================== */
    /* --bp-sm: 640px */
    /* --bp-md: 768px */
    /* --bp-lg: 1024px */
    /* --bp-xl: 1200px */
    /* --bp-2xl: 1400px */

    /* ===================
       LAYOUT
       =================== */
    --container-max: 1200px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0a0a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

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

a {
    color: #c4b5fd;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #facc15;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: #7c3aed;
    color: #facc15;
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: rgba(124, 58, 237, 0.1);
    color: #e2e8f0;
    border: 2px solid rgba(124, 58, 237, 0.5);
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.2);
    color: #ffffff;
    border-color: #7c3aed;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0a1a;
    box-shadow: 0 2px 20px rgba(124, 58, 237, 0.15);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

/* Phone Banner - Contact bar */
.phone-banner {
    background: linear-gradient(135deg, #1a1035 0%, #0f0f1a 100%);
    color: #e2e8f0;
    padding: 0.75rem 0;
    text-align: center;
    margin-top: 72px; /* Compensate for fixed header */
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.phone-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.phone-banner span {
    font-size: 0.95rem;
}

.phone-banner a {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-banner a:hover {
    color: #4ade80;
    text-decoration: underline;
}

.phone-banner .phone-separator {
    color: #94a3b8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .phone-banner {
        padding: 0.5rem 0;
    }
    .phone-banner span:first-child {
        display: none;
    }
    .phone-banner a {
        font-size: 1rem;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 72px;
    max-width: 1400px;
}

/* Compensation pour le header fixe lors du scroll vers les ancres */
section[id] {
    scroll-margin-top: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.logo-img-large {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

#logo-switcher {
    cursor: pointer;
}

#logo-switcher:hover .logo-img-large {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-sos {
    color: #facc15;
}

.logo-disque {
    color: #c4b5fd;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

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

.nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: #b0bfcf;
    transition: color 0.2s;
    white-space: nowrap;
    padding: 6px 4px;
}

.nav a:hover {
    color: #facc15;
}

/* CTA mobile caché en desktop */
.nav-cta-mobile {
    display: none;
}

/* Page active dans le nav */
.nav a[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
}

/* CTA bouton dans le header */
.header .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Header responsive — écrans larges (> 1400px) */
@media (min-width: 1401px) {
    .nav {
        gap: 16px;
    }
    .nav a {
        font-size: 0.95rem;
        padding: 6px 6px;
    }
}

/* Header responsive — écrans moyens (1201px - 1400px) : on compacte un peu */
@media (min-width: 1201px) and (max-width: 1400px) {
    .nav {
        gap: 8px;
    }
    .nav a {
        font-size: 0.85rem;
        padding: 6px 4px;
    }
    .header .btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .logo-img-large {
        height: 50px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo a {
        gap: 8px;
    }
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, #0a0a1a 0%, #1a1035 60%, #0f0f1a 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.3);
    color: #facc15;
    border: 1px solid rgba(124, 58, 237, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.highlight {
    color: #facc15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e8edf5;
    margin-bottom: 32px;
}

.hero-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.promise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-phones {
    display: flex;
    gap: 10px;
}

.hero-phones .btn {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 10px 14px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #1a1035 0%, #141425 100%);
    padding: 40px 0;
}

.trust-banner .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    color: var(--white);
}

.trust-number {
    display: block;
    font-size: clamp(1.4rem, 2.4vw, 2.5rem);
    font-weight: 800;
    white-space: nowrap;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--dark);
}

.video-section .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #1a1035;
}

.problem .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-image img {
    border-radius: 16px;
}

.problem h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

.problem p {
    color: #e8edf5;
    margin-bottom: 24px;
}

.symptoms h3 {
    margin-bottom: 12px;
    color: #e2e8f0;
}

.symptoms ul {
    list-style: none;
}

.symptoms li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #e8edf5;
}

.symptoms li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c4b5fd;
    font-weight: bold;
}

.reassurance {
    padding: 16px;
    background: rgba(124, 58, 237, 0.12);
    border-left: 4px solid #7c3aed;
    border-radius: 0 8px 8px 0;
}

/* Services */
.services {
    padding: 100px 0;
    background: #0f0f1a;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.section-subtitle {
    text-align: center;
    color: #60a5fa;
    margin-bottom: 60px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(20, 20, 37, 0.8);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2), 0 0 50px rgba(124, 58, 237, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 16px;
}

.service-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    border-radius: 12px;
    margin-bottom: 16px;
}

.service-icon-svg svg {
    stroke: #7c3aed;
}

.service-icon-fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #e2e8f0;
}

.service-card p {
    color: #b0bfcf;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-price {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.2);
    color: #facc15;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

/* Lab Section */
.lab {
    padding: 100px 0;
    background: #141425;
}

.lab .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lab h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

.lab > .container > .lab-content > p {
    color: #e8edf5;
    margin-bottom: 32px;
}

.lab-features {
    display: grid;
    gap: 20px;
}

.lab-feature {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
}

.lab-feature strong {
    color: #facc15;
    margin-bottom: 4px;
}

.lab-feature span {
    color: #b0bfcf;
    font-size: 0.9rem;
}

.lab-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: #1a1035;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.pricing-card {
    background: rgba(15, 15, 26, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #7c3aed;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    margin-bottom: 24px;
}

.pricing-header h3 {
    color: #c4b5fd;
    margin-bottom: 16px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #facc15;
}

.price .period {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-700);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-content h4 {
    color: var(--success);
    margin-bottom: 8px;
}

.guarantee-content p {
    color: var(--gray-700);
}

/* Process */
.process {
    padding: 100px 0;
    background: #0f0f1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 24px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #7c3aed;
    color: #facc15;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.process-step h3 {
    margin-bottom: 12px;
    color: #e2e8f0;
}

.process-step p {
    color: #b0bfcf;
    font-size: 0.9rem;
}

/* Success */
.success {
    padding: 100px 0;
    background: #141425;
}

.success .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.success-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.success h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

.success p {
    color: #b0bfcf;
    margin-bottom: 24px;
}

.success ul {
    list-style: none;
    margin-bottom: 32px;
}

.success li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
}

.success li::before {
    content: "♥";
    position: absolute;
    left: 0;
    color: var(--primary);
}

blockquote {
    padding: 24px;
    background: rgba(124, 58, 237, 0.08);
    border-left: 4px solid #7c3aed;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #e8edf5;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    color: #c4b5fd;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background: #0f0f1a;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(20, 20, 37, 0.8);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.1);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    transition: border-color 0.2s;
    font-family: inherit;
    background: #1a1a2e;
    color: #e2e8f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8896a8;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

/* Footer */
.footer {
    background: #0a0a14;
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col p {
    color: var(--gray-500);
    margin-top: 16px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-col li {
    color: var(--gray-500);
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-300);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social a.coming-soon {
    opacity: 0.4;
    cursor: default;
}

.footer-social a.coming-soon:hover {
    background: rgba(255,255,255,0.1);
    color: var(--gray-300);
    transform: none;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
    color: #8896a8;
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive — Hamburger menu à 1200px */
@media (max-width: 1200px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a1a;
        flex-direction: column;
        padding: 30px 24px;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    }

    /* Mobile dropdown */
    .nav-item-dropdown {
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    }
    .nav-item-dropdown > a {
        justify-content: space-between;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: none;
    }
    .nav-item-dropdown::after {
        display: none;
    }
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, visibility 0s 0.3s;
    }
    .nav-item-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 0 0 0.5rem 0;
        transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, visibility 0s 0s;
    }
    .dropdown-item {
        padding: 12px 0 12px 1rem;
    }
    .dropdown-item:hover {
        background-color: transparent;
    }

    .nav a.nav-b2b {
        margin-top: 20px;
        text-align: center;
        border-radius: 8px;
    }

    .header .btn { display: none; }

    .nav-cta-mobile {
        display: block !important;
        margin-top: 20px;
        padding: 16px;
        background: var(--cta);
        color: var(--white) !important;
        text-align: center;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        border-bottom: none !important;
    }
    .nav-cta-mobile:hover {
        background: var(--cta-dark);
        color: var(--white) !important;
    }

    .hero .container,
    .problem .container,
    .lab .container,
    .success .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-image img {
        max-height: 200px;
        object-fit: cover;
        width: 100%;
        border-radius: 12px;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-banner .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .services-grid,
    .process-steps,
    .trust-banner .container {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-phones {
        flex-direction: row;
    }

    .hero-phones .btn {
        font-size: 0.85rem;
        padding: 8px 10px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}

/* Clients Section */
.clients-section {
    padding: 40px 0;
    background: #0f0f1a;
    border-bottom: none;
}

.clients-intro {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #e8edf5;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    transition: color 0.2s, border-color 0.3s, box-shadow 0.3s;
}

.client-logo:hover {
    color: #ffffff;
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.15);
}

.client-logo i {
    font-size: 2rem;
}

.client-logo span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Confidentiality Section */
.confidentiality-section {
    padding: 80px 0;
    background: #141425;
    color: var(--white);
}

.confidentiality-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.confidentiality-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.confidentiality-content h2 i {
    color: #7c3aed;
}

.confidentiality-content > p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.confidentiality-features {
    display: grid;
    gap: 20px;
}

.conf-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(15, 15, 26, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.conf-feature:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.12);
}

.conf-feature i {
    font-size: 1.5rem;
    color: #7c3aed;
    width: 40px;
    text-align: center;
}

.conf-feature strong {
    display: block;
    margin-bottom: 4px;
}

.conf-feature span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.confidentiality-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-card {
    background: rgba(15, 15, 26, 0.6);
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.badge-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.15);
}

.badge-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.badge-icon i {
    font-size: 2.5rem;
}

.badge-icon span {
    font-size: 1.2rem;
    font-weight: 800;
}

.badge-icon.rgpd i,
.badge-icon.rgpd span {
    color: #0052b4;
}

.badge-icon.cnil i,
.badge-icon.cnil span {
    color: #e30613;
}

.badge-icon.secure i,
.badge-icon.secure span {
    color: var(--success);
}

.badge-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 1024px) {
    .confidentiality-grid {
        grid-template-columns: 1fr;
    }

    .confidentiality-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .clients-logos {
        gap: 24px;
    }

    .client-logo i {
        font-size: 1.5rem;
    }

    .confidentiality-badges {
        flex-direction: column;
    }

    .badge-card {
        min-width: auto;
    }
}

/* Why Cheaper Section */
.why-cheaper {
    padding: 100px 0;
    background: #0f0f1a;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-us,
.comparison-others {
    background: rgba(20, 20, 37, 0.8);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.comparison-us {
    border: 2px solid var(--success);
}

.comparison-others {
    border: 2px solid var(--gray-300);
    opacity: 0.85;
}

.comparison-us h3,
.comparison-others h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.comparison-us h3 i {
    color: var(--success);
    font-size: 1.5rem;
}

.comparison-others h3 i {
    color: var(--gray-500);
    font-size: 1.5rem;
}

.comparison-us ul,
.comparison-others ul {
    list-style: none;
}

.comparison-us li,
.comparison-others li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    line-height: 1.5;
}

.comparison-us li:last-child,
.comparison-others li:last-child {
    border-bottom: none;
}

.comparison-us li strong {
    color: var(--success);
}

.comparison-others li strong {
    color: var(--gray-500);
}

.quality-guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #1a1035 0%, #141425 100%);
    color: var(--white);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.quality-guarantee i {
    font-size: 3rem;
    color: var(--warning);
    flex-shrink: 0;
}

.quality-guarantee > div {
    flex: 1;
}

.quality-guarantee h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-align: left;
}

.quality-guarantee p {
    opacity: 0.9;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .quality-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* Reviews Platforms Section */
.reviews-section {
    padding: 80px 0;
    background: #141425;
}

.reviews-platforms {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

@media (min-width: 769px) {
    .reviews-platforms {
        flex-wrap: nowrap;
    }

    .review-platform {
        flex: 1;
        max-width: 280px;
    }
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(20, 20, 37, 0.8);
    padding: 24px 32px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.review-platform.google:hover {
    border-color: #4285F4;
}

.review-platform.pagesjaunes:hover {
    border-color: #FFCC00;
}

.review-platform.facebook:hover {
    border-color: #1877F2;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.platform-stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
    font-size: 0.9rem;
}

.platform-cta {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.review-platform:hover .platform-cta {
    color: var(--info);
}

.review-platform:hover .platform-cta i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .reviews-platforms {
        flex-direction: column;
        align-items: center;
    }

    .review-platform {
        width: 100%;
        max-width: 320px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #0f0f1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: rgba(20, 20, 37, 0.8);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    background: rgba(20, 20, 37, 1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
}

.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c4b5fd;
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item h3 i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

/* Brands Section */
.brands-section {
    padding: 50px 0;
    background: #0f0f1a;
    border-bottom: none;
}

.brands-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.brand-logo-item:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-4px);
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0) invert(0.7);
    transition: opacity 0.3s ease;
}

.brand-logo-item:hover .brand-logo-img {
    opacity: 1;
    filter: brightness(0) invert(0.9);
}

.brand-local {
    filter: brightness(0) invert(0.7);
    width: 64px;
}

.brand-logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-more {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 32px;
    font-style: italic;
}

.brand-text-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-500);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
}

.brand-text-only:hover .brand-text-logo {
    color: var(--secondary);
}

.brand-text-only span:last-child {
    display: none;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .brand-logo-img {
        width: 36px;
        height: 36px;
    }

    .brand-logo-item span {
        font-size: 0.65rem;
    }

    .brands-more {
        font-size: 0.8rem;
    }
}

/* Contact Location */
.contact-location {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 24px 32px;
    background: rgba(20, 20, 37, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-location p {
    margin: 0;
    white-space: nowrap;
}

.contact-location i {
    color: var(--primary);
    margin-right: 8px;
}

.contact-visit {
    margin-top: 10px !important;
    font-size: 0.95rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-location p {
        white-space: normal;
    }
}

/* DPD Relais Finder */
.dpd-relais-finder {
    margin-top: 48px;
    padding: 24px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dpd-relais-finder h4 {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dpd-relais-finder h4 i {
    color: var(--primary);
}

.relais-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.relais-search-form input {
    flex: 1;
    min-width: 120px;
    padding: 12px 14px;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: #1a1a2e;
    color: #e2e8f0;
}

.relais-search-form input:focus {
    outline: none;
    border-color: #7c3aed;
}

.relais-search-form input#relais-zipcode {
    max-width: 120px;
    flex: 0 0 120px;
}

.btn-search-relais {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search-relais:hover {
    background: var(--primary-dark);
}

.btn-search-relais:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

.relais-results {
    margin-top: 16px;
}

.relais-results.loading {
    text-align: center;
    padding: 20px;
    color: var(--gray-500);
}

.relais-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.relais-item:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

.relais-item.selected {
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.05);
}

.relais-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.relais-info {
    flex: 1;
}

.relais-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.relais-address {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.relais-distance {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.relais-hours {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.relais-note {
    margin: 16px 0 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.relais-error {
    padding: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.relais-empty {
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
}

@media (max-width: 640px) {
    .relais-search-form {
        flex-direction: column;
    }

    .relais-search-form input#relais-zipcode {
        max-width: none;
        flex: 1;
    }
}

/* Tracking Widget */
.tracking-widget {
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, #1a1035 0%, #141425 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tracking-widget h4 {
    margin: 0 0 16px 0;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tracking-form {
    display: flex;
    gap: 10px;
}

.tracking-form input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 1px;
    background: #1a1a2e;
    color: #e2e8f0;
}

.tracking-form input:focus {
    outline: none;
    border-color: #7c3aed;
}

.btn-track {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-track:hover {
    background: var(--primary-dark);
}

.tracking-hint {
    margin: 12px 0 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.tracking-error {
    margin-top: 12px;
    padding: 10px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 6px;
    color: var(--primary-border);
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .tracking-form {
        flex-direction: column;
    }
}

/* Phone Validation */
.phone-valid {
    border-color: var(--success) !important;
}

.phone-invalid {
    border-color: var(--error) !important;
}

.phone-hint {
    font-size: 0.75rem;
    margin-top: 4px;
    color: var(--gray-500);
}

.phone-hint.valid {
    color: var(--success);
}

.phone-hint.invalid {
    color: var(--error);
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin: 24px 0;
}

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

.warning-box p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Nav B2B */
.nav-b2b {
    background: rgba(124, 58, 237, 0.2);
    color: #c4b5fd !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.nav-b2b:hover,
.nav-b2b.active {
    background: #7c3aed;
    color: #facc15 !important;
}

/* B2B Page Styles */
.hero-b2b {
    background: linear-gradient(160deg, #0a0a1a 0%, #1a1035 60%, #0f0f1a 100%);
}

.hero-b2b .hero-content {
    color: var(--white);
}

.hero-b2b h1 {
    color: var(--white);
}

.hero-b2b .hero-subtitle {
    color: rgba(255,255,255,0.9);
}

/* B2B Targets */
.b2b-targets {
    padding: 100px 0;
    background: #0f0f1a;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.target-card {
    background: rgba(20, 20, 37, 0.8);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}

.target-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.target-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
}

.target-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* B2B Benefits */
.b2b-benefits {
    padding: 100px 0;
    background: #141425;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    background: rgba(20, 20, 37, 1);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #7c3aed;
}

.benefit-content h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* B2B Process */
.b2b-process {
    padding: 100px 0;
    background: #0f0f1a;
}

/* Contact B2B */
.contact-b2b {
    background: linear-gradient(135deg, #1a1035 0%, #0f0f1a 100%);
}

.contact-b2b .section-title,
.contact-b2b .section-subtitle {
    color: var(--white);
}

.contact-b2b .section-subtitle {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .targets-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .benefit-icon {
        margin: 0 auto;
    }
}

/* Legal Page */
.legal-content {
    padding: 140px 0 80px;
    min-height: calc(100vh - 200px);
    background: #0a0a1a;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #c4b5fd;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #7c3aed;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.3rem;
    color: #c4b5fd;
    margin-bottom: 16px;
}

.legal-section p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary);
}

.legal-update {
    font-style: italic;
    color: var(--gray-500);
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   DIAGNOSTIC EXPRESS WIZARD
   ============================================ */

.diagnostic-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f1a 0%, #141425 100%);
}

/* Progress Bar */
.wizard-progress {
    max-width: 500px;
    margin: 0 auto 32px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.progress-encourage {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, var(--success) 0%, var(--success-dark) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-steps .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.progress-steps .step.active {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.progress-steps .step.completed {
    background: var(--success);
    color: var(--white);
}

/* Feedback Message */
.wizard-feedback {
    max-width: 600px;
    margin: 0 auto 24px;
    padding: 16px 24px;
    background: var(--success-bg);
    border: 1px solid var(--success);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideDown 0.4s ease;
}

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

.wizard-feedback .feedback-icon {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wizard-feedback .feedback-text {
    color: var(--success-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Wizard Hint */
.wizard-hint {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.89rem;
    margin-top: -18px;
    margin-bottom: 26px;
    font-weight: 450;
    opacity: 0.92;
}

/* Wizard Container */
.wizard-container {
    max-width: 700px;
    margin: 0 auto;
    min-height: 350px;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.wizard-step.active {
    display: block;
}

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

.wizard-question {
    text-align: center;
    font-size: 1.48rem;
    color: #c4b5fd;
    margin-bottom: 28px;
    font-weight: 680;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Wizard Options */
.wizard-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wizard-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(20, 20, 37, 0.8);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.wizard-option:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.wizard-option.selected {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

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

.wizard-option span {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

.wizard-option small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.wizard-option.urgence-haute {
    border-color: var(--warning);
}

.wizard-option.urgence-haute:hover {
    background: var(--warning-bg);
    border-color: var(--warning);
}

.wizard-option.urgence-haute i {
    color: var(--warning);
}

/* Wizard Checkboxes (Step 2 - Multiple Selection) */
/* Design humanisé avec micro-variations pour éviter l'uniformité "IA" */
.wizard-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 720px;
    margin: 0 auto;
}

.checkbox-option {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: rgba(20, 20, 37, 0.8);
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    border-radius: 7px;
    cursor: pointer;
    transition: border-color 0.12s ease, background-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
    position: relative;
}

/* Variations subtiles pour casser la monotonie */
.checkbox-option:nth-child(2n) {
    padding-left: 20px;
    border-radius: 8px;
}

.checkbox-option:nth-child(4) {
    background: rgba(15, 15, 26, 0.6);
}

.checkbox-option:nth-child(7) {
    padding-right: 22px;
}

.checkbox-option:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(2px);
    box-shadow: -3px 0 0 0 rgba(124, 58, 237, 0.2);
}

.checkbox-option:active {
    transform: translateX(1px);
}

.checkbox-option input[type="checkbox"] {
    width: 19px;
    height: 19px;
    margin-right: 14px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-label {
    font-weight: 590;
    color: #e2e8f0;
}

.checkbox-option input[type="checkbox"]:checked {
    transform: scale(1.05);
}

.checkbox-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.94rem;
    color: var(--gray-800);
    cursor: pointer;
    line-height: 1.45;
}

.checkbox-label i {
    color: var(--primary);
    font-size: 1.08rem;
    min-width: 19px;
    opacity: 0.92;
}

.checkbox-other {
    flex-direction: column;
    align-items: flex-start;
}

.other-details {
    width: 100%;
    margin-top: 12px;
    padding-left: 36px;
}

.other-details textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.other-details textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Radio Group (Step 5 - Prior Recovery) */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 620px;
    margin: 0 auto 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 17px 22px;
    background: rgba(20, 20, 37, 0.8);
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.14s ease, background-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
    position: relative;
}

.radio-option:first-child {
    border-radius: 9px 8px 8px 9px;
}

.radio-option:last-child {
    border-radius: 8px 9px 9px 8px;
}

.radio-option:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    transform: scale(1.01);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.15);
}

.radio-option input[type="radio"] {
    width: 19px;
    height: 19px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    font-weight: 580;
    color: #e2e8f0;
}

.radio-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.96rem;
    color: var(--gray-800);
    cursor: pointer;
    line-height: 1.5;
}

.radio-label i {
    color: var(--primary);
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Wizard Form Step (Steps 3, 4, 5) */
.wizard-form-step {
    max-width: 710px;
    margin: 0 auto;
}

.wizard-form-step .form-group {
    margin-bottom: 22px;
}

.wizard-form-step .form-group:nth-child(2) {
    margin-bottom: 24px;
}

.wizard-form-step label {
    display: block;
    margin-bottom: 9px;
    font-weight: 580;
    color: var(--gray-900);
    font-size: 0.93rem;
    letter-spacing: -0.01em;
}

.wizard-form-step label i {
    color: var(--primary);
    margin-right: 7px;
    opacity: 0.88;
}

.wizard-form-step textarea,
.wizard-form-step input[type="date"],
.wizard-form-step input[type="time"] {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    border-radius: 7px;
    font-size: 0.94rem;
    font-family: inherit;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    background: #1a1a2e;
    color: #e2e8f0;
}

.wizard-form-step textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.55;
}

.wizard-form-step textarea:focus,
.wizard-form-step input[type="date"]:focus,
.wizard-form-step input[type="time"]:focus {
    outline: none;
    border-color: #7c3aed;
    background: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.wizard-form-step .optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.83rem;
    opacity: 0.85;
}

/* Photo Upload Grid (Step 6) */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .photo-upload-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.photo-upload-item {
    position: relative;
}

.photo-dropzone {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    background: rgba(20, 20, 37, 0.6);
    cursor: pointer;
    transition: border-color 0.14s ease, background-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
    overflow: hidden;
}

.photo-dropzone:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.photo-dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.dropzone-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.7;
}

.dropzone-content span {
    font-weight: 590;
    color: var(--gray-800);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.dropzone-content small {
    font-size: 0.8rem;
    color: var(--gray-500);
    opacity: 0.9;
}

.dropzone-content.has-image {
    padding: 0;
}

.info-box {
    background: var(--info-bg);
    border-left: 4px solid var(--info);
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-box i {
    color: var(--info);
    font-size: 1.3rem;
    margin-top: 2px;
}

.info-box strong {
    color: var(--info-dark);
    display: block;
    margin-bottom: 4px;
}

.info-box p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Wizard Help Box - rappel téléphone sur chaque étape */
.wizard-help-box {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 25px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-help-box i {
    color: var(--warning);
    font-size: 1.5rem;
    margin-top: 2px;
}

.wizard-help-box strong {
    color: var(--warning-dark);
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.wizard-help-box p {
    margin: 0;
    color: var(--warning-dark);
    font-size: 0.88rem;
    line-height: 1.6;
}

.wizard-help-box a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.wizard-help-box a:hover {
    text-decoration: underline;
}

/* Wizard Form Inline (Step 4 - Technical Details) */
.wizard-form-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.wizard-form-inline .form-group {
    text-align: left;
}

.wizard-form-inline label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.wizard-form-inline select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    background: #1a1a2e;
    color: #e2e8f0;
    cursor: pointer;
    transition: border-color 0.2s;
}

.wizard-form-inline select:focus {
    outline: none;
    border-color: #7c3aed;
}

.btn-next {
    display: block;
    margin: 0 auto 12px;
    min-width: 200px;
}

.btn-skip {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s;
}

.btn-skip:hover {
    color: var(--primary);
}

/* Wizard Result (Step 6) */
.wizard-result {
    text-align: center;
    padding: 40px 32px;
    background: var(--success-bg);
    border-radius: 20px;
    margin-bottom: 32px;
    border: 2px solid var(--success);
}

.result-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.result-percent {
    font-size: 4rem;
    font-weight: 800;
    color: var(--success-dark);
    line-height: 1;
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.result-label {
    font-size: 1rem;
    color: var(--success-dark);
    font-weight: 500;
    margin-top: 4px;
}

.result-title {
    font-size: 1.8rem;
    color: var(--success-dark);
    margin-bottom: 12px;
}

.result-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.5;
}

.result-text strong {
    color: var(--success-dark);
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.result-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-dark);
    font-size: 0.9rem;
}

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

.result-subtext {
    color: var(--gray-600);
    font-size: 1rem;
    margin-top: 16px;
}

/* Wizard Form */
.wizard-form {
    max-width: 500px;
    margin: 0 auto;
}

.wizard-form .form-group {
    margin-bottom: 16px;
}

.wizard-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gray-700);
}

.wizard-form label .optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.wizard-form label i {
    color: var(--gray-400);
    margin-right: 6px;
}

.wizard-form input[type="text"],
.wizard-form input[type="email"],
.wizard-form input[type="tel"],
.wizard-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
    background: #1a1a2e;
    color: #e2e8f0;
}

.wizard-form textarea {
    resize: vertical;
    min-height: 60px;
}

.wizard-form input:focus,
.wizard-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.wizard-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wizard-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.wizard-form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.wizard-form .checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.wizard-form .btn-submit {
    margin-bottom: 16px;
}

.form-reassurance {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
}

.form-reassurance i {
    color: var(--success);
    margin-right: 6px;
}

/* Back Button */
.wizard-back {
    display: block;
    margin: 24px auto 0;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.wizard-back:hover {
    color: var(--primary);
}

/* Wizard Success */
.wizard-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.wizard-success h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.wizard-success .success-message {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.wizard-success .success-message strong {
    color: var(--primary);
}

.wizard-success .success-next-steps {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.wizard-success .success-next-steps p {
    margin-bottom: 16px;
    color: var(--gray-700);
}

.wizard-success .success-next-steps .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-form-inline {
        grid-template-columns: 1fr;
    }

    .result-stats {
        flex-direction: column;
        gap: 12px;
    }

    .result-percent {
        font-size: 3rem;
    }

    .progress-header {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .wizard-options {
        grid-template-columns: 1fr;
    }

    .wizard-question {
        font-size: 1.25rem;
    }

    .wizard-hint {
        margin-top: -16px;
    }

    .wizard-form .form-row {
        grid-template-columns: 1fr;
    }

    .wizard-feedback {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .result-title {
        font-size: 1.5rem;
    }

    .result-text {
        font-size: 1rem;
    }

    .wizard-result {
        padding: 24px 16px;
    }

    .checkbox-option,
    .radio-option {
        padding: 14px 16px;
    }

    .checkbox-label,
    .radio-label {
        font-size: 0.9rem;
    }

    .other-details {
        padding-left: 0;
    }

    .wizard-form-step {
        padding: 0 8px;
    }
}

/* ============================================
   LAB GALLERY STYLES
   ============================================ */

.lab-gallery {
    background: #0f0f1a;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(20, 20, 37, 0.6);
    aspect-ratio: 4/3;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .lab-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lab-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lab-gallery {
        padding: 60px 0;
    }
}

/* ============================================
   DOSSIER PAGE STYLES
   ============================================ */

.dossier-page {
    background: #0a0a1a;
}

/* Dossier Header */
.dossier-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0a1a;
    box-shadow: 0 2px 20px rgba(124, 58, 237, 0.15);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    padding: 12px 0;
}

.dossier-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dossier-header .logo {
    display: flex;
    align-items: center;
}

.dossier-header .logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dossier-header .logo-img-large {
    height: 50px;
}

.dossier-id-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 8px;
}

.dossier-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dossier-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.dossier-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.dossier-date i {
    color: var(--primary);
}

/* Info Banner */
.dossier-info-banner {
    background: rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 16px 0;
    margin-top: 74px;
}

.info-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-banner-content .info-icon {
    width: 40px;
    height: 40px;
    background: var(--info);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-banner-content .info-text {
    color: #93c5fd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-banner-content .info-text strong {
    display: block;
    margin-bottom: 4px;
}

/* Dossier Main */
.dossier-main {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
}

/* Client Card */
.dossier-client-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 32px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-details h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.client-details p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 4px 0;
}

.client-details p i {
    width: 16px;
    color: var(--gray-400);
    margin-right: 6px;
}

.advisor-info {
    text-align: right;
}

.advisor-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.advisor-details {
    display: flex;
    align-items: center;
    gap: 16px;
}

.advisor-avatar {
    width: 48px;
    height: 48px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.advisor-details strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.advisor-details p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 2px 0;
}

/* Dossier Progress */
.dossier-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 24px 40px;
    margin-bottom: 32px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.progress-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.progress-step.active .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.progress-step.completed .step-icon {
    background: var(--success);
    color: var(--white);
}

.progress-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.progress-step.active span {
    color: var(--primary);
}

.progress-step.completed span {
    color: var(--success);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin: 0 12px;
    max-width: 80px;
}

/* Dossier Form */
.dossier-form {
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.form-section {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-section.active {
    display: block;
}

.section-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 i {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.dossier-form .form-group {
    margin-bottom: 20px;
}

.dossier-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.dossier-form .form-group label .optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.dossier-form .form-group label .hint {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.dossier-form input[type="text"],
.dossier-form input[type="email"],
.dossier-form input[type="tel"],
.dossier-form input[type="password"],
.dossier-form select,
.dossier-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    background: #1a1a2e;
    color: #e2e8f0;
}

.dossier-form input:focus,
.dossier-form select:focus,
.dossier-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.dossier-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 6px;
    display: block;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.checkbox-item:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-item span {
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item span i {
    color: var(--gray-400);
    font-size: 1rem;
}

.checkbox-item:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.checkbox-item:has(input:checked) span i {
    color: var(--primary);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.radio-item:hover {
    border-color: var(--primary);
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.radio-item span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.radio-item:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-bg);
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: 12px;
    margin-bottom: 24px;
}

.info-box > i {
    color: var(--success);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box strong {
    display: block;
    color: #86efac;
    margin-bottom: 8px;
}

.info-box p {
    color: #b0bfcf;
    font-size: 0.9rem;
    margin: 0;
}

.info-box ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    color: #b0bfcf;
    font-size: 0.9rem;
}

.info-box ul li {
    margin-bottom: 4px;
}

.info-box.warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
}

.info-box.warning > i {
    color: var(--warning);
}

.info-box.warning strong {
    color: #fbbf24;
}

.info-box.warning p {
    color: #b0bfcf;
}

/* Photo Upload Grid */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.photo-upload-item {
    position: relative;
}

.photo-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.photo-dropzone:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.photo-dropzone.dropzone-error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.08);
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.photo-dropzone input[type="file"] {
    display: none;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
}

.dropzone-content i {
    font-size: 2rem;
    color: var(--gray-400);
}

.dropzone-content span {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.dropzone-content small {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.dropzone-content.has-image {
    padding: 0;
}

.dropzone-content.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Urgence Cards */
.urgence-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.urgence-card {
    position: relative;
    cursor: pointer;
}

.urgence-card input[type="radio"] {
    display: none;
}

.urgence-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: rgba(20, 20, 37, 0.8);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.urgence-card:hover .urgence-content {
    border-color: var(--secondary);
}

.urgence-card input:checked + .urgence-content {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.urgence-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.urgence-card input:checked + .urgence-content .urgence-icon {
    background: var(--primary);
    color: var(--white);
}

.urgence-icon i {
    font-size: 1.5rem;
    color: var(--gray-500);
}

.urgence-card input:checked + .urgence-content .urgence-icon i {
    color: var(--white);
}

.urgence-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.urgence-delay {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.urgence-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.urgence-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--warning);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.urgence-card.priority .urgence-content {
    border-color: var(--warning);
}

.urgence-card.priority:hover .urgence-content {
    border-color: var(--warning-dark);
}

.urgence-card.priority input:checked + .urgence-content {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.08);
}

.urgence-card.priority .urgence-icon {
    background: rgba(245, 158, 11, 0.1);
}

.urgence-card.priority .urgence-icon i {
    color: var(--warning);
}

.urgence-card.priority input:checked + .urgence-content .urgence-icon {
    background: var(--warning);
}

.urgence-card.priority input:checked + .urgence-content .urgence-icon i {
    color: var(--white);
}

/* Consents Section */
.consents-section {
    margin: 32px 0;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}

.consents-section h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consents-section h3 i {
    color: var(--primary);
}

.consent-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.consent-item:last-child {
    border-bottom: none;
}

.consent-checkbox {
    position: relative;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    cursor: pointer;
}

.consent-text {
    flex: 1;
}

.consent-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

.consent-text ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.consent-text ul li {
    margin-bottom: 4px;
}

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

/* Dossier Summary */
.dossier-summary {
    background: rgba(20, 20, 37, 0.6);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.dossier-summary h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dossier-summary h3 i {
    color: var(--primary);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 8px;
}

.summary-item .label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.summary-item .value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9rem;
    text-align: right;
}

.summary-item.highlight {
    background: var(--primary-bg);
    border: 1px solid var(--primary);
}

.summary-item.highlight .value {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Shipping Info */
.shipping-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.shipping-info h3 {
    font-size: 1.1rem;
    color: #93c5fd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-info h3 i {
    color: var(--info);
}

.shipping-info p {
    color: #b0bfcf;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.shipping-address {
    background: rgba(20, 20, 37, 0.6);
    padding: 16px;
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.shipping-address strong {
    color: #ffffff;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.form-actions .btn-prev {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

.form-actions .btn-prev:hover {
    border-color: var(--gray-400);
    color: var(--gray-800);
    background: var(--gray-50);
}

.form-actions .btn-next,
.form-actions .btn-submit {
    margin-left: auto;
}

/* Dossier Success */
.dossier-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.dossier-success .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.dossier-success h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.dossier-success .success-case-id {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.dossier-success .success-case-id strong {
    color: var(--secondary);
    font-size: 1.3rem;
}

.dossier-success > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.next-steps-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.next-steps-box h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-steps-box h3 i {
    color: var(--primary);
}

.next-steps-box ol {
    list-style: none;
    counter-reset: step;
}

.next-steps-box ol li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.next-steps-box ol li:last-child {
    border-bottom: none;
}

.next-steps-box ol li i {
    width: 24px;
    color: var(--primary);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dossier Footer */
.dossier-footer {
    background: var(--gray-900);
    padding: 24px 0;
}

.dossier-footer .footer-content {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.dossier-footer .footer-content p {
    margin: 4px 0;
}

.dossier-footer a {
    color: var(--gray-400);
}

.dossier-footer a:hover {
    color: var(--white);
}

.dossier-footer i {
    margin-right: 6px;
    color: var(--gray-600);
}

/* Responsive Dossier */
@media (max-width: 1024px) {
    .dossier-header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .dossier-client-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .client-info {
        flex-direction: column;
    }

    .advisor-info {
        text-align: center;
    }

    .advisor-details {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dossier-progress {
        padding: 20px;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .dossier-form {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .urgence-cards {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .form-actions .btn-prev,
    .form-actions .btn-next,
    .form-actions .btn-submit {
        width: 100%;
        margin: 0;
    }

    .dossier-progress {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .progress-step span {
        display: none;
    }

    .progress-step .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dossier-id-badge {
        order: -1;
        width: 100%;
    }

    .dossier-date {
        display: none;
    }
}

@media (max-width: 480px) {
    .dossier-header .logo-text {
        display: none;
    }

    .photo-upload-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* FIX BUG ANDROID 2026-05-15 — Sur viewport <420px (Galaxy S/A standards),
   2 colonnes de 200px débordent (200+200+gap=420 > 360 viewport). Une seule
   colonne, photos empilées verticalement. Aussi force width 100% sur les
   dropzones pour neutraliser une largeur fixe résiduelle. */
@media (max-width: 420px) {
    .photo-upload-grid {
        grid-template-columns: 1fr !important;
    }
    .photo-dropzone {
        width: 100% !important;
        max-width: 100% !important;
    }
    .photo-upload-item {
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .dossier-success {
        padding: 40px 20px;
    }

    .dossier-success h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   TEAM TRUST SECTION (Homepage)
   ============================================ */

.team-trust-section {
    padding: 100px 0;
    background: #141425;
}

.team-trust-section .container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-trust-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.team-trust-image {
    flex: 0 0 320px;
    width: 320px;
}

.team-trust-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.team-trust-text {
    flex: 1;
}

.team-trust-text h3 {
    font-size: 1.5rem;
    color: #c4b5fd;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-trust-text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.team-trust-text p strong {
    color: var(--secondary);
}

.team-trust-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.team-trust-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.team-trust-link i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-trust-section {
        padding: 60px 0;
    }

    .team-trust-content {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .team-trust-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .team-trust-text h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display utilities */
.hidden {
    display: none;
}

/* Card link - for clickable cards */
.card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Price TTC small text */
.price-ttc {
    display: block;
    font-size: 0.7em;
    opacity: 0.7;
}

.price-ttc-sm {
    display: block;
    font-size: 0.4em;
    opacity: 0.8;
    margin-top: 5px;
}

.price-ttc-period {
    display: block;
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 3px;
}

/* Text utilities */
.text-muted {
    color: var(--gray-500);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

.opacity-70 {
    opacity: 0.7;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* Wizard specific utilities */
.wizard-hint-label {
    margin-bottom: 12px;
}

.wizard-hint-sublabel {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.wizard-section-gap {
    margin-top: 35px;
}

.wizard-form-hidden {
    display: none;
    margin-top: 30px;
}

/* Layout utilities */
.w-full {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-form {
    max-width: 400px;
}

.max-w-wizard {
    max-width: 720px;
}

/* Grid utilities for wizard */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Additional spacing */
.mt-7 { margin-top: var(--space-7); }
.mb-7 { margin-bottom: var(--space-7); }

/* Block labels for forms */
.label-block {
    display: block;
    margin-bottom: 12px;
}

.label-block-lg {
    display: block;
    margin-bottom: 16px;
}

/* Wizard question title */
.wizard-question-title {
    font-size: 1.3rem;
}

/* Info hint text - small muted text */
.info-hint {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Info box centered layout */
.info-box-centered {
    max-width: 720px;
    margin: 0 auto 30px;
}

/* Hidden with margin-top (for JS toggle) */
.hidden-mt-4 {
    display: none;
    margin-top: var(--space-4);
}

.hidden-mt-5 {
    display: none;
    margin-top: var(--space-5);
}

/* Visually hidden (for form radios/checkboxes) */
.visually-hidden {
    display: none;
}

/* Text color utilities */
.text-warning {
    color: var(--warning);
}

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

/* Border utilities */
.border-0 {
    border: 0;
}

/* Hero subtitle (override for utility contexts) */

/* Vertical margin utility */
.my-5 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-5);
}

/* Success/green button */
.btn-success {
    background: var(--success);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-success:hover {
    background: var(--success-dark);
}

/* Shake animation for validation errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ============================================
   PROFESSIONAL PAGES - B2B Landing Pages
   ============================================ */

/* Hero Pro variant */
.hero-pro {
    background: linear-gradient(160deg, #0a0a1a 0%, #1a1035 60%, #0f0f1a 100%);
    min-height: auto;
    padding: calc(var(--space-12) + 72px) 0 var(--space-10); /* +72px for fixed header */
}

.hero-pro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-pro .hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-pro h1 {
    font-size: var(--text-4xl);
}

.hero-pro .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--text-lg);
    max-width: 700px;
    margin: 0 auto var(--space-6);
}

.hero-pro .hero-subtitle strong {
    color: white;
}

.hero-pro .hero-promise {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-6);
    margin-bottom: var(--space-6);
}

.hero-pro .hero-cta {
    justify-content: center;
}

.badge-pro {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.badge-pro i {
    margin-right: var(--space-2);
}

@media (max-width: 768px) {
    .hero-pro h1 {
        font-size: var(--text-3xl);
    }

    .hero-pro .hero-promise {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }
}

/* Pro sections */
.pro-section {
    padding: var(--space-16) 0;
}

.pro-section.problem {
    background: #0f0f1a;
}

.problem-content.full-width {
    max-width: 100%;
    text-align: center;
}

.problem-content.full-width h2 {
    justify-content: center;
    margin-bottom: var(--space-4);
}

.problem-content.full-width > p {
    max-width: 700px;
    margin: 0 auto var(--space-8);
    color: var(--gray-600);
    font-size: var(--text-lg);
}

/* Pro grid - 3 columns for problem cards */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

@media (max-width: 900px) {
    .pro-grid {
        grid-template-columns: 1fr;
    }
}

/* Pro cards */
.pro-card {
    background: rgba(20, 20, 37, 0.8);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.pro-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.pro-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-2);
}

.pro-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Lab content full width */
.lab-content.full-width {
    max-width: 100%;
}

.lab-content.full-width h2 {
    text-align: center;
    margin-bottom: var(--space-2);
}

.lab-content.full-width > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    color: var(--gray-600);
}

/* Pro solution grid */
.pro-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (max-width: 900px) {
    .pro-solution-grid {
        grid-template-columns: 1fr;
    }
}

.pro-solution-card {
    background: rgba(20, 20, 37, 0.8);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
}

.pro-solution-card .solution-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.pro-solution-card .solution-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pro-solution-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-4);
}

.pro-solution-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.pro-solution-card ul li {
    position: relative;
    padding-left: var(--space-5);
    margin-bottom: var(--space-2);
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.pro-solution-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: var(--text-xs);
}

/* Guarantee box improvements for pro pages */
.pro-section .guarantee-box {
    margin-top: var(--space-8);
}

/* Responsive hero for pro pages */
@media (max-width: 768px) {
    .hero-pro {
        padding: calc(var(--space-12) + 72px) 0 var(--space-8); /* +72px for fixed header */
    }

    .hero-pro h1 {
        font-size: var(--text-3xl);
    }
}

/* ============================================
   PROFESSIONAL DIAGNOSTIC FORM
   ============================================ */

.diagnostic-form-section {
    padding: var(--space-16) 0;
    background: #0f0f1a;
}

.pro-diagnostic-form {
    max-width: 900px;
    margin: var(--space-8) auto 0;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pro-diagnostic-form .form-section {
    padding: var(--space-6);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.pro-diagnostic-form .form-section:last-of-type {
    border-bottom: none;
}

.pro-diagnostic-form .form-section h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pro-diagnostic-form .form-section h3 i {
    color: var(--primary);
}

.pro-diagnostic-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .pro-diagnostic-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.pro-diagnostic-form .form-group {
    display: flex;
    flex-direction: column;
}

.pro-diagnostic-form .form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-1);
}

.pro-diagnostic-form select,
.pro-diagnostic-form input[type="text"],
.pro-diagnostic-form input[type="email"],
.pro-diagnostic-form input[type="tel"],
.pro-diagnostic-form textarea {
    padding: var(--space-3);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #1a1a2e;
    color: #e2e8f0;
}

.pro-diagnostic-form select:focus,
.pro-diagnostic-form input:focus,
.pro-diagnostic-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.pro-diagnostic-form select {
    cursor: pointer;
    background: #1a1a2e;
}

.pro-diagnostic-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox grid */
.pro-diagnostic-form .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

@media (max-width: 768px) {
    .pro-diagnostic-form .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.pro-diagnostic-form .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.2s;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.pro-diagnostic-form .checkbox-item:hover {
    background: var(--gray-100);
}

.pro-diagnostic-form .checkbox-item input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

/* Form submit section */
.pro-diagnostic-form .form-submit {
    padding: var(--space-6);
    background: linear-gradient(135deg, #1a1035 0%, #0f0f1a 100%);
    text-align: center;
}

.pro-diagnostic-form .form-submit .btn {
    min-width: 300px;
}

.pro-diagnostic-form .form-note {
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.pro-diagnostic-form .form-note i {
    margin-right: var(--space-1);
}


/* ============================================
   ASTRO MIGRATION - Page-Specific Styles
   ============================================ */

/* --- Logo alignment (global) --- */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* --- Dropdown Menu --- */
.nav-item-dropdown {
    position: relative;
}
.nav-item-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .dropdown-icon,
.nav-item-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #141425;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: var(--z-dropdown);
    padding: 0.5rem 0;
}
/* Invisible bridge to prevent hover gap */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: background-color 0.15s ease;
}
.dropdown-item:hover {
    background-color: rgba(124, 58, 237, 0.1);
}
.dropdown-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}
.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.dropdown-item-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-900);
}
.dropdown-item-description {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.3;
}

/* Dernier dropdown aligné à droite pour ne pas déborder */
.nav-item-dropdown:last-of-type .dropdown-menu {
    left: auto;
    right: 0;
}

/* --- Blog Articles --- */
.blog-header {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: var(--white);
    padding: 140px 20px 40px;
}
.blog-header h1 {
    max-width: 900px;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    line-height: 1.2;
}
.blog-meta {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 0.95rem;
}
.blog-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.8;
    color: #e2e8f0;
}
.blog-content h2 {
    color: #ec4899;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
}
.blog-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
}
.blog-content p {
    margin-bottom: 20px;
}
.blog-content strong {
    color: var(--primary);
    font-weight: 600;
}
.blog-content ul {
    margin: 25px 0;
    padding-left: 30px;
}
.blog-content li {
    margin: 12px 0;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}
.blog-content .warning-box {
    background: var(--error-bg);
    border-left: 4px solid var(--error);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}
/* Tables */
.section table,
.blog-content table,
table.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
.section table th,
.blog-content table th,
table.blog-table th {
    background: #7c3aed;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
.section table td,
.blog-content table td,
table.blog-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    color: #e2e8f0;
}
.section table tr:hover,
.blog-content table tr:hover,
table.blog-table tr:hover {
    background: rgba(124, 58, 237, 0.08);
}

.cta-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}
.cta-box h3 {
    color: var(--white);
    margin-top: 0;
}
.cta-box .btn {
    background: var(--white);
    color: #059669;
    margin-top: 20px;
}

/* Mid-article CTA */
.cta-inline {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 24px 30px;
    margin: 40px 0;
    text-align: center;
}
.cta-inline p {
    margin: 8px 0;
    font-size: 1.05rem;
}
.cta-inline .btn {
    display: inline-block;
    margin-top: 10px;
    background: #10b981;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-inline .btn:hover {
    background: #059669;
}

/* --- Blog Index --- */
.blog-hero {
    background: linear-gradient(135deg, var(--error) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}
.blog-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.blog-card {
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--error) 0%, #b91c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}
.blog-card-content {
    padding: 25px;
}
.blog-card-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-card-excerpt {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 15px;
}
.newsletter-section {
    max-width: 700px;
    margin: 40px auto 30px;
    padding: 30px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    text-align: center;
}
.newsletter-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.newsletter-section p {
    color: var(--gray-700);
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    background: #1a1a2e;
    color: #e2e8f0;
}
.newsletter-input:focus {
    outline: none;
    border-color: #7c3aed;
}
.newsletter-btn {
    padding: 12px 28px;
    background: var(--error);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-btn:hover {
    background: #b91c1c;
}
.rss-link {
    margin-top: 15px;
    font-size: 0.9rem;
}
.rss-link a {
    color: var(--error);
    text-decoration: none;
    font-weight: 600;
}
.rss-link a:hover {
    text-decoration: underline;
}

/* --- Devis Page --- */
.devis-hero {
    background: linear-gradient(160deg, #0a0a1a 0%, #1a1035 60%, #0f0f1a 100%);
    padding: calc(2rem + 72px) 0 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}
.devis-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.devis-hero .highlight {
    color: var(--success);
}
.devis-promises {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.devis-promise {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}
.devis-promise i {
    color: var(--success);
}

/* --- Pro/Content Pages (prose inside .section .container) --- */
.section .container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.section .container h2:first-child {
    margin-top: 0;
}
.section .container h2 i {
    color: #dc2626;
    margin-right: 10px;
    font-size: 1.3rem;
}
.section .container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 12px;
}
.section .container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 16px;
}
.section .container ul {
    padding-left: 24px;
    margin: 16px 0 24px;
}
.section .container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 8px;
}

/* --- Pillar Pages (Service Hubs) --- */
.pillar-hero {
    padding: 140px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pillar-hero--hdd {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
}
.pillar-hero--ssd {
    background: linear-gradient(135deg, #0f172a 0%, #6d28d9 100%);
    color: var(--white);
}
.pillar-hero--raid {
    background: linear-gradient(135deg, #0f172a 0%, #065f46 100%);
    color: var(--white);
}
.pillar-hero--mobile {
    background: linear-gradient(135deg, #0f172a 0%, #9f1239 100%);
    color: var(--white);
}
.pillar-hero--pro {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    color: var(--white);
}
.pillar-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.pillar-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.pillar-badge i {
    margin-right: 8px;
}
.pillar-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}
.highlight-cyan {
    color: #06b6d4;
}
.pillar-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px;
}
.pillar-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.pillar-stat {
    text-align: center;
}
.pillar-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #06b6d4;
}
.pillar-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Pillar Sections */
.pillar-section {
    padding: 80px 20px;
}
.pillar-section--alt {
    background: #0f0f1a;
}
.pillar-section--warning {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    color: var(--white);
}
.pillar-warning-content {
    max-width: 800px;
    margin: 0 auto;
}
.pillar-warning-content p,
.pillar-warning-content li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}
.pillar-warning-content strong {
    color: var(--white);
}
.pillar-warning-content ul {
    padding-left: 24px;
    margin: 16px 0;
}

/* Pillar Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pillar-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.pillar-card {
    background: rgba(20, 20, 37, 0.8);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.3s;
    border: 1px solid rgba(124, 58, 237, 0.2);
}
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}
.pillar-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: var(--primary);
}
.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.pillar-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}
.pillar-card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.pillar-card-link:hover {
    text-decoration: underline;
}
.pillar-card-link i {
    margin-left: 4px;
    font-size: 0.8rem;
}

/* Warning cards (inside dark sections) */
.pillar-warning-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.pillar-warning-card i {
    font-size: 2rem;
    color: #fca5a5;
    margin-bottom: 16px;
}
.pillar-warning-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.pillar-warning-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}
.pillar-warning-card a {
    color: #fca5a5;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.pillar-warning-card a:hover {
    text-decoration: underline;
}

/* Pillar Steps */
.pillar-steps {
    max-width: 700px;
    margin: 40px auto 0;
}
.pillar-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.pillar-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}
.pillar-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.pillar-step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Two-column layout */
.pillar-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}
.pillar-two-col ul {
    padding-left: 24px;
    margin: 16px 0;
}
.pillar-two-col li {
    margin: 8px 0;
    line-height: 1.6;
    color: var(--gray-600);
}
.pillar-two-col p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}
.pillar-articles-sidebar {
    background: rgba(20, 20, 37, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}
.pillar-articles-sidebar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.pillar-articles-sidebar ul {
    list-style: none;
    padding: 0;
}
.pillar-articles-sidebar li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}
.pillar-articles-sidebar li:last-child {
    border-bottom: none;
}
.pillar-articles-sidebar a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}
.pillar-articles-sidebar a:hover {
    text-decoration: underline;
}

/* Inline CTA */
.pillar-cta-inline {
    text-align: center;
    margin-top: 30px;
}

/* FAQ */
.pillar-faq {
    max-width: 700px;
    margin: 40px auto 0;
}
.pillar-faq-item {
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.pillar-faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: background 0.15s;
    list-style: none;
}
.pillar-faq-item summary::-webkit-details-marker {
    display: none;
}
.pillar-faq-item summary::before {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 12px;
}
.pillar-faq-item[open] summary::before {
    content: '−';
}
.pillar-faq-item summary:hover {
    background: rgba(124, 58, 237, 0.08);
}
.pillar-faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}
.pillar-faq-item a {
    color: var(--primary);
    font-weight: 500;
}

/* CTA Section */
.pillar-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}
.pillar-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.pillar-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 30px;
}
.pillar-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Pillar responsive */
@media (max-width: 968px) {
    .pillar-hero h1 {
        font-size: 2.2rem;
    }
    .pillar-hero-stats {
        gap: 24px;
    }
    .pillar-grid--3 {
        grid-template-columns: 1fr;
    }
    .pillar-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 640px) {
    .pillar-hero {
        padding: 120px 16px 60px;
    }
    .pillar-hero h1 {
        font-size: 1.8rem;
    }
    .pillar-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .pillar-stat-number {
        font-size: 1.4rem;
    }
    .pillar-section {
        padding: 50px 16px;
    }
    .pillar-step {
        flex-direction: column;
        gap: 12px;
    }
    .pillar-cta h2 {
        font-size: 1.6rem;
    }
    .pillar-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Paris Page (Local SEO) --- */
.local-content .cta-box {
    background: #f0f9ff;
    color: var(--gray-700);
    border-left: 4px solid var(--error);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: left;
}
.local-content .cta-box h3 {
    color: var(--error);
    margin-top: 0;
}
.local-content .cta-box .btn {
    background: var(--error);
    color: var(--white);
    margin-top: 15px;
}
.local-hero {
    background: linear-gradient(135deg, var(--error) 0%, #b91c1c 100%);
    color: var(--white);
    padding: 150px 20px 80px;
    text-align: center;
}
.local-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.local-hero .highlight {
    color: #fef3c7;
}
.local-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}
.local-content h2 {
    color: var(--error);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.local-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray-700);
}
.local-content ul {
    margin: 20px 0;
    padding-left: 30px;
}
.local-content li {
    margin: 10px 0;
    line-height: 1.6;
}
.local-map {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.address-box {
    background: var(--gray-50);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}
.address-box i {
    color: var(--error);
    margin-right: 10px;
}

/* --- Notre Equipe Page --- */
.team-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.team-hero::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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.team-hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.team-hero h1 span {
    color: #06b6d4;
}
.team-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}
.ceo-section {
    padding: 80px 0;
    background: #0f0f1a;
}
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ceo-photo {
    position: relative;
}
.ceo-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.ceo-photo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}
.ceo-photo-badge i {
    margin-right: 8px;
}
.ceo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.ceo-content h2 span {
    color: #06b6d4;
}
.ceo-quote {
    background: rgba(6, 182, 212, 0.06);
    border-left: 4px solid #06b6d4;
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin: 30px 0;
}
.ceo-quote p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.ceo-quote p:last-child {
    margin-bottom: 0;
}
.ceo-quote strong {
    color: #ffffff;
}
.ceo-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.ceo-signature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, transparent);
}
.ceo-signature-text {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}
.ceo-signature-role {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.team-section {
    padding: 80px 0;
    background: #141425;
}
.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}
.team-section h2 span {
    color: #06b6d4;
}
.team-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
}
.team-photo-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.team-photo-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.team-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(20, 20, 37, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
}
.team-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 8px;
}
.team-stat-label {
    color: var(--gray-500);
    font-size: 0.95rem;
}
.values-section {
    padding: 80px 0;
    background: #0f172a;
}
.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.values-section h2 span {
    color: #06b6d4;
}
.values-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
}
.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}
.value-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}
.team-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    text-align: center;
}
.team-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.team-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.team-cta .btn {
    background: var(--white);
    color: #0891b2;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.team-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* --- Responsive: Page-specific --- */
@media (max-width: 968px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ceo-photo {
        max-width: 500px;
        margin: 0 auto;
    }
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .devis-hero h1 {
        font-size: 1.5rem;
    }
    .devis-promises {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
@media (max-width: 640px) {
    .team-hero h1 {
        font-size: 2rem;
    }
    .team-hero p {
        font-size: 1rem;
    }
    .ceo-content h2 {
        font-size: 1.8rem;
    }
    .ceo-quote {
        padding: 20px;
    }
    .ceo-quote p {
        font-size: 1rem;
    }
    .team-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .team-stat {
        padding: 20px 15px;
    }
    .team-stat-number {
        font-size: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-cta h2 {
        font-size: 1.8rem;
    }
    .ceo-photo-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}
@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-section {
        margin: 30px 20px;
    }
}

/* Address autocomplete dropdown (wizard form) */
.w-address-suggestions{position:absolute;left:0;right:0;background:#141425;border:1px solid rgba(124,58,237,0.3);border-radius:0 0 8px 8px;box-shadow:0 4px 20px rgba(0,0,0,0.4);z-index:10;display:none;max-height:200px;overflow-y:auto}
.w-address-suggestions.show{display:block}
.w-address-suggestion{padding:10px 14px;cursor:pointer;font-size:0.85rem;border-bottom:1px solid rgba(124,58,237,0.15);color:#e2e8f0}
.w-address-suggestion:last-child{border-bottom:none}
.w-address-suggestion:hover{background:rgba(124,58,237,0.1)}
.w-address-suggestion small{color:#64748b;display:block;font-size:0.75rem}

/* ═══════════════════════════════════════════════════════════════════
   HERO — DA "GENEVA CREAM" (mai 2026)
   Lumière, noir profond, sobriété maximale. Pas d'accent coloré.
   Inspiré horlogerie suisse / éditorial luxe.
   Override scoped sous .hero--cream — n'impacte que le hero.
   ═══════════════════════════════════════════════════════════════════ */

.hero--cream {
    --c-bg:        #fafaf7;
    --c-bg-edge:   #f3f1ea;
    --c-fg:        #0a0a0a;
    --c-fg-soft:   #2c2c2a;
    --c-fg-mute:   #6b6b65;
    --c-fg-faint:  #9b9a94;
    --c-line:      rgba(10, 10, 10, 0.08);
    --c-line-hi:   rgba(10, 10, 10, 0.16);

    background: var(--c-bg);
    background-image:
        radial-gradient(1100px 480px at 78% -20%, rgba(0, 0, 0, 0.025), transparent 70%),
        linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-edge) 100%);
    padding: 104px 0 92px;
    color: var(--c-fg);
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero--cream .container {
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
}

.hero--cream .hero-content {
    text-align: left;
}

/* Badge — fin, encre noire, point neutre */
.hero--cream .badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--c-line-hi);
    color: var(--c-fg-mute);
    padding: 6px 14px 6px 12px;
    border-radius: 1px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 36px;
    box-shadow: none;
}
.hero--cream .badge .badge-mark {
    width: 5px;
    height: 5px;
    background: var(--c-fg);
    border-radius: 50%;
    display: inline-block;
}

/* Titre — neo-grotesque serré, noir profond */
.hero--cream h1 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.028em;
    color: var(--c-fg);
    text-shadow: none;
    margin-bottom: 24px;
}
.hero--cream h1 .highlight {
    color: var(--c-fg-soft);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.018em;
}

/* Sous-titre — Inter régulier, gris chaud */
.hero--cream .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--c-fg-mute);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero--cream .hero-subtitle strong {
    color: var(--c-fg-soft);
    font-weight: 600;
}

/* Promesses — encadrées par 2 traits fins */
.hero--cream .hero-promise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 14px;
    margin: 0 0 40px;
    padding: 24px 0;
    list-style: none;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.hero--cream .promise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--c-fg-soft);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.hero--cream .promise-icon {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--c-fg);
    border-radius: 0;
    font-size: 0.78rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.hero--cream .promise-item strong {
    color: var(--c-fg);
    font-weight: 600;
}

/* CTA — bouton noir solide, sobriété maximale */
.hero--cream .hero-cta {
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.hero--cream .btn-primary {
    background: var(--c-fg);
    color: #ffffff;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.005em;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 6px 18px -8px rgba(0, 0, 0, 0.35);
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.hero--cream .btn-primary:hover {
    background: #1f1f1d;
    transform: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 22px -8px rgba(0, 0, 0, 0.45);
}
.hero--cream .btn-large {
    padding: 14px 28px;
    font-size: 0.96rem;
}

/* Bouton secondaire (téléphone) — outline noir fin */
.hero--cream .btn-secondary {
    background: transparent;
    color: var(--c-fg);
    border: 1px solid var(--c-line-hi);
    border-radius: 2px;
    font-weight: 500;
    box-shadow: none;
}
.hero--cream .btn-secondary:hover {
    background: var(--c-fg);
    color: #fafaf7;
    border-color: var(--c-fg);
}
.hero--cream .hero-phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.hero--cream .hero-phones .btn {
    flex: 0 0 auto;
    padding: 9px 18px;
    font-size: 0.88rem;
}
.hero--cream .hero-phone-note {
    font-size: 0.72rem;
    color: var(--c-fg-mute);
    line-height: 1.5;
    margin: 4px 0 0;
    max-width: 380px;
}

/* "Toutes marques" — caps fines très mutées */
.hero--cream .hero-trust-logos {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--c-line);
}
.hero--cream .hero-trust-logos span {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-fg-faint);
}

/* Photo — bordure fine et shadow profonde sur fond clair */
.hero--cream .hero-image img {
    border-radius: 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 30px 70px -22px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    border: none;
}

/* Mobile — tout aligné à gauche */
@media (max-width: 768px) {
    .hero--cream {
        padding: 64px 0 56px;
    }
    .hero--cream .container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: left;
    }
    .hero--cream .hero-content,
    .hero--cream .hero-cta,
    .hero--cream .hero-promise {
        text-align: left;
        align-items: stretch;
        justify-content: flex-start;
    }
    .hero--cream .hero-promise {
        grid-template-columns: 1fr;
    }
    .hero--cream h1 {
        font-size: clamp(2rem, 8.5vw, 2.6rem);
    }
    .hero--cream .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero--cream .btn-large,
    .hero--cream .hero-phones .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero--cream .hero-phones {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — propagation toute la home
   Active uniquement quand <body class="theme-cream"> (donc home seule).
   Bascule fond + sections clés en clair, garde les autres pages intactes.
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream {
    background: #fafaf7;
    color: #0a0a0a;
}

/* Header — passe en clair, fin trait noir en bas */
body.theme-cream .header {
    background: #fafaf7;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: none;
}
body.theme-cream .header .nav-link,
body.theme-cream .header .nav-item-dropdown > a,
body.theme-cream .header nav a,
body.theme-cream .header a:not(.btn) {
    color: #2c2c2a !important;
}
body.theme-cream .header a:not(.btn):hover {
    color: #0a0a0a !important;
}
body.theme-cream .header .btn-primary,
body.theme-cream .header .btn {
    background: #0a0a0a !important;
    color: #fafaf7 !important;
    border: 1px solid #0a0a0a !important;
    box-shadow: none !important;
}
body.theme-cream .header .btn:hover {
    background: #1f1f1d !important;
    color: #fafaf7 !important;
}
body.theme-cream .footer-logo-text,
body.theme-cream .header .footer-logo-text {
    color: #0a0a0a !important;
}

/* Phone banner du haut — discret en crème */
body.theme-cream .phone-banner {
    background: #f3f1ea;
    color: #2c2c2a;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
body.theme-cream .phone-banner a {
    color: #0a0a0a;
    font-weight: 600;
}

/* Process (Comment ça marche) */
body.theme-cream .process {
    background: #fafaf7;
    padding: 84px 0;
}
body.theme-cream .section-title {
    color: #0a0a0a;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.022em;
}
body.theme-cream .section-subtitle {
    color: #6b6b65;
    font-style: normal;
}
body.theme-cream .process-step {
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 4px;
    box-shadow: none;
    text-align: left;
    padding: 28px 22px;
}
body.theme-cream .process-step:hover {
    border-color: rgba(10, 10, 10, 0.24);
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.12);
}
body.theme-cream .step-number {
    background: #0a0a0a;
    color: #fafaf7;
    width: 38px;
    height: 38px;
    margin: 0 0 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
body.theme-cream .process-step h3 {
    color: #0a0a0a;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-size: 1.05rem;
}
body.theme-cream .process-step p {
    color: #6b6b65;
    font-size: 0.92rem;
    line-height: 1.55;
}
body.theme-cream .process a {
    color: #0a0a0a !important;
    font-weight: 500;
    border-bottom: 1px solid rgba(10, 10, 10, 0.18);
    text-decoration: none;
}

/* Brands section — sur fond cream chaud */
body.theme-cream .brands-section {
    background: #f3f1ea;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    padding: 56px 0;
}
body.theme-cream .brands-title,
body.theme-cream .brands-more {
    color: #6b6b65;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
}
body.theme-cream .brand-logo-item {
    color: #2c2c2a;
}
body.theme-cream .brand-logo-item span {
    color: #2c2c2a;
}
body.theme-cream .brand-logo-img {
    filter: invert(1) brightness(0.4);
    opacity: 0.7;
}
body.theme-cream .brand-logo-img.brand-local {
    filter: brightness(0.35) saturate(0);
}

/* Trust banner */
body.theme-cream .trust-banner {
    background: #fafaf7;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
    padding: 56px 0;
}
body.theme-cream .trust-number {
    color: #0a0a0a;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
body.theme-cream .trust-label {
    color: #6b6b65;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Confidentiality */
body.theme-cream .confidentiality-section {
    background: #ffffff;
}
body.theme-cream .confidentiality-content h2,
body.theme-cream .confidentiality-content h2 i {
    color: #0a0a0a;
}
body.theme-cream .confidentiality-content p {
    color: #6b6b65;
}
body.theme-cream .conf-feature {
    color: #2c2c2a;
}
body.theme-cream .conf-feature strong {
    color: #0a0a0a;
}
body.theme-cream .conf-feature span {
    color: #6b6b65;
}
body.theme-cream .conf-feature i {
    color: #0a0a0a;
}
body.theme-cream .badge-card {
    background: #fafaf7;
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: none;
    border-radius: 4px;
}
body.theme-cream .badge-card p {
    color: #6b6b65;
}
body.theme-cream .badge-icon {
    background: #f3f1ea !important;
    color: #0a0a0a !important;
}
body.theme-cream .badge-icon i,
body.theme-cream .badge-icon span {
    color: #0a0a0a !important;
}

/* Guarantee box (ailleurs sur la page) */
body.theme-cream .guarantee-box {
    background: #f3f1ea;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 4px;
}
body.theme-cream .guarantee-box h4 {
    color: #0a0a0a;
}
body.theme-cream .guarantee-box p,
body.theme-cream .guarantee-box li {
    color: #2c2c2a;
}

/* Pricing teaser */
body.theme-cream .pricing-teaser {
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
}
body.theme-cream .pricing-teaser-price strong {
    color: #0a0a0a;
}
body.theme-cream .pricing-teaser-pitch {
    color: #6b6b65;
}
body.theme-cream .pricing-teaser .btn-primary {
    background: #0a0a0a;
    color: #fafaf7;
    box-shadow: none;
}
body.theme-cream .pricing-teaser .btn-primary:hover {
    background: #1f1f1d;
}

/* FAQ + autres sections génériques sombres */
body.theme-cream section {
    color: #2c2c2a;
}
body.theme-cream .faq-item {
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 4px;
    color: #2c2c2a;
}
body.theme-cream .faq-item h3 {
    color: #0a0a0a;
}
body.theme-cream .faq-item p {
    color: #6b6b65;
}

/* Footer */
body.theme-cream .footer {
    background: #f3f1ea;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    color: #2c2c2a;
}
body.theme-cream .footer h4 {
    color: #0a0a0a;
}
body.theme-cream .footer-col p,
body.theme-cream .footer-col li,
body.theme-cream .footer-col a {
    color: #6b6b65;
}
body.theme-cream .footer-col a:hover {
    color: #0a0a0a;
}
body.theme-cream .footer-bottom {
    color: #9b9a94;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

/* Boutons CTA partout dans la home en thème clair */
body.theme-cream .btn-primary:not(.hero--cream .btn-primary):not(.header .btn) {
    background: #0a0a0a;
    color: #fafaf7;
    box-shadow: none;
    border-radius: 2px;
    font-family: 'Inter Tight', 'Inter', sans-serif;
}
body.theme-cream .btn-primary:not(.hero--cream .btn-primary):not(.header .btn):hover {
    background: #1f1f1d;
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.3);
}

/* Generic h2/h3 dans la home en thème clair */
body.theme-cream h2:not(.hero--cream h2),
body.theme-cream h3:not(.hero--cream h3) {
    color: #0a0a0a;
}
body.theme-cream p {
    color: #2c2c2a;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — overrides forcés (!important) pour passer outre tout
   héritage parasite ou spécificité. Test only.
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream { background: #fafaf7 !important; }
body.theme-cream .header { background: #fafaf7 !important; box-shadow: none !important; border-bottom: 1px solid rgba(10,10,10,0.08) !important; }
body.theme-cream .phone-banner { background: #f3f1ea !important; color: #2c2c2a !important; }
body.theme-cream .hero,
body.theme-cream .hero--cream { background: #fafaf7 !important; background-image: linear-gradient(180deg, #fafaf7 0%, #f3f1ea 100%) !important; color: #0a0a0a !important; padding: 96px 0 80px !important; }
body.theme-cream .process { background: #fafaf7 !important; }
body.theme-cream .brands-section { background: #f3f1ea !important; }
body.theme-cream .trust-banner { background: #fafaf7 !important; background-image: none !important; }
body.theme-cream .confidentiality-section { background: #ffffff !important; }
body.theme-cream .footer { background: #f3f1ea !important; }

/* H1 et highlight */
body.theme-cream .hero h1,
body.theme-cream .hero--cream h1 { color: #0a0a0a !important; text-shadow: none !important; }
body.theme-cream .hero h1 .highlight,
body.theme-cream .hero--cream h1 .highlight { color: #2c2c2a !important; font-style: italic; font-weight: 500; }

/* Bouton primary */
body.theme-cream .btn-primary { background: #0a0a0a !important; color: #fafaf7 !important; box-shadow: none !important; border-radius: 2px !important; }
body.theme-cream .btn-primary:hover { background: #1f1f1d !important; }

/* Bouton secondary */
body.theme-cream .btn-secondary { background: transparent !important; color: #0a0a0a !important; border: 1px solid rgba(10,10,10,0.18) !important; box-shadow: none !important; }
body.theme-cream .btn-secondary:hover { background: #0a0a0a !important; color: #fafaf7 !important; }

/* Trust banner numbers */
body.theme-cream .trust-number { color: #0a0a0a !important; text-shadow: none !important; }
body.theme-cream .trust-label { color: #6b6b65 !important; }

/* Process steps */
body.theme-cream .process-step { background: #ffffff !important; border: 1px solid rgba(10,10,10,0.08) !important; box-shadow: none !important; }
body.theme-cream .step-number { background: #0a0a0a !important; color: #fafaf7 !important; }
body.theme-cream .process-step h3 { color: #0a0a0a !important; }
body.theme-cream .process-step p { color: #6b6b65 !important; }

/* Section titles */
body.theme-cream .section-title { color: #0a0a0a !important; }
body.theme-cream .section-subtitle { color: #6b6b65 !important; }

/* Header nav */
body.theme-cream .header a:not(.btn) { color: #2c2c2a !important; }
body.theme-cream .header .btn { background: #0a0a0a !important; color: #fafaf7 !important; border-color: #0a0a0a !important; }

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — corrections lisibilité + audace verte
   ═══════════════════════════════════════════════════════════════════ */

/* Badge — force noir, plus de violet/jaune legacy */
body.theme-cream .hero .badge,
body.theme-cream .hero--cream .badge {
    background: transparent !important;
    border: 1px solid rgba(10, 10, 10, 0.18) !important;
    color: #6b6b65 !important;
    border-radius: 1px !important;
    box-shadow: none !important;
    padding: 6px 14px 6px 12px !important;
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    margin-bottom: 36px !important;
}
body.theme-cream .hero .badge i { color: #0a0a0a !important; font-size: 0.7rem !important; }
body.theme-cream .hero .badge .badge-mark {
    width: 5px !important;
    height: 5px !important;
    background: #0a0a0a !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

/* H1 highlight italique en gris foncé lisible */
body.theme-cream .hero h1 .highlight,
body.theme-cream .hero--cream h1 .highlight {
    color: #1f1f1d !important;
    font-style: italic !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

/* Subtitle — contraste fort */
body.theme-cream .hero .hero-subtitle,
body.theme-cream .hero--cream .hero-subtitle {
    color: #2c2c2a !important;
    font-style: normal !important;
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    max-width: 580px !important;
}
body.theme-cream .hero .hero-subtitle strong,
body.theme-cream .hero--cream .hero-subtitle strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}

/* Promesses — texte sombre, checks verts (audace) */
body.theme-cream .hero .hero-promise,
body.theme-cream .hero--cream .hero-promise {
    list-style: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.1) !important;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1) !important;
    padding: 22px 0 !important;
    margin: 0 0 36px !important;
    background: transparent !important;
}
body.theme-cream .hero .promise-item,
body.theme-cream .hero--cream .promise-item {
    color: #1f1f1d !important;
    font-weight: 500 !important;
    font-size: 0.94rem !important;
}
body.theme-cream .hero .promise-icon,
body.theme-cream .hero--cream .promise-icon {
    background: transparent !important;
    color: #1f4a3d !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 0.85rem !important;
}
/* Chiffres prix dans les promesses : vert sapin profond — l'audace */
body.theme-cream .hero .promise-item strong,
body.theme-cream .hero--cream .promise-item strong {
    color: #1f4a3d !important;
    font-weight: 700 !important;
    font-feature-settings: "tnum";
}

/* Trust banner — chiffres en vert sapin */
body.theme-cream .trust-banner .trust-number {
    color: #1f4a3d !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

/* Header — bouton DEMANDER MON DIAGNOSTIC : Inter Tight droit, blanc pur */
body.theme-cream .header .btn,
body.theme-cream .header .btn-primary {
    background: #0a0a0a !important;
    color: #ffffff !important;
    border: 1px solid #0a0a0a !important;
    border-radius: 2px !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    box-shadow: none !important;
    padding: 9px 18px !important;
    font-size: 0.84rem !important;
}
body.theme-cream .header .btn:hover,
body.theme-cream .header .btn-primary:hover {
    background: #1f1f1d !important;
    color: #ffffff !important;
}

/* Logo SOS DISQUE dans header — la couleur jaune/violet doit céder */
body.theme-cream .footer-logo-text,
body.theme-cream .header .footer-logo-text { color: #0a0a0a !important; }
body.theme-cream .header .footer-logo-text span,
body.theme-cream .footer-logo-text span { color: #6b6b65 !important; }

/* Téléphone btn-secondary — outline noir lisible */
body.theme-cream .hero .btn-secondary,
body.theme-cream .hero--cream .btn-secondary {
    background: transparent !important;
    color: #0a0a0a !important;
    border: 1px solid rgba(10, 10, 10, 0.2) !important;
    border-radius: 2px !important;
    font-weight: 500 !important;
}
body.theme-cream .hero .btn-secondary i,
body.theme-cream .hero--cream .btn-secondary i { color: #0a0a0a !important; }

/* Phone-note */
body.theme-cream .hero .hero-phone-note,
body.theme-cream .hero--cream .hero-phone-note {
    color: #6b6b65 !important;
    font-size: 0.74rem !important;
}

/* "Toutes marques prises en charge" sous le téléphone */
body.theme-cream .hero .hero-trust-logos span,
body.theme-cream .hero--cream .hero-trust-logos span {
    color: #6b6b65 !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.2em !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — accent violet indigo (en cohérence avec le logo)
   Remplace l'accent vert sapin par #6d28d9. Une seule couleur d'audace.
   ═══════════════════════════════════════════════════════════════════ */

/* Checks promesses hero */
body.theme-cream .hero .promise-icon,
body.theme-cream .hero--cream .promise-icon { color: #6d28d9 !important; }

/* Chiffres prix dans les promesses hero */
body.theme-cream .hero .promise-item strong,
body.theme-cream .hero--cream .promise-item strong { color: #6d28d9 !important; }

/* Trust banner — chiffres */
body.theme-cream .trust-banner .trust-number { color: #6d28d9 !important; }

/* Process steps — numéros restent en noir, mais on peut suggérer le violet */
/* (laissé en noir pour ne pas saturer — le violet sert juste pour les chiffres clés) */

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — accent BLEU SAPHIR-PÉTROLE (mai 2026)
   Remplace le violet indigo par #173042. Profond, précieux, sobre.
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream .hero .promise-icon,
body.theme-cream .hero--cream .promise-icon { color: #173042 !important; }

body.theme-cream .hero .promise-item strong,
body.theme-cream .hero--cream .promise-item strong { color: #173042 !important; }

body.theme-cream .trust-banner .trust-number { color: #173042 !important; }

/* Hero CTA — aligné typographiquement sur le bouton header */
body.theme-cream .hero .btn-primary,
body.theme-cream .hero--cream .btn-primary {
    background: #0a0a0a !important;
    color: #ffffff !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    padding: 14px 26px !important;
    font-size: 0.92rem !important;
}
body.theme-cream .hero .btn-primary:hover,
body.theme-cream .hero--cream .btn-primary:hover {
    background: #1f1f1d !important;
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — fond unifié + fix contraste
   Fini les briques empilées. Un seul fond #fafaf7, lignes fines.
   ═══════════════════════════════════════════════════════════════════ */

/* Unifie TOUS les fonds des sections sur le même crème */
body.theme-cream,
body.theme-cream .header,
body.theme-cream .phone-banner,
body.theme-cream .hero,
body.theme-cream .hero--cream,
body.theme-cream .process,
body.theme-cream .brands-section,
body.theme-cream .trust-banner,
body.theme-cream .confidentiality-section,
body.theme-cream .why-cheaper,
body.theme-cream .faq,
body.theme-cream .footer {
    background: #fafaf7 !important;
    background-image: none !important;
}

/* Hero garde un dégradé très léger pour respirer */
body.theme-cream .hero,
body.theme-cream .hero--cream {
    background-image: linear-gradient(180deg, #fafaf7 0%, #f6f4ee 100%) !important;
}

/* Lignes fines de séparation entre sections — voilà le seul "marqueur" */
body.theme-cream .process,
body.theme-cream .brands-section,
body.theme-cream .trust-banner,
body.theme-cream .confidentiality-section,
body.theme-cream .faq,
body.theme-cream .footer {
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream .header { border-bottom: 1px solid rgba(10, 10, 10, 0.08) !important; }

/* Logos marques — fix contraste : gris foncé bien visible sur cream */
body.theme-cream .brand-logo-img {
    filter: brightness(0) saturate(0) !important;
    opacity: 0.55 !important;
    transition: opacity 0.2s ease;
}
body.theme-cream .brand-logo-item:hover .brand-logo-img {
    opacity: 0.85 !important;
}
body.theme-cream .brand-logo-item span {
    color: #2c2c2a !important;
    font-weight: 500 !important;
}
body.theme-cream .brands-title,
body.theme-cream .brands-more {
    color: #2c2c2a !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
}
body.theme-cream .brands-more {
    font-weight: 400 !important;
    color: #6b6b65 !important;
    font-size: 0.78rem !important;
}

/* Hero CTA — uppercase comme le header pour cohérence */
body.theme-cream .hero .btn-primary,
body.theme-cream .hero--cream .btn-primary {
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-size: 0.82rem !important;
    padding: 14px 26px !important;
}

/* Trust banner : padding ajusté maintenant qu'il partage le fond */
body.theme-cream .trust-banner { padding: 48px 0 !important; }
body.theme-cream .brands-section { padding: 48px 0 !important; }
body.theme-cream .process { padding: 72px 0 !important; }
body.theme-cream .confidentiality-section { padding: 72px 0 !important; }

/* Footer : un poil plus chaud pour clore la page sans rupture brutale */
body.theme-cream .footer {
    background: #f3f1ea !important;
    border-top: 1px solid rgba(10, 10, 10, 0.1) !important;
    padding: 56px 0 32px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — sweep universel : TOUTES les sections en cream
   Force noir/cream sur sections oubliées (pricing, success, faq, cta...)
   ═══════════════════════════════════════════════════════════════════ */

/* Toutes sections passent en cream */
body.theme-cream section,
body.theme-cream .video-section,
body.theme-cream .pricing,
body.theme-cream .success,
body.theme-cream .cta-section,
body.theme-cream .why-cheaper {
    background: #fafaf7 !important;
    background-image: none !important;
    color: #1f1f1d !important;
}

/* Cards / blocs surélevés : blanc cassé avec bordure fine */
body.theme-cream .pricing-card,
body.theme-cream .pricing-teaser,
body.theme-cream .guarantee-box,
body.theme-cream .faq-item,
body.theme-cream .badge-card,
body.theme-cream .process-step {
    background: #ffffff !important;
    background-image: none !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    box-shadow: none !important;
    color: #1f1f1d !important;
}

/* Titres / sous-titres : tout en noir profond ou gris foncé */
body.theme-cream h1,
body.theme-cream h2,
body.theme-cream h3,
body.theme-cream h4,
body.theme-cream h5,
body.theme-cream h6,
body.theme-cream .section-title {
    color: #0a0a0a !important;
    text-shadow: none !important;
}
body.theme-cream .section-subtitle {
    color: #2c2c2a !important;
    font-style: normal !important;
}

/* Texte courant : gris foncé lisible */
body.theme-cream p:not(.hero-subtitle):not(.hero-phone-note),
body.theme-cream li:not(.promise-item) {
    color: #2c2c2a !important;
}
body.theme-cream strong { color: #0a0a0a !important; }

/* Liens (hors btn) : saphir-pétrole */
body.theme-cream a:not(.btn):not(.nav-link):not(.footer-logo a) {
    color: #173042 !important;
}

/* PRICING TEASER ("à partir de 650 € TTC") */
body.theme-cream .pricing-teaser-price {
    color: #0a0a0a !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-weight: 500 !important;
}
body.theme-cream .pricing-teaser-price strong {
    color: #173042 !important;
    font-weight: 700 !important;
    font-style: normal !important;
}
body.theme-cream .pricing-teaser-pitch {
    color: #2c2c2a !important;
    font-style: normal !important;
}

/* GUARANTEE BOX ("Solde uniquement en cas de succès") */
body.theme-cream .guarantee-box {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream .guarantee-box h4 { color: #0a0a0a !important; }
body.theme-cream .guarantee-box p,
body.theme-cream .guarantee-box li { color: #2c2c2a !important; }
body.theme-cream .guarantee-box strong { color: #0a0a0a !important; }
body.theme-cream .guarantee-box a {
    color: #173042 !important;
    text-decoration: underline !important;
}
body.theme-cream .guarantee-icon {
    color: #173042 !important;
    background: transparent !important;
}
body.theme-cream .guarantee-content { color: #2c2c2a !important; }

/* PRICING CARDS (page tarifs si présent en home) */
body.theme-cream .pricing-card h3 { color: #0a0a0a !important; }
body.theme-cream .pricing-card .amount { color: #0a0a0a !important; }
body.theme-cream .pricing-card .period { color: #6b6b65 !important; }
body.theme-cream .pricing-features li { color: #2c2c2a !important; }
body.theme-cream .pricing-features li::before { color: #173042 !important; }
body.theme-cream .pricing-badge {
    background: #173042 !important;
    color: #fafaf7 !important;
}

/* FAQ */
body.theme-cream .faq-item h3 { color: #0a0a0a !important; }
body.theme-cream .faq-item h3 i { color: #173042 !important; }
body.theme-cream .faq-item p { color: #2c2c2a !important; }
body.theme-cream .faq-item strong { color: #0a0a0a !important; }
body.theme-cream .faq-item a { color: #173042 !important; }

/* CTA SECTION ("Diagnostic Express Gratuit" en bas de page) */
body.theme-cream .cta-section {
    background: #fafaf7 !important;
    background-image: none !important;
    color: #1f1f1d !important;
}
body.theme-cream .cta-section h2 { color: #0a0a0a !important; }
body.theme-cream .cta-section p { color: #2c2c2a !important; }
body.theme-cream .cta-section a:not(.btn) { color: #173042 !important; font-weight: 600 !important; }

/* SUCCESS section (storytelling éventuel) */
body.theme-cream .success-content h2 { color: #0a0a0a !important; }
body.theme-cream .success-content p { color: #2c2c2a !important; }

/* Confidentiality features */
body.theme-cream .conf-feature i { color: #173042 !important; }
body.theme-cream .badge-icon i,
body.theme-cream .badge-icon span { color: #173042 !important; }
body.theme-cream .badge-icon { background: #fafaf7 !important; }

/* Lignes fines uniquement entre sections, pas de fond différent */
body.theme-cream .pricing,
body.theme-cream .success,
body.theme-cream .cta-section,
body.theme-cream .why-cheaper,
body.theme-cream .video-section {
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
}

/* Bouton primary partout dans la home : noir solide cohérent */
body.theme-cream .btn-primary {
    background: #0a0a0a !important;
    color: #ffffff !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    border-radius: 2px !important;
    box-shadow: none !important;
}
body.theme-cream .btn-primary:hover {
    background: #1f1f1d !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.25) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — typo : Space Grotesk → Inter Tight, italiques out
   Sauf le highlight italique du H1 hero (intentionnel : "Expertise
   laboratoire." en italique = signature éditoriale).
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream,
body.theme-cream h1,
body.theme-cream h2,
body.theme-cream h3,
body.theme-cream h4,
body.theme-cream h5,
body.theme-cream h6,
body.theme-cream .section-title,
body.theme-cream .section-subtitle,
body.theme-cream .pricing-teaser-price,
body.theme-cream .pricing-teaser-pitch,
body.theme-cream .pricing-card h3,
body.theme-cream .pricing-card .amount,
body.theme-cream .pricing-card .period,
body.theme-cream .pricing-features li,
body.theme-cream .step-number,
body.theme-cream .process-step h3,
body.theme-cream .process-step p,
body.theme-cream .trust-number,
body.theme-cream .trust-label,
body.theme-cream .faq-item h3,
body.theme-cream .faq-item p,
body.theme-cream .guarantee-box h4,
body.theme-cream .guarantee-box p,
body.theme-cream .cta-section h2,
body.theme-cream .cta-section p,
body.theme-cream .footer h4,
body.theme-cream .footer p,
body.theme-cream .footer a,
body.theme-cream .badge,
body.theme-cream .pricing-badge,
body.theme-cream .brands-title,
body.theme-cream .brands-more,
body.theme-cream .btn,
body.theme-cream .btn-primary,
body.theme-cream .btn-secondary,
body.theme-cream .btn-large {
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-style: normal !important;
}

/* Le seul italique conservé : le highlight du H1 hero */
body.theme-cream .hero h1 .highlight,
body.theme-cream .hero--cream h1 .highlight {
    font-style: italic !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — confidentialité, warning-box, wizard-option
   ═══════════════════════════════════════════════════════════════════ */

/* CONFIDENTIALITÉ — cards à gauche : blanc lisible avec bordure fine */
body.theme-cream .conf-feature {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    box-shadow: none !important;
    color: #1f1f1d !important;
    padding: 18px 22px !important;
    border-radius: 4px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.theme-cream .conf-feature:hover {
    border-color: rgba(10, 10, 10, 0.18) !important;
    box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.1) !important;
}
body.theme-cream .conf-feature i {
    color: #173042 !important;
    background: transparent !important;
    font-size: 1.4rem !important;
}
body.theme-cream .conf-feature strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}
body.theme-cream .conf-feature span {
    color: #2c2c2a !important;
    font-weight: 400 !important;
}

/* WARNING BOX "Ne tentez rien vous-même" — sobre, plus funky */
body.theme-cream .warning-box {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-left: 3px solid #173042 !important;
    box-shadow: none !important;
    border-radius: 2px !important;
    padding: 18px 22px !important;
    color: #2c2c2a !important;
}
body.theme-cream .warning-box i {
    color: #173042 !important;
    background: transparent !important;
    font-size: 1.2rem !important;
}
body.theme-cream .warning-box p,
body.theme-cream .warning-box strong {
    color: #2c2c2a !important;
    font-style: normal !important;
}
body.theme-cream .warning-box strong { color: #0a0a0a !important; font-weight: 600 !important; }

/* REASSURANCE "Ne paniquez pas" — text simple, pas de fond clinquant */
body.theme-cream .reassurance {
    background: transparent !important;
    border: none !important;
    color: #2c2c2a !important;
    font-style: normal !important;
    font-size: 0.95rem !important;
    margin-top: 14px !important;
    padding: 0 !important;
}
body.theme-cream .reassurance strong { color: #0a0a0a !important; font-weight: 600 !important; }

/* WIZARD-OPTION — boutons type d'appareil : pétrole clair, bordure pétrole */
body.theme-cream .wizard-option {
    background: #ffffff !important;
    color: #1f1f1d !important;
    border: 1px solid rgba(23, 48, 66, 0.18) !important;
    box-shadow: none !important;
    border-radius: 3px !important;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease !important;
}
body.theme-cream .wizard-option:hover {
    background: #f0f5f9 !important;
    border-color: rgba(23, 48, 66, 0.45) !important;
    color: #173042 !important;
    transform: none !important;
}
body.theme-cream .wizard-option.selected,
body.theme-cream .wizard-option:focus {
    background: #173042 !important;
    color: #fafaf7 !important;
    border-color: #173042 !important;
}
body.theme-cream .wizard-option i,
body.theme-cream .wizard-option .wizard-option-icon { color: #173042 !important; }
body.theme-cream .wizard-option.selected i,
body.theme-cream .wizard-option.selected .wizard-option-icon { color: #fafaf7 !important; }

/* Wizard question titres */
body.theme-cream .wizard-question {
    color: #0a0a0a !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.018em !important;
}
body.theme-cream .wizard-hint,
body.theme-cream .wizard-hint-label,
body.theme-cream .wizard-hint-sublabel {
    color: #2c2c2a !important;
    font-style: normal !important;
}

/* WIZARD-OPTION — fond violet lavande très clair pour lisibilité */
body.theme-cream .wizard-option {
    background: #f1ecfb !important;
    color: #0a0a0a !important;
    border: 1px solid rgba(109, 40, 217, 0.18) !important;
}
body.theme-cream .wizard-option:hover {
    background: #e8e0f7 !important;
    border-color: rgba(109, 40, 217, 0.42) !important;
    color: #0a0a0a !important;
}
body.theme-cream .wizard-option.selected,
body.theme-cream .wizard-option:focus {
    background: #173042 !important;
    color: #fafaf7 !important;
    border-color: #173042 !important;
}
body.theme-cream .wizard-option i,
body.theme-cream .wizard-option .wizard-option-icon { color: #173042 !important; }
body.theme-cream .wizard-option .option-label,
body.theme-cream .wizard-option span { color: #0a0a0a !important; font-weight: 500 !important; }
body.theme-cream .wizard-option.selected i,
body.theme-cream .wizard-option.selected .wizard-option-icon,
body.theme-cream .wizard-option.selected span { color: #fafaf7 !important; }

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — fix wizard banner + problem section + symptoms
   ═══════════════════════════════════════════════════════════════════ */

/* "Vos réponses déterminent..." (.honesty-banner avec inline styles) */
body.theme-cream .honesty-banner {
    background: #f1ecfb !important;
    border: 1px solid rgba(23, 48, 66, 0.18) !important;
    border-radius: 4px !important;
    color: #2c2c2a !important;
}
body.theme-cream .honesty-banner p {
    color: #2c2c2a !important;
    font-style: normal !important;
}
body.theme-cream .honesty-banner strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}
body.theme-cream .honesty-banner span { font-size: 1.1rem !important; }

/* Wizard progress bar — chiffres lisibles */
body.theme-cream .wizard-progress { background: transparent !important; }
body.theme-cream .progress-text { color: #2c2c2a !important; }
body.theme-cream .progress-encourage { color: #173042 !important; font-weight: 600 !important; }
body.theme-cream .progress-bar {
    background: rgba(23, 48, 66, 0.08) !important;
}
body.theme-cream .progress-fill {
    background: #173042 !important;
}
body.theme-cream .progress-steps .step {
    background: #f1ecfb !important;
    color: #6d28d9 !important;
    border: 1px solid rgba(109, 40, 217, 0.2) !important;
}
body.theme-cream .progress-steps .step.active {
    background: #6d28d9 !important;
    color: #fafaf7 !important;
    border-color: #6d28d9 !important;
}
body.theme-cream .progress-steps .step.completed {
    background: #173042 !important;
    color: #fafaf7 !important;
    border-color: #173042 !important;
}

/* SECTION PROBLEM "Vous avez perdu vos données ?" — bascule cream */
body.theme-cream .problem {
    background: #fafaf7 !important;
    background-image: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream .problem h2 { color: #0a0a0a !important; text-shadow: none !important; }
body.theme-cream .problem p { color: #2c2c2a !important; }
body.theme-cream .symptoms h3 {
    color: #0a0a0a !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
    background: transparent !important;
}
body.theme-cream .symptoms li { color: #2c2c2a !important; }
body.theme-cream .symptoms li::before { color: #173042 !important; }
body.theme-cream .problem-image img {
    box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(10, 10, 10, 0.05) !important;
}

/* Honesty banner — styles complets (inline virés du HTML) — !important blindé */
.honesty-banner,
body .honesty-banner,
body.theme-cream .honesty-banner {
    background: transparent !important;
    border: none !important;
    border-left: 3px solid rgba(217,119,6,0.55) !important;
    border-radius: 0 !important;
    padding: 4px 12px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    color: #4a4a44 !important;
    cursor: default !important;
    user-select: text !important;
    -webkit-tap-highlight-color: transparent !important;
}
.honesty-banner .honesty-icon { font-size: 1.1rem !important; flex-shrink: 0 !important; color: #173042 !important; }
.honesty-banner p,
body .honesty-banner p,
body.theme-cream .honesty-banner p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    color: #2c2c2a !important;
    font-style: normal !important;
    background: transparent !important;
}
.honesty-banner strong,
body .honesty-banner strong,
body.theme-cream .honesty-banner strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
    background: transparent !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — engagement card + sweep guides faq + cleanup tarifs
   ═══════════════════════════════════════════════════════════════════ */

/* Notre engagement card (page processus) — clean */
body.theme-cream .engagement-card,
.engagement-card {
    text-align: center !important;
    margin-top: 2.5rem !important;
    padding: 22px 28px !important;
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-left: 3px solid #173042 !important;
    border-radius: 4px !important;
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-shadow: none !important;
}
body.theme-cream .engagement-title,
.engagement-card .engagement-title {
    font-size: 1.05rem !important;
    color: #0a0a0a !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
}
body.theme-cream .engagement-body,
.engagement-card .engagement-body {
    font-size: 0.95rem !important;
    color: #2c2c2a !important;
    line-height: 1.6 !important;
}
body.theme-cream .engagement-body strong,
.engagement-card .engagement-body strong { color: #0a0a0a !important; }

/* Bloc "Nos guides spécialisés" (faq.astro) — override les inline darks */
body.theme-cream section[style*="#141425"] {
    background: #fafaf7 !important;
    background-image: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream section[style*="#141425"] h2 {
    color: #0a0a0a !important;
    text-shadow: none !important;
}
body.theme-cream section[style*="#141425"] h3 {
    color: #0a0a0a !important;
}
body.theme-cream section[style*="#141425"] p {
    color: #2c2c2a !important;
}
/* Cards links inside */
body.theme-cream section[style*="#141425"] a[style*="rgba(20, 20, 37"] {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    color: #1f1f1d !important;
    box-shadow: none !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
body.theme-cream section[style*="#141425"] a[style*="rgba(20, 20, 37"]:hover {
    border-color: rgba(10, 10, 10, 0.22) !important;
    box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.12) !important;
}
body.theme-cream section[style*="#141425"] a[style*="rgba(20, 20, 37"] strong {
    color: #0a0a0a !important;
}
body.theme-cream section[style*="#141425"] a[style*="rgba(20, 20, 37"] p {
    color: #6b6b65 !important;
}

/* Team trust section (tarifs.astro) — encore en dark */
body.theme-cream .team-trust-section {
    background: #fafaf7 !important;
    background-image: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
    color: #2c2c2a !important;
}
body.theme-cream .team-trust-section h3 { color: #0a0a0a !important; }
body.theme-cream .team-trust-section p { color: #2c2c2a !important; }
body.theme-cream .team-trust-section strong { color: #0a0a0a !important; }
body.theme-cream .team-trust-section a {
    color: #173042 !important;
    font-weight: 600 !important;
}
body.theme-cream .team-trust-link {
    color: #173042 !important;
    border-bottom: 1px solid rgba(23, 48, 66, 0.3) !important;
    padding-bottom: 2px !important;
}

/* Lab section (page processus) si encore dark */
body.theme-cream .lab {
    background: #fafaf7 !important;
    background-image: none !important;
}
body.theme-cream .lab h2,
body.theme-cream .lab h3 { color: #0a0a0a !important; }
body.theme-cream .lab p,
body.theme-cream .lab li { color: #2c2c2a !important; }

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — Blog + Avis clients (sections oubliées)
   ═══════════════════════════════════════════════════════════════════ */

/* BLOG cards — cream lisible, on garde l'image colorée en haut (identité) */
body.theme-cream .blog-card {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    box-shadow: none !important;
    color: #1f1f1d !important;
}
body.theme-cream .blog-card:hover {
    border-color: rgba(10, 10, 10, 0.22) !important;
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}
body.theme-cream .blog-card-content { color: #1f1f1d !important; }
body.theme-cream .blog-card-meta { color: #6b6b65 !important; }
body.theme-cream .blog-card-title { color: #0a0a0a !important; }
body.theme-cream .blog-card-excerpt { color: #2c2c2a !important; }
body.theme-cream .blog-card-cta,
body.theme-cream .blog-card a:not(.btn) { color: #173042 !important; }
body.theme-cream .blog-grid { background: transparent !important; }
body.theme-cream .blog-hero {
    background: #fafaf7 !important;
    background-image: none !important;
    color: #0a0a0a !important;
}
body.theme-cream .blog-hero h1 { color: #0a0a0a !important; }
body.theme-cream .blog-hero p { color: #2c2c2a !important; }

/* AVIS CLIENTS (testimonials) */
body.theme-cream .testimonials-section {
    background: #fafaf7 !important;
    background-image: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream .testimonials-section h1,
body.theme-cream .testimonials-section h2 { color: #0a0a0a !important; }
body.theme-cream .testimonials-section p { color: #2c2c2a !important; }
body.theme-cream .tm-filter label { color: #2c2c2a !important; }
body.theme-cream .tm-filter label i { color: #173042 !important; }
body.theme-cream .tm-select-wrap select {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.18) !important;
    color: #0a0a0a !important;
    border-radius: 4px !important;
}
body.theme-cream .tm-select-wrap select:hover { border-color: rgba(10, 10, 10, 0.36) !important; }
body.theme-cream .tm-select-wrap select:focus {
    border-color: #173042 !important;
    box-shadow: 0 0 0 3px rgba(23, 48, 66, 0.14) !important;
}
body.theme-cream .tm-select-wrap i { color: #6b6b65 !important; }

/* Cards avis */
body.theme-cream .tc {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    box-shadow: none !important;
    color: #1f1f1d !important;
}
body.theme-cream .tc:hover {
    border-color: rgba(10, 10, 10, 0.22) !important;
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}
body.theme-cream .tc h3,
body.theme-cream .tc h4 { color: #0a0a0a !important; }
body.theme-cream .tc p,
body.theme-cream .tc blockquote { color: #2c2c2a !important; }
body.theme-cream .tc strong { color: #0a0a0a !important; }
body.theme-cream .tc-author { color: #2c2c2a !important; }
body.theme-cream .tc-name { color: #0a0a0a !important; }
body.theme-cream .tc-context { color: #6b6b65 !important; }

/* Badges catégorie : on garde la teinte mais lisibles sur blanc */
body.theme-cream .tc-badge { font-weight: 600 !important; }
body.theme-cream .tc-badge--industry {
    background: rgba(245, 158, 11, 0.14) !important;
    color: #92400e !important;
}
body.theme-cream .tc-badge--creative,
body.theme-cream .tc-badge--media {
    background: rgba(139, 92, 246, 0.14) !important;
    color: #5b21b6 !important;
}
body.theme-cream .tc-badge--enterprise,
body.theme-cream .tc-badge--server {
    background: rgba(23, 48, 66, 0.12) !important;
    color: #173042 !important;
}
body.theme-cream .tc-badge--family,
body.theme-cream .tc-badge--particular {
    background: rgba(22, 163, 74, 0.14) !important;
    color: #14532d !important;
}
body.theme-cream .tc-badge--professional,
body.theme-cream .tc-badge--liberal {
    background: rgba(220, 38, 38, 0.12) !important;
    color: #991b1b !important;
}
body.theme-cream .tc-badge--ssd,
body.theme-cream .tc-badge--storage {
    background: rgba(2, 132, 199, 0.14) !important;
    color: #075985 !important;
}

/* Stars rating */
body.theme-cream .tc-stars,
body.theme-cream .tc-rating { color: #ca8a04 !important; }

/* Precision banner (step 2 wizard) — clean styles, lisible */
.precision-banner,
body .precision-banner,
body.theme-cream .precision-banner {
    background: #f1ecfb !important;
    border: 1px solid rgba(23, 48, 66, 0.18) !important;
    border-radius: 4px !important;
    padding: 14px 18px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #2c2c2a !important;
}
.precision-banner .precision-icon {
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
.precision-banner .precision-title,
body.theme-cream .precision-banner .precision-title {
    margin: 0 0 6px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #0a0a0a !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-style: normal !important;
}
.precision-banner .precision-text,
body.theme-cream .precision-banner .precision-text {
    margin: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    color: #2c2c2a !important;
    font-style: normal !important;
}
.precision-banner .precision-text strong,
body.theme-cream .precision-banner .precision-text strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}

/* HONESTY BANNER — version radicale, plus de strong/p qui héritent des styles parasites */
aside.honesty-banner {
    background: #f1ecfb !important;
    border: 1px solid rgba(23, 48, 66, 0.18) !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    margin: 0 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
}
aside.honesty-banner .honesty-icon {
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
    color: #173042 !important;
}
aside.honesty-banner .honesty-text {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    color: #2c2c2a !important;
    font-style: normal !important;
    font-weight: 500 !important;
}

/* Blockquote (Marie L. citation page processus) */
body.theme-cream blockquote {
    background: #ffffff !important;
    border-left: 3px solid #173042 !important;
    padding: 18px 22px !important;
    margin: 1.5rem 0 !important;
    border-radius: 4px !important;
    color: #2c2c2a !important;
    font-style: italic !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-right: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream blockquote cite {
    display: block !important;
    margin-top: 10px !important;
    font-style: normal !important;
    font-size: 0.85rem !important;
    color: #6b6b65 !important;
    font-weight: 600 !important;
}

/* Progress steps wizard — bleu pétrole au lieu de violet */
body.theme-cream .progress-fill {
    background: #173042 !important;
}
body.theme-cream .progress-steps .step {
    background: #e8eef2 !important;
    color: #173042 !important;
    border: 1px solid rgba(23, 48, 66, 0.2) !important;
}
body.theme-cream .progress-steps .step.active {
    background: #173042 !important;
    color: #fafaf7 !important;
    border-color: #173042 !important;
}
body.theme-cream .progress-steps .step.completed {
    background: #173042 !important;
    color: #fafaf7 !important;
    border-color: #173042 !important;
    opacity: 0.7 !important;
}
body.theme-cream .progress-encourage {
    color: #173042 !important;
}

/* Page processus CTA en bas — passer en cream */
body.theme-cream .cta-section[style*="1a1a2e"],
body.theme-cream .cta-section {
    background: #fafaf7 !important;
    background-image: none !important;
    color: #1f1f1d !important;
}
body.theme-cream .cta-section h2 { color: #0a0a0a !important; }
body.theme-cream .cta-section p { color: #2c2c2a !important; }
body.theme-cream .cta-section a:not(.btn) { color: #173042 !important; font-weight: 600 !important; }

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — Lab gallery refonte (plus de bande grise sous les photos)
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream .lab-gallery {
    background: #fafaf7 !important;
    background-image: none !important;
    border-top: 1px solid rgba(10, 10, 10, 0.08) !important;
    padding: 72px 0 !important;
}
body.theme-cream .lab-gallery .section-title { color: #0a0a0a !important; }
body.theme-cream .lab-gallery .section-subtitle { color: #6b6b65 !important; }

/* Carte gallery : pas de bande, juste l'image */
body.theme-cream .gallery-item {
    position: relative !important;
    overflow: visible !important;
    border-radius: 4px !important;
    border: none !important;
    background: transparent !important;
    aspect-ratio: auto !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
body.theme-cream .gallery-item:hover {
    border-color: transparent !important;
    box-shadow: none !important;
}
body.theme-cream .gallery-item img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 4px !important;
    border: 1px solid rgba(10, 10, 10, 0.06) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

/* Caption : sous l'image, en texte simple — plus de fond gris ni overlay */
body.theme-cream .gallery-caption {
    position: static !important;
    background: transparent !important;
    background-image: none !important;
    color: #2c2c2a !important;
    padding: 0 !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — Wizard form complet (formulaire diagnostic)
   Sélections, checkboxes, radios, inputs, textarea, photo uploads.
   Écran final "Merci !" + bandeaux conseils.
   ═══════════════════════════════════════════════════════════════════ */

/* Tous les inputs / select / textarea du wizard */
body.theme-cream .wizard-container input[type="text"],
body.theme-cream .wizard-container input[type="email"],
body.theme-cream .wizard-container input[type="tel"],
body.theme-cream .wizard-container input[type="number"],
body.theme-cream .wizard-container input[type="search"],
body.theme-cream .wizard-container select,
body.theme-cream .wizard-container textarea,
body.theme-cream .diagnostic-section input[type="text"],
body.theme-cream .diagnostic-section input[type="email"],
body.theme-cream .diagnostic-section input[type="tel"],
body.theme-cream .diagnostic-section input[type="number"],
body.theme-cream .diagnostic-section select,
body.theme-cream .diagnostic-section textarea {
    background: #ffffff !important;
    color: #0a0a0a !important;
    border: 1px solid rgba(10, 10, 10, 0.18) !important;
    border-radius: 4px !important;
    padding: 10px 14px !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-size: 0.92rem !important;
    box-shadow: none !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}
body.theme-cream .wizard-container input::placeholder,
body.theme-cream .wizard-container textarea::placeholder,
body.theme-cream .diagnostic-section input::placeholder,
body.theme-cream .diagnostic-section textarea::placeholder {
    color: #9b9a94 !important;
    font-style: normal !important;
}
body.theme-cream .wizard-container input:focus,
body.theme-cream .wizard-container select:focus,
body.theme-cream .wizard-container textarea:focus,
body.theme-cream .diagnostic-section input:focus,
body.theme-cream .diagnostic-section select:focus,
body.theme-cream .diagnostic-section textarea:focus {
    border-color: #173042 !important;
    box-shadow: 0 0 0 3px rgba(23, 48, 66, 0.12) !important;
    outline: none !important;
}

/* Labels du wizard */
body.theme-cream .wizard-container label,
body.theme-cream .wizard-container .form-group label,
body.theme-cream .wizard-container .wizard-question,
body.theme-cream .diagnostic-section label,
body.theme-cream .diagnostic-section .form-group label {
    color: #0a0a0a !important;
    font-weight: 600 !important;
    font-style: normal !important;
}
body.theme-cream .wizard-container label i,
body.theme-cream .diagnostic-section label i { color: #173042 !important; }

/* Hint sous les questions (Une question ? — etc.) */
body.theme-cream .wizard-help-box,
body.theme-cream .diagnostic-section .wizard-help-box {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
    border-left: 3px solid #f59e0b !important;
    color: #78350f !important;
    border-radius: 4px !important;
}
body.theme-cream .wizard-help-box p,
body.theme-cream .wizard-help-box strong,
body.theme-cream .wizard-help-box a {
    color: #78350f !important;
    font-style: normal !important;
}
body.theme-cream .wizard-help-box i { color: #b45309 !important; }

/* Checkbox / Radio cards (option pickers) — fond lavande clair */
body.theme-cream .wizard-container .checkbox-item,
body.theme-cream .wizard-container .radio-option,
body.theme-cream .wizard-container .data-priority-item,
body.theme-cream .wizard-container .priority-option,
body.theme-cream .diagnostic-section .checkbox-item,
body.theme-cream .diagnostic-section .radio-option,
body.theme-cream .diagnostic-section .data-priority-item,
body.theme-cream .diagnostic-section .priority-option {
    background: #f4f0fa !important;
    color: #1f1f1d !important;
    border: 1px solid rgba(109, 40, 217, 0.18) !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: background-color 0.15s ease, border-color 0.15s ease !important;
}
body.theme-cream .wizard-container .checkbox-item:hover,
body.theme-cream .wizard-container .radio-option:hover,
body.theme-cream .wizard-container .priority-option:hover,
body.theme-cream .diagnostic-section .checkbox-item:hover,
body.theme-cream .diagnostic-section .radio-option:hover,
body.theme-cream .diagnostic-section .priority-option:hover {
    background: #ece5f5 !important;
    border-color: rgba(109, 40, 217, 0.42) !important;
}

/* Checkbox/radio inputs : couleur saphir-pétrole quand cochés */
body.theme-cream .wizard-container input[type="checkbox"],
body.theme-cream .wizard-container input[type="radio"],
body.theme-cream .diagnostic-section input[type="checkbox"],
body.theme-cream .diagnostic-section input[type="radio"] {
    accent-color: #173042 !important;
    cursor: pointer !important;
}

/* État sélectionné — checkbox/radio cochée : fond pétrole pâle */
body.theme-cream .wizard-container .checkbox-item:has(input:checked),
body.theme-cream .wizard-container .radio-option:has(input:checked),
body.theme-cream .wizard-container .priority-option:has(input:checked),
body.theme-cream .diagnostic-section .checkbox-item:has(input:checked),
body.theme-cream .diagnostic-section .radio-option:has(input:checked) {
    background: #e7eef3 !important;
    border-color: #173042 !important;
    color: #0a0a0a !important;
}

/* Radio label (le span text à côté) lisible */
body.theme-cream .wizard-container .radio-label,
body.theme-cream .wizard-container .radio-option span,
body.theme-cream .wizard-container .checkbox-item span {
    color: #0a0a0a !important;
    font-weight: 500 !important;
}

/* Photos upload placeholders — cards blanches */
body.theme-cream .photo-upload-card,
body.theme-cream .dropzone,
body.theme-cream .photo-dropzone {
    background: #ffffff !important;
    border: 2px dashed rgba(10, 10, 10, 0.2) !important;
    color: #2c2c2a !important;
    border-radius: 4px !important;
}
body.theme-cream .photo-upload-card i,
body.theme-cream .dropzone i,
body.theme-cream .photo-dropzone i { color: #173042 !important; }
body.theme-cream .photo-upload-card .label,
body.theme-cream .photo-upload-card span,
body.theme-cream .photo-upload-card p,
body.theme-cream .dropzone span,
body.theme-cream .dropzone p { color: #2c2c2a !important; }
body.theme-cream .photo-upload-card .badge,
body.theme-cream .photo-upload-card small {
    color: #6b6b65 !important;
    background: transparent !important;
}

/* Bloc "Conseils :" vert (photos) */
body.theme-cream .photo-tips,
body.theme-cream .conseils-block {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-left: 3px solid #16a34a !important;
    color: #14532d !important;
    border-radius: 4px !important;
}
body.theme-cream .photo-tips i,
body.theme-cream .conseils-block i { color: #16a34a !important; }
body.theme-cream .photo-tips strong,
body.theme-cream .conseils-block strong { color: #14532d !important; }

/* Bandeau "Cette information est indispensable" (intake step 2) */
body.theme-cream .wizard-container [style*="border:2px solid #f59e0b"],
body.theme-cream .wizard-container [style*="border: 2px solid #f59e0b"] {
    background: #fffbeb !important;
    border-color: #f59e0b !important;
    color: #78350f !important;
}

/* CGV checkbox label "Je certifie..." / "J'accepte..." */
body.theme-cream .wizard-container .checkbox-group label,
body.theme-cream .wizard-container .form-group.checkbox-group label,
body.theme-cream .diagnostic-section .checkbox-group label {
    color: #2c2c2a !important;
    font-weight: 400 !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
}
body.theme-cream .wizard-container .checkbox-group label a,
body.theme-cream .diagnostic-section .checkbox-group label a {
    color: #173042 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* Écran final "Merci !" — wizard-success */
body.theme-cream .wizard-success {
    background: transparent !important;
    color: #2c2c2a !important;
    text-align: center !important;
}
body.theme-cream .wizard-success h3 {
    color: #0a0a0a !important;
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
}
body.theme-cream .wizard-success .success-message,
body.theme-cream .wizard-success p {
    color: #2c2c2a !important;
    font-style: normal !important;
}
body.theme-cream .wizard-success .success-message strong,
body.theme-cream .wizard-success p strong { color: #0a0a0a !important; font-weight: 700 !important; }
body.theme-cream .wizard-success .success-next-steps {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-radius: 4px !important;
    padding: 18px 22px !important;
    color: #2c2c2a !important;
    margin-top: 16px !important;
    text-align: left !important;
}
body.theme-cream .wizard-success .success-next-steps p { color: #2c2c2a !important; }
body.theme-cream .wizard-success .success-next-steps strong { color: #0a0a0a !important; }

/* Bandeau "Quelques questions pour évaluer vos chances" — header avant le wizard */
body.theme-cream .diagnostic-section .section-subtitle { color: #6b6b65 !important; }

/* "Question précédente" bouton retour wizard */
body.theme-cream .wizard-back,
body.theme-cream .wizard-container .wizard-back {
    background: transparent !important;
    color: #173042 !important;
    border: none !important;
    font-weight: 500 !important;
    font-style: normal !important;
}
body.theme-cream .wizard-back:hover { color: #0a0a0a !important; }

/* Drapeau pays + select Pays */
body.theme-cream .wizard-container select[name="country"],
body.theme-cream .diagnostic-section select#w-country {
    background-image: none !important;
    color: #0a0a0a !important;
}

/* Form group vertical spacing harmonisé */
body.theme-cream .wizard-container .form-group label {
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 0.82rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #2c2c2a !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — wizard checkbox-option / radio-option (override les
   vraies classes du wizard, mes anciens overrides ciblaient .checkbox-item)
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream .checkbox-option,
body.theme-cream .checkbox-option:nth-child(2n),
body.theme-cream .checkbox-option:nth-child(4),
body.theme-cream .checkbox-option:nth-child(7) {
    background: #f4f0fa !important;
    border: 1px solid rgba(109, 40, 217, 0.18) !important;
    color: #0a0a0a !important;
    box-shadow: none !important;
    transform: none !important;
    border-radius: 4px !important;
}
body.theme-cream .checkbox-option:hover {
    background: #ece5f5 !important;
    border-color: rgba(109, 40, 217, 0.42) !important;
    transform: none !important;
    box-shadow: none !important;
}
body.theme-cream .checkbox-option input[type="checkbox"] {
    accent-color: #173042 !important;
}
body.theme-cream .checkbox-label,
body.theme-cream .checkbox-option .checkbox-label {
    color: #0a0a0a !important;
    font-weight: 500 !important;
}
body.theme-cream .checkbox-label i,
body.theme-cream .checkbox-option .checkbox-label i { color: #173042 !important; }

/* État coché — bg saphir-pétrole pâle, texte noir lisible */
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) {
    background: #e7eef3 !important;
    border-color: #173042 !important;
}
body.theme-cream .checkbox-option input[type="checkbox"]:checked + .checkbox-label,
body.theme-cream .checkbox-option:has(input:checked) .checkbox-label {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}
body.theme-cream .checkbox-option input[type="checkbox"]:checked {
    transform: none !important;
}

/* Radio-option (Interventions précédentes, Remises sous tension) */
body.theme-cream .radio-option,
body.theme-cream .radio-group .radio-option {
    background: #f4f0fa !important;
    border: 1px solid rgba(109, 40, 217, 0.18) !important;
    color: #0a0a0a !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transform: none !important;
}
body.theme-cream .radio-option:hover {
    background: #ece5f5 !important;
    border-color: rgba(109, 40, 217, 0.42) !important;
    transform: none !important;
}
body.theme-cream .radio-option input[type="radio"] { accent-color: #173042 !important; }
body.theme-cream .radio-label,
body.theme-cream .radio-option .radio-label {
    color: #0a0a0a !important;
    font-weight: 500 !important;
}
body.theme-cream .radio-label i,
body.theme-cream .radio-option .radio-label i { color: #173042 !important; }

body.theme-cream .radio-option:has(input[type="radio"]:checked) {
    background: #e7eef3 !important;
    border-color: #173042 !important;
}
body.theme-cream .radio-option:has(input:checked) .radio-label {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}

/* "Détails techniques" — labels au-dessus des selects (Capacité*, Marque*, etc.) */
body.theme-cream .form-group label,
body.theme-cream .wizard-container .form-group > label,
body.theme-cream .diagnostic-section .form-group > label {
    color: #0a0a0a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 6px !important;
    display: block !important;
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — Selects FORCE max specificity
   Reset complet appearance + background sur tous les états (focus actif)
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream select,
body.theme-cream .form-group select,
body.theme-cream .wizard-container select,
body.theme-cream .wizard-form-step select,
body.theme-cream .diagnostic-section select,
body.theme-cream input[type="text"],
body.theme-cream input[type="email"],
body.theme-cream input[type="tel"],
body.theme-cream input[type="number"],
body.theme-cream textarea,
body.theme-cream .form-group input,
body.theme-cream .form-group textarea,
body.theme-cream .wizard-container input,
body.theme-cream .wizard-container textarea,
body.theme-cream .wizard-form-step input,
body.theme-cream .wizard-form-step textarea,
body.theme-cream .diagnostic-section input,
body.theme-cream .diagnostic-section textarea {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23173042' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    color: #0a0a0a !important;
    border: 1px solid rgba(10, 10, 10, 0.18) !important;
    border-radius: 4px !important;
    padding: 10px 38px 10px 14px !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-size: 0.92rem !important;
    box-shadow: none !important;
}

/* Override pour les inputs (pas de chevron) */
body.theme-cream input[type="text"],
body.theme-cream input[type="email"],
body.theme-cream input[type="tel"],
body.theme-cream input[type="number"],
body.theme-cream textarea,
body.theme-cream .form-group input[type="text"],
body.theme-cream .form-group input[type="email"],
body.theme-cream .form-group input[type="tel"],
body.theme-cream .form-group input[type="number"],
body.theme-cream .form-group textarea {
    background-image: none !important;
    padding: 10px 14px !important;
}

/* :focus — couleur de fond reste blanche, juste le ring change */
body.theme-cream select:focus,
body.theme-cream .form-group select:focus,
body.theme-cream .wizard-container select:focus,
body.theme-cream .wizard-form-step select:focus,
body.theme-cream .diagnostic-section select:focus,
body.theme-cream input:focus,
body.theme-cream textarea:focus,
body.theme-cream .form-group input:focus,
body.theme-cream .form-group textarea:focus,
body.theme-cream .wizard-container input:focus,
body.theme-cream .wizard-container textarea:focus {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #0a0a0a !important;
    border-color: #173042 !important;
    box-shadow: 0 0 0 3px rgba(23, 48, 66, 0.14) !important;
    outline: none !important;
}

/* Options du dropdown — fond blanc */
body.theme-cream select option {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

/* Placeholder gris */
body.theme-cream input::placeholder,
body.theme-cream textarea::placeholder {
    color: #9b9a94 !important;
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — fix labels-block, info-box, photo-dropzone, success
   ═══════════════════════════════════════════════════════════════════ */

/* .label-block (chiffrement, priorités) */
body.theme-cream .label-block {
    color: #0a0a0a !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: block !important;
    margin-bottom: 12px !important;
}
body.theme-cream .label-block i { color: #173042 !important; }

/* Info-box centred (Conseils photos) */
body.theme-cream .info-box,
body.theme-cream .info-box.info-box-centered {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-left: 3px solid #16a34a !important;
    color: #14532d !important;
    border-radius: 4px !important;
    padding: 14px 18px !important;
    box-shadow: none !important;
}
body.theme-cream .info-box i,
body.theme-cream .info-box.info-box-centered i { color: #16a34a !important; }
body.theme-cream .info-box strong,
body.theme-cream .info-box div,
body.theme-cream .info-box p { color: #14532d !important; }
body.theme-cream .info-box.warning {
    background: #fffbeb !important;
    border-color: #fde68a !important;
    border-left-color: #f59e0b !important;
    color: #78350f !important;
}
body.theme-cream .info-box.warning i { color: #f59e0b !important; }

/* Photo dropzones */
body.theme-cream .photo-dropzone {
    background: #ffffff !important;
    border: 2px dashed rgba(10, 10, 10, 0.18) !important;
    color: #2c2c2a !important;
    border-radius: 4px !important;
}
body.theme-cream .photo-dropzone:hover { border-color: rgba(23, 48, 66, 0.45) !important; background: #fafaf7 !important; }
body.theme-cream .photo-dropzone.dropzone-error { border-color: #dc2626 !important; }
body.theme-cream .dropzone-content {
    color: #2c2c2a !important;
    background: transparent !important;
}
body.theme-cream .dropzone-content i {
    color: #173042 !important;
    font-size: 1.8rem !important;
}
body.theme-cream .dropzone-content span {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}
body.theme-cream .dropzone-content small {
    color: #6b6b65 !important;
    font-weight: 400 !important;
}

/* Wizard success "Merci Largo!" — fond cream, texte noir lisible */
body.theme-cream .wizard-success {
    background: transparent !important;
    color: #0a0a0a !important;
}
body.theme-cream .wizard-success h3 {
    color: #0a0a0a !important;
    font-size: 1.7rem !important;
    margin: 16px 0 14px !important;
    font-weight: 700 !important;
}
body.theme-cream .wizard-success .success-message,
body.theme-cream .wizard-success > p {
    color: #2c2c2a !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-style: normal !important;
    margin: 0 0 12px !important;
}
body.theme-cream .wizard-success .success-message strong,
body.theme-cream .wizard-success > p strong {
    color: #0a0a0a !important;
    font-weight: 700 !important;
    background: transparent !important;
}
body.theme-cream .wizard-success .success-next-steps {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
    border-radius: 4px !important;
    padding: 18px 24px !important;
    margin: 18px auto 0 !important;
    max-width: 540px !important;
    text-align: left !important;
    color: #2c2c2a !important;
}
body.theme-cream .wizard-success .success-next-steps p {
    color: #2c2c2a !important;
    margin: 0 !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
}
body.theme-cream .wizard-success .success-next-steps strong {
    color: #0a0a0a !important;
    font-weight: 600 !important;
}
body.theme-cream .wizard-success .success-next-steps i { color: #16a34a !important; }

/* ═══ Wizard success — NUKE OPACITY/FILTER, contraste maximum ═══
   Largo: "le message est toujours trop clair" — patch ultra-brutal */
body.theme-cream .wizard-success,
body.theme-cream .wizard-success * {
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    mix-blend-mode: normal !important;
}
body.theme-cream .wizard-success {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.10) !important;
    border-radius: 12px !important;
    padding: 36px 28px !important;
    max-width: 620px !important;
    margin: 24px auto !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}
body.theme-cream .wizard-success h3 {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}
body.theme-cream .wizard-success .success-message,
body.theme-cream .wizard-success > p {
    color: #1a1a1a !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}
body.theme-cream .wizard-success .success-message strong,
body.theme-cream .wizard-success > p strong {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    display: inline-block !important;
    background: #173042 !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
    letter-spacing: 0.04em !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace !important;
}
body.theme-cream .wizard-success .success-next-steps {
    background: #fafaf7 !important;
    border: 1px solid rgba(10, 10, 10, 0.08) !important;
}
body.theme-cream .wizard-success .success-next-steps p {
    color: #1a1a1a !important;
    font-weight: 500 !important;
}
body.theme-cream .wizard-success .success-next-steps strong {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — checkbox-option / radio-option : état coché
   ULTRA visible (différence forte entre coché et non coché)
   ═══════════════════════════════════════════════════════════════════ */

/* Default : très clair, presque blanc cassé */
body.theme-cream .checkbox-option {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.12) !important;
    border-left: 3px solid transparent !important;
}
body.theme-cream .checkbox-option:hover {
    background: #f6f1fb !important;
    border-color: rgba(109, 40, 217, 0.3) !important;
    border-left-color: rgba(109, 40, 217, 0.6) !important;
}

/* COCHÉ — fond pétrole pâle, bordure gauche pétrole 4px, texte noir gras */
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) {
    background: #d8e3eb !important;
    border-color: #173042 !important;
    border-left: 4px solid #173042 !important;
    box-shadow: 0 1px 0 rgba(23, 48, 66, 0.08) !important;
}
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) .checkbox-label,
body.theme-cream .checkbox-option input[type="checkbox"]:checked + .checkbox-label {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) .checkbox-label i,
body.theme-cream .checkbox-option input[type="checkbox"]:checked + .checkbox-label i {
    color: #173042 !important;
}

/* Checkbox elle-même : plus visible — accent saphir et taille augmentée */
body.theme-cream .checkbox-option input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    accent-color: #173042 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

/* Idem pour radio-option */
body.theme-cream .radio-option {
    background: #ffffff !important;
    border: 1px solid rgba(10, 10, 10, 0.12) !important;
    border-left: 3px solid transparent !important;
}
body.theme-cream .radio-option:hover {
    background: #f6f1fb !important;
    border-color: rgba(109, 40, 217, 0.3) !important;
    border-left-color: rgba(109, 40, 217, 0.6) !important;
}
body.theme-cream .radio-option:has(input[type="radio"]:checked) {
    background: #d8e3eb !important;
    border-color: #173042 !important;
    border-left: 4px solid #173042 !important;
    box-shadow: 0 1px 0 rgba(23, 48, 66, 0.08) !important;
}
body.theme-cream .radio-option:has(input[type="radio"]:checked) .radio-label {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}
body.theme-cream .radio-option:has(input[type="radio"]:checked) .radio-label i {
    color: #173042 !important;
}
body.theme-cream .radio-option input[type="radio"] {
    width: 22px !important;
    height: 22px !important;
    accent-color: #173042 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — checkbox/radio FINAL : default blanc / coché évident
   Cette règle écrase TOUTES les précédentes (placée à la fin du fichier).
   ═══════════════════════════════════════════════════════════════════ */

/* DEFAULT (non coché) — blanc, sobre, indiscutable */
body.theme-cream .checkbox-option,
body.theme-cream .radio-option,
body.theme-cream .checkbox-option:nth-child(2n),
body.theme-cream .checkbox-option:nth-child(4),
body.theme-cream .checkbox-option:nth-child(7) {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid #d8d8d2 !important;
    border-left: 4px solid transparent !important;
    color: #2c2c2a !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}
body.theme-cream .checkbox-option .checkbox-label,
body.theme-cream .radio-option .radio-label {
    color: #2c2c2a !important;
    font-weight: 500 !important;
}
body.theme-cream .checkbox-option .checkbox-label i,
body.theme-cream .radio-option .radio-label i { color: #6b6b65 !important; }

/* HOVER — fond très légèrement teinté */
body.theme-cream .checkbox-option:hover,
body.theme-cream .radio-option:hover {
    background: #f5f4f1 !important;
    background-color: #f5f4f1 !important;
    border-color: #b8b8b0 !important;
    border-left-color: #b8b8b0 !important;
    transform: none !important;
}

/* COCHÉ — fond pétrole pâle saturé + barre gauche pétrole solide 4px */
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked),
body.theme-cream .radio-option:has(input[type="radio"]:checked) {
    background: #c9d6df !important;
    background-color: #c9d6df !important;
    border: 1px solid #173042 !important;
    border-left: 4px solid #173042 !important;
    color: #0a0a0a !important;
    box-shadow: 0 1px 0 rgba(23, 48, 66, 0.1) !important;
}
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) .checkbox-label,
body.theme-cream .radio-option:has(input[type="radio"]:checked) .radio-label,
body.theme-cream .checkbox-option input[type="checkbox"]:checked + .checkbox-label,
body.theme-cream .radio-option input[type="radio"]:checked + .radio-label {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked) .checkbox-label i,
body.theme-cream .radio-option:has(input[type="radio"]:checked) .radio-label i,
body.theme-cream .checkbox-option input[type="checkbox"]:checked + .checkbox-label i,
body.theme-cream .radio-option input[type="radio"]:checked + .radio-label i {
    color: #173042 !important;
}

/* La case à cocher elle-même — saphir-pétrole et grosse */
body.theme-cream .checkbox-option input[type="checkbox"],
body.theme-cream .radio-option input[type="radio"] {
    accent-color: #173042 !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transform: none !important;
}

/* Override final-final : on dégage la barre 4px à gauche, juste le fond change */
body.theme-cream .checkbox-option,
body.theme-cream .radio-option,
body.theme-cream .checkbox-option:nth-child(2n),
body.theme-cream .checkbox-option:nth-child(4),
body.theme-cream .checkbox-option:nth-child(7) {
    border-left: 1px solid #d8d8d2 !important;
}
body.theme-cream .checkbox-option:hover,
body.theme-cream .radio-option:hover {
    border-left: 1px solid #b8b8b0 !important;
}
body.theme-cream .checkbox-option:has(input[type="checkbox"]:checked),
body.theme-cream .radio-option:has(input[type="radio"]:checked) {
    border-left: 1px solid #173042 !important;
}

/* Cases à cocher/radio natives : masquées totalement.
   L'utilisateur clique la ligne entière — le fond bleu indique la sélection. */
body.theme-cream .checkbox-option input[type="checkbox"],
body.theme-cream .radio-option input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME CREAM — Checkboxes CGV/RGPD : check custom propre
   On masque le checkbox natif (qui rend mal sur Firefox) et on dessine
   notre propre case via ::before/::after sur le label.
   ═══════════════════════════════════════════════════════════════════ */

body.theme-cream .checkbox-group,
body.theme-cream .form-group.checkbox-group {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
}

body.theme-cream .checkbox-group input[type="checkbox"],
body.theme-cream .form-group.checkbox-group input[type="checkbox"] {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 22px !important;
    height: 22px !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 2 !important;
    margin: 0 !important;
}

body.theme-cream .checkbox-group label,
body.theme-cream .form-group.checkbox-group label {
    position: relative !important;
    padding-left: 34px !important;
    cursor: pointer !important;
    color: #2c2c2a !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    display: block !important;
}

/* Faux carré case à cocher */
body.theme-cream .checkbox-group label::before,
body.theme-cream .form-group.checkbox-group label::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 1px !important;
    width: 20px !important;
    height: 20px !important;
    background: #ffffff !important;
    border: 1.5px solid #b8b8b0 !important;
    border-radius: 3px !important;
    transition: background 0.15s ease, border-color 0.15s ease !important;
    box-sizing: border-box !important;
}

/* Hover : bordure plus marquée */
body.theme-cream .checkbox-group:hover label::before,
body.theme-cream .form-group.checkbox-group:hover label::before {
    border-color: #173042 !important;
}

/* Coché : fond pétrole + check blanc */
body.theme-cream .checkbox-group input[type="checkbox"]:checked + label::before,
body.theme-cream .form-group.checkbox-group input[type="checkbox"]:checked + label::before {
    background: #173042 !important;
    border-color: #173042 !important;
}
body.theme-cream .checkbox-group input[type="checkbox"]:checked + label::after,
body.theme-cream .form-group.checkbox-group input[type="checkbox"]:checked + label::after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 5px !important;
    width: 8px !important;
    height: 12px !important;
    border-right: 2px solid #ffffff !important;
    border-bottom: 2px solid #ffffff !important;
    transform: rotate(45deg) !important;
}

/* Liens dans le label CGV */
body.theme-cream .checkbox-group label a,
body.theme-cream .form-group.checkbox-group label a {
    color: #173042 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* Wizard success final — texte foncé lisible (pas de violet pâle parasite) */
body.theme-cream .wizard-success,
body.theme-cream .wizard-success * {
    color: #2c2c2a !important;
    font-style: normal !important;
}
body.theme-cream .wizard-success h3 {
    color: #0a0a0a !important;
    font-size: 1.7rem !important;
    font-weight: 700 !important;
}
body.theme-cream .wizard-success .success-message,
body.theme-cream .wizard-success > p {
    color: #0a0a0a !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
}
body.theme-cream .wizard-success strong {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #173042 !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 5px !important;
    letter-spacing: 0.02em !important;
}
body.theme-cream .wizard-success .success-next-steps {
    background: #e9eef2 !important;
    border: 1px solid #173042 !important;
    border-left-width: 4px !important;
}
body.theme-cream .wizard-success .success-next-steps,
body.theme-cream .wizard-success .success-next-steps *,
body.theme-cream .wizard-success .success-next-steps p,
body.theme-cream .wizard-success .success-next-steps strong,
body.theme-cream .wizard-success .success-next-steps a {
    color: #173042 !important;
    -webkit-text-fill-color: #173042 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    background: transparent !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-family: 'Inter Tight', 'Inter', -apple-system, sans-serif !important;
}
body.theme-cream .wizard-success .success-next-steps strong {
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
}
body.theme-cream .wizard-success .success-next-steps i { color: #173042 !important; }

/* Hero promise — étoile dorée pour l'avis clients (clin d'œil Google reviews) */
body.theme-cream .hero--cream .promise-item--star .promise-icon,
body.theme-cream .hero .promise-item--star .promise-icon {
    color: #ca8a04 !important;
    font-size: 0.95rem !important;
}
body.theme-cream .hero--cream .promise-item--star strong { color: #ca8a04 !important; font-weight: 700 !important; }

/* 8 items en 2 colonnes — espacement aéré */
body.theme-cream .hero--cream .hero-promise,
body.theme-cream .hero .hero-promise {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 36px !important;
    row-gap: 12px !important;
    padding: 22px 0 !important;
}
@media (max-width: 768px) {
    body.theme-cream .hero--cream .hero-promise,
    body.theme-cream .hero .hero-promise {
        grid-template-columns: 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   REASSURE BOX — encart "Vous ne payez rien si on échoue"
   Hero (sous les promesses) + page tarifs (sous le subtitle)
   ═══════════════════════════════════════════════════════════════════ */

aside.reassure-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #16a34a;
    border-radius: 4px;
    padding: 16px 20px;
    margin: 0 0 28px;
    max-width: 100%;
}
aside.reassure-box.reassure-box--centered {
    max-width: 760px;
    margin: 0 auto 36px;
}
aside.reassure-box .reassure-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #14532d;
    margin-bottom: 6px;
    line-height: 1.4;
}
aside.reassure-box .reassure-body {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #166534;
    margin: 0;
}
aside.reassure-box .reassure-body strong { color: #14532d; font-weight: 700; }

/* Mobile : padding réduit */
@media (max-width: 640px) {
    aside.reassure-box { padding: 14px 16px; }
    aside.reassure-box .reassure-title { font-size: 0.95rem; }
    aside.reassure-box .reassure-body { font-size: 0.86rem; }
}

/* REASSURE BOX — version posée/assumée : ton pétrole-ardoise, pas d'alerte jaune */
aside.reassure-box {
    background: #f7f9fa !important;
    border: 1px solid #dfe4e8 !important;
    border-left: 1px solid #dfe4e8 !important;
    border-radius: 8px !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
}
aside.reassure-box .reassure-title {
    color: #173042 !important;
    font-family: 'Inter Tight', 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
aside.reassure-box .reassure-title i {
    color: #48637a !important;
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
}
aside.reassure-box .reassure-body {
    color: #47566a !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}
aside.reassure-box .reassure-body strong {
    color: #173042 !important;
    font-weight: 700 !important;
}

/* ── /devis + wizard : UX mobile (correctifs Clarity 01/07) ────────────────
   Le zoom auto iOS (déclenché par des champs < 16px) provoquait les
   « redimensionnements » observés en session Clarity → font-size 16px minimum
   sur tous les champs, + cibles tap ≥ 44px (hors cases/radios). */
.diagnostic-section input,
.diagnostic-section select,
.diagnostic-section textarea {
    font-size: 16px !important;
}
.diagnostic-section input:not([type="checkbox"]):not([type="radio"]),
.diagnostic-section select,
.diagnostic-section textarea {
    min-height: 44px;
}

/* Case creation completion — compact, informative, aligned with the cream theme. */
.diagnostic-section .wizard-success {
    width: min(100%, 620px);
    margin: 0 auto;
    padding: 18px 12px 10px;
    text-align: left;
}
.diagnostic-section .wizard-success .success-kicker {
    color: #a8492d;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.diagnostic-section .wizard-success h3,
body.theme-cream .diagnostic-section .wizard-success h3 {
    margin: 4px 0 18px !important;
    color: #173042 !important;
    font-size: clamp(1.55rem, 4vw, 2rem) !important;
    line-height: 1.15;
    text-align: left !important;
}
.success-case-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    background: #173042;
    border-radius: 6px;
    color: #fff;
}
.success-case-row > div { min-width: 0; }
.success-case-row span {
    display: block;
    margin-bottom: 3px;
    color: #b9c8d2;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.success-case-row code {
    display: block;
    max-width: 100%;
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
    font-size: clamp(.72rem, 2.4vw, .9rem);
    font-weight: 700;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}
.success-copy-button {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #708696;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}
.success-copy-button:hover { background: #223f52; }
.success-copy-button:focus-visible { outline: 2px solid #d5956e; outline-offset: 2px; }
.success-delay {
    margin-top: 12px;
    padding: 13px 15px;
    border-left: 3px solid #a8492d;
    background: #f2eee5;
}
.success-delay span,
.success-delay strong,
.success-delay small { display: block; }
.success-delay span {
    color: #6b6b66;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.success-delay strong {
    margin-top: 2px;
    color: #173042;
    font-size: 1.25rem;
    line-height: 1.2;
}
.success-delay small { margin-top: 2px; color: #696965; font-size: .75rem; }
body.theme-cream .wizard-success .success-wait,
body.theme-cream .wizard-success .success-handling,
body.theme-cream .wizard-success .success-email {
    font-style: normal !important;
    text-align: left !important;
}
.wizard-success .success-wait { margin: 14px 0 0 !important; color: #2c2c2a !important; font-size: .92rem; }
.wizard-success .success-handling {
    margin: 9px 0 0 !important;
    color: #68402f !important;
    font-size: .84rem;
    font-weight: 650;
}
.wizard-success .success-handling i { margin-right: 6px; color: #a8492d; }
.wizard-success .success-email {
    margin: 14px 0 0 !important;
    padding-top: 12px;
    border-top: 1px solid #d8d2c7;
    color: #58636a !important;
    font-size: .78rem;
    overflow-wrap: anywhere;
}
.wizard-success .success-email i { margin-right: 6px; color: #48637a; }
.wizard-success .success-copy-status {
    display: block;
    min-height: 16px;
    margin-top: 5px;
    color: #48637a;
    font-size: .68rem;
    text-align: right;
}
@media (max-width: 560px) {
    .diagnostic-section .wizard-success { padding-inline: 0; }
    .success-case-row { align-items: flex-start; }
    .success-copy-button { flex-basis: 40px; width: 40px; height: 40px; }
}

/* Override historical wizard-success emergency rules with the current component. */
body.theme-cream .diagnostic-section .wizard-success {
    width: min(100%, 620px) !important;
    margin: 0 auto !important;
    padding: 18px 12px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
}
body.theme-cream .wizard-success .success-case-row span { color: #b9c8d2 !important; }
body.theme-cream .wizard-success .success-case-row code {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(.72rem, 2.4vw, .9rem) !important;
}
body.theme-cream .wizard-success .success-delay strong {
    display: block !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #173042 !important;
    -webkit-text-fill-color: #173042 !important;
    font-family: inherit !important;
    font-size: 1.25rem !important;
    letter-spacing: 0 !important;
}
body.theme-cream .wizard-success > .success-wait {
    margin: 14px 0 0 !important;
    color: #2c2c2a !important;
    font-size: .92rem !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
}
body.theme-cream .wizard-success > .success-handling {
    margin: 9px 0 0 !important;
    color: #68402f !important;
    font-size: .84rem !important;
    font-weight: 650 !important;
    line-height: 1.5 !important;
}
body.theme-cream .wizard-success > .success-email {
    margin: 14px 0 0 !important;
    padding: 12px 0 0 !important;
    color: #58636a !important;
    font-size: .78rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}
body.theme-cream .wizard-success .success-email strong {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #173042 !important;
    -webkit-text-fill-color: #173042 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    letter-spacing: 0 !important;
}
@media (max-width: 560px) {
    body.theme-cream .diagnostic-section .wizard-success { padding-inline: 0 !important; }
}
