/* -- Base ----------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    padding-bottom: 5rem;
}

/* -- Page header ---------------------------------- */
.page-header {
    text-align: center;
    padding: 0rem 1rem 2rem;
}

    .page-header .eyebrow {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: .5rem;
    }

    .page-header h2 {
        font-family: 'Lora', serif;
        font-size: clamp(1.4rem, 4vw, 2rem);
        font-weight: 700;
        color: var(--ink);
        margin: 0 0 .6rem;
        line-height: 1.25;
    }

    .page-header .header-line {
        width: 52px;
        height: 3px;
        background: var(--red);
        border-radius: 2px;
        margin: 0 auto;
    }

/* -- Section headers ------------------------------ */
.section-heading {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .section-heading i {
        color: var(--red);
        font-size: 1rem;
    }

    .section-heading::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* -- Benefit cards -------------------------------- */
.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--red);
        border-radius: 3px 0 0 3px;
        transform: scaleY(0);
        transition: transform var(--transition);
    }

    .benefit-card:hover {
        box-shadow: var(--shadow-md);
        border-color: #fca5a5;
        transform: translateY(-1px);
        color: inherit;
    }

        .benefit-card:hover::before {
            transform: scaleY(1);
        }

    .benefit-card .card-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--red-light);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .benefit-card .card-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .benefit-card .card-icon i {
            font-size: 1.3rem;
            color: var(--red);
        }

    .benefit-card .card-body-inner {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }

    .benefit-card .card-title {
        font-size: .92rem;
        font-weight: 700;
        color: var(--ink);
        margin: 0 0 .2rem;
        line-height: 1.4;
    }

    .benefit-card .card-cta {
        font-size: .76rem;
        font-weight: 600;
        color: var(--red);
        margin: 0;
        display: flex;
        align-items: center;
        gap: .25rem;
    }

    .benefit-card .card-arrow {
        flex-shrink: 0;
        color: var(--border);
        font-size: 1rem;
        transition: color var(--transition), transform var(--transition);
    }

    .benefit-card:hover .card-arrow {
        color: var(--red);
        transform: translateX(3px);
    }

/* -- Disclaimer ----------------------------------- */
.disclaimer-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    padding: .85rem 1.1rem;
    font-size: .82rem;
    color: #92400e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    line-height: 1.55;
}

    .disclaimer-box span{
        text-align: center;
    }

    .disclaimer-box i {
        color: #d97706;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: .05rem;
    }

/* -- Sticky buy button ---------------------------- */
.buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .9rem 1.25rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 1000;
}

.btn-buy {
    width: 100%;
    padding: .85rem;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 4px 14px rgba(220,18,26,.35);
}

    .btn-buy:hover {
        background: var(--red-dark);
        box-shadow: 0 6px 20px rgba(220,18,26,.45);
        transform: translateY(-1px);
    }

    .btn-buy:active {
        transform: translateY(0);
    }

/* -- Modal overrides ------------------------------ */
.modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: none;
}

.modal-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--red-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
}

    .modal-icon-wrap i {
        font-size: 1.6rem;
        color: var(--red);
    }

    .modal-icon-wrap img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

.modal-title {
    font-family: 'Lora', serif;
    font-size: 1.05rem !important;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
}

.modal-body {
    font-size: .88rem;
    color: var(--ink-mid);
}

    .modal-body ul {
        padding-left: 1.2rem;
        margin-bottom: 0;
    }

        .modal-body ul li {
            margin-bottom: .55rem;
            line-height: 1.6;
        }

            .modal-body ul li:last-child {
                margin-bottom: 0;
            }

    .modal-body b {
        color: var(--ink);
    }

.modal-stat {
    background: var(--red-light);
    border-radius: var(--radius-sm);
    padding: .7rem 1rem;
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-stat .stat-label {
        font-size: .8rem;
        color: var(--ink-soft);
    }

    .modal-stat .stat-value {
        font-size: 1rem;
        font-weight: 800;
        color: var(--red);
        text-decoration: underline;
    }

.btn-see-more {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--ink-mid);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 99px;
    padding: .35rem 1rem;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}

    .btn-see-more:hover {
        border-color: var(--red);
        color: var(--red);
    }

.exclusion-intro {
    text-indent: 1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ink-mid);
}

/* PDF modal */
.pdf-toolbar {
    margin-bottom: .75rem;
}

    .pdf-toolbar .btn {
        font-size: .8rem;
        font-weight: 600;
        border-radius: 99px;
        padding: .35rem .9rem;
    }

.pdf-viewer {
    width: 100%;
    height: 65vh;
    overflow-y: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #f3f4f6;
}

/* -- Animations ----------------------------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeUp .4s ease both;
}

    .benefit-card:nth-child(1) {
        animation-delay: .05s;
    }

    .benefit-card:nth-child(2) {
        animation-delay: .10s;
    }

    .benefit-card:nth-child(3) {
        animation-delay: .15s;
    }

    .benefit-card:nth-child(4) {
        animation-delay: .20s;
    }

/* -- Responsive ----------------------------------- */
@media (min-width: 768px) {
    .buy-bar {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius) var(--radius) 0 0;
    }
}
