
/* =========================
   TADZIUSHOP HOME
========================= */

body{
    margin:0;
    background:#050913;
    color:#ffffff;
    font-family:Segoe UI, Arial, sans-serif;
}

/* HERO */

.hero-home{
    max-width:1200px;
    margin:120px auto 80px;
    padding:0 20px;
    text-align:center;
}

.hero-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(168,85,247,.1);
    border:1px solid rgba(168,85,247,.2);

    color:#c084fc;
    font-weight:700;
}

.hero-home h1{
    font-size:110px;
    margin:25px 0 15px;
    line-height:1;
}

.hero-home p{
    font-size:22px;
    color:#9fb3c8;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* PRODUCTS */

.products-grid{
    max-width:1400px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:30px;
}

.product-box{
    background:#0b1625;

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:25px;

    transition:.25s;
}

.product-box:hover{
    transform:translateY(-5px);

    border-color:rgba(168,85,247,.25);
}

.product-image{
    width:100%;
    height:200px;

    overflow:hidden;

    border-radius:18px;

    background:#08111f;

    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-image.icon{
    font-size:90px;
}

.product-box h2{
    margin:25px 0 15px;
    font-size:38px;
}

.product-box p{
    color:#9fb3c8;
    line-height:1.8;
    min-height:70px;
}

/* BUTTONS */

.btn-home{
    display:inline-block;

    margin-top:15px;

    padding:14px 26px;

    border-radius:14px;

    text-decoration:none;
    color:white;
    font-weight:700;

    background:linear-gradient(
    135deg,
    #00d2ff,
    #008cff
    );
}

.btn-home.nexus{
    background:linear-gradient(
    135deg,
    #a855f7,
    #7c3aed
    );
}

/* WHY */

.why-section{
    max-width:1400px;
    margin:120px auto;
    padding:0 20px;
}

.why-section h2{
    text-align:center;
    font-size:56px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    background:#0b1625;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:35px;

    text-align:center;

    font-weight:700;
}

/* CTA */

.cta-home{
    max-width:1000px;

    margin:120px auto;

    padding:70px 30px;

    text-align:center;

    background:#0b1625;

    border-radius:30px;

    border:1px solid rgba(168,85,247,.15);
}

.cta-home h2{
    font-size:60px;
    margin-bottom:15px;
}

.cta-home p{
    color:#9fb3c8;
    margin-bottom:35px;
    font-size:18px;
}

/* FOOTER */

.site-footer{
    margin-top:80px;
    padding:40px 20px;

    text-align:center;

    color:#7f93a8;
}

/* MOBILE */

@media(max-width:900px){

.hero-home h1{
    font-size:70px;
}

.products-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-section h2{
    font-size:38px;
}

.cta-home h2{
    font-size:40px;
}

}

@media(max-width:600px){

.hero-home h1{
    font-size:52px;
}

.hero-home p{
    font-size:18px;
}

.product-box h2{
    font-size:30px;
}

}```css
/* =========================
   HOME PAGE
========================= */

body{
    margin:0;
    background:#050913;
    color:#ffffff;
    font-family:Segoe UI, Arial, sans-serif;
}

/* HERO */

.hero-home{
    max-width:1100px;
    margin:100px auto 70px;
    padding:0 20px;
    text-align:center;
}

.hero-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(168,85,247,.08);
    border:1px solid rgba(168,85,247,.18);

    color:#c084fc;

    font-size:13px;
    font-weight:700;
}

.hero-home h1{
    font-size:72px;
    margin:25px 0 15px;
    line-height:1;
    font-weight:900;
}

.hero-home p{
    font-size:18px;
    color:#9fb3c8;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* PRODUCTS */

.products-grid{
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.product-box{
    background:#0b1625;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    overflow:hidden;

    transition:.25s;
}

.product-box:hover{
    transform:translateY(-5px);

    border-color:rgba(168,85,247,.25);
}

.product-image img{
    width:90%;
    height:90%;
    object-fit:contain;
}
.product-image.icon{
    font-size:70px;
}

.product-content{
    padding:22px;
}

.product-category{
    display:block;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#7f93a8;

    margin-bottom:10px;
}

.product-box h2{
    margin:0 0 12px;
    font-size:28px;
}

.product-box p{
    color:#9fb3c8;
    line-height:1.7;
    min-height:75px;
    margin-bottom:20px;
}

/* BUTTONS */

.btn-home{
    display:inline-block;

    padding:10px 18px;

    border-radius:12px;

    text-decoration:none;

    color:white;

    font-size:14px;
    font-weight:700;

    background:linear-gradient(
    135deg,
    #00d2ff,
    #008cff
    );
}

.btn-home.nexus{
    background:linear-gradient(
    135deg,
    #a855f7,
    #7c3aed
    );
}

/* WHY */

.why-section{
    max-width:1300px;
    margin:120px auto;
    padding:0 20px;
}

.why-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.why-card{
    background:#0b1625;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    padding:25px;

    text-align:center;

    font-weight:600;
}

/* CTA */

.cta-home{
    max-width:900px;

    margin:120px auto;

    padding:60px 30px;

    text-align:center;

    background:#0b1625;

    border-radius:24px;

    border:1px solid rgba(168,85,247,.15);
}

.cta-home h2{
    font-size:48px;
    margin-bottom:15px;
}

.cta-home p{
    color:#9fb3c8;
    margin-bottom:25px;
}

/* FOOTER */

.site-footer{
    margin-top:80px;
    padding:35px 20px;

    text-align:center;

    color:#7f93a8;

    border-top:1px solid rgba(255,255,255,.05);
}

/* MOBILE */

@media(max-width:900px){

.hero-home h1{
    font-size:52px;
}

.why-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:700px){

.products-grid{
    grid-template-columns:1fr;
}

.hero-home h1{
    font-size:42px;
}

.hero-home p{
    font-size:16px;
}

.cta-home h2{
    font-size:34px;
}

}

.scanner-box{
    border:1px solid rgba(168,85,247,.25);
}

.scanner-btn{
    background:linear-gradient(
    135deg,
    #a855f7,
    #7c3aed
    );
}

.scanner-modules{
    display:flex;
    gap:8px;
    flex-wrap:wrap;

    margin:15px 0;
}

.scanner-modules span{
    background:#08111f;

    border:1px solid rgba(255,255,255,.05);

    padding:6px 10px;

    border-radius:999px;

    font-size:12px;

    color:#9fb3c8;
}
.scanner-box{
    border:1px solid rgba(168,85,247,.25);
}

.scanner-btn{
    background:linear-gradient(
    135deg,
    #a855f7,
    #7c3aed
    );
}

.scanner-modules{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin:12px 0;
}

.scanner-modules span{
    background:#08111f;
    border-radius:999px;
    padding:4px 8px;
    font-size:11px;
    color:#9fb3c8;
}

.gem-image{
    height:120px;
}


.gem-image img{
    max-height:90px;
    width:auto;
    object-fit:contain;
}

.product-box{
    display:flex;
    flex-direction:column;
}

.product-content{
    flex:1;
}
.products-grid{
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* SPECIAL OFFERS */

.offers-box{
    border:1px solid rgba(255,170,0,.25);
}

.offers-box:hover{
    border-color:rgba(255,170,0,.5);
}

.offers-category{
    color:#ffb347;
}

.offers-btn{
    background:linear-gradient(
    135deg,
    #ffb347,
    #ff8c00
    );
}

.offers-icon{
    font-size:65px;
}
.trust-section{
max-width:1300px;
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-box{
background:#0b1625;
padding:30px;
border-radius:20px;
text-align:center;
border:1px solid rgba(255,255,255,.05);
}

.trust-box h3{
font-size:38px;
color:#a855f7;
margin-bottom:10px;
}

.about-home{
max-width:1000px;
margin:120px auto;
text-align:center;
padding:0 20px;
}

.about-home h2{
font-size:42px;
margin-bottom:25px;
}

.about-home p{
font-size:18px;
line-height:1.9;
color:#9fb3c8;
}

.home-cta{
max-width:1200px;
margin:120px auto;
padding:80px 40px;
text-align:center;
background:#0b1625;
border-radius:30px;
}

.home-cta h2{
font-size:48px;
margin-bottom:20px;
}

.home-cta p{
color:#9fb3c8;
margin-bottom:30px;
}

.btn-home-main{
display:inline-block;
padding:18px 40px;
border-radius:14px;
text-decoration:none;
font-weight:700;
color:white;
background:linear-gradient(135deg,#a855f7,#7c3aed);
}
/* MOBILE */

@media (max-width: 768px) {

.nav-container{
flex-direction:column;
gap:15px;
padding:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.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){

.products-grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
padding:20px;
}

.product-box{
width:100%;
max-width:100%;
}

.product-image img{
width:100%;
height:auto;
}

@media (max-width:768px){

.products-grid{
grid-template-columns:1fr;
padding:20px;
}

.product-box{
width:100%;
max-width:100%;
}

}
