/* ============================================
   FOOTER - IONARX SRL 2026
   Responsive & Centré
   ============================================ */

.footer {
    background-color: var(--color-black, #1a1a1a);
    color: var(--color-white, #ffffff);
    padding: 3rem 1.5rem 1.5rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer .footer-logo-text {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white, #ffffff);
    letter-spacing: 1px;
}

.footer .footer-logo .footer-text {
    color: #999999;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 0.5rem;
}

.footer .footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--color-gold, #d4af37);
}

.footer .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer .footer-bottom p {
    color: #777777;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

/* ============================================
   HERO MOBILE FIX - Centrage complet
   ============================================ */
.hero-content-modern {
    text-align: center !important;
}

.hero-title-modern,
.hero-subtitle-modern,
.hero-description-modern {
    text-align: center !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablette */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1.25rem;
    }
    
    .footer .footer-logo-text {
        font-size: 1.35rem;
    }
    
    .footer .footer-links {
        gap: 0.75rem 1rem;
    }
    
    .footer .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .footer .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Hero centré sur tablette */
    .hero-content-modern {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer .footer-content {
        gap: 1rem;
    }
    
    .footer .footer-logo-text {
        font-size: 1.25rem;
    }
    
    .footer .footer-logo .footer-text {
        font-size: 0.8rem;
    }
    
    .footer .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer .footer-bottom {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }
    
    .footer .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    /* Hero centré sur mobile */
    .hero-content-modern {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title-modern,
    .hero-subtitle-modern,
    .hero-description-modern {
        text-align: center !important;
        width: 100%;
    }
}

/* ============================================
   PROCESS STEPS - Numéros centrés
   ============================================ */
.process-step-human {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number-human {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--color-gold, #d4af37) 0%, #b8962e 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-title-human {
    text-align: center !important;
}

.step-description-human {
    text-align: center !important;
}

/* ============================================
   PRICING - Prix mis en avant
   ============================================ */
.pricing-card-human {
    text-align: center;
}

.pricing-price-human {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.price-amount-human {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--color-gold, #d4af37) !important;
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* Badge prix autour du montant */
.pricing-price-human::before {
    content: '';
    display: none;
}

/* Responsive prix */
@media (max-width: 768px) {
    .price-amount-human {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 480px) {
    .price-amount-human {
        font-size: 2rem !important;
    }
    
    .step-number-human {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
