/* ==============================
   PRO HEADER (White Version)
================================= */

.pro-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Navbar spacing */
.pro-navbar {
    min-height: 84px;
    padding-block: 18px;
} 

/* ==============================
   Brand
================================= */

.pro-brand__text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--pro-text);
}

/* ==============================
   Navigation Links
================================= */

.pro-nav__link {
    font-weight: 600;
    color: var(--pro-muted);
    padding: .5rem .6rem;
    transition: color .2s ease;
}

    .pro-nav__link:hover {
        color: var(--pro-text);
    }

    .pro-nav__link.active {
        color: var(--pro-text);
    }

/* ==============================
   Buttons
================================= */

.pro-btn-pill {
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
}

/* Login (outline pill) */
.pro-btn-ghost {
    background: transparent;
    border: 1px solid rgba(0,0,0,.1);
    color: var(--pro-text);
}

    .pro-btn-ghost:hover {
        background: rgba(0,0,0,.04);
    }

/* Get Started uses Bootstrap primary from theme.css */
.btn-primary.pro-btn-pill {
    padding: 10px 22px;
}

/* ==============================
   Mobile Toggler
================================= */

.pro-toggler {
    border: 1px solid rgba(0,0,0,.1);
}

    .pro-toggler .navbar-toggler-icon {
        filter: none;
    }

/* ==============================
   Responsive adjustments
================================= */

@media (max-width: 991.98px) {

    .pro-nav {
        padding-top: 14px;
    }

    .pro-actions {
        padding-top: 16px;
    }
}




/* =========================================================
   FOOTER • Component Layer
========================================================= */

.pro-footer {
    position: relative;
    background: linear-gradient( 135deg, #EEF2F7 0%, #E9ECEF 40%, #E7EDF6 100% );
    overflow: hidden;
}

    /* Soft pastel glow */
    .pro-footer::before {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: -220px;
        height: 520px;
        pointer-events: none;
        background: radial-gradient(closest-side at 20% 20%, rgba(var(--bs-primary-rgb), .18), rgba(var(--bs-primary-rgb), 0) 60%), radial-gradient(closest-side at 45% 30%, rgba(var(--bs-warning-rgb), .22), rgba(var(--bs-warning-rgb), 0) 62%), radial-gradient(closest-side at 70% 25%, rgba(var(--bs-info-rgb), .22), rgba(var(--bs-info-rgb), 0) 62%);
        filter: blur(8px);
        opacity: .9;
    }

    .pro-footer > .container {
        position: relative;
        z-index: 2;
    }

    /* If footer uses .pro-section, tweak top padding only */
    .pro-footer.pro-section {
        padding-top: 4rem;
    }

/* Brand */
.pro-footer__tagline {
    font-weight: 700;
    color: var(--pro-text);
}

.pro-footer__text {
    color: var(--pro-muted);
    line-height: 1.7;
    max-width: 44ch;
}

/* Column titles */
.pro-footer__title {
    font-weight: 700;
    color: var(--pro-text);
    margin-bottom: 14px;
}

/* Links */
.pro-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

    .pro-footer__list a {
        color: var(--pro-muted);
        text-decoration: none;
        font-weight: 500;
        transition: color .15s ease;
    }

        .pro-footer__list a:hover {
            color: var(--pro-text);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

/* Divider */
.pro-footer__divider {
    border: 0;
    border-top: 1px dashed rgba(0,0,0,.12);
    opacity: 1;
}

/* Bottom bar */
.pro-footer__copy {
    color: var(--pro-muted);
}

.pro-footer__bottomlinks a {
    color: var(--pro-muted);
    text-decoration: none;
}

    .pro-footer__bottomlinks a:hover {
        color: var(--pro-text);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.pro-footer__dot {
    color: rgba(0,0,0,.4);
}

/* Mobile spacing */
@media (max-width: 575.98px) {
    .pro-footer.pro-section {
        padding-top: 3rem;
    }
}
