/* =========================
   MAIN
========================= */
.main{
    padding:10px 0 60px;
}

/* =========================
   HERO
========================= */
.hero{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    padding:70px 60px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:radial-gradient(circle,#4361ee55,transparent 70%);
    top:-100px;
    right:-80px;
}

.hero h1{
    font-size:72px;
    font-weight:800;
    color:white;
    line-height:1.05;
    max-width:850px;
    position:relative;
    z-index:2;
}

.hero p{
    margin-top:20px;
    max-width:750px;
    font-size:20px;
    line-height:1.7;
    color:#cbd5e1;
    position:relative;
    z-index:2;
}

.hero-btn{
    margin-top:35px;
    display:inline-block;
    padding:18px 34px;
    border-radius:18px;
    background:linear-gradient(90deg,#4361ee,#7209b7);
    color:white;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 0 30px rgba(67,97,238,.35);
    transition:.3s;
    position:relative;
    z-index:2;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   SECTION TITLES
========================= */
.featured,
.benefits,
.cta{
    margin-top:55px;
}

.featured h2,
.benefits h2,
.cta h2{
    font-size:38px;
    font-weight:700;
    color:white;
    margin-bottom:25px;
}

/* =========================
   FEATURED
========================= */
.featured-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.mini-card{
    padding:28px;
    min-height:150px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    color:white;
    font-size:22px;
    font-weight:600;
    display:flex;
    align-items:end;
    transition:.3s;
}

.mini-card:hover{
    transform:translateY(-5px);
    border-color:#4361ee;
    box-shadow:0 10px 40px rgba(67,97,238,.15);
}

/* =========================
   ADSENSE
========================= */
.ads-banner{
    margin-top:50px;
    min-height:180px;
    border-radius:28px;
    padding:25px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:center;
    align-items:center;
}

/* =========================
   BENEFITS
========================= */
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.benefit-card{
    padding:32px;
    border-radius:24px;
    background:linear-gradient(135deg,#172554,#1e1b4b);
    color:white;
    font-size:20px;
    font-weight:600;
    box-shadow:0 15px 45px rgba(0,0,0,.25);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-4px);
}

/* =========================
   CTA
========================= */
.cta{
    padding:60px;
    border-radius:32px;
    text-align:center;
    background:linear-gradient(135deg,#4361ee,#7209b7);
    box-shadow:0 25px 70px rgba(114,9,183,.25);
}

.cta h2{
    margin-bottom:0;
}

.vip-btn-large{
   
   display: block;
    padding:18px 34px;
    border:none;
    border-radius:18px;
    background:white;
    color:#111827;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.vip-btn-large:hover{
    transform:scale(1.04);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1200px){
    .featured-grid,
    .benefit-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .hero{
        padding:40px 30px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    .cta{
        padding:40px 25px;
    }

    .cta h2{
        font-size:30px;
    }
}
