/* ==================================================
   WEBFORGE STYLE SHEET
================================================== */


/* RESET */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Inter",
        Arial,
        sans-serif;

    background: #06152b;

    color: #ffffff;

    line-height: 1.6;
}


.container {

    width: 90%;

    max-width: 1150px;

    margin: auto;
}


a {
    text-decoration: none;
}


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

header {

    position: sticky;

    top: 0;

    z-index: 999;

    background:
        rgba(3, 13, 28, 0.95);

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

    backdrop-filter: blur(10px);
}


.nav-container {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.logo {

    font-size: 27px;

    font-weight: 900;

    color: white;

    letter-spacing: 1px;
}


.logo span {

    color: #ff8a00;
}


nav {

    display: flex;

    gap: 25px;
}


nav a {

    color: #dbeafe;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}


nav a:hover {

    color: #ff8a00;
}


.nav-button {

    background:
        linear-gradient(
            90deg,
            #0787ff,
            #ff8a00
        );

    padding:
        10px 18px;

    border-radius: 6px;

    color: white;

    font-weight: 800;

    font-size: 14px;
}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


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

.hero {

    padding:
        100px 0;

    min-height:
        700px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 10% 30%,
            rgba(0,130,255,0.20),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 30%,
            rgba(255,130,0,0.16),
            transparent 30%
        );
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 60px;

    align-items: center;
}


.hero-badge {

    display: inline-block;

    padding:
        8px 14px;

    border:
        1px solid
        rgba(0,140,255,0.5);

    border-radius: 50px;

    color: #72c4ff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.hero-badge span {

    display: inline-block;

    width: 8px;

    height: 8px;

    background: #00a2ff;

    border-radius: 50%;

    margin-right: 8px;
}


.hero h1 {

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    line-height: 1.03;

    margin-bottom: 25px;
}


.hero h1 strong {

    display: block;

    color: #ff8a00;
}


.hero-content > p {

    max-width: 650px;

    color: #b9c7d8;

    font-size: 18px;

    margin-bottom: 30px;
}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.btn {

    display: inline-block;

    padding:
        14px 22px;

    border-radius: 7px;

    font-weight: 800;

    border: none;

    cursor: pointer;

    transition: 0.3s;
}


.primary-btn {

    color: white;

    background:
        linear-gradient(
            90deg,
            #0787ff,
            #ff8a00
        );
}


.secondary-btn {

    border:
        1px solid
        #31516f;

    color: white;
}


.btn:hover {

    transform:
        translateY(-2px);
}


.hero-features {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    color: #cbd5e1;

    font-size: 14px;
}


/* ==================================================
   CODE WINDOW
================================================== */

.hero-card {

    background:
        linear-gradient(
            145deg,
            #0c2847,
            #061326
        );

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

    border-radius: 20px;

    padding: 25px;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,0.35);

    text-align: center;
}


.code-window {

    background: #020a14;

    border-radius: 12px;

    overflow: hidden;

    text-align: left;

    margin-bottom: 25px;
}


.window-bar {

    height: 40px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding-left: 15px;

    background: #101d2c;
}


.window-bar span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #52657a;
}


.code-content {

    padding: 30px;

    color: #dbeafe;

    font-family:
        Consolas,
        monospace;

    font-size: 15px;

    min-height: 220px;
}


.blue {

    color: #0787ff;
}


.orange {

    color: #ff8a00;
}


.indent {

    padding-left: 25px;
}


.indent2 {

    padding-left: 50px;

    color: #fff;
}


.hero-card-title {

    font-size: 30px;

    font-weight: 900;
}


.hero-card-subtitle {

    color: #ff8a00;

    font-size: 12px;

    letter-spacing: 2px;

    margin-top: 5px;
}


/* ==================================================
   GENERAL SECTIONS
================================================== */

.section {

    padding:
        90px 0;
}


.section-heading {

    text-align: center;

    max-width: 750px;

    margin:
        0 auto
        50px;
}


.section-heading.left {

    text-align: left;

    margin-left: 0;
}


.section-heading > span {

    color: #0787ff;

    font-weight: 800;

    font-size: 13px;

    letter-spacing: 2px;
}


.section-heading h2 {

    font-size:
        clamp(
            32px,
            4vw,
            48px
        );

    line-height: 1.15;

    margin:
        10px 0
        15px;
}


.section-heading p {

    color: #aebed0;
}


/* ==================================================
   SERVICES
================================================== */

.service-grid {

    display: grid;

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

    gap: 20px;
}


.service-card {

    padding: 30px;

    background: #0b2139;

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

    border-radius: 12px;

    transition:
        transform 0.3s,
        border-color 0.3s;
}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #0787ff;
}


.service-icon {

    font-size: 35px;

    margin-bottom: 20px;
}


.service-card h3 {

    font-size: 20px;

    margin-bottom: 10px;
}


.service-card p {

    color: #aebed0;

    margin-bottom: 20px;
}


.service-card a {

    color: #ff8a00;

    font-weight: 800;

    font-size: 14px;
}


/* ==================================================
   ABOUT
================================================== */

.about-section {

    background: #081d35;
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 70px;

    align-items: center;
}


.about-grid > div:first-child > p {

    color: #b7c6d7;

    margin-bottom: 20px;

    font-size: 17px;
}


.about-box {

    padding: 60px 30px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0c294a,
            #061427
        );

    border:
        1px solid
        rgba(255,255,255,0.1);
}


.about-logo {

    width: 130px;

    height: 130px;

    margin:
        0 auto
        25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        8px solid
        #0787ff;

    color: #ff8a00;

    font-size: 50px;

    font-weight: 900;

    transform:
        rotate(-5deg);
}


.about-box h3 {

    font-size: 30px;
}


.about-box p {

    color: #0787ff;

    font-weight: 800;
}


.about-box p span {

    color: #ff8a00;
}


.about-lines {

    margin-top: 30px;
}


.about-lines div {

    height: 4px;

    margin: 8px auto;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #0787ff,
            #ff8a00
        );
}


.about-lines div:nth-child(1) {
    width: 80%;
}


.about-lines div:nth-child(2) {
    width: 60%;
}


.about-lines div:nth-child(3) {
    width: 40%;
}


/* ==================================================
   STATISTICS
================================================== */

.stats {

    padding:
        60px 0;

    background:
        linear-gradient(
            90deg,
            #061326,
            #0a2544
        );
}


.stats-grid {

    display: grid;

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

    text-align: center;
}


.stat {

    border-right:
        1px solid
        rgba(255,255,255,0.1);
}


.stat:last-child {

    border-right: none;
}


.stat strong {

    font-size: 42px;

    color: #ff8a00;
}


.stat span {

    font-size: 30px;

    color: #0787ff;
}


.stat p {

    color: #aebed0;
}


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

.process-grid {

    display: grid;

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

    gap: 20px;
}


.process-card {

    padding: 25px;

    background: #0b2139;

    border-radius: 12px;

    border:
        1px solid
        rgba(255,255,255,0.08);
}


.process-number {

    color: #0787ff;

    font-size: 30px;

    font-weight: 900;

    margin-bottom: 15px;
}


.process-card p {

    color: #aebed0;
}


/* ==================================================
   APPLICATION
================================================== */

.application-section {

    background: #081d35;
}


.application-form {

    max-width: 900px;

    margin: auto;

    padding: 40px;

    background: white;

    color: #172033;

    border-radius: 15px;
}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-weight: 700;

    margin-bottom: 7px;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px;

    border:
        1px solid
        #cbd5e1;

    border-radius: 7px;

    font-family: inherit;

    font-size: 15px;

    outline: none;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        #0787ff;
}


.form-group textarea {

    min-height: 130px;

    resize: vertical;
}


.agreement {

    display: flex;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 14px;

    color: #52657a;
}


.agreement input {

    margin-top: 5px;
}


.form-message {

    display: none;

    padding: 15px;

    margin-top: 20px;

    border-radius: 7px;

    background: #dcfce7;

    color: #166534;
}


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

.contact-section {

    padding:
        80px 0;

    background:
        linear-gradient(
            135deg,
            #06152b,
            #0b2949
        );
}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 50px;

    align-items: center;
}


.contact-label {

    color: #ff8a00;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-grid h2 {

    font-size:
        clamp(
            35px,
            5vw,
            55px
        );

    line-height: 1.1;

    margin:
        15px 0;
}


.contact-grid p {

    color: #b8c7d8;
}


.contact-information {

    padding: 30px;

    background:
        rgba(255,255,255,0.05);

    border-radius: 12px;
}


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

footer {

    padding:
        35px 0;

    background: #020b16;
}


.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-content p {

    color: #8193a8;

    font-size: 13px;
}


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

@media(max-width: 900px) {


    .menu-toggle {

        display: block;

        order: 3;
    }


    .nav-button {

        display: none;
    }


    nav {

        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        padding: 20px;

        background: #03101f;

        flex-direction: column;

        text-align: center;
    }


    nav.active {

        display: flex;
    }


    .hero-grid,
    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;
    }


    .service-grid {

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


    .process-grid {

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


    .stats-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 30px;
    }


    .stat {

        border-right: none;
    }

}


@media(max-width: 600px) {


    .hero {

        padding:
            70px 0;
    }


    .hero h1 {

        font-size: 48px;
    }


    .service-grid,
    .process-grid,
    .form-grid {

        grid-template-columns:
            1fr;
    }


    .hero-features {

        flex-direction:
            column;

        gap: 5px;
    }


    .application-form {

        padding: 25px;
    }


    .footer-content {

        flex-direction:
            column;

        text-align: center;
    }

}

/* Anti-spam honeypot */
.website-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
