.case-study-workspace {
    position: relative;
    max-width: 1340px;
    margin: 0 auto;
    padding: 150px 32px 120px 32px;
    background-color: #04010a;
    min-height: 100vh;
    font-family: 'Geist Sans', system-ui, -apple-system, sans-serif;
}

.case-study-glow {
    position: absolute;
    top: -200px;
    right: -10%; 
    width: 60vw; 
    max-width: 900px;
    height: 60vw;
    max-height: 900px;
    background: radial-gradient(
        circle, 
        rgba(255, 51, 51, 0.15) 0%, 
        rgba(244, 63, 94, 0.05) 45%, 
        transparent 70%
    );
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.case-meta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.case-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.case-b-link {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-b-link:hover {
    color: #ffffff;
}

.case-b-split {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.1);
}

.case-b-current {
    font-size: 13px;
    color: #ff3333;
    font-weight: 500;
}

.case-tag-wrapper {
    display: flex;
    gap: 8px;
}

.case-badge-pill {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    border-radius: 100px;
}

.case-badge-pill.border-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.case-header-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 100px;
}

.case-main-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.crypto-gradient {
    background: linear-gradient(90deg, #ff3333, #f43f5e, #be123c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-abstract {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 32px;
}

.web3-action-btn {
    position: relative;
    display: inline-block;
    padding: 1px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.btn-glow-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #ff3333, #f43f5e, #be123c);
    background-size: 200% auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-inner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 31px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #0d0914;
    transition: background 0.4s ease;
}

.web3-action-btn.btn-disabled {
            cursor: not-allowed;
            opacity: 0.6;
            pointer-events: none; /* Mencegah klik aktif */
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }
        .web3-action-btn.btn-disabled .btn-glow-layer {
            background: linear-gradient(90deg, #475569, #334155, #1e293b) !important; /* Mengubah glow merah menjadi warna gelap/terkunci */
            opacity: 0.2 !important;
        }
        .web3-action-btn.btn-disabled .btn-inner-content {
            color: #94a3b8; /* Teks agak redup */
        }

.btn-arrow-icon {
    width: 16px;
    height: 16px;
    color: #ff3333;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.web3-action-btn:hover {
    transform: translateY(-2px);
}

.web3-action-btn:hover .btn-glow-layer {
    opacity: 1;
    animation: gradientMove 3s linear infinite;
}

.web3-action-btn:hover .btn-inner-content {
    background: rgba(13, 9, 20, 0.6);
}

.web3-action-btn:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
    color: #ffffff;
}

.tech-solutions-section {
    position: relative;
    z-index: 2;
}

.section-label-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.accent-line {
    width: 40px;
    height: 1px;
    background: #ff3333;
}

.section-minimal-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
}

.bento-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-radial-glow {
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-content-box {
    position: relative;
    z-index: 2;
}

.card-icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.icon-sphere {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-sphere svg {
    width: 20px;
    height: 20px;
    stroke: url(#icon-grad);
}

.shadow-red, .shadow-purple, .shadow-cyan {
    box-shadow: inset 0 0 12px rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.15);
}

.card-order-tag {
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    font-family: monospace;
}

.card-tech-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 14px;
}

.card-tech-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.bento-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 51, 51, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.bento-card-premium:hover .card-radial-glow {
    opacity: 1;
}

.hidden-premium {
    opacity: 0;
    will-change: transform, clip-path, opacity;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="clip-reveal"] {
    clip-path: inset(0 100% 0 0);
}

[data-anim="clip-reveal"].reveal-activated {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

[data-anim="slide-skew"] {
    transform: translateX(40px) skewX(-4px);
}

[data-anim="slide-skew"].reveal-activated {
    opacity: 1;
    transform: translateX(0) skewX(0);
}

[data-anim="card-reveal"] {
    transform: translateY(30px) scale(0.96);
    filter: blur(4px);
}

[data-anim="card-reveal"].reveal-activated {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
    .case-header-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 64px;
    }
    .bento-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-main-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .case-study-workspace {
        padding: 120px 20px 80px 20px;
    }
    .bento-solutions-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-premium {
        padding: 32px;
    }
    .case-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.navbar {
    width: 100vw;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   ADVANCED METRICS & ARCHITECTURE STYLING
   ========================================================================== */
.case-stats-section {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    margin-bottom: 100px;
}

.stats-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
}

.stats-center-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stat-massive-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #ff3333;
    letter-spacing: -0.04em;
    margin-top: 16px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ff3333, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-subtitle-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.arch-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.arch-section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.arch-legend-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-laravel { background-color: #ff3333; box-shadow: 0 0 8px rgba(255, 51, 51, 0.6); }
.dot-redis { background-color: #be123c; box-shadow: 0 0 8px rgba(190, 18, 60, 0.6); }
.dot-alpine { background-color: #06b6d4; box-shadow: 0 0 8px rgba(6, 182, 212, 0.6); }
.dot-mysql { background-color: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }

/* Web3 Custom Segmented Progress Bar */
.web3-progress-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.progress-bar-track {
    display: flex;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0px; 
    overflow: hidden;
}

.progress-segment {
    height: 100%;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.seg-laravel { background: #ff3333; }
.seg-redis { background: #be123c; }
.seg-alpine { background: #06b6d4; }
.seg-mysql { background: #3b82f6; }

.progress-labels-row {
    display: flex;
    width: 100%;
    margin-top: 14px;
}

.label-pct {
    font-size: 12px;
    font-weight: 600;
    font-family: monospace;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1024px) {
    .stats-grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* ==========================================================================
   ADVANCED TESTIMONIAL & QUOTE STYLING (WEB3 HIGH-END RADIAL)
   ========================================================================== */
.case-quote-section {
    position: relative;
    z-index: 2;
    margin-bottom: 140px;
    margin-top: 100px;
    width: 100%;
}

/* Aksen Garis Horizontal Futuristik (Top & Bottom) dengan Efek Web3 Glow Gradient */
.case-quote-section::before,
.case-quote-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 860px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 51, 51, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
}
.case-quote-section::before { top: 0; }
.case-quote-section::after { bottom: 0; }

.quote-minimal-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 24px; /* Ditambah padding biar garis pembatasnya ngasih ruang bernapas */
}

.quote-logo-wrapper {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.quote-brand-logo {
    max-height: 48px; /* Dikecilkan sedikit biar proporsional dengan font baru */
    width: auto;
    object-fit: contain;

}


.quote-text-block {
    position: relative;
    width: 100%;
}

/* Font ukuran dioptimasi, line-height dirapatkan, warna disesuaikan ke teks premium */
.quote-main-text {
    font-size: 16px; /* Diubah dari 22px biar subtle dan ga nge-block screen */
    line-height: 1.8;
    color: #cbd5e1; /* Slate-300 untuk kontras teks yang nyaman di dark mode */
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 28px 0;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
}

.quote-author-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

/* Role diubah ke gaya siber-monospace ala crypto wallet interface */
.author-role {
    font-size: 11px;
    color: #f43f5e; /* Menggunakan warna aksen merah muda-rose agar kontras */
    font-weight: 500;
    font-family: monospace, ui-monospace, SFMono-Regular, Menlo;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .case-quote-section {
        margin-bottom: 90px;
        margin-top: 60px;
    }
    
    .quote-minimal-container {
        padding: 48px 20px;
    }

    .quote-main-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .quote-brand-logo {
        max-height: 40px;
    }
}

/* ==========================================================================
   ADVANCED FINAL CTA SECTION STYLING (WEB3 TRANSFORMATION NODE)
   ========================================================================== */
.case-final-cta-section {
    position: relative;
    z-index: 2;
    margin-bottom: 120px;
    width: 100%;
    background: rgba(13, 9, 20, 0.4);
    border: 1px solid rgba(255, 51, 51, 0.1);
    border-radius: 0px; /* Konsisten tanpa lengkungan di sisi dalam */
    overflow: hidden;
    padding: 96px 24px;
}

/* Latar belakang siber grid & pendaran inti */
.cta-cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 51, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 51, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

.cta-radial-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.08) 0%, rgba(255, 51, 51, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.cta-premium-wrapper {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-badge-tag {
    font-size: 11px;
    font-family: monospace;
    font-weight: 600;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(244, 63, 94, 0.06);
    border: 1px solid rgba(244, 63, 94, 0.15);
    padding: 6px 14px;
    margin-bottom: 24px;
}

.cta-massive-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-sub-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 580px;
}

/* Web3 Mega Button Mechanics */
.cta-action-holder {
    position: relative;
    display: inline-block;
}

.web3-mega-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.mega-btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #ff3333, #be123c, #f43f5e);
    z-index: 1;
    opacity: 0.6;
    filter: blur(8px);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.mega-inner-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0d0914;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.mega-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States Interaction */
.web3-mega-btn:hover .mega-btn-glow {
    opacity: 1;
    filter: blur(12px);
}

.web3-mega-btn:hover .mega-inner-box {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.web3-mega-btn:hover .mega-arrow-icon {
    transform: translateX(4px);
}

/* Responsive Mobile System */
@media (max-width: 768px) {
    .case-final-cta-section {
        padding: 64px 20px;
        margin-bottom: 80px;
    }

    .cta-massive-title {
        font-size: 30px;
    }

    .cta-sub-description {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .mega-inner-box {
        padding: 16px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   SEO IMPACT SECTION (LINEAR STACKED LAYOUT)
   ========================================================================== */

.case-seo-impact-section {
    width: 100%;
    margin-top: 4rem;
}

.seo-linear-stack-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 2rem;
}

/* Row 1: Horizontal Content Split */
.seo-row-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 991px) {
    .seo-row-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Services Matrix Tags */
.seo-services-matrix {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.matrix-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

/* Row 2: Horizontal Keywords Grid */
.seo-keywords-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .seo-keywords-horizontal-grid {
        grid-template-columns: 1fr;
    }
}

.keyword-node-item {
    background: rgba(255, 255, 255, 0.01);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0 16px 20px;
}

.node-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.node-index {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    letter-spacing: 1px;
}

.node-rank-status {
    text-align: right;
    line-height: 1;
}

.rank-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.rank-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.node-keyword-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.node-keyword-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}