/* =====================================================
   GLOBAL
===================================================== */

html{
    scroll-behavior:smooth;
}

.tnp-subscribe-page{

    background:linear-gradient(
        180deg,
        #fafafa 0%,
        #f4f6fb 100%
    );

    min-height:100vh;

    padding-bottom:100px;

}

.tnp-container{

    max-width:1200px;

    margin:auto;

    padding:0 25px;

}

/* =====================================================
   HERO
===================================================== */

.tnp-subscribe-hero{

    background:
    linear-gradient(
        135deg,
        #111 0%,
        #202020 50%,
        #2d2d2d 100%
    );

    color:#fff;

    text-align:center;

    padding:110px 20px 90px;

    margin-bottom:80px;

}

.tnp-subscribe-badge{

    display:inline-block;

    background:#d60000;

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1.5px;

    margin-bottom:25px;

    text-transform:uppercase;

}

.tnp-subscribe-hero h1{

    font-size:64px;

    font-weight:800;

    margin:0 0 20px;

    line-height:1.1;

}

.tnp-subscribe-hero p{

    max-width:760px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:#ddd;

}

.tnp-subscribe-hero strong{

    color:#fff;

}

/* =====================================================
   PLAN GRID
===================================================== */

.tnp-plan-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:35px;

    align-items:stretch;

}

/* =====================================================
   PLAN CARD
===================================================== */

.tnp-plan-card{

    position:relative;

    background:#fff;

    border-radius:26px;

    padding:45px 35px;

    text-align:center;

    border:2px solid transparent;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

}

.tnp-plan-card:hover{

    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 25px 60px rgba(0,0,0,.16);

}

.tnp-plan-card.popular{

    border-color:#d60000;

    transform:scale(1.05);

}

.tnp-plan-card.popular:hover{

    transform:
        translateY(-12px)
        scale(1.07);

}

.tnp-badge-popular{

    position:absolute;

    top:22px;

    right:-42px;

    background:#d60000;

    color:#fff;

    padding:8px 50px;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);

    letter-spacing:1px;

}

.tnp-plan-card h3{

    margin:20px 0;

    font-size:30px;

    color:#111;

}

.tnp-price{

    margin:20px 0;

    font-size:56px;

    font-weight:800;

    color:#d60000;

}

.tnp-price::before{

    content:"GHS ";

    font-size:22px;

    font-weight:600;

    vertical-align:top;

}

.tnp-plan-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.tnp-plan-card .tnp-btn{

    display:block;

    width:100%;

    padding:17px;

    border-radius:50px;

    text-decoration:none;

    background:#d60000;

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}

.tnp-plan-card .tnp-btn:hover{

    background:#111;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.18);

}

/* =====================================================
   WHY SUBSCRIBE
===================================================== */

.tnp-why-subscribe{

    padding:110px 0;

}

.tnp-section-heading{

    text-align:center;

    margin-bottom:60px;

}

.tnp-section-heading h2{

    font-size:44px;

    margin-bottom:15px;

}

.tnp-section-heading p{

    font-size:19px;

    color:#777;

}

.tnp-features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.tnp-feature-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.35s;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

}

.tnp-feature-card:hover{

    transform:translateY(-10px);

}

.tnp-feature-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#d60000;

    color:#fff;

    font-size:36px;

}

.tnp-feature-card h3{

    margin-bottom:15px;

}

.tnp-feature-card p{

    color:#666;

    line-height:1.8;

}

/* =====================================================
   FAQ
===================================================== */

.tnp-faq{

    padding:110px 0;

}

.tnp-faq-list{

    max-width:900px;

    margin:auto;

}

.tnp-faq details{

    background:#fff;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

}

.tnp-faq summary{

    cursor:pointer;

    padding:26px 32px;

    list-style:none;

    font-size:19px;

    font-weight:700;

}

.tnp-faq summary::-webkit-details-marker{

    display:none;

}

.tnp-faq summary::after{

    content:"+";

    float:right;

    font-size:28px;

    color:#d60000;

}

.tnp-faq details[open] summary::after{

    content:"−";

}

.tnp-faq details p{

    padding:0 32px 28px;

    color:#666;

    line-height:1.9;

}

/* =====================================================
   FINAL CTA
===================================================== */

.tnp-final-cta{

    margin:110px 0 50px;

    padding:90px 40px;

    text-align:center;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #111,
        #222
    );

    color:#fff;

}

.tnp-final-cta h2{

    font-size:50px;

    margin-bottom:20px;

}

.tnp-final-cta p{

    max-width:760px;

    margin:0 auto 45px;

    font-size:21px;

    line-height:1.8;

    color:#ddd;

}

.tnp-final-cta .tnp-btn{

    display:inline-block;

    padding:18px 45px;

    border-radius:50px;

    background:#d60000;

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}

.tnp-final-cta .tnp-btn:hover{

    background:#fff;

    color:#111;

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(255,255,255,.18);

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    .tnp-subscribe-hero{

        padding:80px 20px 60px;

    }

    .tnp-subscribe-hero h1{

        font-size:42px;

    }

    .tnp-subscribe-hero p{

        font-size:18px;

    }

    .tnp-section-heading h2{

        font-size:34px;

    }

    .tnp-final-cta{

        padding:60px 25px;

    }

    .tnp-final-cta h2{

        font-size:36px;

    }

    .tnp-final-cta p{

        font-size:18px;

    }

    .tnp-plan-card.popular{

        transform:none;

    }

}