/* ========== Base ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --brand: #275996;
    --brand-2: #0e2e57;
    --ink: #081627;
    --muted: #5a6e88;
    --bg: #0c1f3b;
    --page: #f6f9fe;
    --card: #ffffff;
    --accent: #ff9e2c;
    --radius: 18px;
    --shadow: 0 16px 40px rgba(5,15,40,.22);
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: var(--ink);
    /* keep the dark outer background, content sits on lighter panels */
    background: #020817;
}

/* Limit overall width */
.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 20px 72px;
}

/* Typography helpers */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 700;
    color: #9bb3ff;
}

.eyebrow2 {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .99rem;
    font-weight: 700;
    color: #ffffff;
}

.lead {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--muted);
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* UPDATED: blue gradient instead of near-black */
    background: linear-gradient(180deg,#275996,#0e2e57);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(219,234,254,.35);
    box-shadow: 0 10px 30px rgba(5,15,40,.35);
}


.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

/* UPDATED: larger logo */
.logo-img {
    height: 64px;
    width: auto;
}

.Wilsonlogo-img {
    height: 30px;
    width: auto;
}
/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: #e5edff;
        border-radius: 999px;
    }

/* Desktop nav */
.site-nav {
    display: flex;
}
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu > li > a,
.dropdown-toggle {
    color: #e5edff;
    text-decoration: none;
    font-size: .94rem;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
}

.menu > li > a:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}

.menu > li > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,#ffb547,#ff7a1a);
    transition: width .18s ease;
}

.menu > li > a:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin-top: 10px;
    padding: 8px 0;
    border-radius: 14px;
    /* UPDATED: navy instead of black */
    background: #07152c;
    border: 1px solid rgba(148,163,184,.4);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
    list-style: none;
    display: none;
}

    .dropdown.open {
        display: block;
    }

    .dropdown li a {
        display: block;
        padding: 9px 16px;
        font-size: .9rem;
        color: #e5edff;
        text-decoration: none;
    }

        .dropdown li a:hover {
            background: rgba(148,163,184,.16);
        }

/* ========== HERO ========== */
.hero {
    background: radial-gradient(circle at top left,#1b3f80 0,#020617 60%);
    border-bottom: 1px solid rgba(15,23,42,.8);
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 40px;
    align-items: center;
}

.hero h1 {
    color: #f9fbff;
    font-size: clamp(30px,4vw,40px);
    line-height: 1.12;
    margin: .3em 0 .35em;
}

.hero .lead {
    color: #cbd5ff;
}

.hero-copy {
    color: #e5edff;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

    .btn.primary {
        background: linear-gradient(135deg,#ffb547,#ff7a1a);
        color: #1f2933;
        box-shadow: 0 14px 32px rgba(248,153,47,.35);
    }

        .btn.primary:hover {
            filter: brightness(1.03);
        }

    .btn.ghost {
        border-color: rgba(148,163,184,.6);
        color: #e5edff;
        background: transparent;
    }

        .btn.ghost:hover {
            background: rgba(15,23,42,.7);
        }

.hero-sub {
    font-size: .88rem;
    color: #9fb3ff;
    margin-top: 8px;
}

.hero-art {
    display: flex;
    justify-content: center;
}

    .hero-art img {
        max-width: 100%;
        height: auto;
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

/* ========== SOLUTIONS STRIP ========== */
.solutions-strip {
    background: var(--page);
    border-bottom: 1px solid #d7e2f4;
}

.strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px 40px;
}

.strip-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--brand-2);
    margin: 0 0 18px;
}

.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.solution-card {
    flex: 1 1 190px;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid #d8e2f4;
    background: #ffffff;
    text-decoration: none;
    color: var(--ink);
    font-size: .9rem;
    box-shadow: 0 6px 18px rgba(15,23,42,.06);
    transition: transform .15s ease, box-shadow .15s ease, border .15s ease;
}

    .solution-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(15,23,42,.16);
        border-color: #b6c7f3;
    }

.solution-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* ========== LOGO BAR ========== */
/* This is the thin “trusted by …” strip right under hero for this layout */
.logo-bar {
    /* UPDATED: softer navy not pure black */
    background: #0b2344;
    border-top: 1px solid rgba(148,163,184,.4);
}

.logo-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 20px 26px;
    color: #9ca3af;
}

.logo-bar-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 10px;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

    .logo-row img {
        height: 32px;
        width: auto;
        opacity: .75;
        filter: grayscale(100%);
    }

/* ========== FOOTER ========== */
.site-footer {
    /* UPDATED: navy blue instead of near-black */
    background: #0e2e57;
    border-top: 1px solid rgba(219,234,254,.4);
    color: #e5eeff;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .85rem;
}

site-footer__inner {
    max-width: 1150px;
    margin-inline: auto;
    padding: 14px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .88rem;
    }

.site-footer a {
    color: #e5eeff;
    text-decoration: none;
}

    .site-footer a:hover {
        text-decoration: underline;
    }

.designer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.designer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #e5edff;
}

    .designer-link:hover {
        text-decoration: underline;
    }

.designer-logo {
    height: 32px;
    width: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        border-radius: 0 0 28px 28px;
    }
}

@media (max-width:780px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        background: #07152c;
        border-bottom: 1px solid rgba(148,163,184,.3);
        display: none;
    }

    .site-nav.open {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px 16px;
        gap: 6px;
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown {
        position: static;
        margin-top: 4px;
        box-shadow: none;
        border-radius: 10px;
        background: #07152c;
        border: 1px solid rgba(148,163,184,.4);
    }
}

/* Tiny screens */
@media (max-width:500px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
