/* ============================================================
   BUNDLES PAGE — ALL-IN-ONE PACKAGES
   Inherits global vars & tokens from style.css
   ============================================================ */

/* ---- Hero — matches SoViral style ---- */
#bundles-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem var(--space-md) var(--space-lg);
    overflow: hidden;
}

.bundles-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    background: radial-gradient(ellipse at center, rgba(5, 5, 5, .75) 0%, rgba(5, 5, 5, .45) 55%, transparent 80%);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 32px;
}

.bundles-badge {
    display: inline-block;
    padding: .45rem 1.4rem;
    border-radius: 100px;
    border: 1px solid var(--clr-red);
    background: rgba(232, 16, 46, .1);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clr-red-light);
    margin-bottom: var(--space-sm);
    animation: badgePulse 3s ease-in-out infinite;
}

.bundles-headline {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--clr-text);
    margin-bottom: var(--space-sm);
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.9),
        0 4px 40px rgba(0, 0, 0, 0.7);
}

.bundles-headline em {
    font-style: italic;
    color: var(--clr-red-light);
    text-shadow:
        0 2px 20px rgba(232, 16, 46, 0.5),
        0 4px 40px rgba(232, 16, 46, 0.3);
}

.bundles-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    margin-bottom: var(--space-md);
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 1),
        0 2px 16px rgba(0, 0, 0, .9),
        0 4px 30px rgba(0, 0, 0, .7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bundles-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: nowrap;
}

/* --- Liquid Glass Guarantee Pills (matches SoViral) --- */
#bundles-hero .guarantee-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem .5rem .7rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .02em;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .1) 0%,
            rgba(255, 255, 255, .04) 50%,
            rgba(255, 255, 255, .08) 100%);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, .18),
        inset 0 -1px 0 0 rgba(255, 255, 255, .04),
        0 2px 12px rgba(0, 0, 0, .3),
        0 1px 3px rgba(0, 0, 0, .2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .8);
    transition: background .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

#bundles-hero .guarantee-item:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .14) 0%,
            rgba(255, 255, 255, .07) 50%,
            rgba(255, 255, 255, .12) 100%);
    border-color: rgba(255, 255, 255, .25);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, .25),
        inset 0 -1px 0 0 rgba(255, 255, 255, .06),
        0 4px 20px rgba(0, 0, 0, .35),
        0 0 30px rgba(232, 16, 46, .08);
}

#bundles-hero .check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ---- Two-column pricing grid ---- */
.pricing-grid--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

/* ---- Bundle-specific card content ---- */
.plan-emoji {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    line-height: 1;
}

/* What's Included block */
.bundle-includes {
    margin: 1.25rem 0;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.includes-heading {
    font-family: var(--ff-body);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-dim);
    margin-bottom: .75rem;
}

.includes-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.includes-item:last-child {
    border-bottom: none;
}

.includes-service {
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--clr-text);
}

.includes-price {
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 400;
    color: var(--clr-text-dim);
}

/* Price comparison (crossed-out original) */
.price-comparison {
    margin-bottom: .25rem;
}

.price-separate {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-dim);
    text-decoration: line-through;
    opacity: .6;
}

.price-period-sm {
    font-size: .8rem;
    font-weight: 400;
}

/* Savings badge */
.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: 1rem 0 1.25rem;
    padding: .6rem 1rem;
    border-radius: 10px;
    background: rgba(232, 16, 46, .08);
    border: 1px solid rgba(232, 16, 46, .2);
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-red-light);
    line-height: 1.4;
    text-align: center;
}

.savings-badge--elite {
    background: rgba(232, 16, 46, .12);
    border-color: rgba(232, 16, 46, .35);
}

.savings-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Perfect for text */
.plan-perfect {
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 300;
    color: var(--clr-text-dim);
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    text-align: center;
    font-style: italic;
}

/* ---- What You Get Section ---- */
#what-you-get {
    padding: var(--space-xl) 0;
}

.wyg-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.wyg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .wyg-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.wyg-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border-top: 1px solid var(--clr-border);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .04) 0%,
            rgba(255, 255, 255, .01) 100%);
    text-align: center;
    transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}

.wyg-card:hover {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .07) 0%,
            rgba(255, 255, 255, .02) 100%);
    border-color: rgba(232, 16, 46, .2);
}

.wyg-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
}

.wyg-icon {
    width: 48px;
    height: 48px;
}

.wyg-title {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: .5rem;
}

.wyg-desc {
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 300;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ---- FAQ answer links ---- */
.faq-answer a {
    color: var(--clr-red-light);
    text-decoration: none;
    transition: opacity .25s var(--ease-out);
}

.faq-answer a:hover {
    opacity: .75;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin: .5rem 0;
}

.faq-answer li {
    margin-bottom: .35rem;
    color: var(--clr-text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .pricing-grid--two {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .wyg-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    #bundles-hero {
        padding-top: 6rem;
        padding-bottom: var(--space-md);
        min-height: 60vh;
    }

    .bundles-hero-content {
        padding: var(--space-md) var(--space-sm);
    }

    .bundles-headline {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .bundles-subtitle {
        font-size: .9rem;
    }

    .bundles-guarantees {
        flex-wrap: wrap;
        gap: .35rem;
        justify-content: center;
    }

    #bundles-hero .guarantee-item {
        font-size: .68rem;
        padding: .4rem .7rem .4rem .55rem;
    }

    /* Pricing */
    .pricing-section-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .card-inner {
        padding: var(--space-md) var(--space-sm);
    }

    .card-badge {
        font-size: .58rem;
        padding: .35rem 1.1rem;
    }

    .plan-btn {
        padding: 1rem 1.5rem;
        font-size: .82rem;
    }

    .includes-service {
        font-size: .8rem;
    }

    .includes-price {
        font-size: .72rem;
    }

    .wyg-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 400px) {
    .bundles-headline {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
    }

    #bundles-hero .guarantee-item {
        font-size: .62rem;
        padding: .35rem .6rem .35rem .5rem;
    }
}