:root {
    --brand-blue: #153E90;
    /* deep blue from logo */
    --brand-blue-2: #1F59B6;
    /* accent blue */
    --brand-gray: #8B8F98;
    /* light gray from GEN */
    --bg: #F4F7FB;
    /* page background */
    --text: #0F172A;
    --muted: #64748B;
    --card: #FFFFFF;
    --shadow: 0 10px 30px rgba(17, 24, 39, .08);
    --radius: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    line-height: 1.55
}

a {
    color: var(--brand-blue);
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px
}

/* Buttons & chips */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
    user-select: none
}

.btn:active {
    transform: translateY(1px)
}

.btn.primary {
    background: var(--brand-blue);
    color: #fff
}

.btn.primary:hover {
    background: var(--brand-blue-2)
}

.btn.outline {
    background: #fff;
    border-color: var(--brand-blue);
    color: var(--brand-blue)
}

.btn.outline:hover {
    background: #f4f7ff
}

.btn.ghost {
    background: transparent;
    border-color: #c3d3ff;
    color: var(--brand-blue)
}

.btn.ghost:hover {
    background: #eef4ff
}

.chip {
    display: inline-block;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #EEF2FF;
    color: #334155;
    border: 1px solid #E4E8FF
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #ffffffd9;
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 50
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f59b6 0%, #b6beca 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800
}

.brand-title {
    margin: 0;
    font-size: 18px;
    letter-spacing: .6px
}

.brand-title span {
    color: var(--brand-gray)
}

.menu {
    display: flex;
    align-items: center;
    gap: 18px
}

.menu a {
    color: #334155;
    font-weight: 600
}

.menu a:hover {
    color: var(--brand-blue)
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px
}

/* Mobile nav */
@media (max-width:760px) {
    .menu-btn {
        display: flex
    }

    .menu {
        position: absolute;
        top: 68px;
        right: 16px;
        left: 16px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 12px;
        display: none;
        flex-direction: column
    }

    .menu.open {
        display: flex
    }
}

/* Hero */
/* ===== New Split Hero ===== */
.hero--split {
    position: relative;
    padding: 0;
    /* edge to edge */
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 85% -10%, #EAF1FF 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 10%, #EAF1FF 0%, transparent 55%),
        linear-gradient(180deg, #F6F9FF 0%, #F4F7FB 100%);
}

.hero-blob {
    position: absolute;
    right: -12%;
    top: -18%;
    width: 55vw;
    height: 55vw;
    max-width: 840px;
    max-height: 840px;
    background: radial-gradient(50% 50% at 50% 50%, #dfe9ff 0%, rgba(223, 233, 255, 0) 60%);
    filter: blur(8px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 32px;
    padding: 72px 16px;
    /* roomy */
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 56px 16px;
    }
}

/* Left */
.hero-copy {
    max-width: 700px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #334155;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #e4e8ff;
}

.hero-headline {
    margin: 14px 0 8px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
}

.hero-headline span {
    color: var(--brand-blue)
}

@media (max-width:980px) {
    .hero-headline {
        font-size: 32px
    }
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 18px
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 20px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-statbar {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid #e8ecf7;
}

.hero-statbar .sep {
    width: 1px;
    height: 26px;
    background: #e6ebf6
}

.stat {
    display: grid
}

.stat-big {
    font-weight: 800;
    font-size: 18px;
    line-height: 1
}

.stat-sub {
    color: #6b7280;
    font-size: 12px;
    margin-top: 2px
}

/* Right */
.hero-visual {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e6ebf6;
    margin: 10px 0;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

.hero-visual figcaption {
    font-size: 12px;
    color: var(--muted);
    padding: 10px 12px;
    border-top: 1px solid #eef2f7
}

/* Categories grid */
.categories-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width:1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:920px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:560px) {
    .categories-grid {
        grid-template-columns: 1fr
    }
}

/* Category card */
.category {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid #E9EDF6;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.category:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(17, 24, 39, .12);
    border-color: #dfe6ff;
}

/* Icon */
.cat-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: radial-gradient(110% 110% at 20% 20%, #f5f8ff 0%, #e8eeff 60%, #dfe6ff 100%);
    display: grid;
    place-items: center;
    border: 1px solid #dfe6ff;
}

.cat-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-blue);
    fill: none;
    stroke-width: 1.8;
}

/* Copy */
.cat-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.cat-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}



/* Brand Strip Section */
/* ---------- Brands: Logo Tiles ---------- */

/* Section background */
/* accessibility helper */
/* Section */
.brands-surface {
    background: #f7faff;
    padding: 50px 0;
}

/* Grid */
.brand-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

/* Card */
.brand-card {
    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: #153e90;
}

/* Logo sizing */
.brand-card img {
    max-height: 50px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.8);
    transition: filter 0.25s ease;
}

.brand-card:hover img {
    filter: none;
}




/* ========== Services icon cards ========== */
.services-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width:980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #E9EDF6;
    box-shadow: var(--shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.service:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(17, 24, 39, .12);
    border-color: #dfe6ff;
}

.svc-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: radial-gradient(120% 120% at 20% 20%, #f6f9ff 0%, #e8eeff 60%, #dfe6ff 100%);
    display: grid;
    place-items: center;
    border: 1px solid #dfe6ff;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-blue);
    fill: none;
    stroke-width: 1.8;
}

.svc-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.svc-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center
}

@media (max-width:920px) {
    .hero-inner {
        grid-template-columns: 1fr
    }
}

.hero-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow)
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .92));
    backdrop-filter: saturate(180%) blur(4px)
}

.title {
    font-size: 36px;
    line-height: 1.15;
    margin: 8px 0 12px
}

.subtitle {
    color: var(--muted);
    margin: 0 0 18px
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 22px
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px
}

.hero-media {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff
}

.hero-media img {
    display: block
}

.hero-media figcaption {
    font-size: 12px;
    color: var(--muted);
    padding: 10px 12px;
    border-top: 1px solid #eef2f7
}

/* Sections */
.section {
    padding: 54px 0
}

.section.muted {
    background: #F7FAFF
}

.section-title {
    font-size: 24px;
    margin: 0 0 18px
}

.grid {
    display: grid;
    gap: 16px
}

.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width:920px) {

    .grid.cols-4,
    .grid.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:560px) {

    .grid.cols-4,
    .grid.cols-3 {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.card.hover {
    transition: transform .18s ease, box-shadow .18s ease
}

.card.hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(17, 24, 39, .12)
}

.card h3 {
    margin: 0 0 6px;
    font-size: 16px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

/* Brands row */
.brand-badges {
    gap: 12px
}

.brand-badges .chip {
    border-color: #dfe6ff
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px
}

@media (max-width:920px) {
    .contact {
        grid-template-columns: 1fr
    }
}

.form .row {
    margin-top: 12px
}

.form .row.two {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr
}

@media (max-width:560px) {
    .form .row.two {
        grid-template-columns: 1fr
    }
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #fff;
    font: inherit
}

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

.form .actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.info-row {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    align-items: flex-start
}

.icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--brand-blue)
}

/* Footer */
.footer {
    padding: 26px 0;
    color: #fff;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-2))
}

.foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: center
}

.small {
    font-size: 12px;
    color: #c8d3ff
}

/* Floating actions */
.fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 60
}

.fab .btn {
    box-shadow: var(--shadow)
}