/* ==========================================================
   COMPONENTS
   ========================================================== */

/* ---------- Section Titles ---------- */

.section-label{

    display:inline-block;

    color:#8DB5FF;

    letter-spacing:.18em;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.section h2{

    font-size:56px;

    letter-spacing:-2px;

    line-height:1.1;

    margin-bottom:28px;

}

.section p{

    font-size:21px;

    color:var(--text);

    line-height:1.9;

}

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

.cards{

    display:grid;

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

    gap:32px;

    margin-top:30px;

}

.card{

    position:relative;

    padding:44px;

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

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

    border-radius:22px;

    overflow:hidden;

    transition:.35s ease;

}

.card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#D71920,#0A2E6D);

    opacity:0;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,255,255,.16);

    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.card:hover::before{

    opacity:1;

}

.card h3{

    font-size:34px;

    margin-bottom:18px;

    letter-spacing:-1px;

}

.card p{

    color:var(--text);

    line-height:1.8;

}

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

.cta{

    text-align:center;

    padding:140px 0;

    background:

        linear-gradient(

            180deg,

            rgba(10,46,109,.18),

            rgba(5,5,5,1)

        );

}

.cta h2{

    font-size:60px;

    letter-spacing:-2px;

    margin-bottom:20px;

}

.cta p{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:22px;

    line-height:1.8;

}

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

footer{

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

    padding:80px 0;

}

.footer{

    display:grid;

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

    gap:40px;

}

.footer h3{

    font-size:34px;

    margin-bottom:18px;

}

.footer h3 span{

    color:#D71920;

}

.footer h4{

    margin-bottom:18px;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:.1em;

}

.footer p{

    color:#9097A6;

    line-height:1.8;

}

.footer a{

    display:block;

    color:#C8CDD8;

    margin-bottom:10px;

    transition:.25s;

}

.footer a:hover{

    color:white;

}

/* ==========================================================
   MODAL
   ========================================================== */

#modalContainer{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    z-index:1000;

}

.modal{

    width:min(650px,92vw);

    padding:48px;

    border-radius:24px;

    background:#111216;

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

    animation:modalShow .25s ease;

}

.modal h2{

    font-size:40px;

    margin-bottom:14px;

}

.modal p{

    color:var(--text);

    margin-bottom:30px;

}

.modal input,
.modal textarea{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    border-radius:10px;

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

    background:#1A1B20;

    color:white;

    font-size:15px;

}

.modal input:focus,
.modal textarea:focus{

    outline:none;

    border-color:#D71920;

}

.modal textarea{

    min-height:140px;

    resize:vertical;

}

.modal .buttons{

    display:flex;

    gap:14px;

    margin-top:10px;

}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */

#cookieBanner{

    position:fixed;

    bottom:24px;

    left:24px;

    right:24px;

    padding:18px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-radius:14px;

    background:#111216;

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

    z-index:999;

}

#cookieBanner p{

    color:#C8CDD8;

    font-size:14px;

}

#cookieBanner button{

    background:#D71920;

    color:white;

    border:none;

    padding:12px 24px;

    border-radius:8px;

    cursor:pointer;

}

/* ==========================================================
   SUCCESS MESSAGE
   ========================================================== */

.success{

    text-align:center;

    padding:30px;

}

.success h3{

    color:#9BE37A;

    font-size:34px;

    margin-bottom:18px;

}

.success p{

    color:#D2D6DF;

}

/* ==========================================================
   MODAL ANIMATION
   ========================================================== */

@keyframes modalShow{

    from{

        opacity:0;

        transform:translateY(20px) scale(.96);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}