* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0B0B0D;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: white;
    border-bottom: 1px solid #E6EAF0;
}

.logo {
    width: 145px;
    height: auto;
}

.navbar a {
    margin-left: 28px;
    text-decoration: none;
    color: #0B0B0D;
    font-weight: 600;
    font-size: 15px;
}

    .navbar a:hover {
        color: #007BFF;
    }

.hero {
    position: relative;
    height: 88vh;
    overflow: hidden;
    background: #0B0B0D;
}

    .hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.08) );
    }

.hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    max-width: 720px;
}

.hero-label {
    display: inline-block;
    color: #77B7FF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 62px;
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-text p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 34px;
    color: #E8EDF5;
}

.btn {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

    .btn:hover {
        background: #005FCC;
        transform: translateY(-2px);
    }

.impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 55px 60px;
    background: #F7F9FC;
}

    .impact div {
        background: white;
        border: 1px solid #E6EAF0;
        border-radius: 18px;
        padding: 28px;
        font-weight: 800;
        text-align: center;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    }

.positioning {
    padding: 75px 60px 40px;
    text-align: center;
}

    .positioning p {
        max-width: 950px;
        margin: auto;
        font-size: 24px;
        line-height: 1.7;
        color: #222;
        font-weight: 500;
    }

.portfolio {
    padding: 70px 60px 80px;
    text-align: center;
}

.eyebrow {
    color: #007BFF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.portfolio h2,
.use-cases h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin: 14px 0 38px;
}

.videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

    .videos video {
        width: 100%;
        border-radius: 18px;
        border: 1px solid #E6EAF0;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
        background: #0B0B0D;
    }

.use-cases {
    padding: 85px 60px;
    text-align: center;
    background: #F7F9FC;
}

.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

    .cases div {
        background: white;
        padding: 34px;
        border-radius: 20px;
        border: 1px solid #E6EAF0;
        text-align: left;
        box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
    }

    .cases h3 {
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .cases p {
        color: #555;
        line-height: 1.6;
    }

.about {
    padding: 75px 60px;
    background: white;
    text-align: center;
}

    .about p {
        max-width: 850px;
        margin: auto;
        font-size: 22px;
        line-height: 1.7;
        color: #333;
    }

.cta {
    margin: 60px 60px 85px;
    padding: 65px 40px;
    background: #0B0B0D;
    color: white;
    border-radius: 28px;
    text-align: center;
}

    .cta h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 38px;
        margin-bottom: 25px;
    }

/* SERVICES PAGE */
.page-hero {
    padding: 90px 60px 50px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

    .page-hero h1,
    .contact-left h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 46px;
        line-height: 1.15;
        margin: 16px 0;
        color: #0B0B0D;
    }

    .page-hero p,
    .contact-left p {
        font-size: 18px;
        color: #555;
        line-height: 1.7;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 60px 70px;
}

.service-card {
    background: #F7F9FC;
    padding: 38px;
    border-radius: 20px;
    border: 1px solid #E6EAF0;
    text-align: left;
    transition: 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 123, 255, 0.12);
    }

    .service-card h2 {
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #555;
        line-height: 1.6;
    }

.cta-card {
    margin: 20px 60px 80px;
    padding: 55px;
    background: #0B0B0D;
    color: white;
    border-radius: 28px;
    text-align: center;
}

    .cta-card h2 {
        margin-bottom: 25px;
        font-family: 'Montserrat', sans-serif;
    }

/* CONTACT PAGE */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 90px 60px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
    background: #F7F9FC;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #E6EAF0;
}

.contact-form {
    background: #F7F9FC;
    padding: 38px;
    border-radius: 22px;
    border: 1px solid #E6EAF0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 16px;
        border: 1px solid #D7DDE5;
        border-radius: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    .contact-form button {
        background: #007BFF;
        color: white;
        border: none;
        padding: 16px;
        border-radius: 999px;
        font-weight: 800;
        cursor: pointer;
        transition: 0.25s ease;
    }

        .contact-form button:hover {
            background: #005FCC;
            transform: translateY(-2px);
        }

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        padding: 18px 24px;
        flex-direction: column;
        gap: 18px;
    }

        .navbar a {
            margin: 0 10px;
        }

    .hero {
        height: 75vh;
    }

    .hero-text {
        left: 25px;
        right: 25px;
    }

        .hero-text h1 {
            font-size: 39px;
        }

        .hero-text p {
            font-size: 17px;
        }

    .impact,
    .videos,
    .cases,
    .services-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .positioning {
        padding: 50px 25px 25px;
    }

        .positioning p {
            font-size: 19px;
        }

    .portfolio {
        padding: 55px 25px;
    }

    .use-cases {
        padding: 60px 25px;
    }

    .about {
        padding: 50px 25px;
    }

        .about p {
            font-size: 18px;
        }

    .cta,
    .cta-card {
        margin: 40px 25px;
        padding: 40px 25px;
    }

    .page-hero {
        padding: 60px 25px 30px;
    }

        .page-hero h1,
        .contact-left h1 {
            font-size: 34px;
        }
}
