:root {
    --primary-main: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --primary-contrast: #FFFFFF;
    --secondary-main: #0D9488;
    --secondary-light: #14B8A6;
    --secondary-dark: #0F766E;
    --secondary-contrast: #FFFFFF;
    --accent-main: #6366F1;
    --accent-light: #818CF8;
    --accent-dark: #4F46E5;
    --accent-contrast: #FFFFFF;
    --bg-default: #F1F5F9;
    --bg-surface: #F8FAFC;
    --bg-glass-base: rgba(255, 255, 255, 0.65);
    --bg-glass-elevated: rgba(255, 255, 255, 0.82);
    --bg-glass-overlay: rgba(241, 245, 249, 0.75);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted-color: #64748B;
    --border-glass: rgba(255, 255, 255, 0.6);
    --border-glass-subtle: rgba(226, 232, 240, 0.8);
    --border-glass-active: rgba(37, 99, 235, 0.4);
    --shadow-glass-sm: 0 2px 8px 0 rgba(31, 38, 135, 0.05);
    --shadow-glass-md: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-glass-lg: 0 16px 48px 0 rgba(31, 38, 135, 0.1);
    --gradient-ambient: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    --gradient-accent: linear-gradient(135deg, #2563EB 0%, #6366F1 100%);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-code: 'Fira Code', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-default);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: var(--text-muted-color) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== header ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06)
}

.site-header .navbar {
    padding: 0.75rem 0;
    background-color: #ffffff
}

.site-header .brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block
}

.site-header .brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em
}

.site-header .brand-accent {
    color: #2563eb
}

.site-header .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    background-color: #f8fafc;
    border-radius: 8px
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none
}

.site-header .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: #2563eb;
    background-color: #f1f5f9
}

.site-header .btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease
}

.site-header .btn-primary-custom:hover,
.site-header .btn-primary-custom:focus {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3)
}

@media (max-width:991.98px) {
    .site-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08)
    }

    .site-header .navbar-nav {
        margin-bottom: 1rem !important
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9
    }

    .site-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none
    }

    .site-header .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0
    }
}

/* ===== hero ===== */
.scetchap-hero-section {
    background-color: #0B0F19;
    background-image: radial-gradient(circle at 50% -20%, #3B1B6D 0%, #15103A 40%, #0B0F19 85%);
    color: #FFFFFF;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.scetchap-hero-section .scetchap-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.scetchap-hero-section .orb-1 {
    width: 380px;
    height: 380px;
    background: rgba(99, 102, 241, 0.28);
    top: 10%;
    left: -80px;
}

.scetchap-hero-section .orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.25);
    bottom: 15%;
    right: -60px;
}

.scetchap-hero-section .scetchap-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.scetchap-hero-section .container {
    z-index: 2;
}

.scetchap-hero-section .scetchap-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(129, 140, 248, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.scetchap-hero-section .badge-tag {
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scetchap-hero-section .badge-text {
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 500;
}

.scetchap-hero-section .badge-icon {
    color: #38BDF8;
}

.scetchap-hero-section .scetchap-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767.98px) {
    .scetchap-hero-section .scetchap-hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }
}

@media (min-width: 768px) {
    .scetchap-hero-section .scetchap-hero-title {
        font-size: 3.25rem;
    }
}

.scetchap-hero-section .scetchap-hero-subtitle {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 720px;
}

@media (max-width: 767.98px) {
    .scetchap-hero-section .scetchap-hero-subtitle {
        font-size: 0.875rem;
    }
}

.scetchap-hero-section .scetchap-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.scetchap-hero-section .scetchap-btn-primary:hover {
    background: #1D4ED8;
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.scetchap-hero-section .scetchap-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.scetchap-hero-section .scetchap-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(129, 140, 248, 0.5);
    color: #FFFFFF;
}

.scetchap-hero-section .scetchap-metrics-pill {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scetchap-hero-section .metric-val {
    color: #38BDF8;
    font-weight: 700;
    font-size: 0.95rem;
}

.scetchap-hero-section .metric-lbl {
    color: #94A3B8;
    font-size: 0.85rem;
}

.scetchap-hero-section .metric-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.15);
}

.scetchap-hero-section .scetchap-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.scetchap-hero-section .scetchap-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(99, 102, 241, 0.4);
}

.scetchap-hero-section .active-border {
    border-color: rgba(59, 130, 246, 0.35);
}

.scetchap-hero-section .card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(99, 102, 241, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818CF8;
    font-size: 1.25rem;
    border: 1px solid rgba(129, 140, 248, 0.25);
}

.scetchap-hero-section .card-badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #38BDF8;
    font-weight: 600;
}

.scetchap-hero-section .card-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .scetchap-hero-section .card-heading {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.scetchap-hero-section .card-link-title {
    color: #FFFFFF;
    text-decoration: none;
}

.scetchap-hero-section .card-link-title:hover {
    color: #93C5FD;
}

.scetchap-hero-section .card-desc {
    color: #CBD5E1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.scetchap-hero-section .border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.scetchap-hero-section .card-action-btn {
    color: #93C5FD;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.scetchap-hero-section .card-action-btn:hover {
    color: #FFFFFF;
}

/* ===== tools ===== */
.sc-tools-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%);
    position: relative;
    overflow: hidden
}

.sc-tools-section .sc-tools-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563EB
}

.sc-tools-section .sc-tools-title {
    color: #0F172A;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em
}

.sc-tools-section .sc-tools-lead {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.sc-tools-section .sc-tools-filter-btn {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #475569;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease
}

.sc-tools-section .sc-tools-filter-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0F172A;
    border-color: rgba(37, 99, 235, 0.4)
}

.sc-tools-section .sc-tools-filter-btn.active {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25)
}

.sc-tools-section .sc-tools-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease
}

.sc-tools-section .sc-tools-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 12px 36px 0 rgba(37, 99, 235, 0.12)
}

.sc-tools-section .sc-tools-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #E2E8F0
}

.sc-tools-section .sc-tools-img-link {
    display: block;
    width: 100%;
    height: 100%
}

.sc-tools-section .sc-tools-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.sc-tools-section .sc-tools-tag {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.sc-tools-section .sc-tools-version {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 0.02em
}

.sc-tools-section .sc-tools-status {
    color: #0D9488;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center
}

.sc-tools-section .sc-tools-card-heading {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3
}

.sc-tools-section .sc-tools-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease
}

.sc-tools-section .sc-tools-title-link:hover {
    color: #2563EB
}

.sc-tools-section .sc-tools-card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6
}

.sc-tools-section .sc-tools-specs {
    background: rgba(241, 245, 249, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8)
}

.sc-tools-section .sc-tools-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #64748B;
    font-weight: 700;
    letter-spacing: 0.05em
}

.sc-tools-section .sc-tools-spec-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
    margin-top: 2px
}

.sc-tools-section .sc-tools-btn-action {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: #1D4ED8;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03)
}

.sc-tools-section .sc-tools-btn-action:hover {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB
}

.sc-tools-section .sc-tools-footer-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    max-width: 980px
}

.sc-tools-section .sc-tools-footer-title {
    color: #0F172A;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4
}

.sc-tools-section .sc-tools-footer-desc {
    color: #475569;
    font-size: 0.95rem
}

.sc-tools-section .sc-tools-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
    white-space: nowrap;
    display: inline-block;
    transition: background 0.2s ease, box-shadow 0.2s ease
}

.sc-tools-section .sc-tools-btn-primary:hover {
    background: #1D4ED8;
    color: #FFFFFF;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35)
}

@media (max-width:767.98px) {
    .sc-tools-section .sc-tools-title {
        font-size: 16px;
        hyphens: auto
    }

    .sc-tools-section .sc-tools-card-heading {
        font-size: 14px;
        hyphens: auto
    }

    .sc-tools-section .sc-tools-footer-title {
        font-size: 14px;
        hyphens: auto
    }

    .sc-tools-section .sc-tools-lead {
        font-size: 0.875rem
    }

    .sc-tools-section .sc-tools-card-text {
        font-size: 0.85rem
    }
}

/* ===== qualification ===== */
.qualification-section {
    background-color: #F1F5F9;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.qualification-section .qualification-badge {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563EB;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.qualification-section .qualification-title {
    color: #0F172A;
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .qualification-section .qualification-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .qualification-section .qualification-title {
        font-size: 16px;
        hyphens: auto;
    }

    .qualification-section h3.qualification-card-heading,
    .qualification-section h3.qualification-help-title {
        font-size: 14px;
        hyphens: auto;
    }
}

.qualification-section .qualification-subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.qualification-section .qualification-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.qualification-section .qualification-card-ideal {
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.qualification-section .qualification-card-ideal:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 12px 36px 0 rgba(37, 99, 235, 0.12);
}

.qualification-section .qualification-card-mismatch {
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.qualification-section .qualification-card-mismatch:hover {
    border-color: rgba(203, 213, 225, 1);
    box-shadow: 0 12px 36px 0 rgba(15, 23, 42, 0.06);
}

.qualification-section .qualification-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.qualification-section .qualification-icon-box-ideal {
    background: rgba(13, 148, 136, 0.12);
    color: #0D9488;
    border: 1px solid rgba(13, 148, 136, 0.25);
}

.qualification-section .qualification-icon-box-mismatch {
    background: rgba(100, 116, 139, 0.12);
    color: #475569;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.qualification-section .qualification-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
}

.qualification-section .qualification-tag-ideal {
    color: #0D9488;
}

.qualification-section .qualification-tag-mismatch {
    color: #64748B;
}

.qualification-section .qualification-card-heading {
    color: #0F172A;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.qualification-section .qualification-card-desc {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.qualification-section .qualification-list {
    list-style: none;
}

.qualification-section .qualification-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.qualification-section .qualification-bullet-ideal {
    background: #0D9488;
    color: #FFFFFF;
}

.qualification-section .qualification-bullet-mismatch {
    background: #94A3B8;
    color: #FFFFFF;
}

.qualification-section .qualification-item-title {
    color: #0F172A;
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}

.qualification-section .qualification-item-text {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.5;
    display: block;
}

.qualification-section .qualification-card-action {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.qualification-section .qualification-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.qualification-section .qualification-btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.qualification-section .qualification-btn-primary:hover {
    background: #1D4ED8;
    color: #FFFFFF;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

.qualification-section .qualification-btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #0F172A;
    border: 1px solid rgba(203, 213, 225, 0.9);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.qualification-section .qualification-btn-secondary:hover {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.4);
    color: #2563EB;
}

.qualification-section .qualification-help-banner {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.04);
}

.qualification-section .qualification-help-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    font-size: 1.25rem;
}

.qualification-section .qualification-help-title {
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.qualification-section .qualification-help-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.qualification-section .qualification-btn-outline {
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #CBD5E1;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.03);
}

.qualification-section .qualification-btn-outline:hover {
    border-color: #2563EB;
    color: #2563EB;
    background: #F8FAFC;
}

/* ===== features-grid ===== */
.features-grid-section {
    background: #F1F5F9;
    position: relative;
    overflow: hidden;
}

.features-grid-section .features-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.features-grid-section .features-main-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.features-grid-section .features-lead-desc {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #475569;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-section .features-filter-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.05);
    gap: 4px;
}

.features-grid-section .features-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.features-grid-section .features-tab-btn:hover {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.06);
}

.features-grid-section .features-tab-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.features-grid-section .feature-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.features-grid-section .feature-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.features-grid-section .feature-card-media {
    height: 240px;
    background: #E2E8F0;
}

.features-grid-section .feature-media-link {
    height: 100%;
    width: 100%;
}

.features-grid-section .feature-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.features-grid-section .feature-media-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.features-grid-section .badge-inner {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-grid-section .feature-tech-pill {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0D9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.features-grid-section .feature-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: #0F172A;
}

.features-grid-section .feature-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.features-grid-section .feature-title-link:hover {
    color: #2563EB;
}

.features-grid-section .feature-card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.features-grid-section .feature-card-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.features-grid-section .btn-feature-action {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.features-grid-section .btn-feature-action:hover {
    background: #1D4ED8;
    color: #FFFFFF;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

.features-grid-section .features-cta-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 246, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.features-grid-section .features-cta-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.features-grid-section .features-cta-subtitle {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.features-grid-section .btn-features-all {
    background: #0F172A;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
}

.features-grid-section .btn-features-all:hover {
    background: #1E293B;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .features-grid-section .features-main-heading {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .features-grid-section .feature-card-title {
        font-size: 1.1rem;
        hyphens: auto;
    }

    .features-grid-section .features-cta-title {
        font-size: 1.1rem;
        hyphens: auto;
    }

    .features-grid-section .feature-card-media {
        height: 200px;
    }

    .features-grid-section .features-lead-desc {
        font-size: 0.9375rem;
    }
}

/* ===== projects-grid ===== */
.projects-grid-section {
    background-color: #F1F5F9;
    position: relative;
}

.projects-grid-section .projects-grid-badge {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.05);
}

.projects-grid-section .projects-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2563EB;
}

.projects-grid-section .projects-grid-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.projects-grid-section .projects-grid-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #475569;
}

.projects-grid-section .projects-filter-btn {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #475569;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.projects-grid-section .projects-filter-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #2563EB;
    border-color: rgba(37, 99, 235, 0.3);
}

.projects-grid-section .projects-filter-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.projects-grid-section .projects-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.projects-grid-section .projects-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.1);
}

.projects-grid-section .projects-media-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #E2E8F0;
}

.projects-grid-section .projects-img-link {
    width: 100%;
    height: 100%;
}

.projects-grid-section .projects-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.projects-grid-section .projects-card:hover .projects-card-img {
    transform: scale(1.02);
}

.projects-grid-section .projects-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.projects-grid-section .badge-residential {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-grid-section .badge-commercial {
    background: rgba(13, 148, 136, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-grid-section .projects-meta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

.projects-grid-section .projects-meta-highlight {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F172A;
}

.projects-grid-section .projects-item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: #0F172A;
}

.projects-grid-section .projects-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.projects-grid-section .projects-title-link:hover {
    color: #2563EB;
}

.projects-grid-section .projects-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.projects-grid-section .projects-card-footer {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.projects-grid-section .projects-specs {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.projects-grid-section .projects-btn-action {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 0.5rem 1.15rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.projects-grid-section .projects-btn-action:hover {
    background: #1D4ED8;
    color: #FFFFFF;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}

.projects-grid-section .projects-explore-all-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #0F172A;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(31, 38, 135, 0.05);
    transition: all 0.2s ease;
}

.projects-grid-section .projects-explore-all-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.25);
}

@media (max-width: 767.98px) {
    .projects-grid-section .projects-grid-title {
        font-size: 1.75rem;
        hyphens: auto;
    }

    .projects-grid-section .projects-item-title {
        font-size: 1.2rem;
        hyphens: auto;
    }

    .projects-grid-section .projects-media-wrapper {
        height: 210px;
    }
}

/* ===== reviews ===== */
.reviews-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%);
    color: #0F172A;
    overflow: hidden
}

.reviews-section .reviews-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 30px;
    color: #2563EB;
    font-size: 0.875rem;
    font-weight: 600
}

.reviews-section .reviews-badge-icon {
    margin-right: 8px;
    color: #2563EB
}

.reviews-section .reviews-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin-bottom: 0.75rem
}

.reviews-section .reviews-subheading {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
    max-width: 680px;
    margin: 0 auto
}

.reviews-section .reviews-filter-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.04)
}

.reviews-section .reviews-filter-btn {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
    cursor: pointer
}

.reviews-section .reviews-filter-btn:hover {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.05)
}

.reviews-section .reviews-filter-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25)
}

.reviews-section .review-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease
}

.reviews-section .review-card:hover {
    box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.1);
    border-color: rgba(37, 99, 235, 0.3)
}

.reviews-section .review-stars {
    color: #F59E0B;
    font-size: 0.9375rem;
    letter-spacing: 2px
}

.reviews-section .review-metric-pill {
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 12px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.reviews-section .review-metric-value {
    font-weight: 700;
    font-size: 0.875rem;
    color: #0F766E
}

.reviews-section .review-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0D9488;
    text-transform: uppercase;
    letter-spacing: 0.03em
}

.reviews-section .review-outcome-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0F172A;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
}

.reviews-section .review-quote-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0
}

.reviews-section .review-client-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.8)
}

.reviews-section .review-avatar {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08)
}

.reviews-section .review-client-name {
    font-weight: 700;
    font-size: 1rem;
    color: #0F172A;
    line-height: 1.3
}

.reviews-section .review-client-role {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500
}

.reviews-section .reviews-footer-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    max-width: 880px;
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.05)
}

.reviews-section .reviews-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3
}

.reviews-section .reviews-footer-desc {
    font-size: 0.9375rem;
    color: #475569
}

.reviews-section .reviews-cta-btn {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
    text-decoration: none;
    transition: all 0.2s ease
}

.reviews-section .reviews-cta-btn:hover {
    background: #1D4ED8;
    color: #FFFFFF;
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
    text-decoration: none
}

@media(max-width:767.98px) {
    .reviews-section .reviews-heading {
        font-size: 16px;
        hyphens: auto
    }

    .reviews-section .reviews-subheading {
        font-size: 0.875rem
    }

    .reviews-section .review-outcome-title {
        font-size: 14px;
        hyphens: auto
    }

    .reviews-section .review-card {
        padding: 20px;
        border-radius: 16px
    }

    .reviews-section .reviews-filter-btn {
        padding: 6px 12px;
        font-size: 0.8125rem
    }
}

/* ===== footer ===== */
.site-footer {
    position: relative;
    background-color: #F1F5F9;
    padding: 3rem 0 2rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
}

.site-footer__ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 1.5rem;
}

.site-footer__brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.site-footer__brand-desc {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 320px;
    line-height: 1.6;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    margin-bottom: 1rem;
}

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

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #2563EB;
    text-decoration: none;
}

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

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    word-break: break-word;
}

.site-footer__contact-icon {
    color: #2563EB;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.site-footer__contact-icon--wa {
    color: #0D9488;
}

.site-footer__contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
    color: #2563EB;
    text-decoration: none;
}

.site-footer__contact-text {
    color: #475569;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer__card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .site-footer__brand-title {
        font-size: 1.2rem;
    }

    .site-footer__brand-desc {
        font-size: 0.875rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .site-footer__link,
    .site-footer__contact-item {
        font-size: 0.875rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06)
}

.site-header .navbar {
    padding: 0.75rem 0;
    background-color: #ffffff
}

.site-header .brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block
}

.site-header .brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em
}

.site-header .brand-accent {
    color: #2563eb
}

.site-header .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    background-color: #f8fafc;
    border-radius: 8px
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none
}

.site-header .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus,
.site-header .navbar-nav .nav-link.active {
    color: #2563eb;
    background-color: #f1f5f9
}

.site-header .btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease
}

.site-header .btn-primary-custom:hover,
.site-header .btn-primary-custom:focus {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3)
}

@media (max-width:991.98px) {
    .site-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08)
    }

    .site-header .navbar-nav {
        margin-bottom: 1rem !important
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9
    }

    .site-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none
    }

    .site-header .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0
    }
}

.kb-hero-section {
    background-color: #0b0f19;
    background-image: radial-gradient(circle at 50% -20%, #3b1b6d 0%, #15103a 40%, #0b0f19 85%);
    color: #ffffff;
    position: relative;
}

.kb-hero-section .kb-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.kb-hero-section .kb-orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(99, 102, 241, 0.28);
    top: 5%;
    left: -60px;
}

.kb-hero-section .kb-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.25);
    bottom: 5%;
    right: -50px;
}

.kb-hero-section .kb-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.kb-hero-section .kb-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(129, 140, 248, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.kb-hero-section .kb-badge-tag {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kb-hero-section .kb-badge-text {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.kb-hero-section .kb-badge-icon {
    color: #38bdf8;
}

.kb-hero-section .kb-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .kb-hero-section .kb-hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }
}

@media (min-width: 768px) {
    .kb-hero-section .kb-hero-title {
        font-size: 3rem;
    }
}

.kb-hero-section .kb-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
}

@media (max-width: 767.98px) {
    .kb-hero-section .kb-hero-subtitle {
        font-size: 0.875rem;
    }
}

.kb-hero-section .kb-search-box-wrapper {
    max-width: 620px;
}

.kb-hero-section .kb-search-bar {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 0.35rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.kb-hero-section .kb-search-icon {
    color: #64748b;
    font-size: 1.1rem;
}

.kb-hero-section .kb-search-input {
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 0.95rem;
    padding: 0.6rem 0.85rem;
    box-shadow: none;
}

.kb-hero-section .kb-search-input:focus {
    background: transparent;
    border: none;
    color: #0f172a;
    box-shadow: none;
}

.kb-hero-section .kb-search-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.kb-hero-section .kb-btn-search {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kb-hero-section .kb-btn-search:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.kb-content-section {
    background-color: #f1f5f9;
}

.kb-content-section .kb-filter-nav {
    border-color: #e2e8f0 !important;
}

.kb-content-section .kb-filter-tab {
    background: rgba(255, 255, 255, 0.8);
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.kb-content-section .kb-filter-tab:hover {
    color: #2563eb;
    background: #ffffff;
    border-color: #93c5fd;
}

.kb-content-section .kb-filter-tab.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.kb-content-section .kb-results-counter {
    font-size: 0.875rem;
    color: #64748b;
}

.kb-content-section .kb-article-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kb-content-section .kb-article-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 32px rgba(31, 38, 135, 0.09);
}

.kb-content-section .kb-card-media {
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.kb-content-section .kb-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kb-content-section .kb-article-card:hover .kb-article-img {
    transform: scale(1.03);
}

.kb-content-section .kb-card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.kb-content-section .kb-card-meta {
    font-size: 0.8125rem;
    color: #64748b;
}

.kb-content-section .kb-meta-divider {
    color: #cbd5e1;
}

.kb-content-section .kb-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}

@media (max-width: 767.98px) {
    .kb-content-section .kb-card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.kb-content-section .kb-card-title-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kb-content-section .kb-card-title-link:hover {
    color: #2563eb;
}

.kb-content-section .kb-card-excerpt {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.55;
}

.kb-content-section .kb-btn-action {
    background: #f8fafc;
    color: #2563eb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.kb-content-section .kb-btn-action:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.kb-content-section .kb-sidebar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.05);
}

.kb-content-section .kb-sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

@media (max-width: 767.98px) {
    .kb-content-section .kb-sidebar-title {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.kb-content-section .kb-sidebar-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
}

.kb-content-section .kb-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.kb-content-section .kb-form-input {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.875rem;
    color: #0f172a;
}

.kb-content-section .kb-form-input:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.kb-content-section .kb-form-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.kb-content-section .kb-btn-subscribe {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kb-content-section .kb-btn-subscribe:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.kb-content-section .kb-topic-item {
    border-color: #e2e8f0 !important;
}

.kb-content-section .kb-topic-link {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kb-content-section .kb-topic-link:hover {
    color: #2563eb;
}

.kb-content-section .kb-topic-badge {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.kb-content-section .kb-help-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kb-content-section .kb-help-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.55;
}

.kb-content-section .kb-btn-contact {
    background: #0d9488;
    color: #ffffff;
    border: 1px solid #0d9488;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kb-content-section .kb-btn-contact:hover {
    background: #0f766e;
    border-color: #0f766e;
    color: #ffffff;
}

.kb-content-section .kb-no-results-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

.kb-content-section .kb-no-results-text {
    font-size: 0.95rem;
    color: #64748b;
}

.kb-content-section .kb-btn-reset {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.kb-content-section .kb-btn-reset:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.kb-content-section .text-primary-custom {
    color: #2563eb !important;
}

.kb-content-section .text-info-custom {
    color: #38bdf8 !important;
}

.kb-content-section .text-muted-custom {
    color: #94a3b8 !important;
}

.site-footer {
    position: relative;
    background-color: #F1F5F9;
    padding: 3rem 0 2rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
}

.site-footer__ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 1.5rem;
}

.site-footer__brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.site-footer__brand-desc {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 320px;
    line-height: 1.6;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    margin-bottom: 1rem;
}

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

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #2563EB;
    text-decoration: none;
}

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

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    word-break: break-word;
}

.site-footer__contact-icon {
    color: #2563EB;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.site-footer__contact-icon--wa {
    color: #0D9488;
}

.site-footer__contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
    color: #2563EB;
    text-decoration: none;
}

.site-footer__contact-text {
    color: #475569;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer__card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .site-footer__brand-title {
        font-size: 1.2rem;
    }

    .site-footer__brand-desc {
        font-size: 0.875rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .site-footer__link,
    .site-footer__contact-item {
        font-size: 0.875rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}


/* ===== PAGE: pricing ===== */
.pricing-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%);
  min-height: 100vh;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pricing-section .pricing-badge {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563EB;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

.pricing-section .pricing-main-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .pricing-section .pricing-main-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
}

.pricing-section .pricing-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
}

.pricing-section .billing-toggle-container {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.05);
}

.pricing-section .billing-toggle-btn {
  border: none;
  background: transparent;
  color: #475569;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  box-shadow: none;
  transition: all 0.2s ease;
}

.pricing-section .billing-toggle-btn.active {
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.pricing-section .discount-badge {
  background: #0D9488;
  color: #FFFFFF;
  font-size: 0.725rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.pricing-section .pricing-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-section .pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.pricing-section .pricing-card.featured-tier {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #2563EB;
  box-shadow: 0 12px 36px 0 rgba(37, 99, 235, 0.12);
}

.pricing-section .featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.pricing-section .tier-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0F172A;
}

.pricing-section .tier-desc {
  font-size: 0.925rem;
  line-height: 1.5;
  min-height: 42px;
}

.pricing-section .tier-icon {
  font-size: 1.4rem;
}

.pricing-section .text-teal {
  color: #0D9488 !important;
}

.pricing-section .text-indigo {
  color: #6366F1 !important;
}

.pricing-section .currency-symbol {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  margin-right: 2px;
}

.pricing-section .price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.pricing-section .price-period {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 4px;
}

.pricing-section .billing-note {
  font-size: 0.825rem;
  margin-top: 4px;
}

.pricing-section .tier-divider {
  border-color: rgba(226, 232, 240, 0.9);
  opacity: 0.7;
}

.pricing-section .features-list-title {
  font-size: 0.9rem;
}

.pricing-section .tier-features li {
  font-size: 0.925rem;
  color: #334155;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
}

.pricing-section .btn-primary-solid {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.pricing-section .btn-primary-solid:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.pricing-section .btn-secondary-glass {
  background: rgba(255, 255, 255, 0.8);
  color: #0F172A;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.pricing-section .btn-secondary-glass:hover {
  background: #FFFFFF;
  border-color: #2563EB;
  color: #2563EB;
}

.pricing-section .checkout-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.08);
}

.pricing-section .checkout-heading {
  font-size: 1.75rem;
  color: #0F172A;
}

@media (max-width: 767.98px) {
  .pricing-section .checkout-heading {
    font-size: 1.35rem;
  }
}

.pricing-section .selected-plan-pill {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 0.9rem;
}

.pricing-section .form-control,
.pricing-section .form-select {
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}

.pricing-section .form-control:focus,
.pricing-section .form-select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: #FFFFFF;
}

.pricing-section .input-group-text {
  border-color: #CBD5E1;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.pricing-section .form-control::placeholder,
.pricing-section textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

/* Align select (Primary 3D Modeling Focus) with input (Phone Number) */
.pricing-section .form-select {
  height: auto;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}

.pricing-section .input-group .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Equal heights for input-group elements */
.pricing-section .input-group-text,
.pricing-section .input-group .form-control,
.pricing-section .input-group .form-select {
  min-height: 48px;
}

.pricing-section .form-group {
  margin-bottom: 0;
}

/* On mobile, fields stack vertically with consistent spacing */
@media (max-width: 767.98px) {
  .pricing-section .subscription-form .row > .col-md-6 + .col-md-6 {
    margin-top: 0.75rem;
  }
}

.pricing-section .form-summary-box {
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.pricing-section .accordion-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px !important;
  overflow: hidden;
}

.pricing-section .accordion-button {
  background: transparent;
  color: #0F172A;
  font-size: 1.05rem;
  padding: 1.15rem 1.25rem;
  box-shadow: none;
}

.pricing-section .accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.05);
  color: #2563EB;
  box-shadow: none;
}

.pricing-section .faq-title {
  font-size: 1.75rem;
  color: #0F172A;
}

/* ===== PAGE: contact ===== */
.contact-page-wrapper { background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%); min-height: 80vh; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } .contact-page-wrapper .contact-info-panel { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 20px; box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); } .contact-page-wrapper .contact-badge { background: rgba(37, 99, 235, 0.1); color: #2563EB; font-size: 0.875rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 30px; border: 1px solid rgba(37, 99, 235, 0.2); } .contact-page-wrapper .contact-main-heading { font-size: 2.25rem; font-weight: 800; line-height: 1.2; color: #0F172A; letter-spacing: -0.02em; } @media (max-width: 767px) { .contact-page-wrapper .contact-main-heading { font-size: 1.125rem; hyphens: auto; } } .contact-page-wrapper .contact-subtext { font-size: 1rem; line-height: 1.6; color: #475569; } .contact-page-wrapper .contact-icon-box { width: 44px; height: 44px; border-radius: 12px; background: #2563EB; color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); } .contact-page-wrapper .contact-item-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: #64748B; margin-bottom: 2px; } .contact-page-wrapper .contact-item-value { font-size: 1rem; font-weight: 600; color: #0F172A; line-height: 1.5; } .contact-page-wrapper .contact-item-link { font-size: 1rem; font-weight: 600; color: #2563EB; text-decoration: none; transition: color 0.2s ease; } .contact-page-wrapper .contact-item-link:hover { color: #1D4ED8; text-decoration: underline; } .contact-page-wrapper .contact-hours-box { background: rgba(255, 255, 255, 0.75); border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 14px; } .contact-page-wrapper .contact-hours-title { font-size: 0.875rem; font-weight: 700; color: #0F172A; } .contact-page-wrapper .contact-hours-desc { font-size: 0.85rem; color: #475569; line-height: 1.5; } .contact-page-wrapper .contact-form-panel { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 20px; box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.08); } .contact-page-wrapper .contact-form-title { font-size: 1.75rem; font-weight: 700; color: #0F172A; line-height: 1.25; letter-spacing: -0.015em; } @media (max-width: 767px) { .contact-page-wrapper .contact-form-title { font-size: 1rem; hyphens: auto; } } .contact-page-wrapper .contact-form-subtitle { font-size: 0.95rem; color: #475569; } .contact-page-wrapper .contact-input-label { font-size: 0.875rem; font-weight: 600; color: #1E293B; margin-bottom: 0.35rem; display: inline-block; } .contact-page-wrapper .contact-input-control { background-color: #FFFFFF; border: 1px solid #CBD5E1; border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.95rem; color: #0F172A; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03); transition: border-color 0.2s ease, box-shadow 0.2s ease; } .contact-page-wrapper .contact-input-control:focus { background-color: #FFFFFF; border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); color: #0F172A; } .contact-page-wrapper .contact-input-control::placeholder { color: #94A3B8; opacity: 1; } .contact-page-wrapper .contact-check-label { font-size: 0.85rem; color: #475569; line-height: 1.4; } .contact-page-wrapper .contact-policy-link { color: #2563EB; text-decoration: underline; font-weight: 500; } .contact-page-wrapper .contact-policy-link:hover { color: #1D4ED8; } .contact-page-wrapper .contact-submit-btn { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; padding: 0.95rem 1.75rem; font-size: 1rem; font-weight: 700; box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.28); transition: background-color 0.2s ease, box-shadow 0.2s ease; cursor: pointer; text-decoration: none; } .contact-page-wrapper .contact-submit-btn:hover { background: #1D4ED8; color: #FFFFFF; box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.38); } .contact-page-wrapper .contact-faq-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 16px; box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.05); } .contact-page-wrapper .contact-faq-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(37, 99, 235, 0.1); color: #2563EB; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; } .contact-page-wrapper .contact-faq-title { font-size: 1.15rem; font-weight: 700; color: #0F172A; } @media (max-width: 767px) { .contact-page-wrapper .contact-faq-title { font-size: 0.875rem; hyphens: auto; } } .contact-page-wrapper .contact-faq-text { font-size: 0.9rem; color: #475569; line-height: 1.55; }

/* ===== PAGE: privacy ===== */
.privacy-content-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 50%, #EEF2F6 100%);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #475569;
  line-height: 1.6;
}

.privacy-content-section .privacy-header-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.privacy-content-section .privacy-badge {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563EB;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.privacy-content-section .privacy-main-title {
  color: #0F172A;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-content-section .privacy-subtitle {
  max-width: 760px;
  color: #475569;
  font-size: 1.0625rem;
}

.privacy-content-section .privacy-sidebar-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.05);
  top: 90px;
  z-index: 10;
}

.privacy-content-section .privacy-nav-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
}

.privacy-content-section .privacy-search-box .form-control {
  background-color: #FFFFFF;
  color: #0F172A;
  border-color: #E2E8F0;
  font-size: 0.875rem;
  padding: 0.6rem 0.75rem;
}

.privacy-content-section .privacy-search-box .form-control::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.privacy-content-section .privacy-search-box .form-control:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.privacy-content-section .privacy-search-box .input-group-text {
  border-color: #E2E8F0;
  color: #64748B;
}

.privacy-content-section .privacy-nav-menu .nav-link {
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.privacy-content-section .privacy-nav-menu .nav-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
}

.privacy-content-section .privacy-nav-menu .nav-link.active {
  background: #2563EB;
  color: #FFFFFF;
}

.privacy-content-section .privacy-nav-menu .nav-link.active i {
  color: #FFFFFF !important;
}

.privacy-content-section .privacy-help-box {
  background: rgba(241, 245, 249, 0.7);
  border: 1px solid #E2E8F0;
}

.privacy-content-section .privacy-help-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F172A;
}

.privacy-content-section .privacy-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(31, 38, 135, 0.06);
}

.privacy-content-section .badge-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.privacy-content-section .privacy-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.015em;
}

.privacy-content-section .privacy-subcard-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F172A;
}

.privacy-content-section .privacy-subcard {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.privacy-content-section .privacy-spec-item {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid #E2E8F0;
}

.privacy-content-section .privacy-callout {
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid #0D9488;
}

.privacy-content-section .privacy-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.privacy-content-section .privacy-list li {
  margin-bottom: 0.75rem;
}

.privacy-content-section .privacy-table {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.privacy-content-section .privacy-table th {
  background: #F1F5F9;
  color: #0F172A;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 2px solid #E2E8F0;
  padding: 0.75rem 1rem;
}

.privacy-content-section .privacy-table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  vertical-align: middle;
  border-color: #F1F5F9;
}

.privacy-content-section .privacy-contact-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.privacy-content-section .btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.privacy-content-section .btn-primary:hover {
  background: #1D4ED8;
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .privacy-content-section .privacy-main-title {
    font-size: 1.75rem;
  }
  .privacy-content-section .privacy-section-heading {
    font-size: 1.25rem;
  }
  .privacy-content-section .privacy-subcard-title {
    font-size: 1rem;
  }
  .privacy-content-section .privacy-sidebar-glass {
    position: static;
    margin-bottom: 1.5rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-page-content { background-color: #F1F5F9; color: #0F172A; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; } .terms-page-content .terms-summary-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06); } .terms-page-content .terms-badge-pill { display: inline-flex; align-items: center; background: rgba(37, 99, 235, 0.1); color: #2563EB; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.75rem; border-radius: 50px; } .terms-page-content .terms-badge-date { display: inline-flex; align-items: center; color: #64748B; font-weight: 500; font-size: 0.85rem; padding: 0.35rem 0.5rem; } .terms-page-content .terms-main-heading { font-size: 1.75rem; font-weight: 800; color: #0F172A; line-height: 1.25; letter-spacing: -0.02em; } .terms-page-content .terms-summary-lead { font-size: 1rem; color: #475569; max-width: 850px; } .terms-page-content .terms-btn-glass { background: rgba(255, 255, 255, 0.8); color: #0F172A; border: 1px solid rgba(226, 232, 240, 0.9); font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 12px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); transition: background 0.2s ease, border-color 0.2s ease; } .terms-page-content .terms-btn-glass:hover { background: #FFFFFF; border-color: #2563EB; color: #2563EB; } .terms-page-content .terms-btn-primary { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.25); font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 12px; box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25); transition: background 0.2s ease, box-shadow 0.2s ease; } .terms-page-content .terms-btn-primary:hover { background: #1D4ED8; color: #FFFFFF; box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35); } .terms-page-content .terms-sticky-sidebar { position: -webkit-sticky; position: sticky; top: 2rem; } .terms-page-content .terms-nav-box, .terms-page-content .terms-help-box { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.05); } .terms-page-content .terms-search-wrapper .terms-input-icon { background: #FFFFFF; border-color: rgba(226, 232, 240, 0.9); color: #64748B; } .terms-page-content .terms-search-input { background: #FFFFFF; border-color: rgba(226, 232, 240, 0.9); color: #0F172A; font-size: 0.9rem; padding: 0.6rem 0.75rem; } .terms-page-content .terms-search-input::placeholder { color: #94A3B8; } .terms-page-content .terms-search-input:focus { background: #FFFFFF; border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); color: #0F172A; } .terms-page-content .terms-nav-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #64748B; } .terms-page-content .terms-nav-list { display: flex; flex-direction: column; gap: 4px; } .terms-page-content .terms-nav-link { display: flex; align-items: center; gap: 10px; padding: 0.55rem 0.75rem; border-radius: 8px; color: #475569; text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: background 0.15s ease, color 0.15s ease; } .terms-page-content .terms-nav-num { font-family: 'Fira Code', monospace; font-size: 0.75rem; font-weight: 700; color: #94A3B8; background: rgba(241, 245, 249, 0.8); padding: 0.15rem 0.4rem; border-radius: 4px; } .terms-page-content .terms-nav-link:hover { background: rgba(37, 99, 235, 0.08); color: #2563EB; } .terms-page-content .terms-nav-link.active { background: #2563EB; color: #FFFFFF; font-weight: 600; } .terms-page-content .terms-nav-link.active .terms-nav-num { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; } .terms-page-content .terms-help-title { font-size: 0.95rem; font-weight: 700; color: #0F172A; } .terms-page-content .terms-help-text { font-size: 0.85rem; color: #64748B; line-height: 1.5; } .terms-page-content .terms-help-link { display: inline-flex; align-items: center; font-size: 0.85rem; font-weight: 600; color: #2563EB; text-decoration: none; padding: 0.35rem 0.5rem; border-radius: 6px; background: rgba(37, 99, 235, 0.05); } .terms-page-content .terms-help-link:hover { background: rgba(37, 99, 235, 0.12); color: #1D4ED8; } .terms-page-content .terms-article { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.04); scroll-margin-top: 2rem; } .terms-page-content .terms-article-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #2563EB; background: rgba(37, 99, 235, 0.08); padding: 0.2rem 0.6rem; border-radius: 4px; } .terms-page-content .terms-article-heading { font-size: 1.35rem; font-weight: 700; color: #0F172A; line-height: 1.3; } .terms-page-content .terms-subheading { font-size: 1.05rem; font-weight: 600; color: #1E293B; } .terms-page-content .terms-article-body p { font-size: 0.95rem; color: #334155; line-height: 1.65; margin-bottom: 0.85rem; } .terms-page-content .terms-list { padding-left: 1.25rem; font-size: 0.95rem; color: #334155; margin-bottom: 0.85rem; } .terms-page-content .terms-inline-link { color: #2563EB; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; } .terms-page-content .terms-inline-link:hover { color: #1D4ED8; } .terms-page-content .terms-notice-box { background: rgba(239, 246, 255, 0.8); border: 1px solid rgba(191, 219, 254, 0.8); color: #1E3A8A; font-size: 0.9rem; } .terms-page-content .terms-contact-callout { background: #F8FAFC; border: 1px solid #E2E8F0; } .terms-page-content .terms-no-results { background: #FFFFFF; border: 1px dashed #CBD5E1; } @media (max-width: 767.98px) { .terms-page-content .terms-main-heading { font-size: 1.25rem; hyphens: auto; } .terms-page-content .terms-article-heading { font-size: 1.1rem; hyphens: auto; } .terms-page-content .terms-subheading { font-size: 0.95rem; } .terms-page-content .terms-summary-card, .terms-page-content .terms-article { padding: 1.25rem !important; } }

/* ===== PAGE: disclaimer ===== */
.disclaimer-page { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #0F172A; background-color: #F1F5F9; min-height: 100vh; } .disclaimer-page__card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 20px; padding: 2rem; box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06); } .disclaimer-page__sidebar { position: sticky; top: 2rem; } .disclaimer-page__nav-card { padding: 1.75rem; } .disclaimer-page__icon-box { width: 44px; height: 44px; border-radius: 12px; background: rgba(37, 99, 235, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; } .disclaimer-page__badge { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #2563EB; background: rgba(37, 99, 235, 0.08); padding: 0.2rem 0.6rem; border-radius: 6px; margin-bottom: 0.25rem; } .disclaimer-page__sidebar-title { font-size: 1.15rem; font-weight: 700; color: #0F172A; } .disclaimer-page__sidebar-text { font-size: 0.875rem; color: #475569; line-height: 1.5; margin-bottom: 1.25rem; } .disclaimer-page__nav-link { display: flex; align-items: center; padding: 0.65rem 0.85rem; font-size: 0.875rem; font-weight: 500; color: #475569; text-decoration: none; border-radius: 10px; transition: all 0.2s ease; border: 1px solid transparent; } .disclaimer-page__nav-link:hover { color: #2563EB; background: rgba(255, 255, 255, 0.9); border-color: rgba(37, 99, 235, 0.2); } .disclaimer-page__nav-link.active { color: #2563EB; background: #FFFFFF; font-weight: 600; border-color: rgba(37, 99, 235, 0.3); box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.08); } .disclaimer-page__divider { border-color: rgba(226, 232, 240, 0.8); margin: 1.25rem 0; } .disclaimer-page__header-tag { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #2563EB; } .disclaimer-page__title { font-size: 1.85rem; font-weight: 800; line-height: 1.25; color: #0F172A; letter-spacing: -0.02em; } .disclaimer-page__lead { font-size: 1.05rem; line-height: 1.65; color: #475569; margin-bottom: 1rem; } .disclaimer-page__meta-badge { display: inline-flex; align-items: center; font-size: 0.8125rem; color: #64748B; font-weight: 500; background: rgba(241, 245, 249, 0.8); padding: 0.35rem 0.75rem; border-radius: 8px; border: 1px solid rgba(226, 232, 240, 0.8); } .disclaimer-page__section-number { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: rgba(37, 99, 235, 0.1); color: #2563EB; font-weight: 700; font-size: 0.875rem; border-radius: 8px; margin-right: 0.85rem; flex-shrink: 0; } .disclaimer-page__section-title { font-size: 1.35rem; font-weight: 700; color: #0F172A; letter-spacing: -0.015em; } .disclaimer-page__text { font-size: 0.95rem; line-height: 1.65; color: #475569; margin-bottom: 1rem; } .disclaimer-page__alert { background: rgba(37, 99, 235, 0.05); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: 12px; padding: 1.25rem; } .disclaimer-page__alert-icon { font-size: 1.25rem; color: #2563EB; } .disclaimer-page__alert-title { font-size: 0.95rem; font-weight: 700; color: #0F172A; margin-bottom: 0.25rem; } .disclaimer-page__alert-text { font-size: 0.875rem; line-height: 1.55; color: #475569; } .disclaimer-page__bullet-list { padding-left: 1.25rem; font-size: 0.925rem; color: #475569; line-height: 1.6; } .disclaimer-page__contact-box { background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 14px; padding: 1.25rem; text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .disclaimer-page__contact-heading { font-size: 1.05rem; font-weight: 700; color: #0F172A; margin-bottom: 0.25rem; } .disclaimer-page__btn { display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 10px; text-decoration: none; transition: all 0.2s ease; } .disclaimer-page__btn--primary { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.25); box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2); } .disclaimer-page__btn--primary:hover { color: #FFFFFF; background: #1D4ED8; box-shadow: 0 6px 18px 0 rgba(37, 99, 235, 0.3); } .disclaimer-page__btn--secondary { background: rgba(255, 255, 255, 0.85); color: #0F172A; border: 1px solid rgba(203, 213, 225, 0.8); } .disclaimer-page__btn--secondary:hover { background: #FFFFFF; color: #2563EB; border-color: rgba(37, 99, 235, 0.4); } @media (max-width: 991.98px) { .disclaimer-page__sidebar { position: static; margin-bottom: 1.5rem; } .disclaimer-page__card { padding: 1.5rem; } .disclaimer-page__title { font-size: 1.45rem; } .disclaimer-page__section-title { font-size: 1.15rem; } }

.glass-comment-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.glass-comment-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.1);
}

.glass-comment-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.15);
}

.glass-comment-status-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 13px;
    height: 13px;
    background-color: #0D9488;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.glass-comment-author {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.glass-comment-role-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
}

.glass-comment-timestamp {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

.glass-comment-dot-divider {
    color: #CBD5E1;
    font-size: 0.75rem;
}

.glass-comment-rating i {
    font-size: 0.75rem;
}

.glass-comment-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #334155;
}

.border-top-glass {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-comment-action-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 8px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.glass-comment-action-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0F172A;
    border-color: rgba(37, 99, 235, 0.3);
}

.glass-comment-action-btn.active {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.4);
    color: #2563EB;
}

.glass-comment-icon-btn {
    color: #64748B;
    border-radius: 8px;
    background: transparent;
    border: none;
}

.glass-comment-icon-btn:hover {
    color: #0F172A;
    background: rgba(241, 245, 249, 0.8);
}

.glass-comment-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: rgba(241, 245, 249, 0.8);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-comment-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 0.5rem;
}

.glass-reply-wrapper {
    position: relative;
    margin-top: 1rem;
}

.border-start-thread {
    border-left: 2px solid rgba(37, 99, 235, 0.2);
}

.glass-reply-card {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.04);
    transition: border-color 0.2s ease;
}

.glass-reply-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
}

.glass-reply-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px 0 rgba(13, 148, 136, 0.2);
}

.glass-reply-official-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background-color: #2563EB;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: #FFFFFF;
}

.glass-reply-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.glass-reply-team-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0D9488;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.25);
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
}

.glass-reply-timestamp {
    font-size: 0.775rem;
    color: #64748B;
    font-weight: 500;
}

.glass-reply-text {
    font-size: 0.8875rem;
    line-height: 1.6;
    color: #334155;
}

.glass-mention {
    background: rgba(37, 99, 235, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.border-top-glass-subtle {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.glass-reply-action-btn {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.glass-reply-action-btn:hover {
    background: #FFFFFF;
    color: #0F172A;
    border-color: rgba(37, 99, 235, 0.3);
}

.glass-reply-icon-btn {
    color: #64748B;
    border-radius: 6px;
    background: transparent;
    border: none;
}

.glass-reply-icon-btn:hover {
    color: #0F172A;
    background: rgba(226, 232, 240, 0.6);
}

.glass-badge-official {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0D9488;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* ===== PAGE TEMPLATE: features ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.site-header .navbar {
    padding: 0.75rem 0;
    background-color: #ffffff;
}

.site-header .brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.site-header .brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header .brand-accent {
    color: #2563eb;
}

.site-header .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    background-color: #f8fafc;
    border-radius: 8px;
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none;
}

.site-header .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: #2563eb;
    background-color: #f1f5f9;
}

.site-header .btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .btn-primary-custom:hover,
.site-header .btn-primary-custom:focus {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .site-header .navbar-nav {
        margin-bottom: 1rem !important;
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .site-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .site-header .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }
}

.detail-hero-section {
    background-color: #0B0F19;
    background-image: radial-gradient(circle at 50% -20%, #3B1B6D 0%, #15103A 40%, #0B0F19 85%);
    color: #FFFFFF;
    position: relative;
}

.detail-hero-section .detail-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .orb-1 {
    width: 380px;
    height: 380px;
    background: rgba(99, 102, 241, 0.28);
    top: 10%;
    left: -80px;
}

.detail-hero-section .orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.25);
    bottom: 15%;
    right: -60px;
}

.detail-hero-section .detail-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .container {
    z-index: 2;
}

.detail-breadcrumb .breadcrumb-item a {
    color: #93C5FD;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-breadcrumb .breadcrumb-item a:hover {
    color: #FFFFFF;
}

.detail-breadcrumb .breadcrumb-item.active {
    color: #E2E8F0;
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.detail-hero-section .badge-topic-tag {
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-hero-section .badge-meta-item {
    color: #CBD5E1;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-hero-section .badge-meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.detail-hero-section .detail-hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section .detail-hero-subheading {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 2.75rem;
    }
}

.detail-hero-section .detail-hero-subheading {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 780px;
}

.detail-main-layout {
    background-color: #F1F5F9;
    color: #475569;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-article-card,
.detail-comments-container,
.detail-sidebar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}

.detail-featured-media {
    overflow: hidden;
    border-radius: 16px;
}

.detail-main-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.detail-article-card .detail-section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.detail-article-card .detail-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .detail-article-card .detail-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-card .detail-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.detail-article-card .detail-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.detail-callout-box {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.detail-callout-icon {
    color: #2563EB;
    font-size: 1.5rem;
    line-height: 1;
}

.detail-callout-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-callout-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-checklist-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #E2E8F0;
}

.detail-checklist-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

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

.detail-list-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.detail-list-row:last-child {
    margin-bottom: 0;
}

.detail-list-icon {
    color: #0D9488;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-interactive-tabs-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #E2E8F0;
}

.detail-tab-btn {
    background: #FFFFFF;
    color: #475569;
    border: 1px solid #CBD5E1;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.detail-tab-btn:hover {
    background: #F1F5F9;
    color: #2563EB;
}

.detail-tab-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.detail-tab-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-accordion-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.detail-accordion-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    transition: background 0.2s ease;
}

.detail-accordion-btn:hover {
    background: #F8FAFC;
}

.detail-accordion-arrow {
    color: #64748B;
    transition: transform 0.2s ease;
}

.detail-accordion-btn.active .detail-accordion-arrow {
    transform: rotate(180deg);
}

.detail-accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.detail-muted-text {
    color: #64748B;
    font-size: 0.9rem;
}

.border-bottom-glass {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass-subtle {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.border-start-thread {
    border-left: 2px solid rgba(37, 99, 235, 0.25);
}

.detail-rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.btn-star {
    background: transparent;
    border: none;
    padding: 0 2px;
    color: #CBD5E1;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-star.active {
    color: #F59E0B;
}

.glass-comment-card,
.glass-reply-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.glass-comment-avatar,
.glass-reply-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.glass-comment-status-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    border: 2px solid #FFFFFF;
}

.glass-reply-official-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    border: 2px solid #FFFFFF;
}

.glass-comment-author,
.glass-reply-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.glass-comment-role-badge {
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-reply-team-tag {
    background: #F0FDF4;
    color: #0D9488;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-comment-timestamp,
.glass-reply-timestamp {
    font-size: 0.78rem;
    color: #94A3B8;
}

.glass-comment-dot-divider {
    color: #CBD5E1;
}

.glass-comment-rating i {
    font-size: 0.75rem;
}

.glass-comment-icon-btn,
.glass-reply-icon-btn {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    border-radius: 8px;
}

.glass-comment-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.glass-comment-text,
.glass-reply-text {
    font-size: 0.925rem;
    color: #334155;
    line-height: 1.6;
}

.glass-comment-action-btn,
.glass-reply-action-btn {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.glass-comment-action-btn.active,
.glass-reply-action-btn.active {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #2563EB;
}

.glass-comment-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
}

.glass-badge-official {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563EB;
    background: #EFF6FF;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.detail-comment-form-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.detail-comment-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-auth-notice-msg {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1E40AF;
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.detail-form-input,
.detail-form-textarea {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
}

.detail-form-input::placeholder,
.detail-form-textarea::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.detail-form-input:focus,
.detail-form-textarea:focus {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    color: #0F172A;
}

.detail-btn-submit {
    background: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.detail-btn-submit:hover {
    background: #1D4ED8;
    color: #FFFFFF;
}

.detail-sidebar-sticky {
    position: sticky;
    top: 90px;
}

.detail-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-sidebar-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.detail-sidebar-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-link {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.recent-post-link:hover {
    color: #2563EB;
}

.detail-sidebar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.detail-quick-nav-btn {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    transition: all 0.2s ease;
}

.detail-quick-nav-btn:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.site-footer {
    position: relative;
    background-color: #F1F5F9;
    padding: 3rem 0 2rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
}

.site-footer__ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 1.5rem;
}

.site-footer__brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.site-footer__brand-desc {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 320px;
    line-height: 1.6;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    margin-bottom: 1rem;
}

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

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #2563EB;
    text-decoration: none;
}

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

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    word-break: break-word;
}

.site-footer__contact-icon {
    color: #2563EB;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.site-footer__contact-icon--wa {
    color: #0D9488;
}

.site-footer__contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
    color: #2563EB;
    text-decoration: none;
}

.site-footer__contact-text {
    color: #475569;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer__card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .site-footer__brand-title {
        font-size: 1.2rem;
    }

    .site-footer__brand-desc {
        font-size: 0.875rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .site-footer__link,
    .site-footer__contact-item {
        font-size: 0.875rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

/* ===== PAGE TEMPLATE: projects ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.site-header .navbar {
    padding: 0.75rem 0;
    background-color: #ffffff;
}

.site-header .brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.site-header .brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header .brand-accent {
    color: #2563eb;
}

.site-header .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    background-color: #f8fafc;
    border-radius: 8px;
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none;
}

.site-header .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: #2563eb;
    background-color: #f1f5f9;
}

.site-header .btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .btn-primary-custom:hover,
.site-header .btn-primary-custom:focus {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .site-header .navbar-nav {
        margin-bottom: 1rem !important;
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .site-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .site-header .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }
}

.detail-hero-section {
    background-color: #0B0F19;
    background-image: radial-gradient(circle at 50% -20%, #3B1B6D 0%, #15103A 40%, #0B0F19 85%);
    color: #FFFFFF;
    position: relative;
}

.detail-hero-section .detail-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .orb-1 {
    width: 380px;
    height: 380px;
    background: rgba(99, 102, 241, 0.28);
    top: 10%;
    left: -80px;
}

.detail-hero-section .orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.25);
    bottom: 15%;
    right: -60px;
}

.detail-hero-section .detail-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .container {
    z-index: 2;
}

.detail-breadcrumb .breadcrumb-item a {
    color: #93C5FD;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-breadcrumb .breadcrumb-item a:hover {
    color: #FFFFFF;
}

.detail-breadcrumb .breadcrumb-item.active {
    color: #E2E8F0;
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.detail-hero-section .badge-topic-tag {
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-hero-section .badge-meta-item {
    color: #CBD5E1;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-hero-section .badge-meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.detail-hero-section .detail-hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section .detail-hero-subheading {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 2.75rem;
    }
}

.detail-hero-section .detail-hero-subheading {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 780px;
}

.detail-main-layout {
    background-color: #F1F5F9;
    color: #475569;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-article-card,
.detail-comments-container,
.detail-sidebar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}

.detail-featured-media {
    overflow: hidden;
    border-radius: 16px;
}

.detail-main-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.detail-article-card .detail-section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.detail-article-card .detail-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .detail-article-card .detail-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-card .detail-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.detail-article-card .detail-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.detail-callout-box {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.detail-callout-icon {
    color: #2563EB;
    font-size: 1.5rem;
    line-height: 1;
}

.detail-callout-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-callout-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-checklist-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #E2E8F0;
}

.detail-checklist-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

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

.detail-list-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.detail-list-row:last-child {
    margin-bottom: 0;
}

.detail-list-icon {
    color: #0D9488;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-interactive-tabs-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #E2E8F0;
}

.detail-tab-btn {
    background: #FFFFFF;
    color: #475569;
    border: 1px solid #CBD5E1;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.detail-tab-btn:hover {
    background: #F1F5F9;
    color: #2563EB;
}

.detail-tab-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.detail-tab-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-accordion-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.detail-accordion-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    transition: background 0.2s ease;
}

.detail-accordion-btn:hover {
    background: #F8FAFC;
}

.detail-accordion-arrow {
    color: #64748B;
    transition: transform 0.2s ease;
}

.detail-accordion-btn.active .detail-accordion-arrow {
    transform: rotate(180deg);
}

.detail-accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.detail-muted-text {
    color: #64748B;
    font-size: 0.9rem;
}

.border-bottom-glass {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass-subtle {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.border-start-thread {
    border-left: 2px solid rgba(37, 99, 235, 0.25);
}

.detail-rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.btn-star {
    background: transparent;
    border: none;
    padding: 0 2px;
    color: #CBD5E1;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-star.active {
    color: #F59E0B;
}

.glass-comment-card,
.glass-reply-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.glass-comment-avatar,
.glass-reply-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.glass-comment-status-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    border: 2px solid #FFFFFF;
}

.glass-reply-official-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    border: 2px solid #FFFFFF;
}

.glass-comment-author,
.glass-reply-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.glass-comment-role-badge {
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-reply-team-tag {
    background: #F0FDF4;
    color: #0D9488;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-comment-timestamp,
.glass-reply-timestamp {
    font-size: 0.78rem;
    color: #94A3B8;
}

.glass-comment-dot-divider {
    color: #CBD5E1;
}

.glass-comment-rating i {
    font-size: 0.75rem;
}

.glass-comment-icon-btn,
.glass-reply-icon-btn {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    border-radius: 8px;
}

.glass-comment-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.glass-comment-text,
.glass-reply-text {
    font-size: 0.925rem;
    color: #334155;
    line-height: 1.6;
}

.glass-comment-action-btn,
.glass-reply-action-btn {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.glass-comment-action-btn.active,
.glass-reply-action-btn.active {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #2563EB;
}

.glass-comment-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
}

.glass-badge-official {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563EB;
    background: #EFF6FF;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.detail-comment-form-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.detail-comment-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-auth-notice-msg {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1E40AF;
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.detail-form-input,
.detail-form-textarea {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
}

.detail-form-input::placeholder,
.detail-form-textarea::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.detail-form-input:focus,
.detail-form-textarea:focus {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    color: #0F172A;
}

.detail-btn-submit {
    background: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.detail-btn-submit:hover {
    background: #1D4ED8;
    color: #FFFFFF;
}

.detail-sidebar-sticky {
    position: sticky;
    top: 90px;
}

.detail-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-sidebar-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.detail-sidebar-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-link {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.recent-post-link:hover {
    color: #2563EB;
}

.detail-sidebar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.detail-quick-nav-btn {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    transition: all 0.2s ease;
}

.detail-quick-nav-btn:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.site-footer {
    position: relative;
    background-color: #F1F5F9;
    padding: 3rem 0 2rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
}

.site-footer__ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 1.5rem;
}

.site-footer__brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.site-footer__brand-desc {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 320px;
    line-height: 1.6;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    margin-bottom: 1rem;
}

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

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #2563EB;
    text-decoration: none;
}

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

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    word-break: break-word;
}

.site-footer__contact-icon {
    color: #2563EB;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.site-footer__contact-icon--wa {
    color: #0D9488;
}

.site-footer__contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
    color: #2563EB;
    text-decoration: none;
}

.site-footer__contact-text {
    color: #475569;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer__card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .site-footer__brand-title {
        font-size: 1.2rem;
    }

    .site-footer__brand-desc {
        font-size: 0.875rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .site-footer__link,
    .site-footer__contact-item {
        font-size: 0.875rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

/* ===== PAGE TEMPLATE: knowledge-base ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.site-header .navbar {
    padding: 0.75rem 0;
    background-color: #ffffff;
}

.site-header .brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: inline-block;
}

.site-header .brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header .brand-accent {
    color: #2563eb;
}

.site-header .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    color: #0f172a;
    background-color: #f8fafc;
    border-radius: 8px;
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    outline: none;
}

.site-header .navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: #2563eb;
    background-color: #f1f5f9;
}

.site-header .btn-primary-custom {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header .btn-primary-custom:hover,
.site-header .btn-primary-custom:focus {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .site-header .navbar-nav {
        margin-bottom: 1rem !important;
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .site-header .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .site-header .header-action-wrap {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }
}

.detail-hero-section {
    background-color: #0B0F19;
    background-image: radial-gradient(circle at 50% -20%, #3B1B6D 0%, #15103A 40%, #0B0F19 85%);
    color: #FFFFFF;
    position: relative;
}

.detail-hero-section .detail-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .orb-1 {
    width: 380px;
    height: 380px;
    background: rgba(99, 102, 241, 0.28);
    top: 10%;
    left: -80px;
}

.detail-hero-section .orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.25);
    bottom: 15%;
    right: -60px;
}

.detail-hero-section .detail-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.detail-hero-section .container {
    z-index: 2;
}

.detail-breadcrumb .breadcrumb-item a {
    color: #93C5FD;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-breadcrumb .breadcrumb-item a:hover {
    color: #FFFFFF;
}

.detail-breadcrumb .breadcrumb-item.active {
    color: #E2E8F0;
    font-size: 0.875rem;
    font-weight: 600;
}

.detail-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.detail-hero-section .badge-topic-tag {
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-hero-section .badge-meta-item {
    color: #CBD5E1;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-hero-section .badge-meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.detail-hero-section .detail-hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-hero-section .detail-hero-subheading {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .detail-hero-section .detail-hero-heading {
        font-size: 2.75rem;
    }
}

.detail-hero-section .detail-hero-subheading {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 780px;
}

.detail-main-layout {
    background-color: #F1F5F9;
    color: #475569;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-article-card,
.detail-comments-container,
.detail-sidebar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}

.detail-featured-media {
    overflow: hidden;
    border-radius: 16px;
}

.detail-main-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.detail-article-card .detail-section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.detail-article-card .detail-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .detail-article-card .detail-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-article-card .detail-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }
}

.detail-article-card .detail-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.detail-callout-box {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.detail-callout-icon {
    color: #2563EB;
    font-size: 1.5rem;
    line-height: 1;
}

.detail-callout-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-callout-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-checklist-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #E2E8F0;
}

.detail-checklist-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

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

.detail-list-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.detail-list-row:last-child {
    margin-bottom: 0;
}

.detail-list-icon {
    color: #0D9488;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-interactive-tabs-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #E2E8F0;
}

.detail-tab-btn {
    background: #FFFFFF;
    color: #475569;
    border: 1px solid #CBD5E1;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.detail-tab-btn:hover {
    background: #F1F5F9;
    color: #2563EB;
}

.detail-tab-btn.active {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.detail-tab-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.detail-accordion-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.detail-accordion-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
    transition: background 0.2s ease;
}

.detail-accordion-btn:hover {
    background: #F8FAFC;
}

.detail-accordion-arrow {
    color: #64748B;
    transition: transform 0.2s ease;
}

.detail-accordion-btn.active .detail-accordion-arrow {
    transform: rotate(180deg);
}

.detail-accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.detail-muted-text {
    color: #64748B;
    font-size: 0.9rem;
}

.border-bottom-glass {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.border-top-glass-subtle {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.border-start-thread {
    border-left: 2px solid rgba(37, 99, 235, 0.25);
}

.detail-rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.btn-star {
    background: transparent;
    border: none;
    padding: 0 2px;
    color: #CBD5E1;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-star.active {
    color: #F59E0B;
}

.glass-comment-card,
.glass-reply-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.glass-comment-avatar,
.glass-reply-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.glass-comment-status-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    border: 2px solid #FFFFFF;
}

.glass-reply-official-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    border: 2px solid #FFFFFF;
}

.glass-comment-author,
.glass-reply-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.glass-comment-role-badge {
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-reply-team-tag {
    background: #F0FDF4;
    color: #0D9488;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.glass-comment-timestamp,
.glass-reply-timestamp {
    font-size: 0.78rem;
    color: #94A3B8;
}

.glass-comment-dot-divider {
    color: #CBD5E1;
}

.glass-comment-rating i {
    font-size: 0.75rem;
}

.glass-comment-icon-btn,
.glass-reply-icon-btn {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    border-radius: 8px;
}

.glass-comment-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.glass-comment-text,
.glass-reply-text {
    font-size: 0.925rem;
    color: #334155;
    line-height: 1.6;
}

.glass-comment-action-btn,
.glass-reply-action-btn {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.glass-comment-action-btn.active,
.glass-reply-action-btn.active {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #2563EB;
}

.glass-comment-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
}

.glass-badge-official {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563EB;
    background: #EFF6FF;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.detail-comment-form-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.detail-comment-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-auth-notice-msg {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1E40AF;
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.detail-form-input,
.detail-form-textarea {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
}

.detail-form-input::placeholder,
.detail-form-textarea::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.detail-form-input:focus,
.detail-form-textarea:focus {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    color: #0F172A;
}

.detail-btn-submit {
    background: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.detail-btn-submit:hover {
    background: #1D4ED8;
    color: #FFFFFF;
}

.detail-sidebar-sticky {
    position: sticky;
    top: 90px;
}

.detail-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-sidebar-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.detail-sidebar-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.detail-author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #6366F1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-link {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.recent-post-link:hover {
    color: #2563EB;
}

.detail-sidebar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.detail-quick-nav-btn {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    transition: all 0.2s ease;
}

.detail-quick-nav-btn:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #2563EB;
}

.site-footer {
    position: relative;
    background-color: #F1F5F9;
    padding: 3rem 0 2rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
}

.site-footer__ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%), radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 1.5rem;
}

.site-footer__brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.site-footer__brand-desc {
    font-size: 0.9375rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 320px;
    line-height: 1.6;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    margin-bottom: 1rem;
}

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

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #2563EB;
    text-decoration: none;
}

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

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    word-break: break-word;
}

.site-footer__contact-icon {
    color: #2563EB;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.site-footer__contact-icon--wa {
    color: #0D9488;
}

.site-footer__contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
    color: #2563EB;
    text-decoration: none;
}

.site-footer__contact-text {
    color: #475569;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer__copyright {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .site-footer__card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .site-footer__brand-title {
        font-size: 1.2rem;
    }

    .site-footer__brand-desc {
        font-size: 0.875rem;
    }

    .site-footer__heading {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .site-footer__link,
    .site-footer__contact-item {
        font-size: 0.875rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}