/* --- PAGE PRINT --- */

/* --- HERO SECTION PRINT (Version de la dernière chance) --- */
.hero-print {
    background: linear-gradient(135deg, rgba(59, 128, 181, 0.9) 0%, rgba(114, 89, 149, 0.8) 100%), 
                url('../img/imp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.lead-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 60px auto;
    color: #555;
    line-height: 1.8;
}

.formats-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    border: 1px dashed var(--secondary);
    padding: 4px 12px;
    border-radius: 4px;
}

/* Grille spécifique Print */
.print-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.print-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 5px solid var(--secondary);
}

/* Autres services (Tags) */
.other-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.other-item {
    background: #f8f8f8;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid #eee;
    transition: 0.3s;
}

.other-item span {
    font-weight: 700;
    color: var(--primary);
}

.other-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .print-grid { grid-template-columns: 1fr; }
}