.packs-hero-copy{
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.packs-hero-copy p{
    color: var(--muted);
    font-size: 1.04rem;
}

.packs-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
}

.packs-grid-four{
    grid-template-columns:repeat(4, minmax(0,1fr));
}

.pack-card{
    position:relative;
    padding:34px;
    border-radius:30px;
    overflow:hidden;
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
        linear-gradient(145deg, rgba(11,20,46,.94), rgba(9,15,36,.92));
    border:1px solid rgba(255,255,255,.10);
}

.pack-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(37,201,255,.10), transparent 26%),
        radial-gradient(circle at bottom right, rgba(124,77,255,.12), transparent 30%);
    opacity:.85;
    pointer-events:none;
}

.pack-card:hover{
    transform:translateY(-10px);
    border-color:rgba(124,77,255,.26);
    box-shadow:var(--shadow-strong);
}

.pack-card > *{
    position:relative;
    z-index:2;
}

.pack-card-featured{
    transform:translateY(-12px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 28px 70px rgba(0,0,0,.28);
}

.pack-card-featured::after{
    content:"Le plus demandé";
    position:absolute;
    top:18px;
    right:18px;
    z-index:3;
    padding:8px 12px;
    border-radius:999px;
    font-size:.78rem;
    font-weight:700;
    color:#eaf6ff;
    background:rgba(37,201,255,.10);
    border:1px solid rgba(37,201,255,.18);
}

.pack-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:60px;
    height:60px;
    padding:0 18px;
    border-radius:18px;
    margin-bottom:18px;
    font-weight:800;
    letter-spacing:.04em;
    color:#fff;
    background:linear-gradient(135deg, rgba(37,201,255,.18), rgba(124,77,255,.18));
    border:1px solid rgba(255,255,255,.10);
}

.pack-card h3{
    font-size:1.48rem;
    margin-bottom:10px;
    line-height:1.15;
}

.pack-lead{
    color:var(--muted);
    margin-bottom:22px;
}

.pack-range{
    display:inline-flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:.95rem;
    margin-bottom:22px;
}

.pack-range strong{
    color:#fff;
}

.pack-list{
    display:grid;
    gap:12px;
    margin-bottom:24px;
}

.pack-list li{
    list-style:none;
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    color:var(--muted-2);
}

.pack-note{
    color:var(--muted);
    font-size:.93rem;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.08);
    margin-bottom:24px;
}

.pack-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.pack-actions .btn{
    width:100%;
}

.packs-info-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    align-items:stretch;
}

.pack-panel,
.pack-side-card{
    padding:34px;
    border-radius:30px;
}

.pack-panel{
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)),
        linear-gradient(145deg, rgba(11,20,46,.94), rgba(9,15,36,.92));
    border:1px solid rgba(255,255,255,.10);
}

.pack-panel p,
.pack-side-card p{
    color:var(--muted);
}

.pack-panel h2,
.pack-side-card h3{
    margin-bottom:14px;
    line-height:1.12;
}

.pack-side-stack{
    display:grid;
    gap:24px;
}

.eligibility-list{
    display:grid;
    gap:12px;
    margin-top:22px;
}

.eligibility-list li{
    list-style:none;
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    color:var(--muted-2);
}

.pack-cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

.pack-orientation-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:22px;
}

.pack-orientation-card{
    padding:28px;
    border-radius:26px;
    position:relative;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease;
}

.pack-orientation-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-strong);
}

.pack-orientation-card span{
    display:inline-flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    margin-bottom:16px;
    font-weight:800;
    background:linear-gradient(135deg, rgba(37,201,255,.18), rgba(124,77,255,.18));
    border:1px solid rgba(255,255,255,.10);
}

.pack-orientation-card h3{
    font-size:1.16rem;
    margin-bottom:10px;
}

.pack-orientation-card p{
    color:var(--muted);
}

.pack-final-cta{
    padding:42px;
    border-radius:32px;
}

.pack-final-cta .contact-actions{
    justify-content:flex-start;
}

.pack-example{
    margin-top:1rem;
    padding:1rem;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    font-size:.95rem;
    line-height:1.6;
    color:var(--muted-2);
}

.pack-example strong{
    display:inline-block;
    margin-bottom:.35rem;
    color:#fff;
}

.pack-maintenance-pricing{
    margin-top:1.2rem;
}

@media (max-width: 1320px){
    .packs-grid-four{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .pack-orientation-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 1180px){
    .packs-grid,
    .packs-grid-four,
    .packs-info-grid,
    .pack-orientation-grid{
        grid-template-columns:1fr;
    }

    .pack-card-featured{
        transform:none;
    }
}

@media (max-width: 768px){
    .pack-card,
    .pack-panel,
    .pack-side-card,
    .pack-orientation-card,
    .pack-final-cta{
        padding:24px;
        border-radius:22px;
    }

    .pack-cta-row,
    .contact-actions{
        flex-direction:column;
    }

    .pack-card-featured::after{
        position:static;
        display:inline-flex;
        margin-bottom:14px;
    }
}