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

html {
    scroll-behavior: smooth;
}

body {
    background: #030b18;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

section {
    position: relative;
}

.eyebrow {
    color: #7ea2ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3,11,24,0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    color: #d6e1ff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: white;
}

.nav-button {
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg,#3a5fff,#6b84ff);
    color: white !important;
    font-weight: 700;
}

/* HERO */

.hero-section {
    padding: 140px 0 120px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 84px;
    line-height: 0.96;
    letter-spacing: -3px;
    margin-bottom: 34px;
    max-width: 780px;
}

.hero-content p {
    color: #b5c2d8;
    font-size: 22px;
    max-width: 760px;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.primary-button {
    padding: 18px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg,#355dff,#6d84ff);
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    padding: 18px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HERO CARD */

.hero-card {
    position: relative;
}

.card-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(70,100,255,0.4), transparent 70%);
    filter: blur(90px);
    z-index: 0;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    padding: 52px;
    border-radius: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.stat-box {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    color: #b8c5d9;
    font-size: 18px;
}

/* BACKGROUND GLOWS */

.hero-background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.38;
    pointer-events: none;
}

.circle-one {
    width: 560px;
    height: 560px;
    background: #274eff;
    top: -220px;
    right: -160px;
}

.circle-two {
    width: 480px;
    height: 480px;
    background: #603dff;
    left: -180px;
    bottom: -180px;
}

/* SECTIONS */

.services-section,
.capabilities-section {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 62px;
    line-height: 1.02;
    letter-spacing: -2px;
    max-width: 900px;
}

/* DIVISION CARDS */

.two-column-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.division-card {
    min-height: 460px;
    padding: 54px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(80,110,255,0.18), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));

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

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.3s ease;
}

.division-card:hover {
    transform: translateY(-8px);
    border-color: rgba(115,136,255,0.5);
}

.capability-number {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 800;
    color: #7da2ff;
    letter-spacing: 3px;
}

.division-card h3 {
    font-size: 44px;
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.division-card p {
    color: #b9c6dc;
    font-size: 20px;
    margin-bottom: 40px;
}

/* SERVICES GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 34px;
    padding: 42px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(115,136,255,0.45);
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 22px;
}

.service-card p {
    color: #b9c6dc;
    margin-bottom: 26px;
    font-size: 18px;
}

.service-card a {
    color: #7ea4ff;
    font-weight: 700;
}

/* CTA */

.cta-section {
    padding: 120px 0;
}

.cta-container {
    padding: 72px;
    border-radius: 42px;
    background: linear-gradient(135deg,#13284d,#1b2343);
    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-container h2 {
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: -2px;
}

/* CONTACT FORM */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #dbe5ff;
    font-size: 15px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.25s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(115,136,255,0.7);
    background: rgba(255,255,255,0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}

.contact-form option {
    background: #091426;
    color: white;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 42px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a6b4cb;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .hero-grid,
    .two-column-services,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 64px;
    }

    .section-heading h2,
    .cta-container h2 {
        font-size: 48px;
    }
}

@media (max-width: 760px) {

    .nav-container {
        flex-direction: column;
        gap: 24px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo img {
        height: 72px;
    }

    .hero-section {
        padding: 90px 0;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p,
    .division-card p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .division-card {
        padding: 38px;
        min-height: auto;
    }

    .division-card h3 {
        font-size: 34px;
    }

    .cta-container {
        padding: 42px;
    }

    .section-heading h2,
    .cta-container h2 {
        font-size: 38px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
    }
}