/* ============================================
   AGENCY SECTION V2 - Agence de Conseil
   Design Professionnel & Responsive
   ============================================ */

.agency-v2-section {
    padding: 60px 0;
    margin: 60px 40px;
    background-color: #ffffff; /* Fond blanc comme les autres sections principales */
    border-radius: 24px; /* Un peu d'arrondi sur les bords du bloc */
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.agency-v2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header de la section */
.agency-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

.agency-v2-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 58, 143, 0.1);
    color: #1a3a8f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.agency-v2-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.agency-v2-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Layout Principal */
.agency-v2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Colonne Gauche - Présentation */
.agency-v2-info-card {
    background: #f8fafc; /* Inversion : fond gris pour les cartes sur fond blanc */
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.agency-v2-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.agency-v2-logo-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a3a8f 0%, #2d5cc2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 8px 16px rgba(26, 58, 143, 0.2);
}

.agency-v2-brand-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.agency-v2-brand-text p {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 0 0;
}

.agency-v2-description {
    margin-bottom: 30px;
}

.agency-v2-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.agency-v2-description p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.agency-v2-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.agency-v2-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.agency-v2-features li i {
    color: #0ea5e9;
    font-size: 16px;
}

/* Colonne Droite - Action & Formulaire */
.agency-v2-form-card {
    background: #f8fafc; /* Inversion aussi ici */
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    position: relative;
    border: 1px solid #f1f5f9;
}

.agency-v2-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
}

.agency-v2-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.agency-v2-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agency-v2-input-group.full {
    grid-column: span 2;
}

.agency-v2-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.agency-v2-input-group input,
.agency-v2-input-group select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.agency-v2-input-group input:focus,
.agency-v2-input-group select:focus {
    outline: none;
    border-color: #1a3a8f;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(26, 58, 143, 0.1);
}

.agency-v2-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a3a8f 0%, #2d5cc2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(26, 58, 143, 0.2);
}

.agency-v2-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 58, 143, 0.3);
    filter: brightness(1.1);
}

/* Plans & Stats */
.agency-v2-footer-content {
    margin-top: 40px;
}

.agency-v2-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.agency-v2-plan-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.agency-v2-plan-item:hover {
    background: #ffffff;
    border-color: #1a3a8f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.agency-v2-plan-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #1a3a8f;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.agency-v2-plan-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.agency-v2-plan-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Stats */
.agency-v2-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background: #0f172a;
    border-radius: 20px;
    color: #ffffff;
}

.agency-v2-stat-unit {
    text-align: center;
}

.agency-v2-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 5px;
}

.agency-v2-stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .agency-v2-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .agency-v2-section {
        padding: 40px 0;
        margin: 40px 15px;
        border-radius: 16px;
    }

    .agency-v2-container {
        padding: 0 15px;
    }

    .agency-v2-info-card,
    .agency-v2-form-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .agency-v2-title {
        font-size: 26px;
    }

    .agency-v2-subtitle {
        font-size: 15px;
    }

    .agency-v2-features {
        grid-template-columns: 1fr;
    }

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

    .agency-v2-input-group.full {
        grid-column: span 1;
    }

    .agency-v2-plans-grid {
        grid-template-columns: 1fr;
    }

    .agency-v2-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .agency-v2-section {
        margin: 30px 10px;
        padding: 30px 0;
    }

    .agency-v2-container {
        padding: 0 10px;
    }

    .agency-v2-info-card,
    .agency-v2-form-card {
        padding: 20px 15px;
    }

    .agency-v2-title {
        font-size: 22px;
    }

    .agency-v2-stats {
        flex-direction: column;
        gap: 15px;
    }

    .agency-v2-stat-value {
        font-size: 28px;
    }

    .agency-v2-brand {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .agency-v2-logo-box {
        margin: 0 auto;
    }
}
