:root {
    --site-primary: #2563eb;
    --site-primary-dark: #1d4ed8;
    --site-primary-soft: #eff6ff;
    --site-text: #0f172a;
    --site-muted: #64748b;
    --site-border: #e2e8f0;
    --site-surface: #ffffff;
    --site-background: #f8fafc;
    --site-footer: #0f172a;
    --site-footer-deep: #020617;
    --site-radius-sm: 10px;
    --site-radius-md: 16px;
    --site-radius-lg: 22px;
    --site-shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
    --site-shadow-md: 0 16px 40px rgba(15, 23, 42, .10);
    --site-container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--site-background);
    color: var(--site-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

a {
    color: var(--site-primary);
}

a:hover {
    color: var(--site-primary-dark);
}

.site-container {
    width: min(100% - 32px, var(--site-container));
    margin-inline: auto;
}

.site-main {
    min-height: 55vh;
}

.site-section {
    padding-block: 32px;
}

.site-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    box-shadow: var(--site-shadow-sm);
}

.site-page-header {
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5ff 100%);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    box-shadow: var(--site-shadow-sm);
}

.site-page-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.site-page-description {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--site-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.btn-primary {
    --bs-btn-bg: var(--site-primary);
    --bs-btn-border-color: var(--site-primary);
    --bs-btn-hover-bg: var(--site-primary-dark);
    --bs-btn-hover-border-color: var(--site-primary-dark);
    --bs-btn-active-bg: var(--site-primary-dark);
    --bs-btn-active-border-color: var(--site-primary-dark);
}

.btn {
    border-radius: var(--site-radius-sm);
    font-weight: 600;
}

/* Navbar */
.site-navbar {
    z-index: 1030;
    padding-block: 10px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
    backdrop-filter: blur(14px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-text);
    text-decoration: none;
}

.site-brand:hover {
    color: var(--site-text);
}

.site-brand-logo {
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand-copy strong {
    font-size: 1rem;
    letter-spacing: -.02em;
}

.site-brand-copy small {
    margin-top: 4px;
    color: var(--site-muted);
    font-size: .72rem;
    font-weight: 500;
}

.site-navbar .nav-link {
    padding: 10px 12px !important;
    color: #334155;
    border-radius: 9px;
    font-size: .93rem;
    font-weight: 600;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: var(--site-primary-dark);
    background: var(--site-primary-soft);
}

.site-network-menu {
    min-width: 290px;
    max-height: min(70vh, 560px);
    margin-top: 10px !important;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    box-shadow: var(--site-shadow-md);
}

.site-network-menu .dropdown-item {
    padding: 10px 12px;
    color: #334155;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 500;
    white-space: normal;
}

.site-network-menu .dropdown-item:hover,
.site-network-menu .dropdown-item:focus {
    color: var(--site-primary-dark);
    background: var(--site-primary-soft);
}

/* Footer */
.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: var(--site-footer);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr 1fr;
    gap: 48px;
    padding-block: 48px;
}

.site-footer-brand {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
}

.site-footer-brand:hover {
    color: #fff;
}

.site-footer-description {
    max-width: 460px;
    margin: 14px 0 0;
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-links-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #fff;
}

.site-footer-bottom {
    background: var(--site-footer-deep);
}

.site-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
    color: #94a3b8;
    font-size: .8rem;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--site-border);
        border-radius: 14px;
        box-shadow: var(--site-shadow-sm);
    }

    .site-network-menu {
        min-width: 100%;
        box-shadow: none;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .site-container {
        width: min(100% - 24px, var(--site-container));
    }

    .site-brand-copy small {
        display: none;
    }

    .site-section {
        padding-block: 22px;
    }

    .site-page-header {
        padding: 22px;
        border-radius: var(--site-radius-md);
    }

    .site-footer {
        margin-top: 48px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 36px;
    }

    .site-footer-grid > :first-child {
        grid-column: auto;
    }

    .site-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
.section-heading {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 22px;
    padding: 20px 24px;
    overflow: hidden;
    border: 1px solid #dce5f2;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 5% 0%,
            rgba(20, 110, 245, 0.12),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #f4f8ff 0%,
            #ffffff 58%,
            #f7faff 100%
        );
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.section-heading::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        #146ef5,
        #347ff1
    );
}

.section-heading::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -45px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(20, 110, 245, 0.045);
    pointer-events: none;
}

.section-heading > div {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1 1 auto;
}

.section-heading .section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 8px;
    padding: 6px 11px;
    border: 1px solid rgba(20, 110, 245, 0.14);
    border-radius: 999px;
    background: rgba(20, 110, 245, 0.09);
    color: #146ef5;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.4rem, 1.9vw, 1.85rem);
    font-weight: 750;
    letter-spacing: -0.028em;
    line-height: 1.18;
}

.section-heading > p {
    position: relative;
    z-index: 1;
    flex: 0 1 430px;
    max-width: 430px;
    margin: 0;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.55;
    text-align: right;
}
@media (max-width: 767.98px) {
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
        padding: 17px 18px;
        border-radius: 16px;
    }

    .section-heading h2 {
        font-size: 1.35rem;
    }

    .section-heading > p {
        flex: none;
        max-width: none;
        font-size: 0.88rem;
        text-align: left;
    }
}
