:root {
    --bg: #080b10;
    --bg-soft: #0d121a;
    --panel: #111824;
    --panel-light: #162233;
    --text: #f5f7fb;
    --muted: #a8b2c4;
    --line: rgba(255, 255, 255, 0.10);
    --accent: #f59e0b;
    --accent-soft: rgba(245, 158, 11, 0.14);
    --blue: #38bdf8;
    --blue-soft: rgba(56, 189, 248, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 22px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 16, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: 0.25s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--line);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #111;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.brand-text {
    font-size: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.main-nav .nav-cta {
    margin-left: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.26);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 4px auto;
}

.section-pad {
    padding: 96px 0;
}

.section-pad.compact {
    padding: 72px 0;
}

.hero {
    min-height: calc(100vh - 78px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.16), transparent 28%),
        radial-gradient(circle at 84% 32%, rgba(56, 189, 248, 0.12), transparent 28%),
        linear-gradient(135deg, #080b10 0%, #0b111a 55%, #080b10 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 48px;
    align-items: center;
}

.eyebrow,
.section-heading span,
.page-hero span,
.cta-box span {
    display: inline-flex;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(56px, 9vw, 112px);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.hero h2 {
    margin-top: 18px;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    max-width: 720px;
}

.hero-lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 620px;
    margin-top: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    color: #101010;
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.24);
}

.btn.secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid var(--line);
}

.btn:hover {
    transform: translateY(-2px);
}

.dashboard-card {
    background: linear-gradient(180deg, rgba(22,34,51,0.92), rgba(10,15,24,0.96));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dash-top {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.dash-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
}

.dash-top strong {
    margin-left: 10px;
}

.dash-body {
    padding: 24px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric,
.table-preview div,
.exp-item {
    background: rgba(255,255,255,0.045);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}

.metric small,
.table-preview span,
.exp-item b,
.problem-card small,
.solution-card small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.metric b {
    font-size: 25px;
}

.fake-chart {
    height: 220px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 28px 14px 0;
    margin: 18px 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(56,189,248,0.08), rgba(245,158,11,0.06));
    border: 1px solid var(--line);
}

.fake-chart i {
    flex: 1;
    display: block;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, var(--accent), rgba(245,158,11,0.18));
}

.table-preview {
    display: grid;
    gap: 10px;
}

.table-preview div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-preview b {
    color: var(--blue);
    font-size: 13px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-heading.split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    text-align: left;
}

.section-heading h2,
.page-hero h1,
.cta-box h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.alt-bg {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.info-card,
.system-card,
.system-detail,
.wide-card,
.problem-card,
.solution-card,
.cta-box {
    background: linear-gradient(180deg, rgba(22,34,51,0.72), rgba(12,18,28,0.84));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.info-card:hover,
.system-card:hover,
.system-detail:hover {
    border-color: rgba(245, 158, 11, 0.35);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: var(--accent-soft);
    font-weight: 800;
    margin-bottom: 22px;
}

.info-card h3,
.system-card h3,
.system-detail h2,
.wide-card h2,
.problem-card h3,
.solution-card h3 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
}

.info-card p,
.system-card p,
.system-detail p,
.wide-card p,
.problem-card p,
.solution-card p,
.cta-box p,
.page-hero p,
.muted {
    color: var(--muted);
}

.big {
    font-size: 18px;
}

.system-card ul,
.system-detail ul {
    margin-top: 20px;
    display: grid;
    gap: 9px;
}

.system-card li,
.system-detail li {
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    font-size: 14px;
}

.system-card li::before,
.system-detail li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 9px;
}

.text-link {
    color: var(--accent);
    font-weight: 800;
}

.project-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.project-block .btn {
    margin-top: 24px;
}

.experience-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--line);
}

.exp-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
}

.exp-item span {
    color: var(--text);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.problem-card {
    border-color: rgba(248, 113, 113, 0.22);
}

.solution-card {
    border-color: rgba(56, 189, 248, 0.24);
}

.cta-box {
    text-align: center;
    padding: 54px;
}

.cta-box p {
    max-width: 760px;
    margin: 18px auto 28px;
}

.page-main {
    min-height: 65vh;
}

.page-hero {
    padding: 100px 0 70px;
    background:
        radial-gradient(circle at 20% 25%, rgba(245, 158, 11, 0.14), transparent 28%),
        linear-gradient(135deg, #080b10, #0d121a);
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
    font-size: 18px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.tag-list span {
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 700;
}

.contact-card a,
.site-footer a {
    color: var(--accent);
}

.site-footer {
    background: #06080c;
    border-top: 1px solid var(--line);
    padding-top: 52px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 10px;
}

.site-footer h4 {
    margin-bottom: 10px;
}

.site-footer p {
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    margin-top: 42px;
    padding: 18px 20px;
    font-size: 13px;
}

/* =============================
   SBPTech V1.2 - Clearer project photo backgrounds
   Foto harus ada di: public_html/assets/img/
   LineProject.webp, project1.jpeg, project2.jpeg, project3.jpeg, project4.jpeg, project5.jpeg
============================= */
.image-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--bg);
}

.image-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0.86;
    filter: brightness(0.74) saturate(1.08) contrast(1.14);
    transform: scale(1.02);
}

.image-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 16, 0.50) 0%,
            rgba(8, 11, 16, 0.34) 42%,
            rgba(8, 11, 16, 0.58) 100%
        ),
        linear-gradient(
            90deg,
            rgba(8, 11, 16, 0.62) 0%,
            rgba(8, 11, 16, 0.18) 50%,
            rgba(8, 11, 16, 0.50) 100%
        );
}

.hero-photo::before {
    background-image: url("../img/LineProject.webp");
    opacity: 0.96;
    filter: brightness(0.70) saturate(1.10) contrast(1.18);
}

.workflow-photo::before {
    background-image: url("../img/project1.jpeg");
}

.systems-photo::before {
    background-image: url("../img/project2.jpeg");
}

.project-photo::before {
    background-image: url("../img/project3.jpeg");
}

.solution-photo::before {
    background-image: url("../img/project4.jpeg");
}

.tools-photo::before {
    background-image: url("../img/project5.jpeg");
}

.glass-card,
.info-card.glass-card,
.system-card.glass-card,
.experience-panel.glass-card,
.problem-card.glass-card,
.solution-card.glass-card,
.cta-box.glass-card,
.contact-card.glass-card {
    background: rgba(17, 24, 36, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.section-heading p {
    color: var(--muted);
    max-width: 760px;
    margin: 14px auto 0;
    font-size: 17px;
}

.section-heading.left p,
.section-heading.split p {
    margin-left: 0;
    margin-right: 0;
}

.contact-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(135deg, #080b10, #0d121a);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.contact-card {
    border-radius: var(--radius);
    padding: 28px;
    display: grid;
    gap: 14px;
}

.contact-card a {
    color: var(--text);
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    overflow-wrap: anywhere;
    transition: 0.2s ease;
}

.contact-card a:hover {
    color: var(--accent);
    border-color: rgba(245, 158, 11, 0.32);
    background: var(--accent-soft);
}

@media (max-width: 980px) {
    .hero-grid,
    .project-block,
    .problem-grid,
    .card-grid.two,
    .card-grid.three,
    .card-grid.four,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .dashboard-card {
        max-width: 720px;
    }

    .section-heading.split {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(8, 11, 16, 0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a,
    .main-nav .nav-cta {
        margin: 0;
        border-radius: 14px;
    }

    .section-pad,
    .section-pad.compact {
        padding: 58px 0;
    }

    .hero {
        padding-top: 74px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero h2 {
        font-size: 31px;
    }

    .hero-lead,
    .section-heading p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .fake-chart {
        height: 170px;
    }

    .table-preview div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .exp-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .cta-box {
        padding: 30px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-card a {
        padding: 14px;
        font-size: 14px;
    }

    .image-section::before {
        opacity: 0.74;
        transform: scale(1.08);
        filter: brightness(0.68) saturate(1.04) contrast(1.12);
    }

    .hero-photo::before {
        opacity: 0.84;
    }

    .image-section::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 11, 16, 0.62) 0%,
                rgba(8, 11, 16, 0.42) 42%,
                rgba(8, 11, 16, 0.70) 100%
            ),
            linear-gradient(
                90deg,
                rgba(8, 11, 16, 0.64) 0%,
                rgba(8, 11, 16, 0.32) 50%,
                rgba(8, 11, 16, 0.56) 100%
            );
    }

    .glass-card,
    .info-card.glass-card,
    .system-card.glass-card,
    .experience-panel.glass-card,
    .problem-card.glass-card,
    .solution-card.glass-card,
    .cta-box.glass-card,
    .contact-card.glass-card {
        background: rgba(17, 24, 36, 0.74);
        backdrop-filter: blur(10px);
    }
}
/* =============================
   SBPTech V1.3 - Homepage Improvement
   Tambahkan di bagian PALING BAWAH style.css
============================= */

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-trust-row span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.dashboard-featured {
    position: relative;
}

.dashboard-featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245,158,11,0.46), rgba(56,189,248,0.22), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.workflow-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    padding-bottom: 38px;
}

.workflow-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
}

.flow-item {
    min-height: 86px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
}

.flow-item b {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.flow-item span {
    color: var(--text);
    font-weight: 800;
    line-height: 1.2;
}

.flow-arrow {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
    opacity: 0.8;
}

.why-section {
    background:
        radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.11), transparent 30%),
        radial-gradient(circle at 82% 70%, rgba(56, 189, 248, 0.08), transparent 30%),
        var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
}

.why-points {
    display: grid;
    gap: 14px;
}

.why-point {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
}

.why-point b {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111;
    background: var(--accent);
    font-size: 13px;
}

.why-point span {
    color: var(--text);
    font-weight: 800;
    line-height: 1.3;
}

.center-actions {
    justify-content: center;
}

@media (max-width: 980px) {
    .workflow-strip {
        margin-top: 0;
        padding: 28px 0;
        background: var(--bg);
    }

    .workflow-flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hero-trust-row {
        gap: 8px;
    }

    .hero-trust-row span {
        width: calc(50% - 4px);
        text-align: center;
        font-size: 12px;
        padding: 9px 8px;
    }

    .workflow-flow {
        padding: 12px;
        border-radius: 20px;
    }

    .flow-item {
        min-height: auto;
        padding: 16px;
    }

    .why-point {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-point b {
        width: 42px;
        height: 42px;
    }

    .center-actions {
        width: 100%;
    }
}
/* =============================
   SBPTech V1.4 - Systems Page
============================= */
.system-list {
    display: grid;
    gap: 24px;
}

.system-feature {
    border-radius: 28px;
    padding: 32px;
}

.system-feature-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.system-feature-head small {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.system-feature-head h2 {
    margin-top: 8px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.status-badge {
    white-space: nowrap;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid var(--line);
}

.status-badge.active {
    color: var(--blue);
    background: var(--blue-soft);
    border-color: rgba(56, 189, 248, 0.26);
}

.status-badge.concept {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: rgba(245, 158, 11, 0.24);
}

.system-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    gap: 24px;
}

.system-feature-grid h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text);
}

.system-feature-grid p,
.system-feature-grid li {
    color: var(--muted);
    font-size: 15px;
}

.system-feature-grid ul {
    display: grid;
    gap: 8px;
}

.system-feature-grid li {
    position: relative;
    padding-left: 18px;
}

.system-feature-grid li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 9px;
}

.workflow-map {
    padding: 42px;
    border-radius: 30px;
    text-align: center;
}

.workflow-map > span {
    display: inline-flex;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.workflow-map h2 {
    max-width: 850px;
    margin: 0 auto;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.workflow-chain {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.workflow-chain div {
    padding: 13px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 800;
    font-size: 14px;
}

.workflow-chain b {
    color: var(--accent);
}

@media (max-width: 980px) {
    .system-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .system-feature {
        padding: 22px;
        border-radius: 22px;
    }

    .system-feature-head {
        flex-direction: column;
        gap: 14px;
    }

    .status-badge {
        white-space: normal;
    }

    .workflow-map {
        padding: 26px 18px;
    }

    .workflow-chain {
        align-items: stretch;
        flex-direction: column;
    }

    .workflow-chain b {
        transform: rotate(90deg);
    }
}

/* =============================
   SBPTech V1.5 - Projects Page
============================= */
.projects-page .page-hero {
    position: relative;
    overflow: hidden;
}

.project-showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: stretch;
}

.project-showcase-card {
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.project-showcase-card.featured-project {
    min-height: 430px;
}

.project-showcase-card::before {
    content: "";
    position: absolute;
    inset: auto 24px 0 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.7), transparent);
}

.project-badge {
    display: inline-flex;
    color: #111;
    background: var(--accent);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
}

.secondary-badge {
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid rgba(56,189,248,0.24);
}

.project-showcase-card h3 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.065em;
    margin-bottom: 18px;
}

.project-showcase-card p {
    color: var(--muted);
    font-size: 16px;
    max-width: 780px;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 22px;
}

.project-meta-grid.single {
    grid-template-columns: 1fr;
}

.project-meta-grid div {
    background: rgba(255,255,255,0.045);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
}

.project-meta-grid small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 7px;
}

.project-meta-grid b {
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.project-tags span {
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(245,158,11,0.22);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 800;
}

.workflow-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.workflow-card {
    border-radius: var(--radius);
    padding: 26px;
}

.workflow-card h3 {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin-bottom: 10px;
}

.workflow-card p {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 980px) {
    .project-showcase-grid,
    .workflow-cards-grid,
    .project-meta-grid {
        grid-template-columns: 1fr;
    }

    .project-showcase-card.featured-project {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .project-showcase-card {
        padding: 22px;
    }

    .project-showcase-card h3 {
        font-size: 34px;
    }

    .project-meta-grid div {
        padding: 15px;
    }

    .workflow-card {
        padding: 20px;
    }
}
/* =========================
   SIDEBAR TOGGLE
========================= */

.ab-desktop-toggle{
    position:fixed;
    top:14px;
    left:235px;
    z-index:1050;

    width:34px;
    height:34px;

    border:none;
    border-radius:10px;

    background:#111827;
    color:#fff;

    font-size:16px;
    cursor:pointer;

    transition:.2s;
}

.ab-desktop-toggle:hover{
    opacity:.9;
}

/* hide sidebar */

body.ab-sidebar-hide .ab-sidebar{
    transform:translateX(-100%);
}

body.ab-sidebar-hide .ab-main{
    margin-left:0;
}

/* pindahkan tombol ketika sidebar disembunyikan */

body.ab-sidebar-hide .ab-desktop-toggle{
    left:12px;
}

/* animasi */

.ab-sidebar{
    transition:.25s ease;
}

.ab-main{
    transition:.25s ease;
}

@media(max-width:991px){

    .ab-desktop-toggle{
        display:none;
    }

}