/* ===========================================================
   ITSS Cyber Protect
   Professional Enterprise Theme
=========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#07111F;

    color:#ffffff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

/* =======================================
HEADER
======================================= */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(7,17,31,.85);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

.logo img{

    height:58px;

}

nav{

    display:flex;

    align-items:center;

    gap:35px;

}

nav a{

    color:#CBD5E1;

    transition:.25s;

    font-weight:500;

}

nav a:hover{

    color:#0EA5E9;

}

.button-small{

    padding:12px 24px;

    border-radius:12px;

    background:#0EA5E9;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.button-small:hover{

    background:#0284C7;

}

/* =======================================
HERO
======================================= */

.hero{

    padding-top:180px;

    padding-bottom:120px;

    background:

    radial-gradient(circle at top right,#2563EB22,transparent 40%),

    radial-gradient(circle at bottom left,#0EA5E922,transparent 35%),

    #07111F;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:80px;

    align-items:center;

}

.badge{

    display:inline-block;

    background:#10253C;

    color:#0EA5E9;

    padding:8px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.05;

    margin-bottom:30px;

    font-weight:800;

}

.hero p{

    font-size:20px;

    color:#CBD5E1;

    max-width:720px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.button-primary{

    background:#0EA5E9;

    color:#fff;

    padding:18px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.button-primary:hover{

    background:#0284C7;

    transform:translateY(-3px);

}

.button-secondary{

    background:transparent;

    border:1px solid rgba(255,255,255,.15);

    padding:18px 34px;

    border-radius:14px;

    color:#fff;

    transition:.3s;

}

.button-secondary:hover{

    background:#10253C;

}

/* =======================================
DASHBOARD CARD
======================================= */

.dashboard-card{

    background:#0D1726;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.dashboard-card h3{

    margin-bottom:35px;

    font-size:28px;

}

.risk-circle{

    width:170px;

    height:170px;

    margin:auto;

    border-radius:50%;

    border:10px solid #10B981;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    font-weight:800;

    margin-bottom:40px;

}

.stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.stat{

    background:#14273E;

    padding:20px;

    border-radius:16px;

    text-align:center;

}

.stat h2{

    font-size:34px;

    margin-bottom:6px;

}

.stat p{

    color:#CBD5E1;

    font-size:15px;

}
/* =======================================
SECTIONS
======================================= */

section{

    padding:110px 0;

}

section h2{

    font-size:46px;

    font-weight:800;

    text-align:center;

    margin-bottom:20px;

}

.section-text{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

    color:#CBD5E1;

    font-size:18px;

}

/* =======================================
CARDS
======================================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.card{

    background:#0D1726;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:35px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#0EA5E9;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.card h3{

    margin-bottom:18px;

    font-size:24px;

}

.card p{

    color:#CBD5E1;

}

/* =======================================
TIERS
======================================= */

.tier-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.tier-card{

    background:#0D1726;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px;

    transition:.3s;

}

.tier-card:hover{

    transform:translateY(-8px);

}

.featured{

    border:2px solid #0EA5E9;

    box-shadow:0 0 35px rgba(14,165,233,.25);

}

.tier-number{

    display:inline-block;

    background:#10253C;

    color:#0EA5E9;

    padding:8px 18px;

    border-radius:999px;

    margin-bottom:20px;

    font-weight:700;

}

.tier-card h3{

    margin-bottom:25px;

    font-size:28px;

}

.tier-card ul{

    list-style:none;

}

.tier-card li{

    color:#CBD5E1;

    margin-bottom:14px;

    padding-left:24px;

    position:relative;

}

.tier-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#10B981;

    font-weight:bold;

}

/* =======================================
PROCESS
======================================= */

.timeline{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.step{

    background:#0D1726;

    border-radius:22px;

    padding:35px;

    text-align:center;

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0EA5E9;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.step h3{

    margin-bottom:15px;

}

.step p{

    color:#CBD5E1;

}

/* =======================================
CTA
======================================= */

.cta{

    background:#0D1726;

    text-align:center;

}

.cta p{

    color:#CBD5E1;

    max-width:760px;

    margin:0 auto 45px;

}

/* =======================================
CONTACT
======================================= */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:start;

}

.contact-details{

    margin-top:35px;

}

.contact-item{

    margin-bottom:25px;

}

.contact-item strong{

    display:block;

    margin-bottom:6px;

    color:#fff;

}

.contact-item span{

    color:#CBD5E1;

}

.contact form{

    background:#0D1726;

    border-radius:24px;

    padding:40px;

    border:1px solid rgba(255,255,255,.06);

}

.contact input,
.contact textarea{

    width:100%;

    margin-bottom:20px;

    background:#14273E;

    border:none;

    color:#fff;

    padding:18px;

    border-radius:14px;

    font-family:inherit;

    font-size:16px;

}

.contact textarea{

    resize:vertical;

    min-height:180px;

}

.full-width{

    width:100%;

    border:none;

    cursor:pointer;

}

/* =======================================
FOOTER
======================================= */

footer{

    background:#050B14;

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-grid h3,
.footer-grid h4{

    margin-bottom:20px;

}

.footer-grid p,
.footer-grid li{

    color:#94A3B8;

    margin-bottom:12px;

}

.footer-grid a{

    transition:.25s;

}

.footer-grid a:hover{

    color:#0EA5E9;

}

.copyright{

    margin-top:70px;

    padding:30px 0;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    color:#64748B;

}

/* =======================================
RESPONSIVE
======================================= */

@media (max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:48px;

}

}

@media (max-width:768px){

section{

padding:80px 0;

}

.hero h1{

font-size:38px;

}

section h2{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.button-primary,
.button-secondary{

width:100%;

text-align:center;

}

.stats{

grid-template-columns:1fr;

}

.cards,
.tier-grid,
.timeline{

grid-template-columns:1fr;

}

}
.footer-grid img{

    max-height:60px;

}

.footer-grid div:last-child{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:flex-end;

}

@media (max-width:1100px){

.footer-grid div:last-child{

align-items:flex-start;

text-align:left;

margin-top:30px;

}

}