/* SIDABERES — landing hero (referensi mockup) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.sb-home {
    --sb-primary: #2563eb;
    --sb-primary-dark: #1e3a8a;
    --sb-primary-mid: #1d4ed8;
    --sb-accent-green: #10b981;
    --sb-accent-purple: #8b5cf6;
    --sb-text: #1e293b;
    --sb-text-muted: #6b7280;
    --sb-border: #e2e8f0;
    --sb-radius: 16px;
    --sb-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--sb-text);
}

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

.sb-home-page {
    padding-top: 0 !important;
    overflow-x: hidden;
}

/* ── Theme toggle (pojok atas kanan) ── */
.sb-theme-toggle {
    position: fixed;
    top: 0.65rem;
    right: 0.85rem;
    z-index: 1101;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.sb-theme-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.sb-theme-toggle__btn:hover {
    color: #2563eb;
    background: rgba(255, 255, 255, 0.65);
}

.sb-theme-toggle__btn.is-active {
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 6px rgba(37, 99, 235, 0.15);
}

.sb-home-page.sb-dark-mode .sb-theme-toggle {
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(51, 65, 85, 0.75);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sb-home-page.sb-dark-mode .sb-theme-toggle__btn {
    color: #94a3b8;
}

.sb-home-page.sb-dark-mode .sb-theme-toggle__btn:hover {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
}

.sb-home-page.sb-dark-mode .sb-theme-toggle__btn.is-active {
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.28);
    box-shadow: 0 1px 6px rgba(37, 99, 235, 0.2);
}

@media (max-width: 575px) {
    .sb-theme-toggle {
        top: 0.5rem;
        right: 0.5rem;
    }

    .sb-theme-toggle__btn {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
}

/* ── Header — floating compact glass ── */
.sb-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border: none;
    padding: 0.55rem 0.85rem 0;
}

.sb-header__inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.35rem 0.45rem 0.35rem 0.7rem;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: visible;
}

.sb-header__brand {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.sb-header__logo {
    width: 100px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.sb-header__logo--app {
    border-radius: 0;
    margin-left: 0.5rem;
}

.sb-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.sb-header__brand-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--sb-primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.sb-header__brand-tag {
    display: block;
    font-size: 0.52rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 11rem;
}

.sb-header__nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0.12rem;
    flex: 1;
    justify-content: center;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    overflow: visible;
}

.sb-header__nav li {
    list-style: none;
}

.sb-header__nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    border-radius: 999px;
    transition: color 0.15s, background 0.15s, box-shadow 0.15s;
}

.sb-header__nav a:hover {
    color: var(--sb-primary);
    background: rgba(255, 255, 255, 0.55);
}

.sb-header__nav a.is-active {
    color: var(--sb-primary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 6px rgba(37, 99, 235, 0.12);
}

.sb-header__nav a.is-active::after {
    display: none;
}

.sb-header__nav-dropdown {
    position: relative;
}

.sb-header__nav-dropdown-toggle {
    cursor: pointer;
}

.sb-header__nav-caret {
    font-size: 0.55rem;
    margin-left: 0.2rem;
    opacity: 0.65;
    transition: transform 0.15s;
}

.sb-header__nav-dropdown.is-open .sb-header__nav-caret,
.sb-header__mobile-dropdown.is-open .sb-header__nav-caret {
    transform: rotate(180deg);
}

.sb-header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 11rem;
    margin: 0;
    padding: 0.35rem;
    padding-top: 0.5rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 1100;
}

/* Jembatan tak terlihat agar hover tidak putus saat kursor turun ke menu */
.sb-header__dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.sb-header__nav-dropdown:hover .sb-header__dropdown-menu,
.sb-header__nav-dropdown:focus-within .sb-header__dropdown-menu,
.sb-header__nav-dropdown.is-open .sb-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sb-header__dropdown-menu a {
    display: block;
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}

.sb-header__dropdown-menu a:hover {
    color: var(--sb-primary);
    background: rgba(37, 99, 235, 0.08);
}

.sb-header__actions {
    flex-shrink: 0;
}

.sb-header__login {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.38rem 0.85rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.28);
    transition: transform 0.15s, box-shadow 0.15s;
}

.sb-header__login:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.34);
}

.sb-header__login .fa {
    font-size: 0.68rem;
}

.sb-header__toggler {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 0.32rem 0.5rem;
    cursor: pointer;
    color: var(--sb-text);
    margin-left: auto;
    font-size: 0.85rem;
    line-height: 1;
}

.sb-header__mobile-nav {
    display: none;
    max-width: 1120px;
    margin: 0.45rem auto 0;
    padding: 0.55rem 0.85rem 0.75rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.sb-header__mobile-nav.is-open {
    display: block;
}

.sb-header__mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 0;
}

.sb-header__mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sb-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.sb-header__mobile-nav a.is-active,
.sb-header__mobile-dropdown-toggle.is-active {
    color: var(--sb-primary);
    font-weight: 600;
}

.sb-header__mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sb-text);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    cursor: pointer;
    text-align: left;
}

.sb-header__mobile-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 0.25rem 0.85rem;
}

.sb-header__mobile-dropdown.is-open .sb-header__mobile-dropdown-menu {
    display: block;
}

.sb-header__mobile-dropdown-menu a {
    padding: 0.4rem 0;
    font-size: 0.75rem;
    color: #64748b;
    border-bottom: none;
}

/* ── Hero zone full screen ── */
.sb-hero-zone {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sb-hero__photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/bg-main.jpg') center center / cover no-repeat;
}

.sb-hero__photo-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.25) 58%,
        rgba(255, 255, 255, 0.72) 78%,
        rgba(255, 255, 255, 0.95) 92%,
        #ffffff 100%
    );
    pointer-events: none;
}

/* ── Hero content ── */
.sb-hero {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 6.5rem 0 3.5rem;
}

.sb-hero__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.sb-hero__content {
    max-width: 560px;
}

.sb-hero__badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sb-primary-mid);
    background: rgba(219, 234, 254, 0.7);
    border: 1px solid rgba(147, 197, 253, 0.5);
    border-radius: 999px;
}

.sb-hero__title {
    margin: 0 0 1.1rem;
    line-height: 1.15;
}

.sb-hero__title-dark {
    display: block;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    color: var(--sb-primary-dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.15rem;
}

.sb-hero__title-blue {
    display: block;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--sb-primary);
    letter-spacing: -0.03em;
}

.sb-hero__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--sb-text-muted);
    margin: 0 0 1.75rem;
    max-width: 500px;
}

.sb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.sb-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    white-space: nowrap;
}

.sb-hero__btn--primary {
    color: #fff;
    background: var(--sb-primary);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.sb-hero__btn--primary:hover {
    background: var(--sb-primary-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.sb-hero__btn--secondary {
    color: var(--sb-primary);
    background: #fff;
    border: 1.5px solid #bfdbfe;
}

.sb-hero__btn--secondary:hover {
    background: #eff6ff;
    color: var(--sb-primary-mid);
    transform: translateY(-2px);
}

.sb-hero__btn--secondary .fa-play-circle {
    font-size: 1.05rem;
}

/* Kartu Data Terintegrasi */
@keyframes sb-integrate-float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}

.sb-hero__integrate-card {
    position: absolute;
    right: clamp(1.5rem, 8vw, 6rem);
    bottom: clamp(7rem, 14vh, 10rem);
    z-index: 3;
    width: min(300px, 88vw);
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.58) 100%
    );
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    border-radius: var(--sb-radius);
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 48px rgba(37, 99, 235, 0.1),
        0 6px 20px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: sb-integrate-float 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.sb-hero__integrate-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.sb-hero__integrate-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.sb-hero__integrate-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-primary-dark);
    line-height: 1.3;
}

.sb-hero__integrate-sub {
    font-size: 0.72rem;
    color: var(--sb-text-muted);
    margin-top: 0.1rem;
}

.sb-hero__integrate-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sb-hero__integrate-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sb-hero__integrate-row-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sb-hero__integrate-row-icon--green {
    background: rgba(236, 253, 245, 0.85);
    color: #059669;
}

.sb-hero__integrate-row-icon--blue {
    background: rgba(239, 246, 255, 0.85);
    color: #2563eb;
}

.sb-hero__integrate-row-icon--purple {
    background: rgba(245, 243, 255, 0.85);
    color: #7c3aed;
}

.sb-hero__integrate-label {
    flex: 1;
    font-size: 0.82rem;
    color: #475569;
}

.sb-hero__integrate-val {
    font-size: 1rem;
    font-weight: 800;
}

.sb-hero__integrate-val--green { color: #059669; }
.sb-hero__integrate-val--blue { color: #2563eb; }
.sb-hero__integrate-val--purple { color: #7c3aed; }

@media (prefers-reduced-motion: reduce) {
    .sb-hero__integrate-card {
        animation: none;
        will-change: auto;
    }
}

/* Footer statistik — card center bawah */
.sb-hero__footer {
    position: relative;
    z-index: 4;
    margin-top: auto;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    transform: translateY(clamp(-1.25rem, -2.5vh, -2rem));
}

.sb-hero__footer-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    padding: 1.15rem 1.5rem;
}

.sb-hero__footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0;
}

.sb-hero__footer-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: var(--sb-text);
    padding: 0.35rem 1rem;
    border-right: 1px solid var(--sb-border);
}

.sb-hero__footer-stat:last-child {
    border-right: none;
}

.sb-hero__footer-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.sb-hero__footer-stat-text {
    min-width: 0;
    text-align: left;
}

.sb-hero__footer-stat-text strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--sb-primary-dark);
}

.sb-hero__footer-stat-text span {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--sb-text-muted);
    margin-top: 0.12rem;
    line-height: 1.3;
    white-space: nowrap;
}

.sb-hero__scroll-btn {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 0.65rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sb-border);
    color: var(--sb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s;
}

.sb-hero__scroll-btn:hover {
    transform: translateY(2px);
    color: var(--sb-primary-mid);
}

/* ── Services section ── */
.sb-services {
    padding: 3rem 0 4rem;
    background: #fff;
}

.sb-services__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.sb-services__illus {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sb-services__illus img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.08));
}

.sb-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sb-service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem;
    border-radius: var(--sb-radius);
    background: #fff;
    border: 1px solid var(--sb-border);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.sb-service-item:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
    color: inherit;
}

.sb-service-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sb-service-item__icon--blue { background: #eff6ff; color: #2563eb; }
.sb-service-item__icon--green { background: #ecfdf5; color: #059669; }
.sb-service-item__icon--purple { background: #f5f3ff; color: #7c3aed; }
.sb-service-item__icon--orange { background: #fff7ed; color: #ea580c; }

.sb-service-item__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0 0 0.3rem;
}

.sb-service-item__desc {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--sb-text-muted);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .sb-header__brand-tag {
        display: none;
    }

    .sb-header__nav a {
        padding: 0.35rem 0.65rem;
        font-size: 0.82rem;
    }

    .sb-hero__integrate-card {
        right: 1.5rem;
        bottom: 8rem;
    }

    .sb-hero__footer-stat-text strong {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .sb-header {
        position: sticky;
        background: transparent;
        padding: 0.45rem 0.65rem 0;
    }

    .sb-header__inner {
        border-radius: 14px;
        padding: 0.4rem 0.55rem 0.4rem 0.65rem;
    }

    .sb-header__nav {
        display: none;
    }

    .sb-header__toggler {
        display: inline-flex;
    }

    .sb-hero-zone {
        min-height: auto;
    }

    .sb-hero {
        padding: 1.5rem 0 1rem;
        flex: none;
    }

    .sb-hero__content {
        max-width: none;
        text-align: center;
    }

    .sb-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .sb-hero__actions {
        justify-content: center;
    }

    .sb-hero__integrate-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 1.5rem auto 0;
    }

    .sb-hero__footer-card {
        padding: 1rem 1.1rem;
    }

    .sb-hero__footer-inner {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .sb-hero__footer-stat {
        border-right: none;
        border-bottom: 1px solid var(--sb-border);
        padding: 0.65rem 0;
        justify-content: flex-start;
    }

    .sb-hero__footer-stat:last-child {
        border-bottom: none;
    }

    .sb-services__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 575px) {
    .sb-header__inner {
        padding: 0.75rem 1rem;
    }

    .sb-header__brand-tag {
        display: none;
    }

    .sb-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .sb-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .sb-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Site footer ── */
.sb-site-footer {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(165deg, #0f2744 0%, #1e3a8a 48%, #1d4ed8 100%);
    color: #e2e8f0;
    margin-top: 0;
}

.sb-site-footer__top {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sb-site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.65fr 1.1fr;
    gap: 2rem 2.5rem;
}

.sb-site-footer__logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1rem;
}

.sb-site-footer__logo-img {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0;
}

.sb-site-footer__logo strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sb-site-footer__logo small {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.35;
    margin-top: 0.1rem;
}

.sb-site-footer__desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.78);
    margin: 0;
    max-width: 22rem;
}

.sb-site-footer__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin: 0 0 1rem;
}

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

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

.sb-site-footer__links a {
    color: rgba(241, 245, 249, 0.88);
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.15s, padding-left 0.15s;
    display: inline-block;
}

.sb-site-footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}

.sb-site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(226, 232, 240, 0.82);
}

.sb-site-footer__contact li i {
    width: 18px;
    margin-top: 0.15rem;
    color: #93c5fd;
    flex-shrink: 0;
    text-align: center;
}

.sb-site-footer__contact a {
    color: rgba(241, 245, 249, 0.9);
    text-decoration: none;
    transition: color 0.15s;
}

.sb-site-footer__contact a:hover {
    color: #fff;
}

.sb-site-footer__map-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 10;
    min-height: 200px;
}

.sb-site-footer__map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sb-site-footer__map-address {
    margin: 0.75rem 0 0.5rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(226, 232, 240, 0.78);
}

.sb-site-footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #93c5fd;
    text-decoration: none;
}

.sb-site-footer__map-link:hover {
    color: #fff;
}

.sb-site-footer__bottom {
    padding: 1.1rem 0 1.35rem;
    background: rgba(0, 0, 0, 0.15);
}

.sb-site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sb-site-footer__copy,
.sb-site-footer__credit {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(226, 232, 240, 0.7);
}

.sb-site-footer__copy a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.sb-site-footer__copy a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .sb-site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }

    .sb-site-footer__brand {
        grid-column: 1 / -1;
    }

    .sb-site-footer__map-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .sb-site-footer__top {
        padding: 2.5rem 0 2rem;
    }

    .sb-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .sb-site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* ── Section: Fitur utama ── */
.sb-fitur {
    --sb-primary: #2563eb;
    --sb-primary-mid: #1d4ed8;
    --sb-accent-green: #10b981;
    --sb-accent-purple: #8b5cf6;
    --sb-text: #1e293b;
    --sb-text-muted: #64748b;
    --sb-border: #e2e8f0;
    --sb-radius: 16px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 55%, #fff 100%);
    color: var(--sb-text);
}

.sb-fitur__head {
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.sb-fitur__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--sb-primary-mid);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sb-fitur__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
}

.sb-fitur__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sb-text-muted);
}

.sb-fitur__layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.sb-fitur__nav {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border: none !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sb-fitur__nav .nav-item {
    width: 100%;
}

.sb-fitur__nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.72);
    color: #334155 !important;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}

.sb-fitur__nav .nav-link i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--sb-primary-mid);
    font-size: 0.95rem;
}

.sb-fitur__nav .nav-link:hover,
.sb-fitur__nav .nav-link:focus-visible {
    background: #fff !important;
    border-color: #93c5fd !important;
    color: var(--sb-primary-mid) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.sb-fitur__nav .nav-link.active {
    background: #fff !important;
    border-color: #60a5fa !important;
    color: var(--sb-primary-mid) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.14);
}

.sb-fitur__nav .nav-link.active i {
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    color: #fff;
}

.sb-fitur__panels {
    min-width: 0;
}

.sb-fitur__card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.12fr);
    gap: 2rem;
    align-items: center;
    padding: 1.75rem;
    border-radius: var(--sb-radius);
    background: #fff;
    border: 1px solid var(--sb-border);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.sb-fitur__body {
    min-width: 0;
}

.sb-fitur__media {
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.sb-fitur__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sb-fitur__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--sb-primary-mid);
    font-size: 0.78rem;
    font-weight: 700;
}

.sb-fitur__badge--blue {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.sb-fitur__badge--green {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.sb-fitur__badge--purple {
    background: rgba(139, 92, 246, 0.12);
    color: #6d28d9;
}

.sb-fitur__card-title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.sb-fitur__body .sb-fitur__card-desc {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.75;
    color: #0f172a !important;
    letter-spacing: 0.01em;
    opacity: 1;
}

.sb-fitur__list {
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
}

.sb-fitur__list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #334155;
}

.sb-fitur__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sb-primary);
}

.sb-fitur__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.sb-fitur__cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

@media (max-width: 991px) {
    .sb-fitur {
        padding: 3.5rem 0 4rem;
    }

    .sb-fitur__layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sb-fitur__nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sb-fitur__nav .nav-item {
        flex: 1 1 calc(50% - 0.3rem);
        min-width: 0;
    }

    .sb-fitur__nav .nav-link {
        font-size: 0.82rem;
        padding: 0.75rem 0.8rem;
    }

    .sb-fitur__card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }
}

@media (max-width: 575px) {
    .sb-fitur__nav .nav-item {
        flex: 1 1 100%;
    }

    .sb-fitur__nav .nav-link span {
        flex: 1;
    }
}

/* ── Ringkasan layanan kesejahteraan sosial ── */
.sb-layanan {
    background: #f8fafc;
    padding: 3.5rem 0 4rem;
    border-top: 1px solid #e2e8f0;
}

.sb-layanan .container {
    max-width: 1100px;
}

.sb-layanan__head {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.sb-layanan__eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    margin-bottom: 0.85rem;
    border-radius: 100px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sb-layanan__title {
    margin-bottom: 0.65rem;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.sb-layanan__lead {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.65;
}

.sb-layanan__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0;
    margin: 0 0 1.5rem;
    list-style: none;
}

.sb-layanan__nav .nav-item {
    min-width: 0;
}

.sb-layanan__nav .nav-link {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    overflow: hidden;
    padding: 0.95rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
    color: #475569;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sb-layanan__nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--layanan-accent, #3b82f6);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sb-layanan__nav .nav-item:nth-child(1) .nav-link { --layanan-accent: #2563eb; }
.sb-layanan__nav .nav-item:nth-child(2) .nav-link { --layanan-accent: #dc2626; }
.sb-layanan__nav .nav-item:nth-child(3) .nav-link { --layanan-accent: #7c3aed; }
.sb-layanan__nav .nav-item:nth-child(4) .nav-link { --layanan-accent: #059669; }

.sb-layanan__pill-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--layanan-icon-bg, #eff6ff);
    color: var(--layanan-accent, #2563eb);
    font-size: 1.1rem;
    line-height: 1;
}

/* Timpa Themify ([class*=" ti-"]) agar ikon Tabler di pill layanan tampil */
.sb-layanan__pill-icon .ti {
    font-family: "tabler-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sb-layanan__nav .nav-item:nth-child(1) .sb-layanan__pill-icon { --layanan-icon-bg: #eff6ff; }
.sb-layanan__nav .nav-item:nth-child(2) .sb-layanan__pill-icon { --layanan-icon-bg: #fef2f2; }
.sb-layanan__nav .nav-item:nth-child(3) .sb-layanan__pill-icon { --layanan-icon-bg: #f5f3ff; }
.sb-layanan__nav .nav-item:nth-child(4) .sb-layanan__pill-icon { --layanan-icon-bg: #ecfdf5; }

.sb-layanan__pill-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sb-layanan__pill-title {
    display: block;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.sb-layanan__pill-desc {
    display: block;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
}

.sb-layanan__nav .nav-link:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 14px 32px rgba(15, 23, 42, 0.08);
}

.sb-layanan__nav .nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3), 0 6px 20px rgba(15, 23, 42, 0.06);
}

.sb-layanan__nav.nav-pills .nav-link.active,
.sb-layanan__nav.nav-pills .show > .nav-link {
    color: #334155;
    background-color: transparent;
}

.sb-layanan__nav .nav-link.active::before {
    opacity: 1;
}

.sb-layanan__nav .nav-link.active .sb-layanan__pill-title {
    color: #0f172a;
}

.sb-layanan__nav .nav-item:nth-child(1) .nav-link.active {
    border-color: #93c5fd;
    background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18), 0 10px 28px rgba(37, 99, 235, 0.1);
}

.sb-layanan__nav .nav-item:nth-child(2) .nav-link.active {
    border-color: #fca5a5;
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.16), 0 10px 28px rgba(220, 38, 38, 0.08);
}

.sb-layanan__nav .nav-item:nth-child(3) .nav-link.active {
    border-color: #c4b5fd;
    background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 10px 28px rgba(124, 58, 237, 0.08);
}

.sb-layanan__nav .nav-item:nth-child(4) .nav-link.active {
    border-color: #6ee7b7;
    background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
    box-shadow: 0 0 0 1px rgba(5, 150, 105, 0.18), 0 10px 28px rgba(5, 150, 105, 0.08);
}

.sb-layanan__panels {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.35rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.sb-layanan__panel-head {
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.sb-layanan__panel-title {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sb-layanan__panel-desc {
    margin: 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.55;
}

.sb-layanan__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    padding: 1.15rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.18s ease;
}

.sb-layanan__card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.sb-layanan__card--accent {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.sb-layanan__card-title {
    flex-shrink: 0;
    margin: 0 0 0.75rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sb-layanan__chart {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
}

.sb-layanan__card--donut .sb-layanan__chart {
    flex: 0 1 auto;
    min-height: 150px;
}

.sb-layanan__donut {
    width: min(78%, 168px);
    max-width: 168px;
    aspect-ratio: 1;
    height: auto;
    margin: 0 auto;
    border-radius: 50%;
    --c1: #3b82f6;
    --c2: #14b8a6;
    --c3: #f59e0b;
    --c4: #cbd5e1;
    background: conic-gradient(
        var(--c1) calc(var(--p1) * 1%),
        var(--c2) 0 calc((var(--p1) + var(--p2)) * 1%),
        var(--c3) 0 calc((var(--p1) + var(--p2) + var(--p3)) * 1%),
        var(--c4) 0
    );
    mask: radial-gradient(farthest-side, transparent 56%, #000 57%);
    -webkit-mask: radial-gradient(farthest-side, transparent 56%, #000 57%);
}

.sb-layanan__legend {
    flex-shrink: 0;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.sb-layanan__legend li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.15rem 0;
    color: #475569;
    font-size: 0.78rem;
}

.sb-layanan__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sb-layanan__svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.sb-layanan__svg--bar {
    aspect-ratio: 5 / 3;
    min-height: 170px;
    max-height: 220px;
}

.sb-layanan__svg--hbar {
    aspect-ratio: 15 / 8;
    min-height: 150px;
    max-height: 200px;
}

.sb-layanan__svg--line {
    aspect-ratio: 28 / 15;
    min-height: 150px;
    max-height: 200px;
}

.sb-layanan__svg--flow {
    aspect-ratio: 7 / 3;
    min-height: 120px;
    max-height: 160px;
}

.sb-layanan__note {
    flex-shrink: 0;
    margin: 0.5rem 0 0;
    color: #94a3b8;
    font-size: 0.72rem;
    line-height: 1.45;
}

.sb-layanan__footnote {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid #f1f5f9;
    color: #94a3b8;
    font-size: 0.72rem;
    text-align: center;
}

@media (min-width: 992px) {
    .sb-layanan__nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .sb-layanan__panels {
        padding: 1.35rem 1.5rem 1.5rem;
    }

    .sb-layanan__card {
        min-height: 300px;
    }

    .sb-layanan__svg--bar {
        min-height: 190px;
        max-height: 240px;
    }

    .sb-layanan__svg--hbar,
    .sb-layanan__svg--line {
        min-height: 170px;
        max-height: 220px;
    }

    .sb-layanan__donut {
        width: min(82%, 180px);
        max-width: 180px;
    }
}

@media (max-width: 575px) {
    .sb-layanan {
        padding: 2.75rem 0 3rem;
    }

    .sb-layanan__nav {
        grid-template-columns: 1fr;
    }
}

/* Section & kartu testimoni — warna lebih halus */
.sb-testimoni h5,
.sb-testimoni h2,
.sb-testimoni .text-dark-gray {
    color: #64748b !important;
}

.sb-testimoni .text-base-color,
.sb-testimoni .fw-700.text-base-color {
    color: #64748b !important;
}

.sb-testimoni .review-star-icon {
    opacity: 0.55;
}

.sb-testimoni-cards .testimonials-style-01 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sb-testimoni-cards__bubble {
    flex: 1 1 auto;
    padding: 1.125rem 1.25rem;
    background: rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
}

.sb-testimoni-cards .testimonial-arrow::after {
    left: 1.75rem;
    margin-left: 0;
    border-top-color: rgba(255, 255, 255, 0.65);
}

.sb-testimoni-cards__text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.sb-testimoni-cards__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0.25rem 0;
}

.sb-testimoni-cards__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.88;
}

.sb-testimoni-cards__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sb-primary, #2563eb);
    margin-bottom: 0.125rem;
}

.sb-testimoni-cards__role {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #94a3b8;
}

/* ── Dark mode ── */
.sb-home-page.sb-dark-mode {
    background: #0b1120;
    color: #e2e8f0;
}

.sb-home-page.sb-dark-mode .sb-home {
    --sb-text: #e2e8f0;
    --sb-text-muted: #94a3b8;
    --sb-border: #334155;
    --sb-primary-dark: #93c5fd;
}

.sb-home-page.sb-dark-mode .sb-hero__photo-bg::after {
    background: linear-gradient(
        to bottom,
        rgba(11, 17, 32, 0.5) 0%,
        rgba(11, 17, 32, 0.6) 38%,
        rgba(11, 17, 32, 0.78) 58%,
        rgba(11, 17, 32, 0.9) 78%,
        #0b1120 100%
    );
}

.sb-home-page.sb-dark-mode .sb-header__inner {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(51, 65, 85, 0.65);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sb-home-page.sb-dark-mode .sb-header__nav {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(51, 65, 85, 0.55);
}

.sb-home-page.sb-dark-mode .sb-header__nav a {
    color: #cbd5e1;
}

.sb-home-page.sb-dark-mode .sb-header__nav a:hover {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
}

.sb-home-page.sb-dark-mode .sb-header__nav a.is-active {
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.22);
    box-shadow: 0 1px 6px rgba(37, 99, 235, 0.2);
}

.sb-home-page.sb-dark-mode .sb-header__dropdown-menu {
    background: rgba(30, 41, 59, 0.97);
    border-color: #334155;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.sb-home-page.sb-dark-mode .sb-header__dropdown-menu a {
    color: #cbd5e1;
}

.sb-home-page.sb-dark-mode .sb-header__dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
}

.sb-home-page.sb-dark-mode .sb-header__login {
    background: rgba(37, 99, 235, 0.85);
}

.sb-home-page.sb-dark-mode .sb-header__toggler {
    background: rgba(30, 41, 59, 0.85);
    border-color: #334155;
    color: #e2e8f0;
}

.sb-home-page.sb-dark-mode .sb-header__mobile-nav {
    background: rgba(15, 23, 42, 0.95);
    border-color: #334155;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sb-home-page.sb-dark-mode .sb-header__mobile-nav a,
.sb-home-page.sb-dark-mode .sb-header__mobile-dropdown-toggle {
    color: #e2e8f0;
    border-bottom-color: #334155;
}

.sb-home-page.sb-dark-mode .sb-hero__badge {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}

.sb-home-page.sb-dark-mode .sb-hero__title-dark {
    color: #f8fafc;
}

.sb-home-page.sb-dark-mode .sb-hero__title-blue {
    color: #60a5fa;
}

.sb-home-page.sb-dark-mode .sb-hero__btn--secondary {
    background: rgba(30, 41, 59, 0.85);
    border-color: #475569;
    color: #93c5fd;
}

.sb-home-page.sb-dark-mode .sb-hero__btn--secondary:hover {
    background: rgba(51, 65, 85, 0.9);
    color: #bfdbfe;
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-card {
    background: linear-gradient(
        155deg,
        rgba(30, 41, 59, 0.92) 0%,
        rgba(15, 23, 42, 0.88) 100%
    );
    border-color: rgba(51, 65, 85, 0.8);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-head {
    border-bottom-color: #334155;
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-title {
    color: #f1f5f9;
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-sub,
.sb-home-page.sb-dark-mode .sb-hero__integrate-label {
    color: #94a3b8;
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-row-icon--green {
    background: rgba(16, 185, 129, 0.15);
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-row-icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.sb-home-page.sb-dark-mode .sb-hero__integrate-row-icon--purple {
    background: rgba(139, 92, 246, 0.15);
}

.sb-home-page.sb-dark-mode .sb-hero__footer-card {
    background: rgba(30, 41, 59, 0.92);
    border-color: #334155;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sb-home-page.sb-dark-mode .sb-hero__footer-stat {
    border-right-color: #334155;
}

.sb-home-page.sb-dark-mode .sb-hero__footer-stat-icon {
    background: rgba(37, 99, 235, 0.18);
    color: #60a5fa;
}

.sb-home-page.sb-dark-mode .sb-hero__footer-stat-text strong {
    color: #f1f5f9;
}

.sb-home-page.sb-dark-mode .sb-hero__footer-stat-text span {
    color: #94a3b8;
}

.sb-home-page.sb-dark-mode .sb-hero__scroll-btn {
    background: rgba(30, 41, 59, 0.92);
    border: 1px solid #334155;
    color: #94a3b8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.sb-home-page.sb-dark-mode .sb-hero__scroll-btn:hover {
    color: #93c5fd;
}

.sb-home-page.sb-dark-mode #tentang {
    background: #0b1120;
}

.sb-home-page.sb-dark-mode #tentang .text-dark-gray {
    color: #f1f5f9 !important;
}

.sb-home-page.sb-dark-mode #tentang p {
    color: #94a3b8;
}

.sb-home-page.sb-dark-mode .bg-solitude-blue {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #93c5fd !important;
}

.sb-home-page.sb-dark-mode .sb-fitur {
    background: linear-gradient(180deg, #0f172a 0%, #0b1120 100%);
}

.sb-home-page.sb-dark-mode .sb-fitur__title {
    color: #f1f5f9;
}

.sb-home-page.sb-dark-mode .sb-fitur__nav .nav-link {
    background: rgba(30, 41, 59, 0.75);
    border-color: #334155 !important;
    color: #cbd5e1 !important;
}

.sb-home-page.sb-dark-mode .sb-fitur__nav .nav-link:hover,
.sb-home-page.sb-dark-mode .sb-fitur__nav .nav-link:focus-visible {
    background: rgba(51, 65, 85, 0.85);
    border-color: #475569 !important;
}

.sb-home-page.sb-dark-mode .sb-fitur__nav .nav-link.active {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(59, 130, 246, 0.45) !important;
    color: #93c5fd !important;
}

.sb-home-page.sb-dark-mode .sb-fitur__card {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.sb-home-page.sb-dark-mode .sb-fitur__media {
    background: #0f172a;
}

.sb-home-page.sb-dark-mode .sb-fitur__card-title {
    color: #f1f5f9;
}

.sb-home-page.sb-dark-mode .sb-fitur__body .sb-fitur__card-desc {
    color: #cbd5e1 !important;
}

.sb-home-page.sb-dark-mode .sb-fitur__list li {
    color: #94a3b8;
}

.sb-home-page.sb-dark-mode .sb-testimoni {
    background: #0b1120 !important;
}

.sb-home-page.sb-dark-mode .sb-testimoni h5,
.sb-home-page.sb-dark-mode .sb-testimoni h2,
.sb-home-page.sb-dark-mode .sb-testimoni .text-dark-gray {
    color: #94a3b8 !important;
}

.sb-home-page.sb-dark-mode .sb-testimoni-cards__bubble {
    background: rgba(30, 41, 59, 0.88) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
}

.sb-home-page.sb-dark-mode .sb-testimoni-cards .testimonial-arrow::after {
    border-top-color: rgba(30, 41, 59, 0.88);
}

.sb-home-page.sb-dark-mode .sb-testimoni-cards__name {
    color: #f1f5f9;
}
