:root{
    --bp-green:#99C303;
    --bp-dark:#020402;
    --bp-white:#ffffff;
    --bp-muted:#d8d8d8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bp-dark);
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.bp-container{
    width:94%;
    max-width:1350px;
    margin:0 auto;
}

/* HEADER */
.bp-header{
    width:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:999;
    background:transparent;
}

.bp-header-inner{
    width:94%;
    max-width:1350px;
    height:86px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.bp-logo img{
    height:54px;
}

.bp-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.bp-nav a{
    color:#fff;
    font-size:14px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:7px;
    transition:.25s ease;
}

.bp-nav a i{
    color:var(--bp-green);
    font-size:14px;
}

.bp-nav a:hover{
    color:var(--bp-green);
}

.bp-header-btn{
    background:linear-gradient(135deg,var(--bp-green),#7fa300);
    color:#000;
    padding:15px 24px;
    border-radius:7px;
    font-size:14px;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 0 18px rgba(153,195,3,.25);
}

/* HERO */
.bp-hero{
    min-height:100vh;
    position:relative;
    padding:150px 0 55px;
    background:#000;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.bp-hero-bg{
    position:absolute;
    inset:0;
    background:url("../images/hero.jpg") center/cover no-repeat;
    z-index:1;
}

.bp-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.82) 40%,rgba(0,0,0,.45) 100%),
        radial-gradient(circle at 20% 45%,rgba(153,195,3,.12),transparent 34%);
    z-index:2;
}

.bp-hero-content{
    position:relative;
    z-index:3;
}

.bp-offer-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(153,195,3,.35);
    background:rgba(153,195,3,.08);
    margin-bottom:14px;
}

.bp-offer-badge span{
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.bp-tag{
    color:var(--bp-green);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:18px;
}

.bp-hero h1{
    font-size:58px;
    line-height:.95;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:25px;
    max-width:980px;
    color:#fff;
}

.bp-text{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    margin-bottom:32px;
    max-width:980px;
}

.bp-seo-keywords{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

/* BUTTONS */
.bp-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.bp-btn{
    height:56px;
    min-width:240px;
    padding:0 28px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
    transition:.25s ease;
}

.bp-btn-green{
    background:linear-gradient(135deg,var(--bp-green),#7fa600);
    color:#000;
}

.bp-btn-green:hover{
    transform:translateY(-3px);
}

.bp-btn-outline{
    border:1px solid var(--bp-green);
    color:#fff;
    background:rgba(0,0,0,.35);
}

.bp-btn-outline:hover{
    background:rgba(153,195,3,.12);
}

/* MINI FEATURES */
.bp-mini{
    display:flex;
    align-items:center;
    gap:34px;
    color:#fff;
    font-weight:900;
    font-size:14px;
    flex-wrap:wrap;
}

.bp-mini div{
    display:flex;
    align-items:center;
}

.bp-mini i{
    color:var(--bp-green);
    font-size:23px;
    margin-right:8px;
}

/* PHONE */
@media(max-width:768px){

    .bp-hero{
        min-height:auto;
        padding:135px 0 70px;
    }

    .bp-offer-badge{
        margin-bottom:12px;
    }

    .bp-offer-badge span{
        font-size:12px;
    }

    .bp-tag{
        font-size:12px;
        margin-bottom:14px;
    }

    .bp-hero h1{
        font-size:39px;
        line-height:1;
        margin-bottom:20px;
    }

    .bp-text{
        font-size:15px;
        line-height:1.8;
        margin-bottom:24px;
        max-width:100%;
    }

    .bp-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
        margin-bottom:24px;
    }

    .bp-btn{
        width:100%;
        min-width:100%;
        height:54px;
        font-size:14px;
    }

    .bp-mini{
        gap:16px;
        font-size:13px;
    }

    .bp-mini i{
        font-size:19px;
    }

}


/* HERO STATS */
.bp-stats{
    width:100%;
    border:1px solid var(--bp-green);
    border-radius:14px;
    background:rgba(0,0,0,.62);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
}

.bp-stat{
    min-height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    padding:28px 22px;
    border-right:1px solid rgba(153,195,3,.55);
}

.bp-stat:last-child{
    border-right:none;
}

.bp-stat > i{
    color:var(--bp-green);
    font-size:48px;
    width:62px;
    text-align:center;
}

.bp-stat h3{
    color:#fff;
    font-size:31px;
    line-height:1;
    font-weight:900;
    margin-bottom:8px;
}

.bp-stat strong{
    display:block;
    color:var(--bp-green);
    font-size:14px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.bp-stat p{
    color:#fff;
    font-size:14px;
}

/* PHONE HERO */
@media(max-width:768px){

    .bp-hero{
        min-height:auto;
        padding:120px 0 60px;
    }

    .bp-container{
        width:92%;
        margin:auto;
    }

    .bp-hero-content{
        width:100%;
        max-width:100%;
    }

    .bp-offer-badge{
        padding:8px 14px;
        margin-bottom:12px;
    }

    .bp-offer-badge span{
        font-size:11px;
        line-height:1.4;
        text-align:center;
    }

    .bp-tag{
        font-size:11px;
        line-height:1.5;
        margin-bottom:14px;
    }

    .bp-hero h1{
        font-size:34px;
        line-height:1.05;
        margin-bottom:18px;
        max-width:100%;
    }

    .bp-text{
        font-size:15px;
        line-height:1.8;
        margin-bottom:22px;
        max-width:100%;
    }

    .bp-buttons{
        flex-direction:column;
        align-items:stretch;
        gap:14px;
        margin-bottom:22px;
    }

    .bp-btn{
        width:100%;
        min-width:100%;
        height:54px;
        font-size:14px;
    }

    .bp-mini{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
        font-size:12px;
        margin-top:10px;
    }

    .bp-mini span{
        display:flex;
        align-items:center;
    }

    .bp-mini i{
        font-size:17px;
        margin-right:6px;
    }

    /* STATS */

    .bp-stats{
        grid-template-columns:1fr;
        border-radius:12px;
        margin-top:28px;
    }

    .bp-stat{
        width:100%;
        min-height:auto;
        justify-content:flex-start;
        padding:22px 18px;
        border-right:none;
        border-bottom:1px solid rgba(153,195,3,.25);
    }

    .bp-stat:last-child{
        border-bottom:none;
    }

    .bp-stat > i{
        font-size:34px;
        width:42px;
    }

    .bp-stat h3{
        font-size:28px;
    }

    .bp-stat strong{
        font-size:13px;
    }

    .bp-stat p{
        font-size:13px;
    }

}
/* CHANNELS / VOD */
.bp-channels-showcase{
    background:var(--bp-dark);
    padding:110px 0 80px;
    overflow:hidden;
}

.bp-logos-track img{
    height:80px;
    width:auto;
    object-fit:contain;
}

.bp-logos-marquee,
.bp-posters-marquee{
    width:100%;
    overflow:hidden;
}

.bp-logos-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
    animation:bpMarquee 32s linear infinite;
}

.bp-logos-track img{
    height:95px;
    width:auto;
    object-fit:contain;
    filter:brightness(1.1);
}

.bp-vod-content{
    text-align:center;
    margin:95px auto 45px;
}

.bp-vod-content h2{
    color:#fff;
    font-size:32px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:24px;
}

.bp-vod-content h2 span,
.bp-vod-content h2::first-letter{
    color:var(--bp-green);
}

.bp-vod-content p{
    color:#ddd;
    font-size:22px;
}

.bp-posters-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:bpMarqueeReverse 38s linear infinite;
}

.bp-posters-track img{
    width:285px;
    height:420px;
    object-fit:cover;
    border:1px solid rgba(153,195,3,.65);
    border-radius:3px;
    background:#050805;
}

@keyframes bpMarquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

@keyframes bpMarqueeReverse{
    from{transform:translateX(-50%)}
    to{transform:translateX(0)}
}

/* INFO SECTIONS */
.bp-info-sections{
    background:var(--bp-dark);
    padding:70px 0 60px;
}

.bp-info-row{
    width:94%;
    max-width:1350px;
    margin:0 auto 100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.bp-info-row.reverse .bp-info-text{
    order:2;
}

.bp-info-row.reverse .bp-info-image{
    order:1;
}

.bp-info-text span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;
    border-radius:999px;

    background:rgba(153,195,3,.08);
    border:1px solid rgba(153,195,3,.28);

    color:var(--bp-green);

    font-size:13px;
    font-weight:900;
    letter-spacing:.8px;
    text-transform:uppercase;

    margin-bottom:22px;
}

.bp-info-image img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}
.bp-info-text h2,
.bp-info-text h2 a,
.bp-info-text h2 strong,
.bp-info-text a{
    color:#fff !important;
    text-decoration:none;
}

.bp-info-text a:hover{
    color:#99C303 !important;
}
/* PACKAGES */
.bp-packages{
    background:var(--bp-dark);
    padding:80px 0 120px;
}

.bp-section-title{
    text-align:center;
    margin-bottom:60px;
}

.bp-section-title h2{
    color:#fff;
    font-size:42px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:15px;
}

.bp-section-title h2 span{
    color:var(--bp-green);
}

.bp-section-title p{
    color:#d8d8d8;
    font-size:18px;
}

.bp-packages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.bp-package-card{
    position:relative;
    background:#030603;
    border:1px solid rgba(153,195,3,.65);
    border-radius:14px;
    padding:42px 32px 36px;
    text-align:center;
}

.bp-package-card.popular{
    border-color:var(--bp-green);
    box-shadow:0 0 35px rgba(153,195,3,.45);
}

.bp-badge{
    position:absolute;
    top:-17px;
    left:50%;
    transform:translateX(-50%);
    background:var(--bp-green);
    color:#000;
    padding:9px 28px;
    border-radius:6px;
    font-size:14px;
    font-weight:900;
}

.bp-package-card h3{
    color:var(--bp-green);
    font-size:18px;
    margin-bottom:22px;
}

.bp-price{
    color:#fff;
    font-size:42px;
    font-weight:900;
    margin-bottom:8px;
}

.bp-duration{
    color:#ddd;
    font-size:18px;
    margin-bottom:28px;
}

.bp-package-card ul{
    list-style:none;
    text-align:left;
    margin-bottom:30px;
}

.bp-package-card li{
    color:#fff;
    font-size:16px;
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.bp-package-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--bp-green);
    font-weight:900;
    font-size:20px;
}

.bp-package-card .bp-btn{
    width:100%;
    border:1px solid var(--bp-green);
    color:#fff;
    background:transparent;
}

.bp-package-card .bp-btn.active{
    background:var(--bp-green);
    color:#000;
    box-shadow:0 0 25px rgba(153,195,3,.6);
}

/* AWESOME FEATURES */
.bp-awesome-features{
    background:var(--bp-dark);
    padding:80px 0 90px;
    border-bottom:1px solid rgba(153,195,3,.8);
}

.bp-awesome-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:0;
}

.bp-awesome-item{
    text-align:center;
    padding:0 28px;
    border-right:1px solid rgba(255,255,255,.25);
}

.bp-awesome-item:last-child{
    border-right:none;
}

.bp-awesome-item i{
    color:var(--bp-green);
    font-size:50px;
    margin-bottom:22px;
}

.bp-awesome-item h4{
    color:#fff;
    font-size:16px;
    font-weight:900;
    margin-bottom:16px;
}

.bp-awesome-item p{
    color:#ddd;
    font-size:14px;
    line-height:1.45;
}

/* FOOTER */
.bp-footer{
    background:#050806;
    border-top:1px solid #99C303;
    color:#fff;
    padding:38px 0 26px;
}

.bp-footer-wrap{
    width:calc(100% - 80px);
    max-width:1350px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.7fr 1fr 1fr 1.2fr 1.5fr;
    gap:34px;
    align-items:start;
}

.bp-footer-logo{
    width:210px;
    margin-bottom:18px;
}

.bp-footer p{
    color:rgba(255,255,255,.82);
    font-size:14px;
    line-height:1.7;
}

.bp-footer h3{
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    margin-bottom:20px;
    font-weight:900;
}

.bp-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.bp-footer li{
    margin-bottom:13px;
    color:rgba(255,255,255,.85);
    font-size:14px;
}

.bp-footer a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.25s ease;
}

.bp-footer-col a::before{
    content:"› ";
    color:#99C303;
    font-weight:900;
}

.bp-footer a:hover{
    color:#99C303;
}

.bp-footer-contact li{
    display:flex;
    gap:12px;
    align-items:center;
}

.bp-footer-contact i,
.bp-social a i{
    color:#99C303;
}

.bp-social{
    display:flex;
    gap:18px;
    margin-top:18px;
}

.bp-social a{
    width:34px;
    height:34px;
    border:1px solid #99C303;
    border-radius:50%;
    display:grid;
    place-items:center;
}

.bp-social a:hover{
    background:#99C303;
}

.bp-social a:hover i{
    color:#000;
}

.bp-footer-copy{
    margin-top:18px;
    font-size:13px;
}

.bp-payments{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:25px;
}

.bp-payments img{
    max-width:100%;
    width:700px;
    height:auto;
    object-fit:contain;
}

bp-btn-refund/* TABLET */
@media(max-width:1024px){
    .bp-nav{
        gap:18px;
    }

    .bp-nav a{
        font-size:12px;
    }

    .bp-packages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-stat:nth-child(2){
        border-right:none;
    }

    .bp-stat:nth-child(1),
    .bp-stat:nth-child(2){
        border-bottom:1px solid rgba(153,195,3,.55);
    }

    .bp-awesome-grid{
        grid-template-columns:repeat(3,1fr);
        gap:35px 0;
    }

    .bp-info-row{
        gap:45px;
    }

    .bp-info-text h2{
        font-size:42px;
    }
}

/* PHONE */
@media(max-width:768px){
    .bp-header-inner{
        height:auto;
        padding:14px 0;
        flex-direction:column;
        gap:14px;
    }

    .bp-logo img{
        height:42px;
    }

    .bp-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px 16px;
    }

    .bp-nav a{
        font-size:11px;
    }

    .bp-nav a i{
        font-size:12px;
    }

    .bp-header-btn{
        padding:12px 22px;
        font-size:12px;
    }

    .bp-hero{
        padding:220px 20px 50px;
        text-align:center;
    }

    .bp-hero h1{
        font-size:42px;
    }

    .bp-text{
        font-size:16px;
    }

    .bp-buttons{
        flex-direction:column;
        align-items:center;
    }

    .bp-btn{
        width:100%;
        max-width:290px;
    }

    .bp-mini{
        flex-direction:column;
        gap:14px;
    }

    .bp-stats{
        grid-template-columns:1fr;
    }

    .bp-stat{
        border-right:none !important;
        border-bottom:1px solid rgba(153,195,3,.55);
        justify-content:flex-start;
        text-align:left;
        padding:24px 30px;
    }

    .bp-stat:last-child{
        border-bottom:none;
    }

    .bp-logos-track{
        gap:45px;
    }

    .bp-vod-content h2{
        font-size:26px;
    }

    .bp-vod-content p{
        font-size:17px;
        padding:0 20px;
    }

    .bp-posters-track img{
        width:220px;
        height:330px;
    }

    .bp-info-row,
    .bp-info-row.reverse{
        grid-template-columns:1fr;
        gap:30px;
        margin-bottom:70px;
    }

    .bp-info-row.reverse .bp-info-text,
    .bp-info-row.reverse .bp-info-image{
        order:initial;
    }

    .bp-info-text h2{
        font-size:34px;
    }

    .bp-info-text p{
        font-size:17px;
    }

    .bp-packages-grid{
        grid-template-columns:1fr;
    }

    .bp-section-title h2{
        font-size:32px;
    }

    .bp-awesome-grid{
        grid-template-columns:1fr;
    }

    .bp-awesome-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.2);
        padding:28px 15px;
    }

    .bp-awesome-item:last-child{
        border-bottom:none;
    }

    .bp-footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}

/* ================= PACKAGES PAGE ================= */

.bp-packages-page{
    position:relative;
    padding:170px 0 120px;
    overflow:hidden;
    background:#020402;
}

.bp-packages-page-bg{
    position:absolute;
    inset:0;
    background:url("../images/packages-bg.jpg") center/cover no-repeat;
    opacity:.15;
}

.bp-packages-page-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.85),rgba(0,0,0,.96));
}

.bp-packages-page-content{
    position:relative;
    z-index:2;
}

.bp-packages-hero{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.bp-packages-hero span{
    color:#99C303;
    font-size:14px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-packages-hero h1{
    color:#fff;
    font-size:62px;
    font-weight:900;
    margin:18px 0 22px;
    text-transform:uppercase;
}

.bp-packages-hero h1 strong{
    color:#99C303;
}

.bp-packages-hero p{
    color:#d8d8d8;
    font-size:20px;
    line-height:1.7;
}

/* GRID */
.bp-packages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */
.bp-package-card{
    position:relative;
    background:#050805;
    border:1px solid rgba(153,195,3,.35);
    border-radius:16px;
    padding:42px 32px;
    transition:.3s ease;
}

.bp-package-card:hover{
    transform:translateY(-8px);
    border-color:#99C303;
}

.bp-package-popular{
    border-color:#99C303;
    box-shadow:0 0 35px rgba(153,195,3,.25);
}

.bp-badge{
    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
    background:#99C303;
    color:#000;
    font-size:13px;
    font-weight:900;
    padding:8px 22px;
    border-radius:30px;
    white-space:nowrap;
}

.bp-package-card h3{
    color:#99C303;
    text-align:center;
    font-size:20px;
    margin-bottom:25px;
}

.bp-price{
    text-align:center;
    font-size:52px;
    font-weight:900;
    color:#fff;
}

.bp-duration{
    text-align:center;
    color:#bbb;
    margin:10px 0 30px;
}

/* LIST */
.bp-package-card ul{
    list-style:none;
    margin-bottom:35px;
}

.bp-package-card li{
    position:relative;
    padding-left:30px;
    margin-bottom:16px;
    color:#fff;
    font-size:15px;
}

.bp-package-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#99C303;
    font-weight:900;
    font-size:18px;
}

/* BUTTON */
.bp-package-btn{
    width:100%;
    height:52px;
    border:1px solid #99C303;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:900;
    transition:.25s;
}

.bp-package-btn:hover{
    background:#99C303;
    color:#000;
}

.bp-package-btn-active{
    background:#99C303;
    color:#000;
}

/* ================= PAYMENT SECURITY ================= */

.bp-payment-security{
    background:#020402;
    padding:0 0 110px;
}

.bp-security-box{
    border:1px solid rgba(153,195,3,.5);
    border-radius:18px;
    background:linear-gradient(135deg,rgba(153,195,3,.08),rgba(0,0,0,.75));
    padding:42px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:35px;
    align-items:center;
}

.bp-security-tag{
    color:#99C303;
    font-size:13px;
    font-weight:900;
}

.bp-security-content h2{
    color:#fff;
    font-size:34px;
    margin:14px 0 16px;
}

.bp-security-content p{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.6;
    max-width:620px;
}

.bp-security-link{
    margin-top:22px;
    display:inline-flex;
    color:#99C303;
    font-weight:900;
}

.bp-security-icons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.bp-security-icons div{
    min-height:92px;
    border:1px solid rgba(153,195,3,.35);
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:rgba(0,0,0,.35);
}

.bp-security-icons i{
    color:#99C303;
    font-size:34px;
}

.bp-security-icons span{
    color:#fff;
    font-size:14px;
    font-weight:900;
}

/* ================= PACKAGES RESPONSIVE ================= */

@media(max-width:1024px){
    .bp-packages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-security-box{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .bp-packages-page{
        padding:190px 0 70px;
    }

    .bp-packages-hero{
        margin-bottom:45px;
        padding:0 16px;
    }

    .bp-packages-hero h1{
        font-size:38px;
    }

    .bp-packages-hero p{
        font-size:16px;
    }

    .bp-packages-grid{
        grid-template-columns:1fr;
    }

    .bp-package-card{
        padding:36px 24px;
    }

    .bp-price{
        font-size:42px;
    }

    .bp-payment-security{
        padding:0 0 70px;
    }

    .bp-security-box{
        padding:28px 18px;
        text-align:center;
    }

    .bp-security-content h2{
        font-size:27px;
    }

    .bp-security-content p{
        font-size:15px;
    }

    .bp-security-icons{
        grid-template-columns:1fr;
    }
}

/* ================= CONTACT PAGE ================= */

.bp-contact-page{
    position:relative;
    padding:170px 0 90px;
    background:#020402;
    overflow:hidden;
}

.bp-contact-bg{
    position:absolute;
    inset:0;
    background:url("../images/contact-bg.jpg") center/cover no-repeat;
    opacity:.12;
}

.bp-contact-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(180deg,rgba(0,0,0,.88),rgba(2,4,2,.97)),
    radial-gradient(circle at 20% 25%,rgba(153,195,3,.12),transparent 30%);
}

.bp-contact-content{
    position:relative;
    z-index:2;
}

/* HERO */
.bp-contact-hero{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.bp-contact-hero span{
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-contact-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:900;
    margin:18px 0 18px;
    text-transform:uppercase;
}

.bp-contact-hero h1 strong{
    color:#99C303;
}

.bp-contact-hero p{
    color:#d8d8d8;
    font-size:19px;
    line-height:1.7;
}

/* GRID */
.bp-contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.2fr;
    gap:30px;
    align-items:start;
}

/* INFO SIDE */
.bp-contact-info{
    display:grid;
    gap:18px;
}

.bp-contact-card{
    background:rgba(0,0,0,.45);
    border:1px solid rgba(153,195,3,.25);
    border-radius:16px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.25s ease;
}

.bp-contact-card:hover{
    border-color:#99C303;
    transform:translateY(-4px);
}

.bp-contact-card i{
    width:58px;
    height:58px;
    border-radius:14px;
    background:rgba(153,195,3,.12);
    color:#99C303;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.bp-contact-card h3{
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
}

.bp-contact-card p{
    color:#d8d8d8;
    font-size:14px;
    line-height:1.6;
}

/* FORM */
.bp-contact-form-box{
    background:rgba(0,0,0,.55);
    border:1px solid rgba(153,195,3,.25);
    border-radius:18px;
    padding:34px;
}

.bp-contact-form-box h2{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.bp-contact-form{
    display:grid;
    gap:18px;
}

.bp-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.bp-contact-form input,
.bp-contact-form textarea{
    width:100%;
    background:#050805;
    border:1px solid rgba(153,195,3,.20);
    border-radius:10px;
    padding:16px 18px;
    color:#fff;
    font-size:14px;
    outline:none;
}

.bp-contact-form input:focus,
.bp-contact-form textarea:focus{
    border-color:#99C303;
}

.bp-contact-form textarea{
    resize:none;
}

.bp-contact-form button{
    width:100%;
    height:54px;
    border:0;
    border-radius:10px;
    background:linear-gradient(135deg,#99C303,#7ea300);
    color:#000;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    transition:.25s ease;
}

.bp-contact-form button:hover{
    opacity:.92;
}


/* PHONE */
@media(max-width:768px){

    .bp-contact-page{
        padding:190px 0 70px;
    }

    .bp-contact-hero{
        margin-bottom:40px;
        padding:0 14px;
    }

    .bp-contact-hero h1{
        font-size:38px;
    }

    .bp-contact-hero p{
        font-size:16px;
    }

    .bp-contact-grid{
        grid-template-columns:1fr;
    }

    .bp-contact-card{
        padding:20px;
        align-items:flex-start;
    }

    .bp-contact-card i{
        width:50px;
        height:50px;
        font-size:21px;
    }

    .bp-contact-form-box{
        padding:24px 18px;
    }

    .bp-contact-form-box h2{
        font-size:24px;
    }

    .bp-form-row{
        grid-template-columns:1fr;
    }
}

/* ================= CHANNELS PAGE ================= */

.bp-channels-page{
    background:#020402;
    position:relative;
    z-index:1;
    padding:0 0 100px;
    overflow:hidden;
}

.bp-force-space{
    width:100%;
    height:170px;
    display:block;
}

/* HERO */

.bp-channels-hero{
    max-width:950px;
    margin:0 auto 70px;
    text-align:center;
}

.bp-channels-hero span{
    display:inline-block;
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.bp-channels-hero h1{
    color:#fff;
    font-size:64px;
    font-weight:900;
    line-height:1.05;
    text-transform:uppercase;
    margin-bottom:22px;
}

.bp-channels-hero h1 strong{
    color:#99C303;
    display:block;
}

.bp-channels-hero p{
    color:#d7d7d7;
    font-size:19px;
    line-height:1.8;
    max-width:900px;
    margin:auto;
}

/* GRID */

.bp-channel-cats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD */

.bp-channel-card{
    background:#050805;
    border:1px solid rgba(153,195,3,.18);
    border-radius:18px;
    padding:34px 24px;
    text-align:center;
    transition:.3s ease;
}

.bp-channel-card:hover{
    transform:translateY(-7px);
    border-color:#99C303;
    box-shadow:0 0 30px rgba(153,195,3,.12);
}

/* ICON */

.bp-channel-card i{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(153,195,3,.10);
    color:#99C303;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    font-size:30px;
}

/* TEXT */

.bp-channel-card h3{
    color:#fff;
    font-size:21px;
    font-weight:800;
    margin-bottom:14px;
}

.bp-channel-card p{
    color:#cfcfcf;
    font-size:14px;
    line-height:1.8;
}

/* STATS */

.bp-channel-stats{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#050805;
    border:1px solid rgba(153,195,3,.2);
    border-radius:18px;
    overflow:hidden;
}

.bp-channel-stats div{
    padding:34px 18px;
    text-align:center;
    border-right:1px solid rgba(153,195,3,.18);
}

.bp-channel-stats div:last-child{
    border-right:none;
}

.bp-channel-stats h3{
    color:#99C303;
    font-size:32px;
    font-weight:900;
    margin-bottom:10px;
}

.bp-channel-stats p{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

/* CTA */

.bp-channel-cta{
    margin-top:60px;
    padding:55px 30px;
    border-radius:22px;
    text-align:center;
    border:1px solid rgba(153,195,3,.2);
    background:linear-gradient(
        135deg,
        rgba(153,195,3,.08),
        rgba(0,0,0,.9)
    );
}

.bp-channel-cta h2{
    color:#fff;
    font-size:40px;
    font-weight:900;
    margin-bottom:16px;
}

.bp-channel-cta p{
    color:#d6d6d6;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.bp-channel-cta a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 34px;
    border-radius:10px;
    background:#99C303;
    color:#000;
    font-weight:900;
    font-size:15px;
    transition:.25s ease;
}

.bp-channel-cta a:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(153,195,3,.25);
}

/* ================= TABLET ================= */

@media(max-width:1024px){

    .bp-channel-cats{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-channel-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-channel-stats div:nth-child(2){
        border-right:none;
    }

    .bp-channel-stats div:nth-child(1),
    .bp-channel-stats div:nth-child(2){
        border-bottom:1px solid rgba(153,195,3,.18);
    }

}

/* ================= PHONE ================= */

@media(max-width:768px){

    .bp-force-space{
        height:130px;
    }

    .bp-channels-page{
        padding-bottom:70px;
    }

    .bp-channels-hero{
        margin-bottom:45px;
        padding:0 14px;
    }

    .bp-channels-hero h1{
        font-size:40px;
    }

    .bp-channels-hero p{
        font-size:16px;
    }

    .bp-channel-cats{
        grid-template-columns:1fr;
    }

    .bp-channel-card{
        padding:30px 22px;
    }

    .bp-channel-stats{
        grid-template-columns:1fr;
    }

    .bp-channel-stats div{
        border-right:none !important;
        border-bottom:1px solid rgba(153,195,3,.18);
    }

    .bp-channel-stats div:last-child{
        border-bottom:none;
    }

    .bp-channel-cta{
        padding:42px 22px;
    }

    .bp-channel-cta h2{
        font-size:30px;
    }

    .bp-channel-cta p{
        font-size:15px;
    }

}
/* STATS */
.bp-channel-stats{
    margin-top:45px;
    border:1px solid rgba(153,195,3,.45);
    border-radius:16px;
    background:rgba(0,0,0,.55);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
}

.bp-channel-stats div{
    text-align:center;
    padding:28px 18px;
    border-right:1px solid rgba(153,195,3,.35);
}

.bp-channel-stats div:last-child{
    border-right:none;
}

.bp-channel-stats h3{
    color:#99C303;
    font-size:30px;
    font-weight:900;
    margin-bottom:8px;
}

.bp-channel-stats p{
    color:#fff;
    font-size:14px;
    font-weight:800;
}

/* CTA */
.bp-channel-cta{
    margin-top:55px;
    text-align:center;
    border:1px solid rgba(153,195,3,.35);
    border-radius:18px;
    background:linear-gradient(135deg,rgba(153,195,3,.09),rgba(0,0,0,.7));
    padding:45px 25px;
}

.bp-channel-cta h2{
    color:#fff;
    font-size:36px;
    font-weight:900;
    margin-bottom:12px;
}

.bp-channel-cta p{
    color:#d8d8d8;
    font-size:17px;
    margin-bottom:26px;
}

.bp-channel-cta a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    padding:0 28px;
    border-radius:8px;
    background:#99C303;
    color:#000;
    font-weight:900;
}

/* PHONE */
@media(max-width:1024px){
    .bp-channel-cats{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-channel-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-channel-stats div:nth-child(2){
        border-right:none;
    }

    .bp-channel-stats div:nth-child(1),
    .bp-channel-stats div:nth-child(2){
        border-bottom:1px solid rgba(153,195,3,.35);
    }
}

@media(max-width:768px){
    .bp-channels-page{
        padding:190px 0 70px;
    }

    .bp-channels-hero{
        padding:0 14px;
        margin-bottom:40px;
    }

    .bp-channels-hero h1{
        font-size:38px;
    }

    .bp-channels-hero p{
        font-size:16px;
    }

    .bp-channel-cats{
        grid-template-columns:1fr;
    }

    .bp-channel-stats{
        grid-template-columns:1fr;
    }

    .bp-channel-stats div{
        border-right:none !important;
        border-bottom:1px solid rgba(153,195,3,.35);
    }

    .bp-channel-stats div:last-child{
        border-bottom:none;
    }

    .bp-channel-cta h2{
        font-size:28px;
    }
}

.bp-faq-page{
    width:100%;
    background:#020402;
    padding:180px 0 90px;
}

.bp-faq-top{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.bp-faq-subtitle{
    display:inline-block;
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:18px;
}

.bp-faq-top h1{
    color:#fff;
    font-size:60px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:20px;
    text-transform:uppercase;
}

.bp-faq-top h1 span{
    color:#99C303;
}

.bp-faq-top p{
    color:#d6d6d6;
    font-size:18px;
    line-height:1.8;
}

.bp-faq-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.bp-faq-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.bp-faq-box{
    background:#050805;
    border:1px solid rgba(153,195,3,.20);
    border-radius:16px;
    overflow:hidden;
}

.bp-faq-box summary{
    list-style:none;
    position:relative;
    cursor:pointer;
    color:#fff;
    font-size:20px;
    line-height:1.5;
    font-weight:800;
    padding:24px 70px 24px 24px;
}

.bp-faq-box summary::-webkit-details-marker{
    display:none;
}

.bp-faq-box summary::after{
    content:"+";
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    color:#99C303;
    font-size:34px;
    font-weight:900;
}

.bp-faq-box[open]{
    border-color:#99C303;
}

.bp-faq-box[open] summary{
    color:#99C303;
}

.bp-faq-box[open] summary::after{
    content:"−";
}

.bp-faq-answer{
    color:#d8d8d8;
    font-size:16px;
    line-height:1.8;
    padding:0 24px 24px;
}

@media(max-width:768px){

    .bp-faq-page{
        padding:260px 0 70px;
    }

    .bp-faq-top{
        width:92%;
        margin:0 auto 35px;
    }

    .bp-faq-top h1{
        font-size:34px;
        line-height:1.15;
    }

    .bp-faq-top p{
        font-size:15px;
        line-height:1.7;
    }

    .bp-faq-wrapper{
        grid-template-columns:1fr;
        gap:16px;
        width:92%;
        margin:auto;
    }

    .bp-faq-box summary{
        font-size:16px;
        line-height:1.5;
        padding:18px 50px 18px 16px;
    }

    .bp-faq-box summary::after{
        right:16px;
        font-size:28px;
    }

    .bp-faq-answer{
        font-size:14px;
        line-height:1.8;
        padding:0 16px 18px;
    }

}

/* ================= INSTALLATION PAGE ================= */

.bp-install-page{
    background:#020402;
    padding:170px 0 100px;
}

.bp-install-hero{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.bp-install-hero span{
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-install-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:900;
    text-transform:uppercase;
    margin:18px 0;
}

.bp-install-hero h1 strong{
    color:#99C303;
}

.bp-install-hero p{
    color:#d8d8d8;
    font-size:19px;
    line-height:1.7;
}

/* GRID */
.bp-install-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */
.bp-install-card{
    min-height:260px;
    background:#050805;
    border:1px solid rgba(153,195,3,.25);
    border-radius:18px;
    padding:38px 28px;
    text-align:center;
    color:#fff;
    transition:.25s ease;
}

.bp-install-card:hover{
    transform:translateY(-7px);
    border-color:#99C303;
    box-shadow:0 0 28px rgba(153,195,3,.14);
}

.bp-install-card i{
    width:82px;
    height:82px;
    border-radius:22px;
    background:rgba(153,195,3,.12);
    color:#99C303;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
    font-size:42px;
}

.bp-install-card h3{
    color:#fff;
    font-size:24px;
    font-weight:900;
    margin-bottom:14px;
}

.bp-install-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.7;
}

/* TABLET */
@media(max-width:1024px){
    .bp-install-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* PHONE */
@media(max-width:768px){

    .bp-install-page{
        padding:360px 0 70px !important;
    }

    .bp-install-hero{
        padding:0 14px;
        margin-bottom:40px;
        text-align:center;
    }

    .bp-install-hero h1{
        font-size:34px;
        line-height:1.15;
    }

    .bp-install-hero p{
        font-size:15px;
        line-height:1.7;
    }

    .bp-install-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:18px;
    }

    .bp-install-card{
        min-height:auto;
        padding:28px 18px;
        text-align:center;
    }

    .bp-install-card i{
        width:70px;
        height:70px;
        font-size:34px;
        margin:0 auto 18px;
        color:#99C303;
    }

    .bp-install-card h3{
        font-size:21px;
        color:#fff;
    }

    .bp-install-card p{
        font-size:15px;
        color:#d8d8d8;
    }
}

/* ================= BLOG PAGE ULTRA PREMIUM ================= */

.bp-blog-page{
    position:relative;
    background:
    radial-gradient(circle at top left, rgba(153,195,3,.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(153,195,3,.10), transparent 22%),
    linear-gradient(180deg,#010201 0%,#020402 45%,#050805 100%);
    padding:180px 0 110px;
    overflow:hidden;
}

/* BIG GLOW */
.bp-blog-page::before{
    content:"";
    position:absolute;
    top:-260px;
    left:-180px;
    width:650px;
    height:650px;
    background:rgba(153,195,3,.13);
    border-radius:50%;
    filter:blur(150px);
    pointer-events:none;
}

.bp-blog-page::after{
    content:"";
    position:absolute;
    right:-220px;
    bottom:-240px;
    width:700px;
    height:700px;
    background:rgba(153,195,3,.08);
    border-radius:50%;
    filter:blur(170px);
    pointer-events:none;
}

/* CONTAINER */
.bp-blog-page .bp-container{
    position:relative;
    z-index:2;
}

/* HERO */
.bp-blog-hero{
    text-align:center;
    max-width:980px;
    margin:0 auto 85px;
}

.bp-blog-hero span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(153,195,3,.12);
    border:1px solid rgba(153,195,3,.25);
    color:#99C303;
    font-size:12px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:26px;
}

.bp-blog-hero h1{
    color:#fff;
    font-size:78px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.bp-blog-hero h1 strong{
    color:#99C303;
    text-shadow:
    0 0 12px rgba(153,195,3,.25),
    0 0 40px rgba(153,195,3,.18);
}

.bp-blog-hero p{
    color:#d7d7d7;
    font-size:21px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
}

/* GRID */
.bp-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:34px;
}

/* CARD */
.bp-blog-card{
    position:relative;
    background:
    linear-gradient(180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01));
    border:1px solid rgba(153,195,3,.14);
    border-radius:28px;
    overflow:hidden;
    backdrop-filter:blur(18px);
    transition:.45s ease;
}

.bp-blog-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(135deg,
    rgba(153,195,3,.06),
    transparent 30%);
    opacity:0;
    transition:.4s ease;
}

.bp-blog-card:hover::before{
    opacity:1;
}

.bp-blog-card:hover{
    transform:translateY(-12px);
    border-color:#99C303;
    box-shadow:
    0 0 30px rgba(153,195,3,.10),
    0 0 90px rgba(153,195,3,.08);
}

/* IMAGE */
.bp-blog-img{
    position:relative;
    display:block;
    width:100%;
    height:270px;
    overflow:hidden;
    background:#071007;
}

.bp-blog-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(to top,
    rgba(0,0,0,.70),
    rgba(0,0,0,.08));
}

.bp-blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.bp-blog-card:hover .bp-blog-img img{
    transform:scale(1.08);
}

/* CONTENT */
.bp-blog-content{
    padding:34px 30px 30px;
}

.bp-blog-content h2{
    margin-bottom:18px;
}

.bp-blog-content h2 a{
    color:#fff;
    font-size:30px;
    line-height:1.28;
    font-weight:900;
    text-decoration:none;
    transition:.25s ease;
    letter-spacing:-.5px;
}

.bp-blog-content h2 a:hover{
    color:#99C303;
}

.bp-blog-content p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.95;
    margin-bottom:26px;
}

/* BUTTON */
.bp-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#99C303;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
    transition:.3s ease;
}

.bp-blog-btn:hover{
    gap:16px;
    color:#c8ff2f;
}

/* TABLET */
@media(max-width:1024px){

    .bp-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bp-blog-hero h1{
        font-size:58px;
    }

}

/* PHONE */
@media(max-width:768px){

    .bp-blog-page{
        padding:360px 0 70px;
    }

    .bp-blog-hero{
        padding:0 14px;
        margin-bottom:45px;
    }

    .bp-blog-hero span{
        height:34px;
        font-size:11px;
    }

    .bp-blog-hero h1{
        font-size:42px;
        line-height:1.08;
    }

    .bp-blog-hero p{
        font-size:16px;
        line-height:1.8;
    }

    .bp-blog-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .bp-blog-img{
        height:230px;
    }

    .bp-blog-content{
        padding:24px;
    }

    .bp-blog-content h2 a{
        font-size:25px;
    }

}

/* ================= REFUND PAGE ================= */

.bp-refund-page{
    background:#020402;
    padding:170px 0 100px;
}

.bp-refund-hero{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.bp-refund-hero span{
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-refund-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:900;
    text-transform:uppercase;
    margin:18px 0;
}

.bp-refund-hero h1 strong{
    color:#99C303;
}

.bp-refund-hero p{
    color:#d8d8d8;
    font-size:19px;
    line-height:1.7;
}

/* BOXES */
.bp-refund-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.bp-refund-box{
    background:#050805;
    border:1px solid rgba(153,195,3,.22);
    border-radius:18px;
    padding:34px;
}

.bp-refund-box h2{
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.bp-refund-box p{
    color:#d8d8d8;
    font-size:16px;
    line-height:1.8;
    margin-bottom:18px;
}

.bp-refund-box ul{
    padding-left:20px;
}

.bp-refund-box ul li{
    color:#d8d8d8;
    margin-bottom:14px;
    line-height:1.8;
}

/* CTA */
.bp-refund-cta{
    margin-top:55px;
    text-align:center;
    padding:55px 30px;
    border-radius:22px;
    background:linear-gradient(135deg,rgba(153,195,3,.10),rgba(0,0,0,.75));
    border:1px solid rgba(153,195,3,.25);
}

.bp-refund-cta h3{
    color:#fff;
    font-size:40px;
    margin-bottom:16px;
}

.bp-refund-cta p{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.8;
    margin-bottom:26px;
}

.bp-refund-cta a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 34px;
    border-radius:10px;
    background:#99C303;
    color:#000;
    font-weight:900;
}

/* TABLET */
@media(max-width:1024px){

    .bp-refund-wrapper{
        grid-template-columns:1fr;
    }

}

/* PHONE */
@media(max-width:768px){

    .bp-refund-page{
        padding:360px 0 70px;
    }

    .bp-refund-hero{
        padding:0 14px;
        margin-bottom:40px;
    }

    .bp-refund-hero h1{
        font-size:38px;
    }

    .bp-refund-hero p{
        font-size:16px;
    }

    .bp-refund-box{
        padding:26px 20px;
    }

    .bp-refund-box h2{
        font-size:24px;
    }

    .bp-refund-cta{
        padding:40px 20px;
    }

    .bp-refund-cta h3{
        font-size:30px;
    }

}

/* ================= FREE TRIAL PAGE ================= */

.bp-trial-page{
    background:#020402;
    padding:170px 0 100px;
}

.bp-trial-hero{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.bp-trial-hero span,
.bp-trial-box span{
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-trial-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:900;
    text-transform:uppercase;
    margin:18px 0;
}

.bp-trial-hero h1 strong{
    color:#99C303;
}

.bp-trial-hero p{
    color:#d8d8d8;
    font-size:19px;
    line-height:1.7;
}

.bp-trial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.bp-trial-card{
    background:#050805;
    border:1px solid rgba(153,195,3,.25);
    border-radius:18px;
    padding:36px 28px;
    text-align:center;
}

.bp-trial-card i{
    width:72px;
    height:72px;
    border-radius:18px;
    background:rgba(153,195,3,.12);
    color:#99C303;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    font-size:34px;
}

.bp-trial-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.bp-trial-card p{
    color:#d8d8d8;
    font-size:15px;
    line-height:1.7;
}

.bp-trial-box{
    margin-top:55px;
    border:1px solid rgba(153,195,3,.35);
    border-radius:22px;
    background:linear-gradient(135deg,rgba(153,195,3,.10),rgba(0,0,0,.78));
    padding:45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.bp-trial-box h2{
    color:#fff;
    font-size:38px;
    margin:14px 0;
}

.bp-trial-box p{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.7;
    max-width:720px;
}

.bp-trial-btn{
    height:56px;
    padding:0 28px;
    border-radius:10px;
    background:#99C303;
    color:#000;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

/* TABLET */
@media(max-width:1024px){
    .bp-trial-grid{
        grid-template-columns:1fr 1fr;
    }

    .bp-trial-box{
        flex-direction:column;
        text-align:center;
    }
}

/* PHONE */
@media(max-width:768px){
    .bp-trial-page{
        padding:360px 0 70px;
    }

    .bp-trial-hero{
        padding:0 14px;
        margin-bottom:40px;
    }

    .bp-trial-hero h1{
        font-size:36px;
    }

    .bp-trial-hero p{
        font-size:16px;
    }

    .bp-trial-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .bp-trial-card{
        padding:30px 20px;
    }

    .bp-trial-box{
        padding:34px 20px;
    }

    .bp-trial-box h2{
        font-size:28px;
    }

    .bp-trial-btn{
        width:100%;
        justify-content:center;
        text-align:center;
    }
}

/* ================= BLOG SINGLE PAGE ================= */

.bp-blog-single{
    background:#020402;
    padding:170px 0 100px;
}

.bp-article-wrap{
    max-width:1050px;
    margin:0 auto;
}

.bp-article-hero{
    text-align:center;
    margin-bottom:45px;
}

.bp-article-hero span{
    color:#99C303;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bp-article-hero h1{
    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-weight:900;
    margin:18px 0;
    text-transform:uppercase;
}

.bp-article-hero p{
    color:#d8d8d8;
    font-size:19px;
    line-height:1.7;
}

.bp-article-main-img{
    width:100%;
    height:480px;
    object-fit:cover;
    border-radius:22px;
    border:1px solid rgba(153,195,3,.25);
    margin-bottom:50px;
}

.bp-article-content{
    max-width:900px;
    margin:0 auto;
}

.bp-article-content p{
    color:#d8d8d8;
    font-size:18px;
    line-height:1.9;
    margin-bottom:26px;
}

.bp-article-content h2{
    color:#fff;
    font-size:36px;
    margin:48px 0 18px;
}

.bp-article-content ul{
    margin:0 0 30px 22px;
}

.bp-article-content li{
    color:#d8d8d8;
    font-size:17px;
    line-height:1.8;
    margin-bottom:10px;
}

.bp-article-cta{
    margin-top:60px;
    padding:42px 28px;
    border-radius:20px;
    border:1px solid rgba(153,195,3,.35);
    background:linear-gradient(135deg,rgba(153,195,3,.10),rgba(0,0,0,.75));
    text-align:center;
}

.bp-article-cta h3{
    color:#fff;
    font-size:34px;
    margin-bottom:14px;
}

.bp-article-cta p{
    font-size:16px;
    margin-bottom:24px;
}

.bp-article-cta a{
    display:inline-flex;
    height:54px;
    padding:0 30px;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#99C303;
    color:#000;
    font-weight:900;
}

/* PHONE */
@media(max-width:768px){
    .bp-blog-single{
        padding:360px 0 70px;
    }

    .bp-article-hero h1{
        font-size:34px;
    }

    .bp-article-hero p{
        font-size:16px;
    }

    .bp-article-main-img{
        height:260px;
        border-radius:16px;
    }

    .bp-article-content p{
        font-size:16px;
    }

    .bp-article-content h2{
        font-size:28px;
    }

    .bp-article-cta h3{
        font-size:26px;
    }
}

/* =========================
   404 PAGE
========================= */

.bp-404-page{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.92)),
    url('../images/hero.webp') center center/cover no-repeat;
    padding:120px 20px;
}

.bp-404-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(153,195,3,.18),
    transparent 40%);
}

.bp-404-content{
    position:relative;
    z-index:2;
    width:min(760px,100%);
    text-align:center;
    padding:60px 40px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(10,10,10,.72);
    backdrop-filter:blur(14px);
    border-radius:28px;
    box-shadow:0 0 50px rgba(0,0,0,.45);
}

.bp-404-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:999px;
    background:rgba(153,195,3,.12);
    border:1px solid rgba(153,195,3,.25);
    color:#99C303;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:24px;
}

.bp-404-content h1{
    color:#fff;
    font-size:clamp(3rem,7vw,6rem);
    line-height:1;
    margin-bottom:22px;
    font-weight:900;
}

.bp-404-content h1 span{
    color:#99C303;
}

.bp-404-content p{
    color:rgba(255,255,255,.72);
    font-size:1.08rem;
    line-height:1.8;
    max-width:620px;
    margin:auto auto 35px;
}

.bp-404-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.bp-404-btn,
.bp-404-btn-outline{
    min-width:190px;
    height:58px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.bp-404-btn{
    background:#99C303;
    color:#000;
}

.bp-404-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(153,195,3,.28);
}

.bp-404-btn-outline{
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    background:rgba(255,255,255,.03);
}

.bp-404-btn-outline:hover{
    border-color:#99C303;
    color:#99C303;
    transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:768px){

    .bp-404-content{
        padding:45px 24px;
        border-radius:22px;
    }

    .bp-404-content h1{
        font-size:3.2rem;
    }

    .bp-404-content p{
        font-size:.98rem;
    }

    .bp-404-btn,
    .bp-404-btn-outline{
        width:100%;
    }

}