/* ===========================
   WP AI TRADE
   PREMIUM LANDING PAGE
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#07111d;
color:#fff;
overflow-x:hidden;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*====================
BACKGROUND
====================*/

.blur{
position:fixed;
border-radius:50%;
filter:blur(140px);
z-index:-1;
}

.blur1{
width:350px;
height:350px;
background:#00d9ff;
left:-150px;
top:-120px;
}

.blur2{
width:350px;
height:350px;
background:#00ff9d;
right:-150px;
bottom:-120px;
}

/*====================
HEADER
====================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(5,10,20,.75);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.06);
}

header .container{
height:85px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:30px;
font-weight:700;
color:#00e5ff;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:#fff;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#00e5ff;
}

.header-btn{
padding:14px 34px;
border-radius:50px;
background:linear-gradient(90deg,#00e5ff,#00ff99);
color:#000;
font-weight:700;
transition:.35s;
}

.header-btn:hover{
transform:translateY(-4px);
box-shadow:0 12px 25px rgba(0,229,255,.3);
}

/*====================
HERO
====================*/

.hero{
padding:180px 0 120px;
}

.hero-flex{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
}

.hero-tag{
display:inline-block;
padding:10px 22px;
background:rgba(255,255,255,.08);
border-radius:40px;
color:#00e5ff;
margin-bottom:25px;
}

.hero h1{
font-size:68px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:19px;
color:#bcc7d5;
line-height:34px;
max-width:550px;
}

.main-btn{
display:inline-block;
margin-top:40px;
padding:18px 40px;
border-radius:50px;
background:linear-gradient(90deg,#00e5ff,#00ff99);
color:#000;
font-weight:700;
transition:.35s;
}

.main-btn:hover{
transform:translateY(-5px);
}

/*====================
SECTION TITLE
====================*/

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-size:54px;
font-weight:800;
}

.section-title p{
margin-top:12px;
font-size:18px;
color:#b8c0cf;
}

/*=========================
PLANS SECTION
=========================*/

.plans{
padding:100px 0;
}

.plans-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.plan-card{
position:relative;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
padding:35px;
backdrop-filter:blur(18px);
transition:.4s;
overflow:hidden;
z-index:1;
}

/* 🔥 FIX: overlay click issue */
.plan-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg,rgba(0,229,255,.08),rgba(0,255,153,.08));
opacity:0;
transition:.4s;
pointer-events:none;
}

.plan-card:hover::before{
opacity:1;
}

.plan-card:hover{
transform:translateY(-12px);
border-color:#00e5ff;
box-shadow:0 25px 60px rgba(0,229,255,.18);
}

.plan-head{
display:inline-block;
padding:8px 18px;
border-radius:50px;
background:#00e5ff;
color:#000;
font-size:14px;
font-weight:700;
margin-bottom:20px;
}

.plan-card h3{
font-size:28px;
margin-bottom:25px;
}

.price-row{
display:flex;
justify-content:space-between;
gap:15px;
margin-bottom:30px;
}

.buy-price{
flex:1;
text-align:center;
padding:14px;
border-radius:12px;
background:linear-gradient(90deg,#00e5ff,#00ff99);
color:#000;
font-size:22px;
font-weight:700;
}

.network{
flex:1;
text-align:center;
padding:14px;
border-radius:12px;
background:#121e31;
border:1px solid rgba(255,255,255,.08);
color:#00e5ff;
font-weight:700;
}

.plan-card ul{
list-style:none;
margin:30px 0;
}

.plan-card ul li{
margin:14px 0;
color:#d8dce5;
display:flex;
align-items:center;
gap:10px;
}

.plan-card ul li i{
color:#00ff99;
}

.buy-btn{
display:block;
width:100%;
text-align:center;
padding:16px;
border-radius:50px;
background:linear-gradient(90deg,#00e5ff,#00ff99);
color:#000;
font-weight:700;
transition:.35s;
position:relative;
z-index:5;
}

.buy-btn:hover{
transform:scale(1.04);
}

/*====================
RESPONSIVE
====================*/

@media(max-width:1100px){
.plans-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.hero-flex{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:48px;
}

.hero p{
margin:auto;
}

.hero-image img{
width:280px;
margin:auto;
}

header .container{
flex-direction:column;
height:auto;
padding:20px 0;
}

nav{
flex-wrap:wrap;
justify-content:center;
margin:20px 0;
}

.plans-grid{
grid-template-columns:1fr;
}

}