
:root {
    --bg: #eef3f8;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --text: #14243d;
    --muted: #546273;
    --line: #d7e1ec;
    --brand: #475977;
    --brand-dark: #243146;
    --shadow: 0 16px 40px rgba(24, 35, 51, 0.10);
    --radius: 22px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.topbar {
    background: linear-gradient(90deg, #191919 0%, #22262b 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

    .brand img {
        height: 32px;
        width: auto;
        display: block;
    }

.main-nav,
.sub-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

    .main-nav a,
    .sub-nav a {
        font-size: 0.9rem;
        color: inherit;
        opacity: 0.92;
    }

.subbar {
    background: #fff;
    border-bottom: 1px solid #dde6f0;
}

.subbar-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.subbar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #22324a;
}

.sub-nav a {
    color: #2c3d57;
    font-weight: 600;
    font-size: 0.86rem;
}

.hero {
    padding: 40px 0 26px;
}

.hero-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: nowrap;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-copy {
    flex: 1 1 auto;
    min-width: 0;
    padding: 38px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-side {
    flex: 0 0 460px;
    width: 460px;
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf2f8;
    color: #4a5b78;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.25px;
    margin-bottom: 16px;
}

h1, h2, h3 {
    margin: 0 0 14px;
    line-height: 1.14;
    color: #10213a;
}

h1 {
    font-size: clamp(2rem, 3.3vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

h3 {
    font-size: 1.06rem;
}

p {
    margin: 0 0 14px;
    color: var(--muted);
}

.lead {
    font-size: 1.06rem;
    max-width: 56ch;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .18s ease;
}

.btn-primary {
    background: #4f6486;
    color: #fff;
    box-shadow: 0 10px 24px rgba(79, 100, 134, 0.22);
}

.btn-secondary {
    background: #fff;
    color: #415570;
    border-color: #d4deea;
}

.btn:hover {
    transform: translateY(-1px);
}

.mini-note {
    border-top: 1px solid #e4ebf3;
    padding-top: 16px;
    font-size: 0.95rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.stat-box {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

    .stat-box strong {
        display: block;
        margin-bottom: 4px;
        color: #22324a;
        font-size: 1rem;
    }

.section {
    padding: 14px 0 18px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 22px;
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.info-card,
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(24, 35, 51, 0.06);

}

    .panel h2,
    .info-card h3 {
        margin-bottom: 8px;
    }

.feature-list,
.fit-grid {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

    .feature-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        color: var(--muted);
    }

        .feature-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: -1px;
            color: #4f6486;
            font-size: 1.15rem;
            font-weight: 700;
        }

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
}

th, td {
    padding: 13px 14px;
    text-align: left;
    border-bottom: 1px solid #e8eef5;
    font-size: 0.95rem;
    color: var(--muted);
}

th {
    background: #f4f7fb;
    color: #263750;
    font-size: 0.88rem;
}

tr:last-child td {
    border-bottom: none;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

    .fit-grid li {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px 15px;
        color: #425163;
        font-weight: 600;
    }

.cta {
    padding: 18px 0 56px;
}

.cta-box {
    background: linear-gradient(135deg, #31425c 0%, #4e6385 100%);
    color: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 42px rgba(49, 66, 92, 0.20);
}

    .cta-box h2,
    .cta-box p,
    .cta-box li,
    .cta-box a {
        color: #fff;
    }

.contact-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer {
    padding: 0 0 36px;
    color: #6a7786;
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .grid-2,
    .grid-3,
    .fit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        flex-direction: column;
    }

    .hero-side {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
    }
}

}

@media (max-width: 720px) {
    .topbar-inner,
    .subbar-inner {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav,
    .sub-nav {
        gap: 14px;
    }

    .hero-copy,
    .hero-side,
    .info-card,
    .panel,
    .cta-box {
        padding: 20px;
    }

    .grid-2,
    .grid-3,
    .fit-grid,
    .stats {
        grid-template-columns: 1fr;
    }
}



.capabilities-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 26px;
}

.capabilities-left {
    flex: 1 1 auto;
    min-width: 0;
}

.capabilities-right {
    flex: 0 0 420px;
    width: 420px;
}

@media (max-width: 1080px) {
    .capabilities-row {
        flex-direction: column;
    }

    .capabilities-right {
        width: 100%;
        flex: 1 1 auto;
    }
}
