/* ===========================================================
   AntiGuard Premium Theme
   Part 1 - Global, Header & Hero
=========================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07121f;
    color:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#081827;
}

::-webkit-scrollbar-thumb{
    background:#f8b400;
    border-radius:20px;
}

/* Variables */

:root{

--primary:#f8b400;
--primary-dark:#e5a200;

--bg:#07121f;
--bg2:#0d1d31;

--card:#122338;

--text:#ffffff;

--muted:#c7d0db;

--border:rgba(255,255,255,.08);

--radius:18px;

--shadow:0 15px 45px rgba(0,0,0,.45);

--transition:.35s ease;

}

/* Links */

a{
text-decoration:none;
color:inherit;
}

/* Images */

img{
max-width:100%;
display:block;
}

/* Container */

.container{

width:92%;

max-width:1280px;

margin:auto;

}

/* Sections */

section{

padding:90px 0;

}

/* Headings */

h1{

font-size:64px;

line-height:1.1;

font-weight:800;

margin-bottom:20px;

}

h2{

font-size:42px;

margin-bottom:20px;

font-weight:800;

}

h3{

font-size:24px;

font-weight:700;

margin-bottom:15px;

}

p{

color:var(--muted);

font-size:17px;

}

/* Section Title */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

background:rgba(248,180,0,.15);

color:var(--primary);

border-radius:40px;

font-size:14px;

margin-bottom:18px;

font-weight:700;

}

.section-title p{

max-width:700px;

margin:20px auto 0;

}

/* Buttons */

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:var(--primary);

color:#111;

font-weight:700;

border-radius:50px;

transition:var(--transition);

box-shadow:0 12px 25px rgba(248,180,0,.30);

}

.btn-primary:hover{

transform:translateY(-4px);

background:#ffd54a;

}

.btn-secondary{

display:inline-flex;

padding:16px 34px;

border:2px solid rgba(255,255,255,.15);

border-radius:50px;

margin-left:15px;

transition:var(--transition);

}

.btn-secondary:hover{

background:white;

color:#111;

}

/* HEADER */

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

padding:20px 0;

transition:.35s;

background:rgba(5,15,25,.85);

backdrop-filter:blur(16px);

border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo a{

display:flex;

align-items:center;

gap:10px;

font-size:28px;

font-weight:800;

color:#fff;

}

.logo-icon{

font-size:34px;

}

.navbar ul{

display:flex;

gap:40px;

list-style:none;

}

.navbar a{

font-weight:600;

transition:.3s;

position:relative;

}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.navbar a:hover::after{

width:100%;

}

.mobile-menu{

display:none;

font-size:30px;

cursor:pointer;

}

/* HERO */

.hero{

padding-top:170px;

padding-bottom:120px;

background:

radial-gradient(circle at top right,#17365c 0%,transparent 40%),

radial-gradient(circle at left,#0c2745 0%,transparent 35%),

var(--bg);

}

.hero-grid{

display:grid;

grid-template-columns:1fr 520px;

gap:70px;

align-items:center;

}

.hero-badge{

display:inline-block;

padding:8px 20px;

background:rgba(248,180,0,.12);

border:1px solid rgba(248,180,0,.25);

border-radius:40px;

color:var(--primary);

font-size:14px;

font-weight:700;

margin-bottom:25px;

}

.hero p{

font-size:19px;

margin-bottom:35px;

max-width:620px;

}

.hero-buttons{

display:flex;

align-items:center;

margin-bottom:55px;

}

.hero-stats{

display:flex;

gap:50px;

margin-top:25px;

}

.hero-stats h2{

font-size:34px;

color:var(--primary);

margin-bottom:8px;

}

.hero-stats span{

font-size:15px;

color:var(--muted);

}

/* Hero Card */

.hero-image{

display:flex;

justify-content:center;

}

.shield-card{

background:linear-gradient(180deg,#17385d,#10233a);

border:1px solid rgba(255,255,255,.08);

padding:45px;

border-radius:26px;

box-shadow:var(--shadow);

transition:.4s;

}

.shield-card:hover{

transform:translateY(-10px);

}

.shield-circle{

width:95px;

height:95px;

border-radius:50%;

background:var(--primary);

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

margin-bottom:25px;

color:#111;

}

.shield-card ul{

margin-top:25px;

list-style:none;

}

.shield-card li{

padding:12px 0;

border-bottom:1px solid rgba(255,255,255,.08);

color:#d7d7d7;

}

.card-btn{

display:inline-block;

margin-top:30px;

background:var(--primary);

padding:15px 30px;

border-radius:40px;

font-weight:700;

color:#111;

transition:.3s;

}

.card-btn:hover{

background:#ffd54a;

transform:translateY(-3px);

}

/* TRUST BAR */

.trust-bar{

background:#09182b;

padding:30px 0;

border-top:1px solid rgba(255,255,255,.05);

border-bottom:1px solid rgba(255,255,255,.05);

}

.trust-bar .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.trust-item{

text-align:center;

font-size:17px;

font-weight:700;

padding:15px;

background:#10243d;

border-radius:12px;

transition:.3s;

}

.trust-item:hover{

background:#163253;

transform:translateY(-5px);

}
/*==================================================
PRODUCTS SECTION
==================================================*/

.products{
    background:#081523;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;
}

.product-card{
    background:linear-gradient(180deg,#13263e,#0d1d31);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-12px);
    border-color:#f8b400;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.product-card::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(248,180,0,.08);
}

.product-tag{
    display:inline-block;
    background:#f8b400;
    color:#111;
    font-size:13px;
    padding:6px 16px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:25px;
}

.product-tag.premium{
    background:#2ecc71;
    color:#fff;
}

.product-icon{
    width:80px;
    height:80px;
    border-radius:18px;
    background:#1d3657;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
}

.product-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.product-card p{
    margin-bottom:25px;
}

.product-features{
    list-style:none;
    margin-bottom:30px;
}

.product-features li{
    padding:12px 0;
    color:#d2dae5;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;
}

.price{
    font-size:17px;
    font-weight:600;
}

.price strong{
    color:#f8b400;
    font-size:28px;
}

.btn-card{
    padding:12px 22px;
    background:#f8b400;
    color:#111;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.btn-card:hover{
    background:#ffd54a;
    transform:translateY(-3px);
}

/*==================================================
WHY SECTION
==================================================*/

.why{
    background:#07121f;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#11253d;
    padding:40px 30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#f8b400;
}

.why-icon{
    width:70px;
    height:70px;
    background:#f8b400;
    color:#111;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.why-card h3{
    margin-bottom:15px;
}

/*==================================================
CATEGORY SECTION
==================================================*/

.categories{
    background:#0b192a;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.category-card{
    background:#122338;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.06);
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:#f8b400;
}

.category-icon{
    width:85px;
    height:85px;
    background:#17385d;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin:0 auto 25px;
}

.category-card h3{
    margin-bottom:15px;
}

.category-card a{
    display:inline-block;
    margin-top:20px;
    color:#f8b400;
    font-weight:700;
}

/*==================================================
HOW IT WORKS
==================================================*/

.steps{
    background:#07121f;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.step{
    background:#11253d;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    position:relative;
}

.step:hover{
    transform:translateY(-10px);
}

.step-number{
    width:70px;
    height:70px;
    background:#f8b400;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    margin:0 auto 25px;
}

/*==================================================
STATISTICS
==================================================*/

.stats{
    background:#0c1d32;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#13263e;
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
    border:1px solid #f8b400;
}

.stat-box h2{
    color:#f8b400;
    font-size:46px;
    margin-bottom:10px;
}

.stat-box p{
    color:#c8d2dd;
    font-size:18px;
}
/* ==================================================
   TESTIMONIALS
================================================== */

.reviews{
    background:#07121f;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.review-card{
    background:#13263e;
    border-radius:20px;
    padding:35px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#f8b400;
}

.review-card p{
    margin:20px 0;
    color:#d4dce6;
    line-height:1.8;
}

.review-card h4{
    color:#f8b400;
}

/* ==================================================
   FAQ
================================================== */

.faq{
    background:#0c1d32;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#13263e;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    text-align:left;
    padding:22px 25px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.faq-question:hover{
    color:#f8b400;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:#d0d9e4;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ==================================================
   NEWSLETTER
================================================== */

.newsletter{
    background:linear-gradient(135deg,#13263e,#17385d);
}

.newsletter-box{
    text-align:center;
}

.newsletter h2{
    margin-bottom:15px;
}

.newsletter p{
    margin-bottom:35px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    width:420px;
    max-width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:#fff;
    font-size:16px;
}

.newsletter button{
    padding:18px 35px;
    border:none;
    background:#f8b400;
    color:#111;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.newsletter button:hover{
    background:#ffd54a;
}

/* ==================================================
   FOOTER
================================================== */

.footer{
    background:#06101c;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:60px;
}

.footer h3,
.footer h4{
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#c8d2dc;
    transition:.3s;
}

.footer a:hover{
    color:#f8b400;
}

.footer p{
    color:#b8c4d0;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
}

/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media(max-width:1100px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
justify-content:center;
}

}

@media(max-width:992px){

.navbar{
display:none;
}

.mobile-menu{
display:block;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.stats .container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

h1{
font-size:42px;
}

h2{
font-size:32px;
}

.hero{
padding-top:130px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

.btn-secondary{
margin-left:0;
}

.hero-stats{
flex-direction:column;
gap:20px;
}

.trust-bar .container{
grid-template-columns:repeat(2,1fr);
}

.newsletter input{
width:100%;
}

.newsletter form{
flex-direction:column;
}

.footer-grid{
grid-template-columns:1fr;
}

.stats .container{
grid-template-columns:1fr;
}

}

@media(max-width:576px){

.container{
width:94%;
}

.product-grid,
.category-grid,
.review-grid,
.steps-grid,
.why-grid{
grid-template-columns:1fr;
}

.trust-bar .container{
grid-template-columns:1fr;
}

}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.hero-content,
.hero-image,
.product-card,
.category-card,
.why-card,
.step,
.review-card{
animation:fadeUp .8s ease both;
}

.product-card:nth-child(2){animation-delay:.1s;}
.product-card:nth-child(3){animation-delay:.2s;}
.product-card:nth-child(4){animation-delay:.3s;}
.product-card:nth-child(5){animation-delay:.4s;}
.product-card:nth-child(6){animation-delay:.5s;}

/* ==================================================
   UTILITIES
================================================== */

.text-center{
text-align:center;
}

.mt-30{
margin-top:30px;
}

.mt-50{
margin-top:50px;
}

.mb-50{
margin-bottom:50px;
}

.shadow{
box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.rounded{
border-radius:20px;
}
/* Mobile Menu */

@media (max-width:992px){

.navbar{

position:absolute;
top:85px;
left:20px;
right:20px;
background:#122338;
border-radius:15px;
padding:20px;
display:none;

}

.navbar.show{

display:block;

}

.navbar ul{

flex-direction:column;
gap:20px;

}

.navbar a{

display:block;

}

}

/* Active Menu */

.navbar a.active{

color:#f8b400;

}