:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --dark: #0f172a;
    --text: #475569;
    --light: #f8fafc;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { padding: 20px 0; background: var(--white); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--dark); letter-spacing: -1px; }
.logo span { color: var(--primary); font-weight: 400; }
.nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero { padding: 100px 0; text-align: center; background: radial-gradient(circle at top right, #f1f5f9, #ffffff); }
.hero h1 { font-size: 3.5rem; color: var(--dark); line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 40px; }
.hero-btns { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.hero-badge { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

/* Buttons */
.btn-primary, .btn-lg-primary { background: var(--primary); color: var(--white) !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; }
.btn-lg-primary { padding: 18px 35px; font-size: 1.1rem; box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3); }
.btn-lg-outline { border: 1px solid #e2e8f0; padding: 18px 35px; border-radius: 8px; font-weight: 600; color: var(--dark) !important; text-decoration: none; }

/* ROI Section */
.roi-section { padding: 80px 0; background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; }
.roi-card { background: var(--white); border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); overflow: hidden; }
.roi-inputs { padding: 40px; }
.roi-result { background: var(--dark); color: var(--white); padding: 40px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.saving-amount { font-size: 4rem; font-weight: 800; color: var(--accent); margin: 20px 0; }

input[type="range"] { width: 100%; margin: 20px 0; accent-color: var(--primary); }

.pricing-comparison { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.comp-item { display: flex; justify-content: space-between; padding: 15px; border-radius: 8px; background: #f1f5f9; }
.comp-item.highlight { background: #dcfce7; color: #166534; border: 1px solid #86efac; }

/* Features */
.features { padding: 80px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; }
.feature-item .icon { font-size: 3rem; margin-bottom: 15px; }

.footer { padding: 40px 0; border-top: 1px solid #e2e8f0; text-align: center; font-size: 0.9rem; }
/* Amélioration de la grille de fonctionnalités */
.features { padding: 100px 0; background: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Petit effet de ligne colorée au survol */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}
/* Section Profit & ROI */
.profit-section {
    padding: 100px 0;
    background: #0f172a; /* Fond sombre pour trancher avec le reste du site */
    color: #f8fafc;
}

.profit-header {
    text-align: center;
    margin-bottom: 60px;
}

.profit-header h2 {
    font-size: 2.8rem;
    margin: 15px 0;
    color: #ffffff;
}

.profit-header h2 span {
    color: #10b981; /* Vert "Argent/Profit" */
}

.badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.profit-card.highlight {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.profit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.profit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.profit-stat {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    font-weight: 700;
    color: #10b981;
}

.profit-footer {
    margin-top: 60px;
    text-align: center;
}

.profit-footer p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}






.pricing-page { padding: 80px 0; background: #f8fafc; }
.welcome-offer { 
    background: #dcfce7; 
    border: 2px dashed #22c55e; 
    padding: 20px; 
    border-radius: 12px; 
    text-align: center; 
    margin-bottom: 50px; 
    color: #166534;
}
.offer-badge { 
    background: #22c55e; 
    color: white; 
    display: inline-block; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    margin-bottom: 10px;
}

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.pricing-card { 
    background: white; 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid #e2e8f0; 
    text-align: center; 
    transition: 0.3s;
}

.pricing-card.featured { 
    border: 2px solid #2563eb; 
    transform: scale(1.05); 
    position: relative; 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.popular { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #2563eb; 
    color: white; 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 700;
}

.price { font-size: 3rem; font-weight: 800; color: #0f172a; margin: 20px 0; }
.price span { font-size: 1rem; color: #64748b; }

.pricing-card ul { list-style: none; text-align: left; margin: 30px 0; }
.pricing-card li { margin-bottom: 12px; font-size: 0.95rem; }
.disabled { opacity: 0.4; }

.pricing-footer { margin-top: 40px; text-align: center; color: #64748b; }
.additional-services { padding: 60px 0; border-top: 1px solid #e2e8f0; }
.additional-services h3 { text-align: center; margin-bottom: 40px; color: #0f172a; }

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
}

.service-item { 
    background: #ffffff; 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}

.s-icon { font-size: 2rem; margin-bottom: 15px; }
.service-item h4 { margin-bottom: 10px; color: #1e293b; }
.service-item p { font-size: 0.9rem; color: #64748b; margin-bottom: 20px; flex-grow: 1; }
.s-price { font-weight: 800; color: #2563eb; background: #eff6ff; padding: 5px 15px; border-radius: 20px; }
/* Header Tarifs */
.pricing-header { padding: 60px 0; text-align: center; background: #fff; }
.pricing-header h1 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; }

/* Bannière Promo */
.setup-promo { 
    max-width: 700px; 
    margin: 40px auto 0; 
    background: #dcfce7; 
    border: 2px dashed #22c55e; 
    padding: 20px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    gap: 20px;
}
.promo-badge { 
    background: #22c55e; 
    color: white; 
    padding: 5px 12px; 
    border-radius: 6px; 
    font-weight: 800; 
    font-size: 0.7rem; 
}
.promo-content { color: #166534; font-size: 1.05rem; }

/* Cartes Tarifs */
.pricing-grid-section { padding: 40px 0 80px; background: #f8fafc; }
.pricing-card { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0; position: relative; }
.pricing-card.featured { border: 2px solid var(--primary); transform: scale(1.05); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; }

.feature-list { list-style: none; margin: 30px 0; text-align: left; }
.feature-list li { margin-bottom: 12px; font-size: 0.95rem; }
.btn-outline { display: block; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; text-decoration: none; color: var(--dark); font-weight: 600; text-align: center; }

/* Services à la carte */
.pro-services { padding: 100px 0; }
.section-title-center { text-align: center; margin-bottom: 50px; }
.service-card { text-align: center; padding: 30px; border: 1px solid #f1f5f9; border-radius: 15px; transition: 0.3s; }
.service-card:hover { border-color: var(--primary); }
.s-price { margin-top: 15px; display: inline-block; font-weight: 800; color: var(--primary); background: #eff6ff; padding: 4px 12px; border-radius: 20px; font-size: 0.9rem; }



.contact-page { padding: 80px 0; background: #f8fafc; }
.container-small { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.contact-header { text-align: center; margin-bottom: 40px; }

.artio-form { background: white; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--dark); font-size: 0.9rem; }

.artio-form input, .artio-form textarea, .artio-form select {
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 1rem;
}

.captcha-flex { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.captcha-flex img { border-radius: 4px; height: 45px; }
.captcha-flex button { background: none; border: none; cursor: pointer; font-size: 1.2rem; }
.captcha-flex input { width: 100px; }

.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; text-align: center; font-weight: 600; }
.alert.success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.rgpd-notice { font-size: 0.8rem; color: #64748b; margin-top: 20px; text-align: center; }


/* Footer Styles */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 1px solid #1e293b;
}

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

.footer-brand .logo {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.footer-brand .logo span { color: #2563eb; }

.footer-brand p {
    margin-top: 20px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

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

.footer-grid ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-grid ul li a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal a {
    margin-left: 20px;
    color: #64748b;
    text-decoration: none;
}

.footer-legal a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal a { margin: 0 10px; }
}
/* --- ONBOARDING SECTION --- */
.onboarding-section {
    padding: 60px 0;
    background-color: #f8fafc;
    min-height: 80vh;
}

.container-small {
    max-id-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barre de progression */
.step-progress {
    position: relative;
    height: 4px;
    background: #e2e8f0;
    margin-bottom: 50px;
    border-radius: 2px;
}

.progress {
    position: absolute;
    height: 100%;
    width: 0%; /* Géré par JS */
    background: #2563eb;
    transition: width 0.4s ease;
}

.step-circles {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -14px;
}

.circle {
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #64748b;
    transition: 0.3s;
}

.circle.active {
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Étapes (Masquage/Affichage) */
.onboarding-step {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    animation: fadeIn 0.4s ease;
}

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

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

/* Titres & Sous-titres */
.onboarding-step h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.subtitle {
    color: #64748b;
    margin-bottom: 30px;
}

/* Sélecteur de Packs (Cards) */
.pack-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.pack-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.pack-card:hover .card-content {
    border-color: #cbd5e1;
}

.pack-card input:checked + .card-content {
    border-color: #2563eb;
    background: #eff6ff;
}

.img-placeholder {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Zones d'Upload (Drop Area) */
.upload-zone {
    margin-bottom: 25px;
}

.upload-zone label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.drop-area {
    border: 2px dashed #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #94a3b8;
    position: relative;
    transition: 0.3s;
}

.drop-area:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.drop-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Boutons de Navigation */
.nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.btn-next, .btn-deploy {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-next:hover, .btn-deploy:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-back {
    background: none;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
}

/* Preview URL */
.url-preview {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.url-preview strong { color: #2563eb; }

/* Mobile */
@media (max-width: 768px) {
    .pack-selector {
        grid-template-columns: 1fr;
    }
    .onboarding-step {
        padding: 25px;
    }
}
.pack-option {
    text-align: center;
}
.link-demo {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.link-demo:hover {
    text-decoration: underline;
}
/* Grille pour les 3 petites photos */
.upload-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.drop-area.small {
    padding: 15px;
    min-height: 100px;
    font-size: 0.8rem;
}

/* Style pour l'aperçu de l'image une fois choisie */
.preview-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: none; /* Masqué par défaut */
    z-index: 10;
    pointer-events: none; /* Pour pouvoir recliquer sur l'input en dessous */
}

.info-note {
    background: #fffbeb;
    color: #92400e;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 20px;
    border: 1px solid #fef3c7;
}

@media (max-width: 600px) {
    .upload-grid-cards { grid-template-columns: 1fr; }
}

/* --- ONBOARDING STEP 4 - PRICING --- */
/* Grille : on s'assure que les items s'étirent */
.ob-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: stretch; /* Force la même hauteur pour tous les enfants */
}

.ob-card {
    flex: 1; /* Chaque carte prend la même largeur */
    min-width: 250px;
    cursor: pointer;
    position: relative;
    display: flex; /* Permet à l'input et au inner de s'aligner */
}

.ob-card input {
    position: absolute;
    opacity: 0;
}

/* Le contenu de la carte */
.ob-card-inner {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    background: #ffffff;
    transition: 0.2s;
    width: 100%; /* Prend toute la largeur de .ob-card */
    display: flex;
    flex-direction: column; /* Aligne le header, la liste et le footer verticalement */
}

/* Sélection : passage au bleu */
.ob-card input:checked + .ob-card-inner {
    border-color: #2563eb !important;
    background: #f0f7ff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.ob-card-header {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0; /* Ne rétrécit pas */
}

/* Ce conteneur va "manger" l'espace vide pour aligner les bas de cartes */
.ob-feature-container {
    flex-grow: 1; 
}

.ob-plan-name { 
    display: block; 
    font-weight: bold; 
    color: #64748b; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    margin-bottom: 10px;
}

.ob-plan-price { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: #1e293b; 
}

.ob-plan-price span { 
    font-size: 0.85rem; 
    color: #94a3b8; 
    font-weight: 400;
}

.ob-feature-list { 
    list-style: none; 
    padding: 0; 
    text-align: left; 
    font-size: 0.85rem; 
}

.ob-feature-list li { 
    margin-bottom: 10px; 
    line-height: 1.4;
}

@media (max-width: 768px) {
    .ob-pricing-grid { flex-direction: column; }
    .ob-card { width: 100%; }
}
/* Grille forcée en 3 colonnes */
.ob-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
    gap: 15px;
    margin-bottom: 30px;
    align-items: stretch; /* Force la même hauteur */
}

.ob-card {
    cursor: pointer;
    position: relative;
    display: flex; 
    height: 100%; /* Important pour l'alignement vertical */
}

/* On cache l'input */
.ob-card input {
    position: absolute;
    opacity: 0;
}

/* Le contenu de la carte */
.ob-card-inner {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    transition: 0.2s;
    width: 100%;
    display: flex;
    flex-direction: column; /* Permet d'utiliser flex-grow sur la liste */
}

/* Conteneur de liste qui pousse vers le bas */
.ob-feature-container {
    flex-grow: 1;
}

/* Sélection : passage au bleu */
.ob-card input:checked + .ob-card-inner {
    border-color: #2563eb !important;
    background: #f0f7ff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

/* Responsive : On passe en 1 seule colonne sur mobile */
@media (max-width: 850px) {
    .ob-pricing-grid {
        grid-template-columns: 1fr; /* Une seule colonne si l'écran est petit */
    }
}
/* Container de réassurance */
.ob-next-steps-container {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.ob-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.ob-info-header h3 {
    font-size: 1rem;
    color: #1e293b;
    margin: 0;
}

.price-tag {
    background: #dcfce7;
    color: #15803d;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* La Timeline */
.ob-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.timeline-icon {
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.timeline-text {
    display: flex;
    flex-direction: column;
}

.timeline-text strong {
    font-size: 0.9rem;
    color: #334155;
}

.timeline-text span {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 600px) {
    .ob-info-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }
}
.ob-security-check {
    margin-top: 20px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.security-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-img {
    height: 40px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

.btn-refresh {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.captcha-input-wrapper input {
    width: 120px !important;
    padding: 8px 12px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}

.captcha-input-wrapper input:focus {
    border-color: #2563eb !important;
    outline: none;
}

.security-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 8px;
    margin-bottom: 0;
}


/* La zone qui contient l'input et l'overlay */
.drop-area {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    height: 200px; /* Taille pour le Hero */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-area.small {
    height: 120px; /* Taille pour la grille */
}

/* L'input est invisible mais couvre toute la zone */
.drop-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* L'overlay qui affichera l'image */
.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none; /* Masqué par défaut */
    z-index: 5;
}

/* On cache le texte quand une image est présente */
.drop-area.has-image p {
    display: none;
}

/* Petit effet au survol */
.drop-area:hover {
    border-color: #c5a059;
    background: #fffdf9;
}
.drop-area.has-image p {
    opacity: 0;
    pointer-events: none;
}
.preview-overlay {
    z-index: 1; /* Derrière l'input mais devant le texte */
}

/* Container global */
.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.faq-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-section-title {
    margin: 40px 0 20px;
    font-size: 1.4rem;
    color: #c5a059;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

/* Système d'accordéon */
.faq-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c5a059;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Cache la checkbox */
.faq-item input[type="checkbox"] {
    display: none;
}

/* La question (Label) */
.faq-question {
    display: block;
    padding: 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    user-select: none;
}

/* La flèche */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #c5a059;
    transition: transform 0.3s ease;
}

/* La réponse (cachée par défaut) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* État ouvert */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 1000px; /* Valeur arbitraire haute pour l'animation */
    transition: max-height 0.4s ease-in;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
    background-color: #fdfdfd;
    color: #c5a059;
}

code {
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #d63384;
}



/* Style pour le tarif d'installation dans la carte */
.setup-fee {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* On s'assure que le prix mensuel reste dominant */
.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Le gros bouton d'action principal */
.btn-deploy-main {
    display: inline-block;
    background-color: #c5a059; /* Ta couleur dorée/accent */
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-deploy-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    background-color: #b38f4d;
}

/* Optionnel : animation de pulsation douce pour le bouton */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.btn-deploy-main {
    animation: pulse-gold 2s infinite;
}


/* --- Base Navbar --- */
.navbar {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

/* --- Burger Icon Design --- */
.burger {
    display: none; /* Caché sur desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .burger {
        display: flex;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite */
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    /* Quand la checkbox est cochée, on affiche le menu */
    #nav-check:checked ~ .nav-links {
        right: 0;
    }

    /* Animation du burger en "X" quand ouvert */
    #nav-check:checked ~ .burger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #nav-check:checked ~ .burger span:nth-child(2) {
        opacity: 0;
    }
    #nav-check:checked ~ .burger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
    }
}

.ob-pricing-grid {
    display: grid;
    /* Crée autant de colonnes de 280px minimum que possible */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    /* Assure que le conteneur ne dépasse pas du parent */
    box-sizing: border-box;
}

.ob-card {
    width: 100%; /* La carte prend toute la largeur de sa cellule de grille */
    display: block;
    cursor: pointer;
    box-sizing: border-box;
}

/* Ajustement pour les très petits écrans (iPhone SE, etc.) */
@media (max-width: 350px) {
    .ob-pricing-grid {
        grid-template-columns: 1fr; /* Force une seule colonne */
    }
}


/* --- VARIABLES & BASE (Rappel) --- */
:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --text: #475569;
    --white: #ffffff;
    --light-bg: #f8fafc;
}

/* --- SECTION PRESENTATION (MANIFESTO) --- */
.presentation-section {
    background: var(--dark);
    padding: 100px 0;
    color: var(--white);
}

/* On force la grille à prendre tout l'espace disponible */
.manifesto-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.manifesto-text {
    max-width: 900px; /* Largeur confortable pour la lecture */
}

.manifesto-text h2 {
    font-size: clamp(2rem, 5vw, 3.2rem); /* Taille fluide */
    line-height: 1.1;
    margin: 20px 0;
}

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

.manifesto-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
}

.badge-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Grille des mini-items en pleine largeur */
.mini-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    width: 100%;
}

.mini-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.mini-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.m-icon {
    font-size: 2rem;
    background: rgba(37, 99, 235, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.mini-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.mini-item div {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* --- SECTION SHOWROOM (MODÈLES) --- */
.showroom-section {
    padding: 120px 0;
    background: var(--white);
}

.showroom-header {
    text-align: center;
    margin-bottom: 100px;
}

.showroom-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.showroom-header p {
    color: var(--text);
    font-size: 1.1rem;
}

/* Cartes des modèles */
.showroom-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 150px;
}

.showroom-card.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.showroom-card.reverse .showroom-img { order: 2; }
.showroom-card.reverse .showroom-info { order: 1; }

.showroom-img {
    position: relative;
}

.showroom-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showroom-card:hover .showroom-img img {
    transform: scale(1.02);
}

.img-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 800;
    color: var(--dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.showroom-info {
    padding: 20px;
}

.model-number {
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    margin-bottom: -25px;
    user-select: none;
}

.showroom-info h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.usage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.usage-tags span {
    background: #eff6ff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-explore {
    display: inline-block;
    padding: 14px 30px;
    background: var(--dark);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-explore:hover {
    background: var(--primary);
    transform: translateX(5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .showroom-card, .showroom-card.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showroom-card.reverse .showroom-img { order: 1; }
    .showroom-card.reverse .showroom-info { order: 2; }
    
    .usage-tags { justify-content: center; }
}

@media (max-width: 600px) {
    .manifesto-text h2 { font-size: 2rem; }
    .mini-item { flex-direction: column; text-align: center; align-items: center; }
    .img-caption { display: none; }
}
/* Bannière Promotionnelle */
.promo-banner {
    background: #fffbeb;
    border: 2px dashed #f59e0b;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    color: #92400e;
}

.promo-badge {
    background: #f59e0b;
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Frais d'installation sous le prix */
.ob-setup-fee {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 5px;
}

/* Mise en avant du cadeau dans la liste */
.promo-gift {
    color: #059669 !important;
    font-weight: 700;
    background: #ecfdf5;
    padding: 5px 10px;
    border-radius: 8px;
    margin-bottom: 10px !important;
    display: inline-block;
}

/* Ajustement pour que toutes les cartes aient la même hauteur */
.ob-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
/* --- ALIGNEMENT HORIZONTAL : LABEL À GAUCHE, CHAMP À DROITE --- */
.onboarding-step .form-group {
    display: flex;
    align-items: center; /* Aligne verticalement le label et l'input sur le même axe */
    gap: 15px;           /* Espace entre le texte et le champ */
    margin-bottom: 0;    /* Géré par le gap de la grille principale */
    text-align: left;
}

.onboarding-step .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    
    /* CORRECTION CLÉ : On donne une largeur fixe aux labels pour que tous 
       les champs de saisie commencent exactement au même niveau vertical */
    width: 180px;       
    flex-shrink: 0;     /* Empêche le label de se compresser */
}

.onboarding-step .form-group input, 
.onboarding-step .form-group select {
    flex-grow: 1;       /* Le champ prend tout l'espace restant à droite */
    width: auto;        /* Annule le width 100% qui forcerait un retour à la ligne */
    padding: 12px 14px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    background-color: var(--white);
    color: var(--dark);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.onboarding-step .form-group input:focus, 
.onboarding-step .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
@media (max-width: 768px) {
    .onboarding-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .onboarding-grid .full-width {
        grid-column: span 1 !important;
    }
    /* Sur mobile, on remet le label au-dessus pour le confort de saisie */
    .onboarding-step .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .onboarding-step .form-group label {
        width: 100%;
    }
}
/* --- ALIGNEMENT HORIZONTAL : LABEL À GAUCHE, CHAMP À DROITE --- */
.onboarding-step .form-group {
    display: flex;
    align-items: center; /* Aligne verticalement le label et l'input sur le même axe */
    gap: 15px;           /* Espace entre le texte et le champ */
    margin-bottom: 0;    /* Géré par le gap de la grille principale */
    text-align: left;
}

.onboarding-step .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    
    /* CORRECTION CLÉ : On donne une largeur fixe aux labels pour que tous 
       les champs de saisie commencent exactement au même niveau vertical */
    width: 200px;       
    flex-shrink: 0;     /* Empêche le label de se compresser */
}

.onboarding-step .form-group input, 
.onboarding-step .form-group select {
    flex-grow: 1;       /* Le champ prend tout l'espace restant à droite */
    width: auto;        /* Annule le width 100% qui forcerait un retour à la ligne */
    padding: 12px 14px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    background-color: var(--white);
    color: var(--dark);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.onboarding-step .form-group input:focus, 
.onboarding-step .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
@media (max-width: 768px) {
    .onboarding-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .onboarding-grid .full-width {
        grid-column: span 1 !important;
    }
    /* Sur mobile, on remet le label au-dessus pour le confort de saisie */
    .onboarding-step .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .onboarding-step .form-group label {
        width: 100%;
    }
}
/* Styles pour le lien social dans le footer */
.footer-socials {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8; /* Une couleur sobre par défaut (gris ardoise) */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-link svg {
    transition: transform 0.2s ease;
}

/* Effets de survol (Hover) au look pro */
.social-link.facebook:hover {
    color: #1877f2; /* Le bleu officiel de Facebook */
}

.social-link:hover svg {
    transform: scale(1.1); /* Léger effet de zoom dynamique sur l'icône */
}