body{
background:
radial-gradient(circle at top,#132238 0%,#07111f 50%,#040b15 100%);
color:white;
margin:0;
padding:0;
font-family:'Roboto',sans-serif;
min-height:100vh;
}
/* HERO */

.bots-hero{
max-width:1200px;
margin:0 auto;
padding:220px 20px 80px;
text-align:center;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border-radius:30px;
background:rgba(168,85,247,.15);
border:1px solid rgba(168,85,247,.4);
color:#c084fc;
font-size:13px;
font-weight:700;
margin-bottom:25px;
}

.bots-hero h1{
font-size:72px;
font-weight:800;
margin-bottom:20px;
}

.bots-hero p{
max-width:800px;
margin:auto;
font-size:20px;
line-height:1.8;
color:#9fb3c8;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
margin-top:40px;
flex-wrap:wrap;
}

.hero-btn{
padding:16px 32px;
border-radius:14px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.hero-btn.primary{
background:linear-gradient(135deg,#a855f7,#7c3aed);
color:white;
}

.hero-btn.secondary{
border:1px solid rgba(255,255,255,.15);
color:white;
}

.hero-btn:hover{
transform:translateY(-3px);
}

/* FEATURES */

.features-section{
max-width:1300px;
margin:120px auto;
padding:0 20px;
}

.features-section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.feature-card{
background:#0b1625;
padding:30px;
border-radius:20px;
text-align:center;
font-weight:600;
border:1px solid rgba(255,255,255,.05);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-5px);
border-color:#a855f7;
}

/* PANEL */

.panel-section{
max-width:1200px;
margin:120px auto;
padding:0 20px;
text-align:center;
}

.panel-section h2{
font-size:42px;
margin-bottom:40px;
}



.panel-desc{
max-width:800px;
margin:30px auto 0;
font-size:18px;
line-height:1.8;
color:#9fb3c8;
}

/* PRICING */

.pricing-section{
max-width:1300px;
margin:120px auto;
padding:0 20px;
}

.pricing-section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
max-width:900px;
margin:auto;
}

.pricing-card{
background:#0b1625;
padding:40px;
border-radius:24px;
position:relative;
border:1px solid rgba(255,255,255,.05);
}

.pricing-card h3{
font-size:30px;
margin-bottom:20px;
}

.price{
font-size:42px;
font-weight:800;
margin-bottom:10px;
}

.year-price{
color:#9fb3c8;
margin-bottom:25px;
}

.pricing-card ul{
list-style:none;
padding:0;
margin:0 0 30px;
}

.pricing-card li{
margin-bottom:12px;
color:#d6dde7;
}

.premium{
border:2px solid #a855f7;
}

.premium-badge{
position:absolute;
top:-15px;
right:20px;
background:#a855f7;
padding:8px 14px;
border-radius:12px;
font-size:12px;
font-weight:700;
}

.plan-btn{
display:block;
text-align:center;
padding:14px;
border-radius:12px;
background:#1e293b;
color:white;
text-decoration:none;
font-weight:700;
}

.premium-btn{
background:linear-gradient(135deg,#a855f7,#7c3aed);
}

/* DEMO */

.demo-section{
max-width:1000px;
margin:120px auto;
padding:70px 30px;
text-align:center;
background:#0b1625;
border-radius:30px;
}

.demo-badge{
color:#c084fc;
font-weight:700;
margin-bottom:15px;
}

.demo-section h2{
font-size:48px;
margin-bottom:20px;
}

.demo-section p{
max-width:700px;
margin:auto;
line-height:1.8;
color:#9fb3c8;
}

.demo-btn{
display:inline-block;
margin-top:30px;
padding:18px 36px;
background:linear-gradient(135deg,#a855f7,#7c3aed);
border-radius:14px;
text-decoration:none;
font-weight:700;
color:white;
}

/* TRUST */

.trust-section{
max-width:1200px;
margin:120px auto;
padding:0 20px;
}

.trust-section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.trust-card{
background:#0b1625;
padding:35px;
border-radius:20px;
text-align:center;
}

.trust-card h3{
font-size:42px;
color:#a855f7;
margin-bottom:10px;
}

/* CONTACT */

.contact-section{
max-width:1200px;
margin:120px auto;
padding:0 20px;
}

.contact-section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

.seller-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
max-width:800px;
margin:auto;
}

.seller-card{
background:#0b1625;
padding:40px;
border-radius:20px;
text-align:center;
}

.seller-card h3{
font-size:28px;
margin-bottom:20px;
}

.seller-btn{
display:block;
margin:10px 0;
padding:14px;
border-radius:12px;
background:#1e293b;
text-decoration:none;
color:white;
font-weight:600;
}

/* MOBILE */

@media(max-width:900px){

.bots-hero h1{
font-size:48px;
}

.features-grid,
.trust-grid,
.pricing-grid,
.seller-grid{
grid-template-columns:1fr;
}

.price{
font-size:34px;
}

.demo-section h2{
font-size:36px;
}

}
body::before{
content:"";
position:fixed;
inset:0;
background:url(panel-bg.webp) center center;
background-size:cover;
opacity:.05;
pointer-events:none;
}

}/* MOBILE */

@media (max-width: 768px) {


.hero,
.hero-content,
.scanner-hero-clean,
.bots-hero{
padding-top:120px;
text-align:center;
}

.hero h1,
.scanner-title-clean,
.bots-hero h1{
font-size:48px !important;
line-height:1.1;
}

.hero p,
.scanner-desc-clean,
.bots-hero p{
font-size:18px;
}

.features-grid,
.cards,
.pricing-grid,
.trust-grid,
.seller-grid{
grid-template-columns:1fr !important;
}

.hero-buttons,
.scanner-buttons-clean{
flex-direction:column;
align-items:center;
}

.hero-image img,
.scanner-image-box img,
.showcase-image img{
width:100%;
height:auto;
}

.panel-video{
max-width:100%;
}

table{
display:block;
overflow-x:auto;
}

}@media (max-width:768px){

.hero{
grid-template-columns:1fr !important;
}

.hero-image,
.scanner-right{
display:none;
}

.showcase-image img,
.panel-video img,
.panel-video video{
width:100%;
height:auto;
}

/* PANEL */

.panel-video{
width:100%;
max-width:900px;
margin:40px auto;
overflow:hidden;
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
box-sizing:border-box;
}

.panel-video img,
.panel-video video{
display:block;
width:100%;
height:auto;
border-radius:24px;
}
/* MOBILE NAVBAR */

@media (max-width:768px){

.nav-links{

display:flex !important;

justify-content:center;

align-items:center;

flex-wrap:wrap;

gap:6px;

padding:10px;

width:100%;
}

.nav-item{

font-size:12px;

padding:6px 8px;
}

}@media (max-width:768px){

.navbar{
padding:15px 0;
}

.nav-container{
display:block;
text-align:center;
}

.logo{
font-size:22px;
margin:0 0 15px 0;
}

.nav-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:8px 20px;
padding:0;
width:auto;
height:auto;
background:none;
box-shadow:none;
border:none;
}

.nav-item{
font-size:12px;
padding:4px 6px;
}

}