:root {
    --brand-blue: #163e8c;
    --brand-blue-deep: #0d275c;
    --brand-gold: #d79a1e;
    --brand-light: #f4f7fc;
    --brand-text: #17304f;
    --brand-muted: #5f6f84;
    --brand-white: #ffffff;
    --brand-shadow: 0 20px 60px rgba(13, 39, 92, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--brand-text);
    background: #eef3fb;
}

a {
    text-decoration: none;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(14, 39, 89, 0.08);
}

.brand-logo {
    height: 56px;
    width: auto;
}

.brand-since {
    color: var(--brand-blue);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.nav-since {
    display: inline-flex;
    align-items: center;
    min-height: 2.8rem;
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0 0.35rem 0 1.35rem;
    margin-left: 0.35rem;
    white-space: nowrap;
}

.nav-link {
    color: var(--brand-blue-deep);
    font-weight: 600;
    padding: 0.9rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-gold);
}

.login-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 62, 140, 0.08);
    color: var(--brand-blue);
    font-size: 1.3rem;
}

.section-space {
    padding: 6rem 0;
}

.eyebrow,
.section-tag,
.quote-kicker {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
}

.section-tag {
    color: var(--brand-gold);
    margin-bottom: 0.85rem;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-gold), #efb74d);
    border: 0;
    color: #17253d;
    font-weight: 800;
    border-radius: 16px;
    padding: 0.95rem 1.2rem;
}

.btn-brand:hover,
.btn-brand:focus {
    background: linear-gradient(135deg, #ecb24a, #f7c567);
    color: #17253d;
}

.site-footer {
    background: #0d1f48;
    color: var(--brand-white);
    padding: 4rem 0 1.4rem;
}

.site-footer h3 {
    color: var(--brand-white);
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-logo {
    width: auto;
    max-height: 58px;
    margin-bottom: 1rem;
    filter: brightness(1.08);
}

.footer-brand-text {
    color: var(--brand-white);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-copy,
.footer-list a,
.footer-list li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li + li {
    margin-top: 0.6rem;
}

.footer-list a:hover {
    color: #f6cb6c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
    color: #f6cb6c;
}

.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
    z-index: 1050;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(255, 255, 255, 0.97);
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 46px;
    }

    .brand-since {
        font-size: 0.74rem;
    }

    .nav-since {
        padding-left: 1rem;
        margin-left: 0;
        min-height: auto;
        font-size: 0.82rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
