.hero-service-clean {
    position: relative;
    padding: 200px 0 120px 0;
    background-color: #04010a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}

.hero-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.breadcrumb-link {
    font-size: 13px;
    font-weight: 400;
    color: #8a8f9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
}

.breadcrumb-current {
    font-size: 13px;
    font-weight: 400;
    color: #f43f5e;
    letter-spacing: 0.01em;
}

@media (max-width: 992px) {
    .hero-service-clean {
        padding: 160px 0 100px 0;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-service-clean {
        padding: 140px 0 80px 0;
    }
    
    .hero-breadcrumbs {
        margin-bottom: 24px;
    }
}

.services-showcase-section {
    position: relative;
    padding: 50px 0 140px 0;
    background-color: #04010a;
    overflow: hidden;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Minimalist Web3 Tab Buttons */
.services-tab-nav {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tab-trigger {
    background: none;
    border: none;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 500;
    color: #8a8f9c;
    cursor: pointer;
    position: relative;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-trigger span {
    position: relative;
    z-index: 2;
}

.tab-indicator-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f43f5e;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px #f43f5e;
}

.tab-trigger:hover {
    color: #ffffff;
}

.active-tab {
    color: #ffffff;
}

.active-tab .tab-indicator-line {
    transform: scaleX(1);
    transform-origin: left;
}

/* Premium Horizontal Scroll Track Layout */
.services-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 30px;
    cursor: grab;
}

/* Custom Minimalist Premium Scrollbar Track */
.services-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}

.services-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 99px;
}

.services-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    transition: background 0.3s ease;
}

.services-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #f43f5e;
}

.services-horizontal-track {
    display: inline-block;
    white-space: nowrap;
}

.services-group-row {
    display: flex;
    gap: 24px;
}

/* Glassmorphic Premium Horizontal Card Node */
.service-premium-node {
    flex: 0 0 360px;
    width: 360px;
    white-space: normal;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 36px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.node-inner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.node-index {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Geist Sans', sans-serif;
    color: #f43f5e;
    background: rgba(244, 63, 94, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 28px;
    border: 1px solid rgba(244, 63, 94, 0.1);
}

.node-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.node-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #8a8f9c;
    transition: color 0.4s ease;
}

/* Hover States Interaction */
.service-premium-node:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 63, 94, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-premium-node:hover .node-desc {
    color: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .services-showcase-section {
        padding-bottom: 100px;
    }
    
    .services-tab-nav {
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .tab-trigger {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .services-tab-nav {
        gap: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    
    .services-tab-nav::-webkit-scrollbar {
        display: none; /* Sembunyikan scrollbar navigasi di HP */
    }
    
    .tab-trigger {
        font-size: 14px;
        padding: 12px 2px;
    }
    
    .service-premium-node {
        flex: 0 0 290px;
        width: 290px;
        padding: 28px 24px;
        min-height: 250px;
    }
    
    .node-title {
        font-size: 18px;
    }
    
    .node-desc {
        font-size: 13px;
    }
}