/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #06152b;

    color: white;

    line-height: 1.6;
}


.container {
    width: 90%;

    max-width: 1150px;

    margin: auto;
}


/* =========================
   HEADER
========================= */

header {

    background: #03101f;

    border-bottom:
        1px solid
        rgba(255,255,255,0.1);

    position: sticky;

    top: 0;

    z-index: 1000;
}


.nav {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.logo {

    font-size: 28px;

    font-weight: 900;

    letter-spacing: 1px;
}


.logo span {

    color: #ff8a00;
}


nav {

    display: flex;

    gap: 20px;
}


nav a {

    color: white;

    text-decoration: none;

    font-weight: bold;

    font-size: 14px;
}


nav a:hover {

    color: #ff8a00;
}


/* =========================
   BUTTON
========================= */

.button {

    display: inline-block;

    padding:
        13px
        22px;

    background:
        linear-gradient(
            90deg,
            #0787ff,
            #ff8a00
        );

    color: white;

    text-decoration: none;

    font-weight: bold;

    border-radius: 7px;

    border: none;

    cursor: pointer;
}


.button:hover {

    opacity: 0.9;
}


/* =========================
   HERO
========================= */

.hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(0,130,255,0.25),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(255,130,0,0.20),
            transparent 35%
        ),

        #06152b;
}


.hero-content {

    display: flex;

    align-items: center;
}


.hero-text {

    max-width: 800px;
}


.small-title {

    color: #0787ff;

    font-weight: bold;

    letter-spacing: 2px;
}


.hero h1 {

    font-size:
        clamp(
            45px,
            7vw,
            75px
        );

    line-height: 1.05;

    margin:
        20px
        0;
}


.hero h1 span {

    color: #ff8a00;
}


.hero p {

    color: #cbd5e1;

    font-size: 19px;

    max-width: 700px;

    margin-bottom: 30px;
}


/* =========================
   SECTIONS
========================= */

section {

    padding:
        80px
        0;
}


.section-title {

    text-align: center;

    max-width: 750px;

    margin:
        0
        auto
        45px;
}


.section-title h2 {

    font-size: 40px;

    margin-bottom: 10px;
}


.section-title p {

    color: #cbd5e1;
}


/* =========================
   SERVICES
========================= */

.services {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}


.card {

    background: #0c2039;

    border:
        1px solid
        rgba(255,255,255,0.1);

    padding: 30px;

    border-radius: 12px;

    transition: 0.3s;
}


.card:hover {

    transform:
        translateY(-5px);

    border-color:
        #0787ff;
}


.card h3 {

    color: #ff8a00;
}


.card p {

    color: #cbd5e1;
}


/* =========================
   ABOUT
========================= */

.about {

    background: #081d35;
}


.about p {

    max-width: 900px;

    margin:
        15px
        auto;

    color: #cbd5e1;

    font-size: 18px;
}


/* =========================
   BENEFITS
========================= */

.benefits {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 15px;
}


.benefits div {

    padding: 20px;

    background: #0c2039;

    border-radius: 8px;

    border-left:
        4px solid
        #0787ff;
}


/* =========================
   APPLICATION
========================= */

.application {

    background: #081d35;
}


.application-form {

    max-width: 800px;

    margin: auto;

    background: white;

    color: #172033;

    padding: 35px;

    border-radius: 15px;
}


.application-form label {

    display: block;

    font-weight: bold;

    margin-bottom: 7px;
}


.application-form input,
.application-form select,
.application-form textarea {

    width: 100%;

    padding: 13px;

    margin-bottom: 20px;

    border:
        1px solid
        #cbd5e1;

    border-radius: 7px;

    font-size: 16px;
}


.application-form textarea {

    min-height: 130px;

    resize: vertical;
}


.checkbox {

    display: flex !important;

    gap: 10px;

    align-items: flex-start;

    font-weight: normal !important;

    margin-bottom: 20px;
}


.checkbox input {

    width: auto;

    margin-top: 5px;
}


.form-note {

    color: #64748b;

    font-size: 13px;

    margin-top: 15px;
}


/* =========================
   CONTACT
========================= */

.contact {

    text-align: center;
}


.contact h2 {

    font-size: 40px;
}


.contact p {

    color: #cbd5e1;
}


/* =========================
   FOOTER
========================= */

footer {

    background: #020b16;

    padding:
        40px
        0;

    text-align: center;
}


footer h3 {

    font-size: 25px;
}


footer span {

    color: #ff8a00;
}


footer p {

    color: #94a3b8;
}


/* =========================
   MOBILE
========================= */

@media
(max-width: 800px) {

    nav {

        display: none;
    }


    .services {

        grid-template-columns:
            1fr;
    }


    .benefits {

        grid-template-columns:
            1fr;
    }


    .hero {

        min-height:
            550px;
    }


    .hero h1 {

        font-size:
            48px;
    }


    .application-form {

        padding: 25px;
    }

}