/* ============================================================================
   CSS OPTIMISÉ HOMEPAGE ACLG - ÉTAPE 1 REFONTE
   Date : 12/10/2025
   Extraction styles inline  CSS externe
   ============================================================================ */

/* Variables CSS pour cohérence globale */
:root {
    --color-primary: #00557f;
    --color-primary-dark: #003d5c;
    --color-secondary: #b8f500;
    --color-dark: #1a1b1e;
    --color-text: #666;
    --color-text-light: #999;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    --color-border: #e8e8e8;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    --transition: all 0.3s ease;
}

/* ============================================================================
   HERO SECTION UNIFIÉE
   ============================================================================ */
.hero-unified {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 60px 0;
    overflow: hidden;
}

.hero-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-unified .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 30px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.hero-title {
    text-align: center;
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    text-align: center;
    color: var(--color-secondary);
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 30px;
}

.hero-editors {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.hero-editors strong {
    color: white;
}

.hero-benefits {
    margin-bottom: 40px;
}

.hero-benefit-item {
    text-align: center;
    margin-bottom: 20px;
}

.hero-benefit-item i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    display: block;
}

.hero-benefit-item p {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-benefit-item small {
    color: #ccc;
}

.hero-ctas {
    text-align: center;
}

.btn-primary-hero {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    margin: 0 10px 10px;
    box-shadow: 0 4px 15px rgba(184,245,0,0.3);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid white;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px;
}

/* ============================================================================
   NETWORK SECTION
   ============================================================================ */
.network-section {
    padding: 80px 0;
    background: var(--color-white);
}

.network-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.network-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

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

/* ============================================================================
   TRUST SECTION - CHIFFRES CLÉS
   ============================================================================ */
.trust-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before,
.trust-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.trust-section::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    opacity: 0.1;
}

.trust-section::after {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    opacity: 0.05;
}

.trust-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.trust-card p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

.trust-card small {
    color: var(--color-text-light);
}

.trust-bonus {
    background: var(--color-primary);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    text-align: center;
}

.trust-bonus strong {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    margin-bottom: 2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 2px solid var(--color-primary);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--color-primary);
}

.testimonial-author small {
    color: var(--color-text-light);
}

/* ============================================================================
   EXPERTS SECTION
   ============================================================================ */
.experts-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.experts-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.experts-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.expert-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.expert-item img {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.expert-content h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.expert-content p {
    color: var(--color-text);
    line-height: 1.6;
}

/* ============================================================================
   CYBER SECTION
   ============================================================================ */
.cyber-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    padding: 80px 0;
}

.cyber-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cyber-section h3 {
    margin-bottom: 25px;
}

.risk-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.risk-box h3 {
    color: #ff6b6b;
}

.risk-item {
    margin-bottom: 20px;
}

.risk-item strong {
    color: #ff6b6b;
}

.risk-item p {
    color: #ccc;
    margin: 5px 0;
}

.protection-box {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.protection-box h3 {
    color: var(--color-primary);
}

.protection-item {
    margin-bottom: 20px;
}

.protection-item strong {
    color: var(--color-primary);
}

.protection-item p {
    color: var(--color-text);
    margin: 5px 0;
}

.btn-cyber {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

/* ============================================================================
   FAQ SECTION INTERACTIVE
   ============================================================================ */
.faq-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--color-bg-light);
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
    margin-top: 0.5rem;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-highlight {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================================================
   HELPER CLASSES
   ============================================================================ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-badge-wrapper {
    margin-bottom: 30px;
}

.hero-editors-strong {
    color: white;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-center {
    color: var(--color-text);
    font-size: 1.1rem;
    text-align: center;
}

.section-subtitle-large {
    font-size: 1.2rem;
    color: var(--color-text);
    text-align: center;
}

.section-subtitle-spaced {
    margin-top: 15px;
}

.section-spacing-top {
    margin-bottom: 4rem;
}

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

.logo-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-image {
    height: 80px;
    max-width: 300px;
    object-fit: contain;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.rs-about-style7 {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.rs-about-style7 .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.btn-part {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.readon.agency-btn2 {
    background: var(--color-primary);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.readon.agency-btn2:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ============================================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-card h3 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-part {
        flex-direction: column;
        align-items: center;
    }
}

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