
:root{
    --primary:#4f7cff;
    --primary2:#7c5cff;
    --success:#00d084;
    --bg:#050816;
    --bg2:#0b1120;
    --card:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.08);
    --text:#f8fafc;
    --muted:#94a3b8;
    --shadow:0 25px 60px rgba(0,0,0,.35);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,-apple-system,sans-serif;
    background:
    radial-gradient(circle at 15% 20%,rgba(79,124,255,.18),transparent 30%),
    radial-gradient(circle at 85% 10%,rgba(124,92,255,.18),transparent 35%),
    radial-gradient(circle at 50% 100%,rgba(0,208,132,.12),transparent 30%),
    var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

section{
    padding:100px 0;
}

.container{
    position:relative;
    z-index:2;
}

a{
    text-decoration:none;
}

.gradient-text{
    background:linear-gradient(90deg,#70a5ff,#a78bfa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.blur-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.4;
    z-index:0;
}

.blur1{
    width:350px;
    height:350px;
    background:#3b82f6;
    top:-100px;
    left:-120px;
}

.blur2{
    width:320px;
    height:320px;
    background:#8b5cf6;
    right:-100px;
    top:100px;
}

.blur3{
    width:300px;
    height:300px;
    background:#00d084;
    bottom:-100px;
    left:40%;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.badge-modern{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#cbd5e1;
    font-size:14px;
    margin-bottom:30px;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
}

.hero p{
    color:var(--muted);
    font-size:20px;
    margin:30px 0;
    line-height:1.8;
}

.hero-price{
    font-size:70px;
    font-weight:800;
    margin-bottom:5px;
}

.hero-price span{
    font-size:22px;
    color:#94a3b8;
}

.card-glass{
    background:var(--card);
    backdrop-filter:blur(18px);
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow);
}

.price-card{
    padding:45px;
    transition:.35s;
}

.price-card:hover{
    transform:translateY(-10px);
    border-color:#4f7cff;
}

.plan-name{
    color:#94a3b8;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.plan-price{
    font-size:70px;
    font-weight:800;
    margin:15px 0;
}

.plan-price small{
    font-size:18px;
    color:#94a3b8;
}

.feature-list{
    list-style:none;
    margin:30px 0;
    padding:0;
}

.feature-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:#d6dce6;
}

.feature-list i{
    color:#00d084;
    font-size:20px;
}

.btn-modern{
    background:linear-gradient(135deg,#4f7cff,#7c5cff);
    border:none;
    color:#fff;
    font-weight:700;
    padding:16px 35px;
    border-radius:14px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(79,124,255,.35);
}

.btn-modern:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 25px 45px rgba(79,124,255,.45);
}

.section-title{
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
}

.section-subtitle{
    color:var(--muted);
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.feature-card{
    background:var(--card);
    backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;
    transition:.35s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#4f7cff;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

.feature-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#4f7cff,#7c5cff);
    border-radius:18px;
    font-size:28px;
    margin-bottom:25px;
}

.feature-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.feature-card p{
    color:var(--muted);
    line-height:1.8;
}

.faq-item{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    margin-bottom:20px;
}

.faq-item h5{
    margin-bottom:15px;
    font-weight:700;
}

.faq-item p{
    color:var(--muted);
    margin:0;
    line-height:1.8;
}

.cta{
    padding:90px 50px;
    text-align:center;
    border-radius:35px;
    background:linear-gradient(135deg,#2563eb,#6d28d9);
}

.cta h2{
    font-size:50px;
    font-weight:800;
}

.cta p{
    margin:20px auto 35px;
    max-width:700px;
    color:#e5e7eb;
}

footer{
    padding:40px 0;
    color:#64748b;
    text-align:center;
}

@media(max-width:992px){

.hero{
padding:120px 0 70px;
text-align:center;
}

.hero h1{
font-size:44px;
}

.hero-price,
.plan-price{
font-size:52px;
}

.section-title{
font-size:36px;
}

.price-card{
margin-top:40px;
}

}

@media(max-width:576px){

.hero h1{
font-size:36px;
}

.hero p{
font-size:17px;
}

.section-title{
font-size:30px;
}

.plan-price{
font-size:46px;
}

.cta{
padding:60px 30px;
}

.cta h2{
font-size:34px;
}

}