/* ==============================================
   VefaConnect - Landing Page Promoteurs
   Design moderne Mobile-First avec accent conversion
   ============================================== */

/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    --promoter-primary: #2563eb;
    --promoter-primary-dark: #1d4ed8;
    --promoter-accent: #f97316;
    --promoter-accent-dark: #ea580c;
    --promoter-dark: #1e293b;
    --promoter-light: #f8fafc;
    --promoter-gray: #64748b;
    --promoter-border: #e2e8f0;
    --promoter-success: #22c55e;
    --promoter-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --promoter-hero-gradient: linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(37, 99, 235, 0.85) 100%);
}

/* ==========================================
   BASE - MOBILE FIRST
   ========================================== */
.promoter-landing {
    overflow-x: hidden;
}

/* ==========================================
   HERO SECTION - MOBILE
   ========================================== */
.promoter-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height pour mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.promoter-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e293b 100%);
}

.promoter-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--promoter-hero-gradient);
}

.promoter-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem 1rem;
    max-width: 100%;
}

.promoter-badge-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--promoter-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    animation: pulse 2s infinite;
}

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

.promoter-hero-title {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promoter-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.promoter-hero-offer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-duration {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.offer-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--promoter-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-detail {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.promoter-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.promoter-hero-cta .btn {
    width: 100%;
    max-width: 280px;
}

.promoter-btn-primary {
    background: var(--promoter-accent) !important;
    border: none !important;
    padding: 0.875rem 1.5rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4) !important;
}

.promoter-btn-primary:hover,
.promoter-btn-primary:focus {
    background: var(--promoter-accent-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5) !important;
}

/* ==========================================
   STATISTIQUES - MOBILE
   ========================================== */
.promoter-stats {
    background: var(--promoter-dark);
    padding: 2.5rem 0;
}

.stat-item {
    padding: 1rem 0.5rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ==========================================
   AVANTAGES - MOBILE
   ========================================== */
.promoter-advantages {
    padding: 3rem 0;
    background: var(--promoter-light);
}

.section-title-promoter {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    color: var(--promoter-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--promoter-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--promoter-border);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--promoter-primary);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: var(--promoter-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.advantage-icon i {
    font-size: 1.35rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--promoter-dark);
    margin-bottom: 0.5rem;
}

.advantage-card p {
    color: var(--promoter-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   COMMENT ÇA MARCHE - MOBILE
   ========================================== */
.promoter-how-it-works {
    padding: 3rem 0;
    background: white;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 320px;
    margin: 2rem auto 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--promoter-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--promoter-dark);
    margin-bottom: 0.35rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--promoter-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.step-connector {
    width: 2px;
    height: 30px;
    background: var(--promoter-border);
}

/* ==========================================
   PRICING - MOBILE
   ========================================== */
.promoter-pricing {
    padding: 3rem 1rem;
    background: var(--promoter-gradient);
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--promoter-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--promoter-dark);
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.pricing-free {
    margin-bottom: 1rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--promoter-primary);
}

.price-period {
    display: block;
    font-size: 1rem;
    color: var(--promoter-gray);
    margin-top: 0.25rem;
}

.pricing-details {
    color: var(--promoter-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--promoter-success);
    font-size: 0.9rem;
}

/* ==========================================
   CONTACT - MOBILE
   ========================================== */
.promoter-contact {
    padding: 3rem 0;
    background: var(--promoter-light);
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.promoter-contact-form .form-label {
    font-weight: 500;
    color: var(--promoter-dark);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.promoter-contact-form .form-control,
.promoter-contact-form .form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--promoter-border);
    transition: all 0.3s ease;
    font-size: 1rem; /* Prevent zoom on iOS */
}

.promoter-contact-form .form-control:focus,
.promoter-contact-form .form-select:focus {
    border-color: var(--promoter-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-alternative {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--promoter-border);
    text-align: center;
}

.contact-alternative p {
    color: var(--promoter-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ==========================================
   FAQ - MOBILE
   ========================================== */
.promoter-faq {
    padding: 3rem 0;
    background: white;
}

.promoter-faq .accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.promoter-faq .accordion-button {
    font-weight: 600;
    color: var(--promoter-dark);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.promoter-faq .accordion-button:not(.collapsed) {
    background: var(--promoter-light);
    color: var(--promoter-primary);
    box-shadow: none;
}

.promoter-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.promoter-faq .accordion-body {
    color: var(--promoter-gray);
    padding: 1rem 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ==========================================
   CTA FINAL - MOBILE
   ========================================== */
.promoter-final-cta {
    padding: 3rem 1rem;
    background: var(--promoter-dark);
}

.promoter-final-cta h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.promoter-final-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ==========================================
   TABLET - min-width: 768px
   ========================================== */
@media (min-width: 768px) {
    .promoter-hero {
        min-height: 90vh;
        padding: 2rem;
    }

    .promoter-hero-content {
        padding: 2rem;
        max-width: 700px;
    }

    .promoter-badge-offer {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .offer-duration {
        font-size: 1.5rem;
    }

    .offer-price {
        font-size: 2.5rem;
    }

    .promoter-hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .promoter-hero-cta .btn {
        width: auto;
        max-width: none;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .promoter-advantages {
        padding: 4rem 0;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }

    .advantage-card h3 {
        font-size: 1.25rem;
    }

    .advantage-card p {
        font-size: 0.95rem;
    }

    .promoter-how-it-works {
        padding: 4rem 0;
    }

    .steps-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        max-width: 100%;
        gap: 0.5rem;
    }

    .step-item {
        max-width: 180px;
    }

    .step-connector {
        width: 40px;
        height: 2px;
        margin-top: 24px;
    }

    .promoter-pricing {
        padding: 4rem 2rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .promoter-contact {
        padding: 4rem 0;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .promoter-faq {
        padding: 4rem 0;
    }

    .promoter-faq .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .promoter-faq .accordion-body {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .promoter-final-cta {
        padding: 4rem 2rem;
    }
}

/* ==========================================
   DESKTOP - min-width: 1024px
   ========================================== */
@media (min-width: 1024px) {
    .promoter-hero {
        min-height: 90vh;
    }

    .promoter-hero-content {
        max-width: 900px;
    }

    .promoter-hero-offer {
        padding: 1.5rem 2.5rem;
        border-radius: 20px;
    }

    .promoter-stats {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .promoter-advantages {
        padding: 5rem 0;
    }

    .section-subtitle {
        margin-bottom: 3rem;
    }

    .promoter-how-it-works {
        padding: 5rem 0;
    }

    .steps-container {
        gap: 1rem;
    }

    .step-item {
        max-width: 200px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-connector {
        width: 60px;
    }

    .promoter-pricing {
        padding: 5rem 0;
    }

    .pricing-card {
        padding: 3rem;
        max-width: 500px;
    }

    .price-value {
        font-size: 4rem;
    }

    .promoter-contact {
        padding: 5rem 0;
    }

    .contact-card {
        padding: 3rem;
    }

    .promoter-faq {
        padding: 5rem 0;
    }

    .promoter-final-cta {
        padding: 5rem 0;
    }
}

/* ==========================================
   LARGE DESKTOP - min-width: 1280px
   ========================================== */
@media (min-width: 1280px) {
    .promoter-hero-content {
        max-width: 1000px;
    }

    .steps-container {
        gap: 1.5rem;
    }

    .step-connector {
        width: 80px;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promoter-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .promoter-badge-offer,
    .promoter-hero-content,
    .advantage-card,
    .promoter-btn-primary {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus visible for accessibility */
.promoter-btn-primary:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.accordion-button:focus-visible {
    outline: 2px solid var(--promoter-primary);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .promoter-advantages {
        background: #0f172a;
    }

    .advantage-card {
        background: #1e293b;
        border-color: #334155;
    }

    .advantage-card h3 {
        color: white;
    }

    .advantage-card p {
        color: #94a3b8;
    }

    .promoter-how-it-works {
        background: #0f172a;
    }

    .step-content h3 {
        color: white;
    }

    .step-content p {
        color: #94a3b8;
    }

    .promoter-contact {
        background: #0f172a;
    }

    .contact-card {
        background: #1e293b;
    }

    .promoter-contact-form .form-label {
        color: #e2e8f0;
    }

    .promoter-contact-form .form-control,
    .promoter-contact-form .form-select {
        background: #0f172a;
        border-color: #334155;
        color: white;
    }

    .contact-alternative p {
        color: #94a3b8;
    }

    .promoter-faq {
        background: #0f172a;
    }

    .promoter-faq .accordion-item {
        background: #1e293b;
    }

    .promoter-faq .accordion-button {
        background: #1e293b;
        color: white;
    }

    .promoter-faq .accordion-button:not(.collapsed) {
        background: #334155;
        color: #60a5fa;
    }

    .promoter-faq .accordion-body {
        background: #1e293b;
        color: #94a3b8;
    }

    .section-title-promoter {
        color: white;
    }

    .section-subtitle {
        color: #94a3b8;
    }
}

/* ============================================================
   Refonte « Espace promoteurs » 2026 — tarif forfaitaire
   ============================================================ */
.promoter-hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Encart offre fondateurs (dans la carte pricing) */
.promoter-founder-offer {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    text-align: left;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--promoter-accent);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    margin: 0.5rem 0 1rem;
}
.promoter-founder-offer__emoji { font-size: 1.4rem; line-height: 1.2; flex-shrink: 0; }
.promoter-founder-offer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--promoter-dark);
}
.promoter-founder-offer strong { color: var(--promoter-accent-dark); }

.promoter-pricing-conditions {
    font-size: 0.85rem;
    color: var(--promoter-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.promoter-pricing-conditions strong { color: var(--promoter-dark); }

/* Callout « pourquoi pas de facturation au lead » */
.promoter-why-forfait {
    max-width: 640px;
    margin: 2rem auto 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.promoter-why-forfait h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--promoter-dark);
    margin: 0 0 0.6rem;
}
.promoter-why-forfait h3 i { color: var(--promoter-primary); margin-right: 0.35rem; }
.promoter-why-forfait p {
    margin: 0;
    color: var(--promoter-gray);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Bloc comparatif transparence */
.promoter-compare-section {
    padding: 3rem 1rem;
    background: var(--promoter-light);
}
.promoter-compare {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--promoter-border);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.promoter-compare p {
    color: var(--promoter-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}
.promoter-compare__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0 !important;
    padding-top: 1rem;
    border-top: 1px solid var(--promoter-border);
    color: var(--promoter-dark) !important;
    font-weight: 600;
}
.promoter-compare__highlight i { color: var(--promoter-accent); margin-top: 0.2rem; }

.promoter-final-cta__contact {
    margin-top: 1.25rem;
    font-size: 0.9rem;
}
.promoter-final-cta__contact a { color: #ffffff; text-decoration: underline; }






