* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
.hero-premium {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/accueil.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; 
}
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.hero-title .accent {
    color: #008ac9;
    display: block;
}
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}
.hero-badge p {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 4px;
    color: #efefef;
    font-size: 1rem;
}
.badge-line {
    width: 60px;
    height: 2px;
    background-color: #008ac9;
}
.hero-services {
    margin-bottom: 35px;
}
.service-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-list {
    font-size: 0.95rem;
    font-weight: 600;
    color: #008ac9;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 45px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #008ac9;
    margin-bottom: 40px;
    display: inline-block;
}
.card-subtitle {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}
.card-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card-link {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.card-link i {
    color: #008ac9;
    margin-right: 10px;
}
.card-sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}
.hero-actions {
    margin-top: 10px;
}
.btn-pill {
    display: inline-block;
    background-color: #008ac9;
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.05rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 138, 201, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-pill:hover {
    background-color: #00a8f3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 138, 201, 0.5);
}
@media (max-width: 992px) {
    .header-center { 
        display: none !important; 
    }
}
@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 15px 40px;
        height: auto;
        min-height: 100vh;
    }
    .hero-title { 
        font-size: 2.8rem !important; 
    }
    .service-main { 
        font-size: 1.1rem; 
    }
    .service-list { 
        font-size: 0.8rem; 
        letter-spacing: 1px; 
    }
    .hero-badge p {
        letter-spacing: 2px;
        font-size: 0.85rem;
    }
    .hero-badge .badge-line { 
        display: none; 
    }
    .hero-glass-card { 
        padding: 20px; 
        width: 100%; 
        max-width: 400px;
    }
    .card-links { 
        flex-direction: column; 
        gap: 15px; 
    }
    .card-sep { 
        display: none; 
    }
}