body{
    background:#000;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* BACKGROUND */

.pricing-bg{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,
    rgba(255,215,170,0.12),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(122,179,255,0.14),
    transparent 30%);

    z-index:-2;
}

/* HERO */

.pricing-hero{
    padding:180px 6% 120px;
    position:relative;
}

.pricing-hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.hero-text{
    max-width:650px;
}

.section-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    margin-bottom:24px;
    color:#d4d4d4;
    font-size:14px;
}

.hero-text h1{
    font-size:clamp(30px, 5vw, 65px);
    line-height:1;
    margin-bottom:28px;
    max-width:700px;
}

.hero-text p{
    color:#b5b5b5;
    font-size:1.1rem;
    line-height:1.8;
    max-width:620px;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:26px;
    flex-wrap:wrap;
}

.secondary-link{
    color:#9fc9ff;
    text-decoration:none;
    font-weight:500;
}

.hero-visual{
    flex:1;
    display:flex;
    justify-content:center;
}

.orb-wrapper{
    width:540px;
    max-width:100%;
}

.hero-orb{
    width:130%;
    object-fit:contain;
}

/* SECTION */

.pricing-table-section{
    width:100%;
    max-width:1000px;
    margin:auto;
    padding:40px 6% 120px;
}

.pricing-header{
    text-align:center;
    margin-bottom:60px;
}

.mini-label{
    color:#9fc9ff;
    letter-spacing:2px;
    font-size:12px;
}

.pricing-header h2{
    font-size:clamp(22px, 5vw, 40px);
    margin:18px 0;
}

.pricing-header p{
    max-width:720px;
    margin:auto;
    color:#9b9b9b;
    line-height:1.8;
}

/* ==========================
   CURRENCY TOGGLE
========================== */

.currency-toggle-wrap{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;

    margin-bottom:40px;
}

.currency-label{

    color:#8f8f8f;
    font-size:14px;
    font-weight:500;

    transition:.3s ease;
}

.currency-label.active-currency{

    color:#fff;
}

.currency-toggle{

    width:72px;
    height:38px;

    border:none;
    cursor:pointer;

    border-radius:999px;

    position:relative;

    background:
    linear-gradient(
        135deg,
        #f8d9b1,
        #9fc9ff
    );
}

.toggle-slider{

    position:absolute;

    top:4px;
    left:4px;

    width:30px;
    height:30px;

    border-radius:50%;

    background:#000;

    transition:.35s ease;
}

.currency-toggle.usd .toggle-slider{

    transform:translateX(34px);
}

/* COUNTER */

.count-bar{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:26px;
    color:#8f8f8f;
}

.count-item span{
    color:#fff;
    font-weight:700;
}

/* FILTERS */

.filter-bar{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.filter-btn{
    border:none;
    background:#111;
    color:#9b9b9b;
    padding:12px 18px;
    border-radius:999px;
    cursor:pointer;
    transition:0.3s ease;
    border:1px solid rgba(255,255,255,0.06);
}

.filter-btn.active,
.filter-btn:hover{
    background:linear-gradient(
    135deg,
    #f8d9b1,
    #9fc9ff
    );

    color:#000;
}

/* ROW */

.row{
    margin-bottom:14px;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.06);

    background:
    linear-gradient(
    180deg,
    rgba(20,20,20,0.96),
    rgba(10,10,10,0.96)
    );

    backdrop-filter:blur(18px);
}

.row.hidden{
    display:none;
}

.row-head{
    display:grid;
    grid-template-columns:60px 1fr 30px;
    gap:20px;
    align-items:center;
    padding:28px;
    cursor:pointer;
}

.row-num{
    color:#777;
    font-size:13px;
}

.row-title{
    font-size:1.25rem;
    font-weight:600;
    margin-bottom:10px;
}

.row-price{
    color:#9fc9ff;
    margin-bottom:14px;
}

.row-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.tag{
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
}

.tag-blue{
    background:#0e2a46;
    color:#9fc9ff;
}

.tag-green{
    background:#17301b;
    color:#b7f3c2;
}

.tag-purple{
    background:#231640;
    color:#cab7ff;
}

.tag-red{
    background:#401818;
    color:#ffb4b4;
}

.tag-gold{
    background:#43311c;
    color:#ffd6a2;
}

.chevron{
    color:#888;
    transition:0.3s ease;
}

.chevron.open{
    transform:rotate(180deg);
}

/* BODY */

.row-body{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding:0 28px 28px;
}

.row-body.open{
    display:grid;
}

.body-block{
    background:#0f0f0f;
    border-radius:22px;
    padding:22px;
    border:1px solid rgba(255,255,255,0.05);
}

.body-label{
    color:#9fc9ff;
    margin-bottom:12px;
    font-size:13px;
    letter-spacing:1px;
}

.body-text{
    color:#b0b0b0;
    line-height:1.8;
}

/* CTA */

.pricing-cta{
    padding:0 6% 140px;
}

.cta-box{
    max-width:1200px;
    margin:auto;
    text-align:center;
    padding:90px 40px;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    rgba(255,215,170,0.08),
    rgba(122,179,255,0.08)
    );

    border:1px solid rgba(255,255,255,0.06);
}

.cta-box h2{
    font-size:clamp(2rem,4vw,4rem);
    max-width:850px;
    margin:20px auto;
}

.cta-box p{
    color:#9b9b9b;
    margin-bottom:34px;
}

/* RESPONSIVE */

@media(max-width:980px){

    .pricing-hero-content{
        flex-direction:column;
    }

    .row-body{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .pricing-hero{
        padding-top:150px;
    }

    .hero-text h1{
        line-height:1.05;
    }

    .row-head{
        grid-template-columns:40px 1fr 20px;
        padding:22px;
    }

}