/* =============================================
   CERTIBIOCIDE — Main Stylesheet
   ============================================= */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
header {
    background-color: #fff;
    border-bottom: 3px solid #EAC435;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    text-decoration: none;
}

.logo img { height: 100%; }

.logotext {
    font-weight: 800;
    font-size: 22px;
    color: #1b5e20;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

nav ul li a:hover { color: #2e7d32; background: #f1f8e9; }

.nav-blog { color: #059669 !important; }

.nav-cta-btn {
    background: #2e7d32 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 10px 18px !important;
}

.nav-cta-btn:hover { background: #1b5e20 !important; }

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #2e7d32;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(46,125,50,0.5) 100%),
                url('media/BG-hero.jpg') no-repeat center center / cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 75px;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 196, 53, 0.9);
    color: #1b5e20;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-highlight {
    color: #EAC435;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-actions { margin-bottom: 50px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn:hover { background-color: #1b5e20; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-hero { background: #EAC435; color: #1b5e20; }
.btn-hero:hover { background: #d4b024; color: #1b5e20; }

.btn-outline {
    background-color: transparent;
    border: 2px solid #EAC435;
    color: white;
}

.btn-outline:hover { background-color: rgba(255,255,255,0.15); }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: #EAC435; }
.stat-label { font-size: 0.85rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: #1b5e20;
    color: white;
    padding: 16px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i { color: #EAC435; }

/* =============================================
   QUICK NAV CARDS
   ============================================= */
.gen-container {
    max-width: 1100px;
    margin: -40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

i { color: #EAC435; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e7d32;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* =============================================
   SECTIONS COMMON
   ============================================= */
section { padding: 90px 0; }

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #2e7d32;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #059669, #EAC435);
    border-radius: 2px;
    margin: 15px auto 0;
}

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.05rem;
}

/* =============================================
   FORMATIONS DETAIL
   ============================================= */
.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.formation-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.formation-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.formation-card-header {
    padding: 35px 35px 30px;
    color: white;
    text-align: center;
}

.nuisibles-header { background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%); }
.desinfectants-header { background: linear-gradient(135deg, #065f46 0%, #059669 100%); }

.formation-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.formation-icon-wrap i { color: white !important; }

.formation-card-header h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.formation-card-header p { opacity: 0.9; margin-bottom: 15px; }

.formation-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge i { color: inherit !important; }

.badge-duration { background: rgba(255,255,255,0.2); color: white; }
.badge-visio { background: rgba(234,196,53,0.9); color: #1b5e20; }

.formation-card-body { padding: 35px; }

.formation-card-body h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f8e9;
}

.program-list { list-style: none; margin-bottom: 30px; }

.program-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.95rem;
}

.program-list li i { color: #059669 !important; margin-top: 3px; flex-shrink: 0; }

.formation-price-inline {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
}

.price-item-sep {
    width: 1px;
    height: 42px;
    background: #cbd5e1;
}

.price-tag { font-size: 1.85rem; font-weight: 800; color: #1e293b; line-height: 1.1; }
.price-tag.price-perso { color: #059669; }
.price-note { color: #64748b; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }

.scalapay-mention-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #475569;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed #cbd5e1;
    text-align: center;
    line-height: 1.4;
}
.scalapay-mention-mini i { color: #8b5cf6; }

.formation-btn { width: 100%; text-align: center; display: block; margin: 0; }
.desinfectants-btn { background: #059669; }
.desinfectants-btn:hover { background: #065f46; }

/* Combo Offer */
.combo-offer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
}

.combo-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.combo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EAC435, #d4b024);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.combo-icon i { color: #1b5e20 !important; }
.combo-text { flex: 1; min-width: 200px; }
.combo-text h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.combo-text p { opacity: 0.85; }

.combo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.combo-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.5;
}

.combo-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #EAC435;
}

.btn-combo {
    background: #EAC435;
    color: #1b5e20;
    white-space: nowrap;
    padding: 12px 24px;
}

.btn-combo:hover { background: #d4b024; color: #1b5e20; }

/* =============================================
   VISIO SECTION
   ============================================= */
.visio-section {
    background: linear-gradient(135deg, #065f46 0%, #059669 60%, #1b5e20 100%);
    color: white;
}

.section-title-light { color: white !important; }
.section-title-light::after { background: linear-gradient(90deg, #EAC435, rgba(255,255,255,0.4)); }

.light-intro { color: rgba(255,255,255,0.88); }

.visio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.visio-feature {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: background 0.3s;
}

.visio-feature:hover { background: rgba(255,255,255,0.15); }

.visio-icon {
    width: 65px;
    height: 65px;
    background: rgba(234,196,53,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.visio-icon i { color: #EAC435 !important; }
.visio-feature h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.visio-feature p { opacity: 0.85; font-size: 0.95rem; }

.visio-steps {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
}

.visio-steps h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 35px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step-item { text-align: center; }

.step-num {
    width: 55px;
    height: 55px;
    background: #EAC435;
    color: #1b5e20;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-item h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { opacity: 0.85; font-size: 0.9rem; }

/* =============================================
   AVANTAGES
   ============================================= */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.avantage-card {
    background: white;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #2e7d32;
}

.avantage-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.avantage-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.avantage-icon i { color: #2e7d32 !important; }
.avantage-card h4 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.avantage-card p { color: #555; font-size: 0.95rem; }

/* Formation card image */
.formation-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Avantages photo gallery */
.avantages-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.avantages-photo-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.avantages-photo-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.avantages-photo-item:hover img {
    transform: scale(1.04);
}

.avantages-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: white;
    padding: 20px 18px 14px;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .avantages-photos { grid-template-columns: 1fr; }
    .avantages-photo-item img { height: 220px; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 10px auto 0;
}

.conference-banner {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
}

.visio-badge-big {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234,196,53,0.9);
    color: #1b5e20;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.visio-badge-big i { color: #1b5e20 !important; }

.conference-content { color: white; }
.conference-title { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
.conference-desc { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.14); }

.pricing-card.featured { border-color: #10b981; transform: scale(1.02); }

.pricing-card.featured::before {
    content: 'FORMATION COMPLÈTE';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #059669, #10b981);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-header { text-align: center; margin-bottom: 30px; }

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.plan-icon i { color: white !important; }

.nuisibles .plan-icon { background: linear-gradient(135deg, #dc2626, #ef4444); }
.desinfectants .plan-icon { background: linear-gradient(135deg, #059669, #10b981); }

.plan-name { font-size: 1.6rem; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.plan-desc { color: #64748b; margin-bottom: 12px; }

.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
}

.duration-badge i { color: #475569 !important; }

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 25px 0 5px;
    text-align: center;
}

.plan-price .currency { font-size: 1.8rem; vertical-align: top; }

.plan-billing { color: #64748b; font-size: 0.95rem; margin-bottom: 30px; text-align: center; }

/* Double affichage tarifaire CPF & Personnel */
.plan-pricing-dual {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px 10px;
    margin: 20px 0 10px;
    border: 1px solid #e2e8f0;
}

.pricing-tier {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-tier-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 10px;
    background: #e0e7ff;
    color: #3730a3;
    margin-bottom: 6px;
}

.pricing-tier-tag.direct-tag {
    background: #dcfce7;
    color: #166534;
}

.pricing-tier-val {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
}

.pricing-tier-val .currency {
    font-size: 1.2rem;
    vertical-align: top;
    font-weight: 700;
    margin-right: 1px;
}

.pricing-tier-desc {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

.pricing-tier-divider {
    width: 1px;
    background: #cbd5e1;
    margin: 0 6px;
}

.scalapay-card-notice {
    background: linear-gradient(135deg, #fbf7ff, #f3e8ff);
    border: 1px solid #e9d5ff;
    color: #581c87;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4;
}

.scalapay-card-notice i { color: #9333ea; font-size: 0.95rem; }
.scalapay-card-notice a { color: #581c87; text-decoration: underline; font-weight: 700; }

.features-list { list-style: none; margin-bottom: 30px; }

.features-list li {
    padding: 11px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon i { color: white !important; }
.feature-icon .fa-video { color: white !important; }

.feature-text { flex: 1; }
.feature-highlight { font-weight: 700; color: #1e293b; }

.cta-button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.cta-button a { color: white; text-decoration: none; }
.nuisibles .cta-button { background: linear-gradient(135deg, #dc2626, #ef4444); color: white; }
.desinfectants .cta-button { background: linear-gradient(135deg, #059669, #10b981); color: white; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

.img-pricing img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}

.financing-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-top: 60px;
}

.financing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #065f46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.financing-icon i { color: white !important; }

.financing-title { font-size: 2rem; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.financing-subtitle { color: #64748b; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.financing-item {
    padding: 25px 15px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s;
}

.financing-item:hover { transform: translateY(-5px); background: #f1f8e9; }

.financing-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 12px;
}

.financing-item-icon i { color: white !important; }
.financing-item-name { font-weight: 700; color: #1e293b; }

.financing-item.scalapay-item {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
}

.financing-item.scalapay-item:hover {
    background: #f3e8ff;
}

.financing-item.scalapay-item .financing-item-icon {
    background: linear-gradient(135deg, #9333ea, #c026d3);
}

.cpf-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 5px solid #f59e0b;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.cpf-notice-content { display: flex; align-items: flex-start; gap: 15px; }

.cpf-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cpf-icon i { color: white !important; }
.cpf-text { color: #92400e; font-weight: 500; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: #f8f9fa; }

.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
    font-weight: 700;
    color: #1e293b;
    transition: background 0.2s;
    gap: 15px;
}

.faq-question i { color: #2e7d32 !important; transition: transform 0.3s; flex-shrink: 0; }
.faq-question:hover { background: #f1f8e9; }

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

.faq-answer p { padding: 0 25px 22px; color: #555; line-height: 1.7; }

.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question { color: #2e7d32; background: #f1f8e9; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #2e7d32;
}

.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }

.testimonial-image { width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0; }
.tm-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

.testimonial-name { font-weight: 700; color: #1e293b; }

.testimonial-location { font-size: 0.85rem; color: #888; margin-top: 3px; }
.testimonial-location i { color: #2e7d32 !important; }

.testimonial-text { font-style: italic; color: #555; margin-bottom: 15px; line-height: 1.7; }

.stars { color: #EAC435; margin-bottom: 10px; }
.fa.checked { color: #EAC435; }

.testimonial-formation {
    display: inline-block;
    background: #f1f8e9;
    color: #2e7d32;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-preview-section { background: #fff; }

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

.blog-preview-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); background: #fff; border-color: #2e7d32; }

.blog-preview-cat {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.blog-preview-card h4 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; line-height: 1.5; }
.blog-preview-card p { color: #666; font-size: 0.9rem; flex: 1; margin-bottom: 15px; }

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.9rem;
}

.blog-read-more i { color: #2e7d32 !important; transition: margin 0.2s; }
.blog-preview-card:hover .blog-read-more i { margin-left: 4px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.contact-info, .contact-form {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.contact-details { margin: 20px 0; }
.contact-details p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-details i { color: #2e7d32 !important; width: 20px; }

.contact-visio-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #e8f5e9;
    padding: 15px 18px;
    border-radius: 10px;
    margin: 20px 0;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-visio-note i { color: #2e7d32 !important; font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

.sessions-list { display: flex; flex-direction: column; gap: 10px; }

.session-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.session-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nuisible-dot { background: #ef4444; }
.desinfectant-dot { background: #059669; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2e7d32;
}

.form-group textarea { height: 140px; resize: vertical; }

.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }

/* =============================================
   DESCRIPTION GRID (quick nav)
   ============================================= */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.module-card {
    background: white;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.module-card:hover { transform: translateY(-8px); }
.module-card h3 { color: #2e7d32; margin-bottom: 12px; margin-top: 5px; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #1b5e20; color: white; }

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand img { filter: brightness(10); margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }

.footer-links h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #EAC435;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a,
.footer-links span {
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover { color: #EAC435; }
.footer-links i { color: #EAC435 !important; margin-right: 6px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* =============================================
   BLOG PAGE STYLES
   ============================================= */
.blog-hero {
    background: linear-gradient(135deg, #065f46, #059669);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.blog-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }
.blog-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 30px; }

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 30px 20px;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 75px;
    z-index: 100;
}

.cat-btn {
    padding: 8px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    background: white;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cat-btn:hover, .cat-btn.active { background: #2e7d32; color: white; border-color: #2e7d32; }

.blog-main { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.article-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.article-card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.article-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-nuisibles { background: #fef2f2; color: #b91c1c; }
.cat-desinfectants { background: #ecfdf5; color: #065f46; }
.cat-reglementation { background: #eff6ff; color: #1d4ed8; }
.cat-metier { background: #fdf4ff; color: #7e22ce; }
.cat-financement { background: #fffbeb; color: #92400e; }

.article-date { font-size: 0.8rem; color: #94a3b8; }

.article-card h3 { font-size: 1.05rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; line-height: 1.5; }
.article-card p { color: #666; font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.9rem;
    align-self: flex-start;
}

.article-read-more i { color: #2e7d32 !important; transition: margin 0.2s; }
.article-card:hover .article-read-more i { margin-left: 4px; }

/* Blog Article Page */
.article-hero {
    background: linear-gradient(135deg, #065f46, #1b5e20);
    color: white;
    padding: 130px 20px 70px;
}

.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-hero .article-cat { margin-bottom: 20px; }
.article-hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.article-hero-meta { display: flex; gap: 20px; opacity: 0.8; font-size: 0.9rem; flex-wrap: wrap; }
.article-hero-meta i { color: #EAC435 !important; margin-right: 5px; }

.article-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.article-body { background: white; border-radius: 14px; padding: 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.article-body h2 { font-size: 1.6rem; color: #1e293b; margin: 35px 0 15px; }
.article-body h3 { font-size: 1.2rem; color: #2e7d32; margin: 25px 0 12px; }
.article-body p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.article-body ul { margin: 15px 0 20px 20px; }
.article-body ul li { color: #555; margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: #1e293b; }

.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 25px; }

.sidebar-widget {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.sidebar-widget h4 { font-size: 1rem; font-weight: 800; color: #1e293b; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px solid #f1f8e9; }
.sidebar-cta { background: linear-gradient(135deg, #2e7d32, #059669); color: white; }
.sidebar-cta h4 { color: white !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 15px; }
.sidebar-cta .btn { display: block; text-align: center; background: #EAC435; color: #1b5e20; margin: 0; }

/* =============================================
   MOBILE RESPONSIVENESS
   ============================================= */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .article-content-wrap { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .formations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    nav ul {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
    }

    nav ul.active { display: flex; }
    nav ul li { margin: 0; text-align: center; padding: 14px; border-bottom: 1px solid #eee; }
    nav ul li a { display: block; }
    .nav-cta-btn { border-radius: 0 !important; }

    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.5rem; }

    .trust-bar-inner { flex-direction: column; gap: 12px; align-items: center; text-align: center; }

    .gen-container { margin-top: -20px; }

    .section-title { font-size: 1.8rem; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }

    .conference-banner { padding: 30px 20px; }
    .conference-title { font-size: 1.5rem; }

    .financing-grid { grid-template-columns: repeat(2, 1fr); }

    .combo-content { flex-direction: column; text-align: center; }
    .combo-price { flex-direction: row; align-items: center; }

    .visio-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .avantages-grid { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 30px; }

    .form-row { flex-direction: column; gap: 0; }

    .article-body { padding: 25px; }
    .article-hero h1 { font-size: 1.8rem; }

    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .financing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 15px; }
    .plan-pricing-dual { padding: 12px 6px; }
    .pricing-tier-val { font-size: 1.7rem; }
    .formation-price-inline { padding: 10px 8px; gap: 8px; }
    .formation-price-inline .price-tag { font-size: 1.5rem; }
}
