/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --color-navy: #0B2D6B;
    --color-blue: #1167C9;
    --color-sky: #159FEA;
    --color-cyan: #5BD6FF;

    --color-gold: #FFB52E;
    --color-gold-soft: #FFF4D6;

    --color-ink: #10213F;
    --color-muted: #5F6F86;

    --color-white: #fff;
    --color-soft: #F5F9FF;
    --color-line: #DCE8F7;

    --shadow: 0 18px 50px rgba(11, 45, 107, 0.10);
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--color-ink);
    background: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SITE HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220, 232, 247, 0.9);
}

.nav {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--color-navy);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #50627A;
    font-size: 0.93rem;
    font-weight: 650;
}

.nav-links a:hover {
    color: var(--color-navy);
}

.nav-cta {
    padding: 5px 15px;
    border-radius: 12px;
    background: var(--color-navy);
    color: #fff !important;
    box-shadow: 0 7px 18px rgba(11, 45, 107, 0.18);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--color-navy);
    font-size: 1.45rem;
    padding: 7px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    display: inline-block;
    color: var(--color-sky);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.2s;
}

.btn-primary {
    background: var(--color-navy);
    color: #fff;
    box-shadow: 0 8px 18px rgba(11, 45, 107, 0.15);
}

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

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

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


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 82px 0;
}

.section h2 {
    margin: 0 0 10px;
    color: var(--color-navy);
    font-size: 2.15rem;
    letter-spacing: -0.035em;
    text-align: center;
}

.section-lead {
    max-width: 710px;
    margin: 0 auto 36px;
    color: var(--color-muted);
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   PAGE HEADINGS
   ========================================================= */

.page-heading {
    padding: 64px 0 20px;
}

.page-heading h1 {
    margin: 15px 0 10px;
    color: var(--color-navy);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.page-heading h1 span {
    color: var(--color-blue);
}

.page-heading p {
    max-width: 760px;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================================
   CONTENT
   ========================================================= */

.content {
    padding: 20px 0 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.content-card {
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(11, 45, 107, 0.045);
}

.content-card h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    text-align: left;
}

.content-card h3 {
    margin-top: 25px;
    color: var(--color-navy);
}

.content-card p,
.content-card li {
    color: var(--color-muted);
    line-height: 1.75;
}

.content-card ul {
    padding-left: 20px;
}


/* =========================================================
   CALLOUT
   ========================================================= */

.callout {
    padding: 22px;
    border-left: 4px solid var(--color-sky);
    border-radius: 12px;
    background: #F4FAFF;
    color: #526B86;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    margin-top: 40px;
    border-top: 1px solid var(--color-line);
    background: #F7FAFE;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-navy);
    font-weight: 800;
}

.footer-brand img {
    width: 30px;
    height: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--color-muted);
    font-size: 0.82rem;
}

.footer-links a:hover {
    color: var(--color-blue);
}

.footer-tagline {
    color: var(--color-muted);
    font-size: 0.78rem;
}


/* =========================================================
   FOOTER LEGAL
   ========================================================= */

.footer-legal {
    padding: 18px 0 26px;
    border-top: 1px solid #E7EEF6;
}

.footer-copyright {
    color: #53677F;
    font-size: 0.78rem;
    font-weight: 800;
}

.footer-legal p {
    max-width: 900px;
    margin: 6px 0 0;
    color: #8090A4;
    font-size: 0.72rem;
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE — MOBILE / TABLET
   ========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}
