/* public/css/v2/components/home.css — Styles page d'accueil */

/* Hero */
.home-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.home-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .home-hero h1 {
        font-size: 2.4rem;
    }
}

/* Preuve sociale (ligne discrete) — utilise Bootstrap, pas de CSS custom */

/* Cards benefices */
.home-benefit-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.home-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.home-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Screenshots demo */
.home-demo-img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    max-height: 350px;
    object-fit: contain;
    width: 100%;
}

.home-demo-img:hover {
    transform: scale(1.02);
}

/* Temoignages */
.home-testimonial-card {
    border-left: 4px solid #0d6efd;
    background: #f8f9fa;
}

.home-testimonial-card .quote-icon {
    font-size: 2rem;
    color: #0d6efd;
    opacity: 0.3;
    line-height: 1;
}

/* CTA final */
.home-cta-final {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}
