/* ========================================
   WebFrance - CSS Refonte Complète
   Thème Bleu Blanc Rouge - 100% France
   Mobile-first, optimisé conversion
======================================== */

/* ========== VARIABLES ========== */
:root {
    --bleu: #002395;
    --bleu-light: #0055A4;
    --bleu-lighter: #4A90D9;
    --bleu-pale: #E8F0FE;
    --blanc: #FFFFFF;
    --rouge: #ED2939;
    --rouge-dark: #C41E3A;
    --rouge-pale: #FEE8EA;

    --bg: #F8FAFF;
    --bg-card: #FFFFFF;
    --text: #1A1F36;
    --text-light: #4A5568;
    --text-lighter: #718096;
    --border: #E2E8F0;

    --shadow-sm: 0 1px 3px rgba(0,35,149,0.06);
    --shadow: 0 4px 12px rgba(0,35,149,0.08);
    --shadow-lg: 0 12px 40px rgba(0,35,149,0.12);
    --shadow-xl: 0 25px 60px rgba(0,35,149,0.15);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;

    --container: 1200px;
    --container-sm: 900px;
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bandes tricolores décoratives gauche et droite */
.tricolor-left,
.tricolor-right {
    position: fixed;
    top: 0;
    width: 6px;
    height: 100vh;
    z-index: 99;
    pointer-events: none;
    background: linear-gradient(180deg,
        var(--bleu) 0%,
        var(--bleu) 33.33%,
        #FFFFFF 33.33%,
        #FFFFFF 66.66%,
        var(--rouge) 66.66%,
        var(--rouge) 100%);
}

.tricolor-left {
    left: 0;
}

.tricolor-right {
    right: 0;
}

@media (max-width: 640px) {
    .tricolor-left,
    .tricolor-right {
        width: 4px;
    }

    .tricolor-right {
        right: 0;
    }
}

/* Scrollbar native avec thumb visible par-dessus */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.35) transparent;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ========== TRICOLOR BAR ========== */
.tricolor-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--bleu) 0%, var(--bleu) 33.33%, var(--blanc) 33.33%, var(--blanc) 66.66%, var(--rouge) 66.66%, var(--rouge) 100%);
}

/* ========== TRUST BANNER ========== */
.trust-banner {
    background: var(--bleu);
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.trust-banner-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-banner-content span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-banner-content svg {
    flex-shrink: 0;
}

.trust-banner-content .highlight {
    background: var(--rouge);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ========== HEADER / NAV ========== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 33px;
    z-index: 999;
}

/* Sur PC, header fixe en haut quand on scroll (sans trust banner) */
@media (min-width: 641px) {
    body.scrolled .trust-banner {
        position: relative;
        margin-bottom: -33px;
        opacity: 0;
        pointer-events: none;
    }

    body.scrolled .header {
        top: 0;
    }
}

.nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 24px;
    font-weight: 800;
}

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

.logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,35,149,0.15));
}

.logo-text {
    display: flex;
    align-items: baseline;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-web { color: var(--bleu); }
.logo-france { color: var(--rouge); }

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bleu);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--rouge);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}

.btn-nav:hover {
    background: var(--rouge-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--rouge-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--bleu);
    color: var(--bleu);
}

.btn-large {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-full {
    width: 100%;
}

.btn svg {
    flex-shrink: 0;
}

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

/* ========== HERO SECTION ========== */
.hero-wrapper {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, #EEF2FF 50%, var(--bg) 100%);
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--bleu);
    top: -150px;
    left: -150px;
    animation: blob1 20s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.8);
    top: 40%;
    left: 40%;
    animation: blob2 25s ease-in-out infinite;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: var(--rouge);
    bottom: -100px;
    right: -150px;
    animation: blob3 22s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.1); }
}

@keyframes blob2 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes blob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bleu-pale);
    color: var(--bleu);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-highlight {
    background: var(--gradient-france);
    background: linear-gradient(135deg, var(--bleu) 0%, var(--rouge) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--text);
}

.hero-action {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.price-tag {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--bleu-pale);
    flex-shrink: 0;
    align-self: stretch;
}

.price-from {
    font-size: 11px;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--bleu);
    line-height: 1;
}

.price-amount sup {
    font-size: 16px;
}

.price-info {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--bleu);
    flex-shrink: 0;
}

/* Hero Visual - Mockup */
.hero-visual {
    position: relative;
    z-index: 1;
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.mockup-browser {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-browser:hover {
    transform: rotateY(0) rotateX(0);
}

.browser-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.browser-url svg {
    color: #22c55e;
}

.browser-content {
    padding: 20px;
    background: linear-gradient(180deg, #f8faff 0%, white 100%);
    min-height: 300px;
}

/* Fake site preview - Plus réaliste */
.fake-site {
    animation: fadeIn 1s ease;
}

.fake-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.fake-logo {
    width: 60px;
    height: 14px;
    background: linear-gradient(90deg, var(--bleu) 60%, var(--rouge) 60%);
    border-radius: 3px;
}

.fake-menu {
    display: flex;
    gap: 12px;
}

.fake-menu-item {
    width: 40px;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
}

.fake-hero {
    background: linear-gradient(135deg, var(--bleu-pale) 0%, #F0F4FF 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.fake-title {
    height: 16px;
    background: linear-gradient(90deg, var(--bleu) 0%, var(--bleu-light) 100%);
    border-radius: 4px;
    width: 75%;
    margin: 0 auto 10px;
}

.fake-subtitle {
    height: 8px;
    background: var(--text-lighter);
    opacity: 0.3;
    border-radius: 4px;
    width: 55%;
    margin: 0 auto 14px;
}

.fake-btn {
    height: 24px;
    background: var(--rouge);
    border-radius: 5px;
    width: 80px;
    margin: 0 auto;
}

.fake-section-title {
    height: 10px;
    background: var(--text);
    border-radius: 4px;
    width: 100px;
    margin: 0 auto 12px;
    opacity: 0.2;
}

.fake-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fake-card {
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fake-card-icon {
    width: 24px;
    height: 24px;
    background: var(--bleu-pale);
    border-radius: 50%;
}

.fake-card-title {
    height: 8px;
    background: var(--text);
    opacity: 0.15;
    border-radius: 3px;
    width: 80%;
}

.fake-card-text {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    width: 100%;
}

.fake-card-text:last-child {
    width: 60%;
}

.fake-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fake-footer-logo {
    width: 40px;
    height: 10px;
    background: var(--border);
    border-radius: 3px;
}

.fake-footer-links {
    display: flex;
    gap: 8px;
}

.fake-footer-link {
    width: 30px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
}

/* Phone mockup */
.mockup-phone {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    transform: rotate(5deg);
}

.phone-notch {
    width: 60px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto -10px;
    position: relative;
    z-index: 1;
}

.phone-content {
    background: white;
    border-radius: 16px;
    padding: 12px 8px;
    min-height: 200px;
}

.fake-site-mobile .fake-nav-m {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
}

.fake-site-mobile .fake-hero-m {
    height: 40px;
    background: linear-gradient(135deg, var(--bleu-pale), var(--rouge-pale));
    border-radius: 6px;
    margin-bottom: 12px;
}

.fake-cards-m {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fake-card-m {
    height: 30px;
    background: var(--bg);
    border-radius: 4px;
}

.mockup-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.social-proof-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-lighter);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-lighter);
    white-space: nowrap;
    opacity: 0.6;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== PROBLEM / SOLUTION ========== */
/* ========== BEFORE/AFTER SECTION ========== */
.before-after {
    padding: 50px 0;
    background: white;
}

.ba-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.ba-badge-sans, .ba-badge-avec {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.ba-badge-sans {
    background: var(--rouge-pale);
    color: var(--rouge);
}

.ba-badge-avec {
    background: #dcfce7;
    color: #16a34a;
}

.ba-vs {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-lighter);
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.ba-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.ba-problem {
    background: #fef2f2;
    color: var(--rouge);
}

.ba-problem svg {
    flex-shrink: 0;
}

.ba-solution {
    background: #f0fdf4;
    color: #16a34a;
}

.ba-solution svg {
    flex-shrink: 0;
}

/* Old styles kept for compatibility */
.problem-solution {
    padding: 80px 0;
}

.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.problem, .solution {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.problem {
    border-left: 4px solid var(--rouge);
}

.solution {
    border-left: 4px solid #22c55e;
}

.ps-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ps-icon-problem {
    background: var(--rouge-pale);
    color: var(--rouge);
}

.ps-icon-solution {
    background: #dcfce7;
    color: #22c55e;
}

.problem h3, .solution h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem ul, .solution ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem li, .solution li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.problem li svg {
    color: var(--rouge);
    flex-shrink: 0;
    margin-top: 2px;
}

.solution li svg {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.ps-arrow {
    display: flex;
    align-items: center;
    color: var(--bleu-lighter);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--bleu-pale);
    color: var(--bleu);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--bleu);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: var(--bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--bleu-pale);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bleu-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--bleu);
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-included {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
}

.services-cta {
    text-align: center;
}

/* ========== PROCESS ========== */
.process {
    padding: 100px 0;
    background: var(--bg);
}

.process-steps {
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--bleu);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.step-content {
    flex: 1;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bleu-pale);
    color: var(--bleu);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bleu-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu);
}

.process-connector {
    display: flex;
    justify-content: center;
    padding: 16px 0;
    color: var(--bleu-lighter);
}

.process-cta {
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-lighter);
}

/* ========== STATS ========== */
.stats {
    padding: 50px 0;
    background: var(--bleu);
    color: white;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ========== PORTFOLIO ========== */
.portfolio {
    padding: 100px 0;
    background: white;
}

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

.portfolio-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-item {
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

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

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-preview {
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.portfolio-preview iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top left;
    border: none;
    pointer-events: none;
}

.portfolio-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-pale) 0%, var(--bg) 100%);
    padding: 20px;
}

.portfolio-style-2 {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
}

.portfolio-style-3 {
    background: linear-gradient(135deg, var(--rouge-pale) 0%, #fff5f5 100%);
}

.fake-site-preview {
    height: 100%;
    background: white;
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.fsp-header {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
}

.fsp-hero {
    height: 50px;
    background: linear-gradient(90deg, var(--bleu-pale), var(--rouge-pale));
    border-radius: 6px;
    margin-bottom: 12px;
}

.fsp-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fsp-card {
    height: 40px;
    background: var(--bg);
    border-radius: 4px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    align-self: flex-start;
    background: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
}

.portfolio-link {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bleu);
    box-shadow: var(--shadow);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.portfolio-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
}

.rating-text {
    font-size: 15px;
    color: var(--text-light);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-light) 100%);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--rouge);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bleu-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bleu);
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255,255,255,0.2);
    color: white;
}

.testimonial-author {
    flex: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-lighter);
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255,255,255,0.8);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-card.featured blockquote {
    color: rgba(255,255,255,0.9);
}

blockquote strong {
    color: var(--text);
}

.testimonial-card.featured blockquote strong {
    color: white;
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-card.featured .testimonial-result {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* ========== GUARANTEES ========== */
.guarantees {
    padding: 100px 0;
    background: white;
}

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

.guarantee-card {
    text-align: center;
    padding: 32px 24px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--bleu-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu);
    margin: 0 auto 24px;
}

.guarantee-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing-section {
    padding: 80px 0;
    background: var(--bleu);
}

.pricing-box {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-main {
    padding: 48px;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-intro h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-intro h2 span {
    color: var(--bleu);
}

.pricing-intro p {
    font-size: 17px;
    color: var(--text-light);
}

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

.pricing-item-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: border-color 0.2s ease;
}

.pricing-item-box:hover {
    border-color: var(--bleu-lighter);
}

.pricing-item-icon {
    width: 48px;
    height: 48px;
    background: var(--bleu);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.pricing-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-item-label {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-item-price {
    font-size: 15px;
    color: var(--text);
}

.pricing-item-price strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--bleu);
}

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

.pricing-include {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
}

.pricing-include svg {
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-action {
    background: var(--bg);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--border);
}

.pricing-action .btn {
    flex-shrink: 0;
}

.pricing-action-note {
    font-size: 14px;
    color: var(--text-lighter);
}

/* Ancien code - garder pour compatibilité */
.cta-box-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.cta-box-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-lighter);
}

.cta-box-trust svg {
    color: #22c55e;
}

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--bleu);
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== FINAL CTA / FORM ========== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-light) 100%);
    color: white;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content .section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: var(--rouge);
}

.cta-content > p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.cta-benefit svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* ========== FORM ========== */
.form-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    color: var(--text);
}

.form-progress {
    margin-bottom: 32px;
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--bleu);
    border-radius: 3px;
    transition: width var(--transition);
    width: 20%;
}

.progress-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-lighter);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.step-header {
    margin-bottom: 32px;
}

.step-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-header p {
    font-size: 15px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu);
    box-shadow: 0 0 0 4px var(--bleu-pale);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.field-hint {
    display: block;
    font-size: 12px;
    color: var(--text-lighter);
    margin-top: 6px;
}

/* Select cards grid */
.select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.select-card {
    cursor: pointer;
}

.select-card input {
    display: none;
}

.select-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    text-align: center;
}

.select-card .card-content svg {
    color: var(--bleu);
}

.select-card .card-content span {
    font-size: 13px;
    font-weight: 500;
}

.select-card input:checked + .card-content {
    background: var(--bleu-pale);
    border-color: var(--bleu);
}

.select-card:hover .card-content {
    border-color: var(--bleu-lighter);
}

/* Choice buttons */
.choice-buttons {
    display: flex;
    gap: 12px;
}

.choice-btn {
    flex: 1;
    cursor: pointer;
}

.choice-btn input {
    display: none;
}

.choice-btn span {
    display: block;
    padding: 14px 20px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-fast);
}

.choice-btn input:checked + span {
    background: var(--bleu-pale);
    border-color: var(--bleu);
    color: var(--bleu);
}

.choice-btn:hover span {
    border-color: var(--bleu-lighter);
}

/* Slider */
.slider-group {
    padding-top: 8px;
}

.slider-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--bleu);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
}

.slider-labels span {
    font-size: 12px;
    color: var(--text-lighter);
    text-align: center;
    flex: 1;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-labels span.active {
    background: var(--bleu-pale);
    color: var(--bleu);
    font-weight: 600;
}

.slider-labels small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

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

.feature-card {
    cursor: pointer;
}

.feature-card input {
    display: none;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    text-align: center;
}

.feature-content svg {
    color: var(--bleu);
}

.feature-content span {
    font-size: 13px;
    font-weight: 600;
}

.feature-content small {
    font-size: 11px;
    color: var(--text-lighter);
}

.feature-card input:checked + .feature-content {
    background: var(--bleu-pale);
    border-color: var(--bleu);
}

.feature-card:hover .feature-content {
    border-color: var(--bleu-lighter);
}

/* Budget cards */
.budget-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.budget-card input {
    display: none;
}

.budget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
}

.budget-range {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.budget-desc {
    font-size: 13px;
    color: var(--text-lighter);
}

.budget-card input:checked + .budget-content {
    background: var(--bleu-pale);
    border-color: var(--bleu);
}

.budget-card:hover .budget-content {
    border-color: var(--bleu-lighter);
}

.budget-card.popular .popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--rouge);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* Conditional fields */
.conditional {
    display: none;
    animation: slideDown 0.3s ease;
}

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

/* Consent */
.consent-group {
    margin-top: 24px;
}

.consent-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--bleu);
}

/* Form navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-prev {
    display: none;
}

.btn-submit {
    display: none;
}

/* Form success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #22c55e;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.success-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bleu-pale);
    color: var(--bleu);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-web {
    color: white;
}

.footer-brand .logo-france {
    color: rgba(255,255,255,0.7);
}

.footer-brand .logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

/* Sticky CTA - hidden by default on desktop */
.mobile-sticky-cta {
    display: none;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
}

.footer-badges .badge svg {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        min-height: auto;
        padding-top: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-action {
        justify-content: center;
    }

    .hero-cta {
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .problem-solution .container {
        grid-template-columns: 1fr;
    }

    .ps-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }

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

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

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

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

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

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

    .pricing-cta-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        margin-bottom: 20px;
    }

    .cta-benefits {
        align-items: center;
    }

    .form-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }
}

/* Mobile - Ultra compact */
@media (max-width: 640px) {
    /* Trust banner - très compact */
    .trust-banner {
        padding: 6px 12px;
    }

    .trust-banner-content {
        gap: 8px;
        font-size: 10px;
    }

    .trust-banner-content span {
        display: none !important;
    }

    .trust-banner-content span:nth-child(1),
    .trust-banner-content .highlight {
        display: flex !important;
    }

    .trust-banner-content .highlight {
        padding: 3px 8px;
        font-size: 10px;
    }

    .trust-banner-content svg {
        width: 12px;
        height: 12px;
    }

    /* Trust banner caché quand scroll sur mobile */
    .trust-banner {
        position: relative;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.scrolled .trust-banner {
        position: absolute;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    /* Header mobile - propre et compact */
    .header {
        top: 24px;
        transition: top 0.3s ease;
    }

    body.scrolled .header {
        top: 0;
    }

    .nav {
        padding: 10px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 20px;
        gap: 2px;
        order: 1;
        margin-left: 8px;
        margin-right: auto;
    }

    .logo-icon {
        display: none;
    }

    .logo-text {
        font-size: 20px;
    }

    .btn-nav {
        order: 2;
        padding: 8px 14px;
        font-size: 12px;
        border-radius: var(--radius-sm);
    }

    .btn-nav svg {
        display: none;
    }

    .menu-toggle {
        order: 3;
        margin-left: 8px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    /* Hero mobile - meilleur contraste */
    .hero-wrapper {
        background: white;
    }

    .hero-bg {
        display: none;
    }

    .hero {
        padding: 24px 16px 40px;
        gap: 24px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-action {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .price-tag {
        padding: 12px 16px;
        text-align: center;
    }

    .price-amount {
        font-size: 32px;
    }

    .price-amount sup {
        font-size: 16px;
    }

    .price-from, .price-info {
        font-size: 11px;
    }

    .hero-cta {
        width: 100%;
        align-items: stretch;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Masquer bouton secondaire sur mobile */
    .hero-cta .btn-secondary {
        display: none;
    }

    /* Masquer le mockup sur mobile */
    .hero-visual {
        display: none;
    }

    /* Section headers compact */
    .section-header {
        margin-bottom: 32px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Problem/Solution compact */
    .problem-solution {
        padding: 40px 0;
    }

    .problem, .solution {
        padding: 20px;
    }

    .problem h3, .solution h3 {
        font-size: 18px;
    }

    .problem li, .solution li {
        font-size: 13px;
        padding: 8px 0;
    }

    .ps-icon {
        width: 40px;
        height: 40px;
    }

    .ps-icon svg {
        width: 20px;
        height: 20px;
    }

    .ps-arrow {
        padding: 16px 0;
    }

    .ps-arrow svg {
        width: 32px;
        height: 32px;
    }

    /* Before/After compact */
    .before-after {
        padding: 30px 0;
    }

    .ba-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .ba-badge-sans, .ba-badge-avec {
        padding: 6px 12px;
        font-size: 11px;
    }

    .ba-vs {
        font-size: 10px;
    }

    .ba-grid {
        gap: 8px;
    }

    .ba-item {
        padding: 10px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .ba-item svg {
        width: 14px;
        height: 14px;
    }

    /* Services compact - grille 2x4 */
    .services {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 14px 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .service-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-card h3 {
        font-size: 12px;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .service-card p {
        display: none;
    }

    .service-included {
        display: none;
    }

    /* Process compact */
    .process {
        padding: 40px 0;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        padding: 16px;
        gap: 12px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-visual {
        display: none;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .step-duration {
        font-size: 11px;
        padding: 3px 8px;
    }

    .process-connector {
        padding: 8px 0;
    }

    .process-connector svg {
        width: 20px;
        height: 20px;
    }

    /* Stats compact */
    .stats {
        padding: 32px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Portfolio compact */
    .portfolio {
        padding: 40px 0;
    }

    /* Portfolio slider mobile */
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .portfolio-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        border-radius: var(--radius);
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    }

    .portfolio-info {
        padding: 16px;
    }

    .portfolio-info h3 {
        font-size: 16px;
    }

    .portfolio-info p {
        font-size: 13px;
    }

    /* Testimonials compact */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .testimonial-author strong {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    .testimonial-card blockquote {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-rating svg {
        width: 12px;
        height: 12px;
    }

    .rating-summary {
        flex-direction: column;
        gap: 8px;
    }

    .stars svg {
        width: 18px;
        height: 18px;
    }

    /* Guarantees compact */
    .guarantees {
        padding: 40px 0;
    }

    .guarantees-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .guarantee-card {
        padding: 16px;
    }

    .guarantee-icon {
        margin-bottom: 12px;
    }

    .guarantee-icon svg {
        width: 32px;
        height: 32px;
    }

    .guarantee-card h3 {
        font-size: 13px;
    }

    .guarantee-card p {
        display: none;
    }

    /* Pricing mobile */
    .pricing-section {
        padding: 48px 0;
    }

    .pricing-box {
        margin: 0 8px;
        border-radius: var(--radius-lg);
    }

    .pricing-main {
        padding: 28px 20px;
    }

    .pricing-intro {
        margin-bottom: 24px;
    }

    .pricing-intro h2 {
        font-size: 22px;
    }

    .pricing-intro p {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .pricing-item-box {
        padding: 16px;
        gap: 12px;
    }

    .pricing-item-icon {
        width: 40px;
        height: 40px;
    }

    .pricing-item-icon svg {
        width: 20px;
        height: 20px;
    }

    .pricing-item-label {
        font-size: 12px;
    }

    .pricing-item-price {
        font-size: 14px;
    }

    .pricing-item-price strong {
        font-size: 20px;
    }

    .pricing-includes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
    }

    .pricing-include {
        font-size: 12px;
        gap: 6px;
    }

    .pricing-include svg {
        width: 14px;
        height: 14px;
    }

    .pricing-action {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pricing-action .btn {
        width: 100%;
    }

    .pricing-action-note {
        font-size: 12px;
    }

    /* FAQ compact */
    .faq {
        padding: 40px 0;
    }

    .faq-grid {
        gap: 8px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 16px 14px;
    }

    /* Form mobile - pleine largeur */
    .final-cta {
        padding: 40px 0 100px;
    }

    .final-cta .container {
        padding: 0;
    }

    .cta-wrapper {
        gap: 24px;
    }

    .cta-content {
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-benefits {
        display: none;
    }

    /* Section CTA mobile */
    .final-cta {
        padding: 30px 0 120px;
    }

    .cta-wrapper {
        gap: 20px;
    }

    .cta-content {
        padding: 24px 16px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content > p {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Formulaire mobile optimisé */
    .form-container {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        margin: 0 8px;
        max-width: 100%;
    }

    .form-progress {
        margin: 0 0 20px 0;
    }

    .progress-bar {
        height: 4px;
        margin-bottom: 8px;
    }

    .progress-text {
        font-size: 12px;
    }

    .step-header {
        margin-bottom: 16px;
        text-align: center;
    }

    .step-header h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .step-header p {
        font-size: 13px;
    }

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

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: var(--radius);
        border: 1.5px solid var(--border);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--bleu);
        box-shadow: 0 0 0 3px rgba(0,35,149,0.1);
    }

    .form-group textarea {
        min-height: 80px;
    }

    .field-hint {
        font-size: 11px;
        margin-top: 4px;
    }

    /* Grille de sélection mobile - 3 colonnes compactes */
    .select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .select-card .card-content {
        padding: 12px 6px;
        font-size: 10px;
        text-align: center;
    }

    .select-card svg {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }

    /* Sticky CTA mobile - ultra simple */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 998;
    }

    .mobile-sticky-cta .sticky-text {
        display: none;
    }

    .mobile-sticky-cta .btn {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        border-radius: var(--radius);
        box-shadow: 0 4px 20px rgba(0,35,149,0.3);
    }

    /* Boutons de choix mobile */
    .choice-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .choice-btn {
        flex: 1;
        min-width: calc(50% - 4px);
    }

    .choice-btn span {
        padding: 10px 12px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    /* Grille de fonctionnalités mobile - 2 colonnes */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .feature-card .feature-content {
        padding: 10px 8px;
        flex-direction: row;
        gap: 8px;
    }

    .feature-card .feature-content svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .feature-content span {
        font-size: 11px;
        line-height: 1.3;
    }

    .feature-content small {
        display: none;
    }

    /* Budget cards mobile */
    .budget-cards {
        gap: 8px;
    }

    .budget-card .budget-content {
        padding: 12px 10px;
    }

    .budget-range {
        font-size: 14px;
    }

    .budget-desc {
        font-size: 10px;
    }

    /* Slider urgence mobile */
    .slider-labels {
        gap: 2px;
    }

    .slider-labels span {
        font-size: 9px;
        padding: 4px 2px;
    }

    .slider-labels small {
        display: none;
    }

    /* Navigation formulaire mobile */
    .form-navigation {
        gap: 10px;
        margin-top: 20px;
    }

    .form-navigation .btn {
        padding: 14px 16px;
        font-size: 14px;
        flex: 1;
    }

    .form-navigation .btn-primary {
        order: -1;
    }

    /* Footer compact */
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: none;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-badges .badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* Boutons généraux */
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Social proof compact */
    .social-proof {
        padding: 24px 0;
    }

    .social-proof-text {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .logo-item {
        font-size: 13px;
    }
}

/* Mobile navigation */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 32px;
        gap: 8px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        background: var(--bg);
        border-radius: var(--radius);
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        text-align: center;
        transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: var(--bleu);
        color: white;
        transform: scale(1.02);
    }

    .menu-toggle {
        position: relative;
        z-index: 1001;
    }

    .menu-toggle.active span {
        background: var(--text);
    }

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

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

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

    /* Overlay sombre derrière le menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Error states */
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--rouge) !important;
    box-shadow: 0 0 0 4px var(--rouge-pale) !important;
}

.select-grid.error .card-content,
.choice-buttons.error span {
    border-color: var(--rouge) !important;
}

/* Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Print styles */
@media print {
    .trust-banner,
    .header,
    .blob,
    .form-container,
    .footer {
        display: none;
    }
}

/* reCAPTCHA */
.recaptcha-group {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.recaptcha-group.error {
    padding: 10px;
    border: 2px solid var(--rouge);
    border-radius: var(--radius-lg);
    background: rgba(237, 41, 57, 0.05);
}

@media (max-width: 640px) {
    .recaptcha-group {
        transform: scale(0.9);
        transform-origin: center;
    }
}

/* Price tags in features */
.feature-price-tag {
    display: inline-block;
    background: var(--bleu);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.feature-price-tag.free {
    background: #22c55e;
}

.feature-card.included {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.feature-card.included input:checked + .feature-content {
    border-color: #22c55e;
}

/* ========== PRICING SLIDER COMPACT ========== */
.pricing-slider-container {
    background: linear-gradient(135deg, var(--bleu) 0%, #001a6e 100%);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 12px;
}

.pricing-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pricing-pages {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.pricing-amount {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    transition: all 0.2s ease;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 600;
}

.pricing-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    padding-left: 12px;
    border-left: 2px solid rgba(255,255,255,0.2);
}

.slider-track-container {
    position: relative;
    padding: 0 6px;
}

.pricing-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    margin-bottom: 14px;
}

.pricing-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.pricing-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slider-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.slider-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-step.active .step-dot {
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.slider-step.active .step-label {
    color: white;
}

/* ========== FEATURES MODERNES COMPACT ========== */
.features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-modern {
    cursor: pointer;
}

.feature-modern input {
    display: none;
}

.feature-modern-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    height: 100%;
}

.feature-modern:hover .feature-modern-inner {
    border-color: var(--bleu-lighter);
    box-shadow: 0 2px 8px rgba(0,35,149,0.08);
}

.feature-modern input:checked + .feature-modern-inner {
    border-color: var(--bleu);
    background: var(--bleu-pale);
}

.feature-icon-wrap {
    width: 36px;
    height: 36px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.feature-icon-wrap.included {
    background: #22c55e;
    color: white;
}

.feature-modern input:checked + .feature-modern-inner .feature-icon-wrap {
    background: var(--bleu);
    color: white;
}

.feature-modern.included input:checked + .feature-modern-inner .feature-icon-wrap {
    background: #22c55e;
}

.feature-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.feature-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--bleu);
}

.feature-price.included {
    color: #22c55e;
}

.feature-price small {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature-check svg {
    width: 14px;
    height: 14px;
}

.feature-modern input:checked + .feature-modern-inner .feature-check {
    background: var(--bleu);
    color: white;
}

.feature-modern.included input:checked + .feature-modern-inner .feature-check {
    background: #22c55e;
}

/* Form hint */
.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Sites list - champs dynamiques */
.sites-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.site-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.site-input-row input {
    flex: 1;
}

.btn-remove-site {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--rouge-pale);
    color: var(--rouge);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-site:hover {
    background: var(--rouge);
    color: white;
}

.btn-add-site {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--bleu);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-site:hover {
    background: var(--bleu-pale);
    border-color: var(--bleu);
}

/* Langues grid - chips sélectionnables */
.langues-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.langue-chip {
    cursor: pointer;
}

.langue-chip input {
    display: none;
}

.langue-chip span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.langue-chip:hover span {
    border-color: var(--bleu-lighter);
}

.langue-chip input:checked + span {
    background: var(--bleu);
    border-color: var(--bleu);
    color: white;
}

/* Drapeaux CSS */
.flag {
    display: inline-block;
    width: 20px;
    height: 14px;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* UK - Union Jack simplifié */
.flag-gb {
    background: linear-gradient(to bottom,
        #012169 0%, #012169 35%,
        #fff 35%, #fff 40%,
        #C8102E 40%, #C8102E 60%,
        #fff 60%, #fff 65%,
        #012169 65%, #012169 100%);
}

/* Espagne */
.flag-es {
    background: linear-gradient(to bottom,
        #AA151B 0%, #AA151B 25%,
        #F1BF00 25%, #F1BF00 75%,
        #AA151B 75%, #AA151B 100%);
}

/* Allemagne */
.flag-de {
    background: linear-gradient(to bottom,
        #000 0%, #000 33.33%,
        #DD0000 33.33%, #DD0000 66.66%,
        #FFCC00 66.66%, #FFCC00 100%);
}

/* Italie */
.flag-it {
    background: linear-gradient(to right,
        #009246 0%, #009246 33.33%,
        #fff 33.33%, #fff 66.66%,
        #CE2B37 66.66%, #CE2B37 100%);
}

/* Portugal */
.flag-pt {
    background: linear-gradient(to right,
        #006600 0%, #006600 40%,
        #FF0000 40%, #FF0000 100%);
}

/* Pays-Bas */
.flag-nl {
    background: linear-gradient(to bottom,
        #AE1C28 0%, #AE1C28 33.33%,
        #fff 33.33%, #fff 66.66%,
        #21468B 66.66%, #21468B 100%);
}

/* Arabie Saoudite */
.flag-sa {
    background: #006C35;
}

/* Chine */
.flag-cn {
    background: #DE2910;
    position: relative;
}
.flag-cn::before {
    content: "★";
    position: absolute;
    color: #FFDE00;
    font-size: 9px;
    left: 2px;
    top: -1px;
    line-height: 1;
}

/* ========== ESTIMATE BOX ========== */
.estimate-box {
    background: linear-gradient(135deg, var(--bleu) 0%, #001a6e 100%);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 20px;
}

.estimate-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.estimate-header svg {
    opacity: 0.8;
}

.estimate-amount {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.estimate-note {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
}

/* E-commerce notice */
.ecommerce-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: var(--rouge-pale);
    border: 1px solid var(--rouge);
    border-radius: var(--radius);
    color: var(--rouge-dark);
}

.ecommerce-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.ecommerce-notice p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.ecommerce-notice strong {
    color: var(--rouge);
}

/* ========== LEGAL PAGES ========== */

/* Hero header des pages légales */
.legal-hero {
    background: linear-gradient(135deg, var(--bleu) 0%, #001050 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237,41,57,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 16px 0;
    font-weight: 800;
}

.legal-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
}

/* Barre tricolore sous le hero */
.legal-tricolor {
    height: 4px;
    background: linear-gradient(90deg, var(--bleu) 0%, var(--bleu) 33.33%, #fff 33.33%, #fff 66.66%, var(--rouge) 66.66%, var(--rouge) 100%);
}

/* Navigation des pages légales */
.legal-nav-wrapper {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 90;
}

.legal-nav {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
}

.legal-nav a {
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s;
    white-space: nowrap;
}

.legal-nav a:hover {
    color: var(--bleu);
    background: var(--bleu-pale);
}

.legal-nav a.active {
    color: var(--bleu);
    border-bottom-color: var(--bleu);
    background: var(--bleu-pale);
}

/* Contenu principal */
.legal-content {
    padding: 50px 0 80px;
    min-height: 60vh;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--bleu);
    margin: 45px 0 20px;
    padding: 16px 20px;
    background: linear-gradient(90deg, var(--bleu-pale) 0%, transparent 100%);
    border-left: 4px solid var(--bleu);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 700;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin: 28px 0 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-content h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--rouge);
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-content .legal-intro {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.legal-content ul, .legal-content ol {
    padding-left: 0;
    margin-bottom: 20px;
    list-style: none;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--bleu) 50%, var(--rouge) 50%);
    border-radius: 50%;
}

.legal-content ol {
    counter-reset: legal-counter;
}

.legal-content ol li {
    counter-increment: legal-counter;
}

.legal-content ol li::before {
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--bleu);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content a {
    color: var(--bleu);
    text-decoration: none;
    border-bottom: 1px dashed var(--bleu);
    transition: all 0.2s;
}

.legal-content a:hover {
    color: var(--rouge);
    border-bottom-color: var(--rouge);
}

/* Info box style carte */
.legal-content .info-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 25px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.legal-content .info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu) 0%, var(--bleu) 33.33%, #fff 33.33%, #fff 66.66%, var(--rouge) 66.66%, var(--rouge) 100%);
}

.legal-content .info-box p {
    margin: 0;
    color: var(--text);
}

/* Warning box */
.legal-content .warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.legal-content .warning-box::before {
    content: '!';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.legal-content .warning-box p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
}

/* Tables stylisées */
.legal-content .table-responsive {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.legal-content table th {
    background: linear-gradient(135deg, var(--bleu) 0%, #001050 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-content table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.legal-content table tr:last-child td {
    border-bottom: none;
}

.legal-content table tr:nth-child(even) {
    background: var(--bg);
}

.legal-content table tr:hover {
    background: var(--bleu-pale);
}

/* Footer de mise à jour */
.legal-content .legal-update {
    margin-top: 50px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-lighter);
    text-align: center;
    border: 1px dashed var(--border);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 90px 0 40px;
    }

    .legal-hero h1 {
        font-size: 1.8rem;
    }

    .legal-hero p {
        font-size: 1rem;
    }

    .legal-nav-wrapper {
        top: 60px;
        overflow-x: auto;
    }

    .legal-nav {
        min-width: max-content;
    }

    .legal-nav a {
        padding: 14px 16px;
        font-size: 13px;
    }

    .legal-content {
        padding: 30px 0 60px;
    }

    .legal-content h2 {
        font-size: 1.15rem;
        margin-top: 35px;
        padding: 14px 16px;
    }

    .legal-content h3 {
        font-size: 1rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    .legal-content .info-box {
        padding: 20px;
    }

    .legal-content table th,
    .legal-content table td {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.5rem;
    }

    .legal-nav a {
        padding: 12px 14px;
        font-size: 12px;
    }

    .legal-content h2 {
        font-size: 1.05rem;
    }
}

/* Form responsive improvements */
.choice-btn span {
    white-space: nowrap;
}

/* Mobile responsive for form elements */
@media (max-width: 640px) {
    /* Pricing slider mobile - encore plus compact */
    .pricing-slider-container {
        padding: 16px 18px;
    }

    .pricing-display {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 14px;
    }

    .pricing-amount {
        font-size: 24px;
    }

    .pricing-amount span {
        font-size: 14px;
    }

    .pricing-pages {
        font-size: 12px;
    }

    .pricing-desc {
        font-size: 11px;
        width: 100%;
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin-top: 4px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-dot {
        width: 6px;
        height: 6px;
    }

    .pricing-range {
        margin-bottom: 12px;
    }

    /* Features modern mobile - toujours 2 colonnes */
    .features-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-modern-inner {
        padding: 10px 10px;
        gap: 8px;
    }

    .feature-icon-wrap {
        width: 30px;
        height: 30px;
    }

    .feature-icon-wrap svg {
        width: 15px;
        height: 15px;
    }

    .feature-name {
        font-size: 11px;
    }

    .feature-price {
        font-size: 10px;
    }

    .feature-check {
        width: 20px;
        height: 20px;
    }

    .feature-check svg {
        width: 12px;
        height: 12px;
    }

    /* Choice buttons mobile - toujours sur une ligne */
    .choice-buttons {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .choice-btn {
        min-width: 0;
        flex: 1;
    }

    .choice-btn span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 6px;
        font-size: 12px;
        white-space: nowrap;
        text-align: center;
    }

    /* E-commerce notice mobile */
    .ecommerce-notice {
        padding: 12px;
        gap: 10px;
    }

    .ecommerce-notice svg {
        width: 18px;
        height: 18px;
    }

    .ecommerce-notice p {
        font-size: 12px;
    }

    /* Select grid mobile - grille 3 colonnes */
    .select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .select-card .card-content {
        padding: 10px 4px;
        gap: 4px;
    }

    .select-card .card-content svg {
        width: 20px;
        height: 20px;
    }

    .select-card .card-content span {
        font-size: 10px;
        white-space: nowrap;
    }

    /* Form labels mobile */
    .form-group label {
        font-size: 13px;
    }

    /* Form inputs mobile */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="url"],
    .form-group textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
}
