/* ===========================
   UFX CAPITAL PREMIUM
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:#070707;
color:#fff;
overflow-x:hidden;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* HEADER */

.header{

position:fixed;
top:0;
left:0;
width:100%;
padding:18px 0;
background:rgba(0,0,0,.75);
backdrop-filter:blur(15px);
z-index:1000;

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

display:flex;
align-items:center;
gap:12px;
font-size:24px;
font-weight:700;
color:#ff2ca8;

}

.logo img{

width:55px;
height:55px;
border-radius:50%;

}

nav{

display:flex;
gap:30px;

}

nav a{

color:white;
text-decoration:none;
transition:.3s;

}

nav a:hover{

color:#ff2ca8;

}

/* HERO */

.hero{

padding-top:140px;
padding-bottom:80px;

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;

}

.badge{

display:inline-block;
padding:10px 18px;
background:#ff2ca8;
border-radius:40px;
font-size:14px;
margin-bottom:20px;

}

.hero h1{

font-size:58px;
line-height:1.2;
margin-bottom:20px;

}

.hero h1 span{

color:#ff2ca8;

}

.hero p{

color:#bfbfbf;
font-size:18px;
line-height:1.8;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:20px;
flex-wrap:wrap;

}

.btn{

padding:16px 35px;
border-radius:12px;
font-weight:bold;
text-decoration:none;
transition:.35s;

}

.primary{

background:#ff2ca8;
color:white;

}

.secondary{

background:#222;
color:white;
border:1px solid #ff2ca8;

}

.btn:hover{

transform:translateY(-5px);

}
/* ================= PLANS ================= */

.plans{
padding:90px 0;
}

.section-title{
text-align:center;
font-size:42px;
margin-bottom:15px;
color:#fff;
}

.section-subtitle{
text-align:center;
color:#bdbdbd;
margin-bottom:50px;
}

.plan-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.plan-card{
background:#111;
border:1px solid #2b2b2b;
border-radius:20px;
padding:35px;
text-align:center;
transition:.35s;
position:relative;
}

.plan-card:hover{
transform:translateY(-12px);
border-color:#ff2ca8;
box-shadow:0 0 30px rgba(255,44,168,.35);
}

.popular{
border:2px solid #ff2ca8;
}

.popular-tag{
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
background:#ff2ca8;
padding:8px 18px;
border-radius:25px;
font-size:13px;
font-weight:bold;
}

.plan-card h1{
font-size:48px;
color:#ff2ca8;
margin:20px 0;
}

.plan-card ul{
list-style:none;
margin:25px 0;
}

.plan-card ul li{
padding:10px 0;
border-bottom:1px solid #222;
}

.plan-btn{
display:inline-block;
padding:15px 35px;
background:#ff2ca8;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:700;
}

/* ================= FEATURES ================= */

.features{
padding:90px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.feature-box{
background:#111;
padding:30px;
border-radius:18px;
border:1px solid #222;
transition:.3s;
}

.feature-box:hover{
transform:translateY(-8px);
border-color:#ff2ca8;
box-shadow:0 0 20px rgba(255,44,168,.3);
}

.feature-box h3{
margin-bottom:15px;
color:#ff2ca8;
}

.feature-box p{
color:#cfcfcf;
line-height:1.7;
}

/* ================= FAQ ================= */

.faq{
padding:90px 0;
}

.faq-box{
background:#111;
border:1px solid #222;
padding:25px;
border-radius:15px;
margin-bottom:20px;
}

.faq-box h3{
color:#ff2ca8;
margin-bottom:10px;
}

.faq-box p{
color:#cfcfcf;
line-height:1.7;
}

/* ================= CONTACT ================= */

.contact{
padding:90px 0;
text-align:center;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:35px;
}

/* ================= FOOTER ================= */

footer{
background:#090909;
padding:40px 20px;
text-align:center;
border-top:1px solid #222;
}

footer h2{
color:#ff2ca8;
margin-bottom:10px;
}

footer p{
color:#bfbfbf;
margin-top:8px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

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

.hero-buttons{
justify-content:center;
}

nav{
display:none;
}

.stats{
justify-content:center;
flex-wrap:wrap;
}

.hero-right img{
width:100%;
max-width:350px;
margin:auto;
display:block;
}

}
