/* =====================================================
   SECURE COMMUNICATIONS MSP WEBSITE
   Production Foundation CSS
   Version 1.0
===================================================== */

/* =====================================================
   GOOGLE FONTS
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --black: #080A0C;
    --navy: #071F3B;
    --blue: #0B65D8;
    --light-blue: #3EA6FF;

    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;

    --silver: #CFD8E3;
    --white: #F8FAFC;

    --success: #00D68F;

    --container: 1400px;

    --transition: .3s ease;

    --glow:
        0 0 8px rgba(11,101,216,.4),
        0 0 25px rgba(11,101,216,.25);

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

    --card-bg:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.01)
        );
}

/* =====================================================
   RESET
===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);

    color:var(--white);

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

    line-height:1.7;

    overflow-x:hidden;
}

/* =====================================================
   BACKGROUND EFFECTS
===================================================== */

body::before{

    content:"";

    position:fixed;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(11,101,216,.15),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(62,166,255,.08),
        transparent 35%
    );

    z-index:-1;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,h2,h3,h4,h5{

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

    line-height:1.1;
}

h1{

    font-size:
    clamp(
        3rem,
        8vw,
        6rem
    );

    font-weight:800;
}

h2{

    font-size:
    clamp(
        2rem,
        4vw,
        4rem
    );

    margin-bottom:20px;
}

h3{

    font-size:1.5rem;
    margin-bottom:15px;
}

p{

    color:var(--silver);

    margin-bottom:20px;
}

a{

    text-decoration:none;
    color:inherit;
}

img{

    max-width:100%;
    display:block;
}

/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:min(
        90%,
        var(--container)
    );

    margin:auto;
}

/* =====================================================
   NAVIGATION
===================================================== */

nav{

    position:fixed;

    top:0;
    width:100%;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    rgba(8,10,12,.85);

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

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;
}

.logo{

    font-size:1.4rem;

    font-weight:800;

    font-family:'Montserrat';

    color:var(--white);
}

.logo span{

    color:var(--light-blue);
}

.nav-links{

    display:flex;
    gap:30px;
}

.nav-links a{

    color:var(--silver);

    transition:var(--transition);
}

.nav-links a:hover{

    color:var(--light-blue);
}

/* =====================================================
   BUTTONS
===================================================== */

.btn{

    display:inline-block;

    padding:
    14px 28px;

    border-radius:8px;

    transition:var(--transition);

    font-weight:600;
}

.btn-primary{

    background:
    linear-gradient(
        135deg,
        var(--blue),
        var(--light-blue)
    );

    color:white;
}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--glow);
}

.btn-secondary{

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

    color:white;
}

.btn-secondary:hover{

    background:
    rgba(255,255,255,.05);
}

.footer-phone-btn{

    display:inline-block;

    padding:10px 18px;

    border-radius:6px;

    background:rgba(255,255,255,.08);

    color:white;

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

    transition:var(--transition);

    font-size:.9rem;

    font-weight:600;
}

.footer-phone-btn:hover{

    background:rgba(255,255,255,.15);

    transform:translateY(-2px);

}

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

.hero {

    padding-top:100px;
}

ul {

    margin-top:15px;
}

li {

    color:var(--silver);
}

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;
}

.hero-content{

    max-width:850px;
    position:relative; /* Added this line and one below */
    z-index:2;
}

.hero p{

    font-size:1.25rem;

    margin-top:25px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* ===== ADDED LATER ===== */
.hero h1 {

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #b9d9ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero::after {

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:40%;
    height:100%;

    background:

    radial-gradient(
        circle,
        rgba(62,166,255,.08),
        transparent 70%
    );

    pointer-events:none;
}


/* =====================================================
   SECTION
===================================================== */

section{

    padding:120px 0;
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title p{

    max-width:700px;

    margin:auto;
}

/* ===== ADDED LATER ===== */
.section-title h2::after {

    content:"";

    display:block;

    width:100px;
    height:4px;

    margin:20px auto;

    background:
    linear-gradient(
        90deg,
        var(--blue),
        var(--light-blue)
    );

    border-radius:10px;
}

/* =====================================================
   GRID
===================================================== */

.grid{

    display:grid;
    gap:30px;
}

.grid-2{

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

.grid-3{

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

.grid-4{

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

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

.card{

    background:
    var(--card-bg);

    border:
    var(--border);

    border-radius:18px;

    padding:40px;

    transition:var(--transition);
}

.card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(62,166,255,.08);

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

.card h3{

    color:white;
}

/* ===== ADDED LATER ===== */
.card ul {

    list-style:none;
    padding:0;
}

.card ul li {

    padding:10px 0;
    color:var(--silver);
    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.card ul li:last-child {

    border-bottom:none;
}

/* =====================================================
   FEATURES
===================================================== */

.feature-icon{

    width:70px;
    height:70px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:14px;

    margin-bottom:25px;

    background:
    linear-gradient(
        135deg,
        var(--blue),
        var(--light-blue)
    );

    font-size:1.8rem;
}

/* =====================================================
   INDUSTRIES
===================================================== */

.industry{

    text-align:center;
}

.industry h3{

    margin-top:20px;
}

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

.cta{

    background:
    linear-gradient(
        135deg,
        rgba(11,101,216,.12),
        rgba(62,166,255,.05)
    );

    border-top:
    var(--border);

    border-radius:24px;

    margin:0 auto;

    width:min(95%,1400px);

    border-bottom:
    var(--border);
}

.cta-box{

    text-align:center;

    max-width:900px;

    margin:auto;
}

/* =====================================================
   STATS
===================================================== */

.stats{

    display:grid;

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

    gap:30px;
}

.stat{

    text-align:center;
}

.stat h2{

    color:var(--light-blue);
}

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

.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:50px;
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

input,
textarea{

    background:
    rgba(255,255,255,.03);

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

    color:white;

    padding:15px;

    border-radius:8px;
}

textarea{

    resize:vertical;

    min-height:180px;
}

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

footer{

    padding:80px 0;

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

.footer-grid{

    display:grid;

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

    gap:40px;
}

.footer-title{

    margin-bottom:20px;

    color:white;
}

.footer-bottom{

    margin-top:50px;

    text-align:center;

    color:var(--silver);

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

    padding-top:30px;
}

/* =====================================================
   SECURITY HIGHLIGHT
===================================================== */

.security-banner{

    padding:40px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(11,101,216,.15),
        rgba(62,166,255,.04)
    );

    border:
    1px solid rgba(62,166,255,.2);
}

.security-banner h3{

    color:var(--light-blue);
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:900px){

    .nav-links{

        display:none;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .hero{

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    .grid-2{

        grid-template-columns:1fr;
    }
}

@media(max-width:600px){

    section{

        padding:80px 0;
    }

    .card{

        padding:25px;
    }

    h1{

        font-size:3rem;
    }
}

/* ==================================================
   THREAT INTELLIGENCE PAGE
================================================== */

.threat-hero{

    background:
    linear-gradient(
        135deg,
        rgba(0,20,40,.95),
        rgba(0,0,0,.98)
    );

    padding:120px 0 80px;
}

.threat-hero h1{

    font-size:3rem;
    margin-bottom:20px;
}

.threat-hero p{

    max-width:850px;
    margin:auto;
}

.alert-banner{

    background:
    linear-gradient(
        135deg,
        rgba(0,119,255,.15),
        rgba(0,119,255,.05)
    );

    border:1px solid rgba(0,119,255,.2);

    border-radius:12px;

    padding:25px;

    margin:40px 0;
}

.us-map{

    background:var(--card-bg);

    border-radius:12px;

    padding:30px;

    margin-bottom:50px;

    text-align:center;
}

.us-map svg{

    max-width:900px;

    width:100%;

    height:auto;
}

.threat-dot{

    fill:var(--light-blue);

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        opacity:.5;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:.5;
    }
}

.incident-feed{

    display:grid;

    gap:25px;
}

.incident{

    background:var(--card-bg);

    border-left:4px solid var(--blue);

    padding:30px;

    border-radius:12px;
}

.incident-date{

    color:var(--light-blue);

    font-size:.9rem;

    font-weight:600;

    margin-bottom:10px;
}

.incident-location{

    color:#aaa;

    margin-bottom:10px;
}

.incident-type{

    display:inline-block;

    background:rgba(0,119,255,.15);

    padding:5px 12px;

    border-radius:50px;

    font-size:.85rem;

    margin-bottom:15px;
}

.darkweb-box{

    background:
    linear-gradient(
        135deg,
        rgba(0,119,255,.15),
        rgba(0,0,0,.8)
    );

    border:1px solid rgba(0,119,255,.25);

    border-radius:12px;

    padding:35px;

    margin:50px 0;
}
