*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:95%;
height:90px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 30px;

background:rgba(255,255,255,0.05);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,0.1);

border-radius:25px;

z-index:999;
}

.logo img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
}

.nav-links{
display:flex;
gap:40px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:18px;
}

.start-btn{
padding:15px 30px;

border-radius:40px;

background:linear-gradient(
90deg,
#1d7cff,
#c14dff
);

color:white;
text-decoration:none;
font-weight:600;
}

/* HERO */

.hero{

min-height:100vh;

display:flex;
align-items:center;

padding-left:100px;

background:
linear-gradient(
rgba(5,8,22,.75),
rgba(5,8,22,.75)
),
url("trading-bg.png");

background-size:cover;
background-position:center;
}

.hero-content{
max-width:700px;
}

.welcome{
letter-spacing:4px;
color:#b6b6b6;
margin-bottom:20px;
}

.hero h1{
font-size:90px;
line-height:1.05;
}

.hero span{

background:
linear-gradient(
90deg,
#00aaff,
#c14dff
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-text{
font-size:22px;
line-height:1.8;
margin-top:25px;
color:#d7d7d7;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:35px;
}

.telegram-btn{
padding:18px 35px;

background:
linear-gradient(
90deg,
#1d7cff,
#c14dff
);

color:white;
text-decoration:none;

border-radius:50px;
}

.demo-btn{
padding:18px 35px;
border:2px solid rgba(255,255,255,.2);
color:white;
text-decoration:none;
border-radius:50px;
}

.stats{

margin-top:60px;

display:grid;
grid-template-columns:repeat(4,1fr);

gap:20px;
}

.stats div{
background:rgba(255,255,255,.05);
padding:20px;
border-radius:20px;
text-align:center;
}

.stats h3{
font-size:32px;
margin-bottom:10px;
}

/* SECTIONS */

.section{
padding:100px 10%;
text-align:center;
}

.section h2{
font-size:50px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#0d1327;
padding:30px;
border-radius:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

footer{
padding:30px;
text-align:center;
background:#02040d;
}
/* ===== PLANS PAGE ===== */

.plans-page{
    min-height:100vh;
    padding:120px 5% 80px;
    background:
    linear-gradient(rgba(5,8,22,.88),rgba(5,8,22,.92)),
    url("trading-bg.png");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.plans-header{
    text-align:center;
    margin-bottom:60px;
}

.plans-header span{
    color:#b44cff;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.plans-header h1{
    color:#fff;
    font-size:65px;
    margin:15px 0;
}

.plans-header p{
    color:#cfd5e5;
    font-size:18px;
}

.plans-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.plan-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(180,76,255,.25);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.plan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(180,76,255,.4);
}

.featured{
    border:2px solid #b44cff;
}

.badge{
    display:inline-block;
    background:#b44cff;
    color:#fff;
    padding:6px 16px;
    border-radius:20px;
    margin-bottom:15px;
    font-size:12px;
}

.plan-card h3{
    color:#fff;
    font-size:30px;
}

.price{
    color:#36a2ff;
    font-size:55px;
    font-weight:bold;
    margin:20px 0;
}

.plan-card ul{
    list-style:none;
    padding:0;
}

.plan-card ul li{
    color:#ddd;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.plan-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background:linear-gradient(90deg,#1d7cff,#b44cff);
}

.plan-btn:hover{
    opacity:.9;
}

.trust-bar{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(180,76,255,.15);
    border-radius:20px;
    padding:25px;
}

.trust-item{
    text-align:center;
}

.trust-item h4{
    color:#fff;
    margin-bottom:8px;
}

.trust-item p{
    color:#cfd5e5;
    font-size:14px;
}

@media(max-width:900px){

.trust-bar{
    grid-template-columns:1fr;
}

.plans-header h1{
    font-size:45px;
}

}

.certificates{
    min-height:100vh;

    padding:80px 5%;

    background:
    linear-gradient(
      rgba(5,8,22,.85),
      rgba(5,8,22,.90)
    ),
    url("trading-bg.png");

    background-size:cover;
    background-position:center;

    text-align:center;
}

.cert-header p{
    color:#b44cff;
    letter-spacing:4px;
}

.cert-header h2{
    font-size:60px;
    color:white;
}

.cert-header span{
    color:#cfd5e5;
}

.certificate-grid{
    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));

    gap:30px;
}

.certificate-card{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(180,76,255,.25);

    border-radius:25px;

    overflow:hidden;

    backdrop-filter:blur(15px);
}

.certificate-card img{
    width:100%;
    display:block;
}

.certificate-card h3{
    color:white;
    margin:20px;
}

.view-btn,
.back-btn{
    display:inline-block;

    padding:12px 25px;

    border-radius:40px;

    background:linear-gradient(
      90deg,
      #1d7cff,
      #c14dff
    );

    color:white;

    text-decoration:none;
}
/* MOBILE */

@media(max-width:900px){

.hero{
padding:140px 20px 60px;
text-align:center;
}

.hero h1{
font-size:55px;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.stats{
grid-template-columns:1fr 1fr;
}

.nav-links{
display:none;
}

.navbar{
height:80px;
}
}