:root {
    --pf-template-primary: #4f46e5;
    --pf-template-text: #1f2937;
    --pf-template-muted: #64748b;
    --pf-template-border: #e5e7eb;
    --pf-template-bg: #ffffff;
}

* {
    box-sizing: border-box;
}

.pf-template-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.pf-template-header {
    padding: 22px 0;
    background: #fff;
    border-bottom: 1px solid var(--pf-template-border);
}

.pf-template-navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--pf-template-border);
}

.pf-template-navbar__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.pf-template-navbar a {
    color: var(--pf-template-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.pf-dynamic-section {
    padding: 80px 0;
}

.pf-section-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.pf-section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--pf-template-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pf-section-heading h2 {
    margin: 0;
    color: var(--pf-template-text);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.pf-section-heading p {
    margin: 14px auto 0;
    color: var(--pf-template-muted);
    line-height: 1.75;
}

.pf-template-footer {
    padding: 34px 0;
    background: #111827;
    color: #fff;
}


/* === PORTAL01 PROFESSIONAL COMPONENTS START === */

html {
    scroll-behavior: smooth;
}

.pf-template-header {
    padding: 17px 0;
    background: #fff;
}

.pf-template-header__inner,
.pf-template-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pf-template-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #111827;
    text-decoration: none;
}

.pf-template-brand__mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #4f46e5, #6366f1);
}

.pf-template-brand__content {
    display: grid;
    gap: 2px;
}

.pf-template-brand__content strong {
    font-size: 14px;
    font-weight: 850;
}

.pf-template-brand__content small {
    color: #94a3b8;
    font-size: 9px;
}

.pf-template-header__status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
}

.pf-template-header__status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16,185,129,.10);
}

.pf-template-navbar {
    box-shadow: 0 6px 24px rgba(15,23,42,.035);
}

.pf-template-navbar__links {
    display: flex;
    align-items: center;
    gap: 21px;
}

.pf-template-navbar__links a {
    color: #475569;
}

.pf-template-navbar__links a:hover {
    color: #4f46e5;
}

.pf-template-navbar__cta {
    min-height: 36px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 9px;
    background: #4f46e5;
    color: #fff !important;
    text-decoration: none;
    font-size: 10px !important;
    font-weight: 800;
}

.pf-template-footer {
    padding: 62px 0 26px;
}

.pf-template-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
}

.pf-template-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-template-footer__brand > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #4f46e5;
}

.pf-template-footer__grid p {
    max-width: 420px;
    margin: 17px 0 0;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.7;
}

.pf-template-footer__title {
    display: block;
    margin-bottom: 15px;
    font-size: 11px;
}

.pf-template-footer__grid a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 10px;
}

.pf-template-footer__grid a:hover {
    color: #fff;
}

.pf-template-footer__bottom {
    margin-top: 44px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #64748b;
    font-size: 9px;
}

@media (max-width: 760px) {

    .pf-template-header__status {
        display: none;
    }

    .pf-template-navbar__inner {
        overflow-x: auto;
    }

    .pf-template-navbar__links {
        min-width: max-content;
    }

    .pf-template-navbar__cta {
        display: none;
    }

    .pf-template-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pf-template-footer__bottom {
        flex-direction: column;
    }

}

/* === PORTAL01 PROFESSIONAL COMPONENTS END === */
