.elementor-1835 .elementor-element.elementor-element-68dd1f2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1835 .elementor-element.elementor-element-9ff89b0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-843940e */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Section Principale */
.pa-tech-section {
    background-color: #0b0f19; /* Fond très sombre */
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #94a3b8; /* Gris/Bleu pour le texte normal */
}

.pa-tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- STYLES DU NOUVEL EN-TÊTE --- */
.pa-tech-header {
    margin-bottom: 60px;
    max-width: 900px; /* Empêche le texte d'être trop large */
}

.pa-tech-subtitle {
    display: flex;
    align-items: center;
    color: #C21806; /* Rouge */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* La petite ligne rouge à côté du sous-titre */
.pa-tech-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #C21806;
    margin-right: 15px;
}

.pa-tech-header h2 {
    color: #FE9D20; /* Orange */
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.pa-tech-intro {
    color: #94a3b8; /* Texte blanc clair */
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}
/* -------------------------------- */

.pa-tech-grid {
    display: flex;
    gap: 60px;
}

/* --- COLONNE GAUCHE (Texte) --- */
.pa-tech-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
}

.pa-tech-content p {
    margin-bottom: 25px;
    color: #94a3b8;
}

/* Boîte en surbrillance (Highlight) */
.pa-tech-highlight {
    background-color: #161c28; /* Fond légèrement plus clair */
    border-left: 4px solid #10e5b3; /* Bordure Cyan/Vert */
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 0 8px 8px 0;
}

.pa-tech-highlight p {
    margin: 0;
    color: #94a3b8;
    font-weight: 500;
}

/* --- COLONNE DROITE (Étapes) --- */
.pa-tech-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Carte d'étape */
.pa-step-card {
    background-color: #161c28;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Effet au survol d'une étape */
.pa-step-card:hover {
    transform: translateX(-5px);
    border-color: rgba(16, 229, 179, 0.3);
}

/* Numéro (Badge Cyan) */
.pa-step-number {
    background-color: #C21806; /* Cyan/Vert */
    color: #ffff; /* Texte noir/sombre */
    font-weight: 700;
    font-size: 16px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Contenu de l'étape */
.pa-step-info h3 {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
}

.pa-step-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .pa-tech-header h2 {
        font-size: 32px;
    }
    .pa-tech-grid {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .pa-tech-header h2 {
        font-size: 28px;
    }
    .pa-tech-highlight {
        padding: 20px;
    }
    .pa-step-card {
        padding: 20px;
    }
}/* End custom CSS */