.vip-benefits-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 78% 7%, rgba(141, 48, 224, .2), transparent 31rem),
        radial-gradient(circle at 8% 42%, rgba(234, 8, 35, .1), transparent 27rem),
        linear-gradient(180deg, #090a0e, #060609 58%, #0a070c);
    color: #fff;
}

.benefits-shop-link { justify-content: center; font-size: 12px; }
.benefits-shop-link::before { content: none !important; }

.benefits {
    width: min(1380px, calc(100% - 36px));
    margin: 0 auto;
    padding: 74px 0 100px;
}

.benefits-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.benefits-head .eyebrow { color: #ff6070; }

.benefits-head h1 {
    margin: 14px 0 18px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -.057em;
}

.benefits-head p {
    max-width: 720px;
    margin: auto;
    color: #c3c5cd;
    font-size: 16px;
    line-height: 1.7;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.benefit-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(184, 96, 255, .26);
    border-radius: 19px;
    background: radial-gradient(circle at 100% 0, rgba(146, 49, 223, .15), transparent 38%), linear-gradient(150deg, #17151e, #0d0e12);
    box-shadow: 0 24px 62px rgba(0, 0, 0, .28);
    scroll-margin-top: 94px;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.benefit-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.benefit-card:has(input:checked) {
    border-color: rgba(214, 153, 255, .88);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .46), 0 0 38px rgba(164, 61, 236, .2);
}

.benefit-card:target {
    border-color: rgba(214, 153, 255, .88);
    outline: 2px solid rgba(187, 95, 255, .52);
    outline-offset: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .46), 0 0 38px rgba(164, 61, 236, .2);
    transform: translateY(-3px);
}

.benefit-card.deal:target {
    border-color: rgba(255, 220, 82, .88);
    outline-color: rgba(255, 210, 51, .58);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .46), 0 0 42px rgba(255, 197, 22, .16);
}

.benefit-card.plus { border-color: rgba(204, 129, 255, .47); }

.benefit-card.deal {
    border-color: rgba(255, 210, 51, .5);
    background: radial-gradient(circle at 100% 0, rgba(255, 205, 43, .12), transparent 34%), radial-gradient(circle at 8% 100%, rgba(147, 48, 224, .18), transparent 38%), linear-gradient(155deg, #19171d, #0d0e12);
}

.benefit-card .package-visual { flex: 0 0 auto; height: 168px; margin-bottom: 22px; }

.plan-label {
    color: #ff6878;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.benefit-card h2 {
    min-height: 62px;
    margin: 12px 0 4px;
    color: #e1b8ff;
    font-size: clamp(32px, 3vw, 43px);
    line-height: 1;
    letter-spacing: -.04em;
    text-shadow: 0 0 10px rgba(174, 84, 255, .27);
}

.benefit-regular-price {
    display: block;
    min-height: 17px;
    color: #d7bd72;
    font-size: 12px;
    font-weight: 850;
    text-decoration: line-through;
}

.benefit-regular-price.is-placeholder { visibility: hidden; }

.benefit-card .price {
    display: flex;
    min-height: 39px;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin: 8px 0 2px;
    color: #bdb8c4;
    font-size: 12px;
    font-weight: 750;
}

.benefit-card .price strong { color: #fff; font-size: 25px; }

.benefit-card ul {
    display: grid;
    flex: 1;
    align-content: start;
    gap: 11px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 24px;
    color: #c9c6cf;
    font-size: 14px;
    line-height: 1.58;
}

.benefit-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d597ff;
    font-weight: 950;
}

.benefit-card .buy {
    display: flex;
    width: 100%;
    height: 49px;
    min-height: 49px;
    max-height: 49px;
    flex: 0 0 49px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 15px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #9140df, #4d0f8f);
    box-shadow: 0 12px 28px rgba(88, 21, 154, .28);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.benefit-card .buy:hover { background: linear-gradient(135deg, #9c4bea, #6220ad); }

.benefit-notes,
.stack-note {
    border: 1px solid rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .035);
}

.benefit-notes {
    margin-top: 25px;
    padding: 28px;
    border-radius: 16px;
}

.benefit-notes h2 { margin: 0 0 17px; font-size: 24px; }

.benefit-notes ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 32px;
    margin: 0;
    padding-left: 20px;
}

.benefit-notes li,
.stack-note {
    color: #c0c2ca;
    font-size: 13px;
    line-height: 1.68;
}

.stack-note {
    margin: 16px 0 0;
    padding: 19px 21px;
    border-radius: 13px;
}

.stack-note strong,
.benefit-notes strong { color: #fff; }

.benefits-footer {
    padding: 31px 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #a4a6af;
    font-size: 11px;
    line-height: 1.75;
    text-align: center;
}

.benefits-footer a { color: #dedfe4; }

/* Primäre Checkout Aktion im VIP Warenkorb */
.vip-benefits-page .cart-drawer-root #tebex-checkout {
    min-height: 58px;
    border: 1px solid rgba(236, 210, 255, .7);
    background: linear-gradient(135deg, #bd63ff 0%, #842ee0 48%, #54109b 100%) !important;
    box-shadow: 0 14px 34px rgba(145, 49, 225, .42), 0 0 22px rgba(184, 86, 255, .28) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .015em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .38);
}

.vip-benefits-page .cart-drawer-root #tebex-checkout:hover {
    background: linear-gradient(135deg, #cc7aff 0%, #9945ec 48%, #6518ae 100%) !important;
    box-shadow: 0 16px 38px rgba(155, 58, 232, .5), 0 0 28px rgba(195, 109, 255, .35) !important;
    transform: translateY(-1px);
}

@media (max-width: 1060px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-card h2 { min-height: 0; }
    .benefit-regular-price.is-placeholder { display: none; }
}

@media (max-width: 700px) {
    .benefits { width: calc(100% - 24px); padding: 48px 0 76px; }
    .benefits-head { text-align: left; }
    .benefits-head h1 { font-size: 48px; }
    .benefits-head p { font-size: 14px; }
    .benefit-card { padding: 24px 20px; }
    .benefit-notes { padding: 22px; }
    .benefit-notes ul { grid-template-columns: 1fr; }
}

/* VIP Vergleich besser lesbar */
.benefit-card {
    background: radial-gradient(circle at 100% 0, rgba(146, 49, 223, .18), transparent 38%), linear-gradient(150deg, #191721, #101116);
}

.benefit-card.plus {
    border-color: rgba(204, 129, 255, .56);
    background: radial-gradient(circle at 100% 0, rgba(184, 82, 255, .25), transparent 38%), linear-gradient(150deg, #1d1726, #101116);
}

.benefit-card ul {
    gap: 12px;
}

.benefit-card li {
    padding: 10px 12px 10px 34px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 12px;
    background: rgba(255, 255, 255, .045);
    color: #e2deea;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-card li::before {
    left: 12px;
    top: 10px;
    color: #e3a8ff;
}

.benefit-card.plus li {
    border-color: rgba(211, 142, 255, .14);
    background: rgba(157, 74, 224, .08);
}

.benefit-card.deal li {
    border-color: rgba(255, 215, 74, .14);
    background: rgba(255, 210, 51, .055);
}
