
    /* Scroll Snapping disabled, keeping offset scroll-margin-top */
    html {
        scroll-behavior: smooth;
        height: 100%;
    }
    body {
        height: 100%;
    }

    /* Scroll margins for major sections with sticky header offset */
    section,
    #dev-hero,
    #dev-choose,
    #dev-warning,
    #harga,
    #harga-product-systems,
    #harga-whale,
    #dev-process,
    #dev-portfolio,
    #kaizora-maintenance,
    #dev-stack,
    #dev-faq,
    #dev-cta,
    footer {
        scroll-margin-top: 80px;
    }
    #dev-hero {
        scroll-margin-top: 0;
    }

/* ===== DEV HERO SECTION ===== */
#dev-hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
}

/* Force dark color-scheme */
#dev-hero,
#dev-hero * { color-scheme: light; }

/* ---- BG mesh gradient ---- */
#dev-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 75% 35%, rgba(101,17,212,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 10% 75%, rgba(139,92,246,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 85%, rgba(192,132,252,0.12) 0%, transparent 50%),
        linear-gradient(165deg, #ffffff 0%, #fafafb 50%, #f3f4f6 100%);
    z-index: 0;
}

/* ---- Noise overlay ---- */
#dev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

/* ---- Grid overlay ---- */
.dev-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 25%, transparent 100%);
}

/* ---- Watermark ---- */
.dev-hero-watermark {
    position: absolute;
    bottom: -2.5rem;
    left: -1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(6rem, 18vw, 18rem);
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(101,17,212,0.03) 0%, rgba(101,17,212,0.005) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}

/* ---- Main content wrapper ---- */
.dev-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* ---- Page badge ---- */
.dev-hero-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 600;
    color: #4B5563;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.dev-hero-page-badge:hover {
    background: #ffffff;
    border-color: #6d28d9;
    color: #111827;
}
.dev-hero-badge-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- Headline ---- */
.dev-hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.375rem;
}
.dev-hl-plain {
    display: block;
    color: #111827;
}
.dev-hl-accent {
    display: block;
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: devGradientShift 5s ease-in-out infinite alternate;
}
@keyframes devGradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ---- Sub text ---- */
.dev-hero-sub {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.25rem;
}

/* ---- Buttons ---- */
.dev-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.75rem;
    width: 100%;
}
@media (min-width: 480px) {
    .dev-hero-buttons { flex-direction: row; }
}

.dev-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    background: #6d28d9;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 20px rgba(101, 17, 212, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
}
.dev-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.dev-btn-primary:hover {
    background: #520db3;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(101, 17, 212, 0.35);
}
.dev-btn-primary:hover::before { opacity: 1; }
.dev-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}
.dev-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 36px rgba(37,99,235,0.55);
}
.dev-btn-primary:hover::before { opacity: 1; }

.dev-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #4B5563;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    white-space: nowrap;
}
.dev-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(101, 17, 212, 0.25);
    color: #6d28d9;
    transform: translateY(-2px);
}

/* ---- Stats row ---- */
.dev-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}
.dev-stat {
    padding-right: 1.75rem;
    margin-right: 1.75rem;
    border-right: 1px solid rgba(0,0,0,0.04);
}
.dev-stat:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
.dev-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.875rem;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.dev-stat-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 600;
}

/* ---- Scroll cue ---- */
.dev-scroll-cue {
    display: none;
}
@media (min-width: 1024px) {
    .dev-scroll-cue {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        margin-top: 2rem;
    }
}
.dev-scroll-line-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #9ca3af;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
}
.dev-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(101, 17, 212, 0.3), transparent);
    animation: devScrollPulse 1.8s ease-in-out infinite;
}
@keyframes devScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* ========== RIGHT VISUAL SIDE ========== */
.dev-hero-visual {
    position: relative;
}
.dev-visual-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, rgba(101, 17, 212, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Code terminal card ---- */
.dev-terminal {
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    border: 1px solid rgba(101, 17, 212, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(101, 17, 212, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Terminal titlebar */
.dev-term-bar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.25rem;
    background: rgba(101, 17, 212, 0.02);
    border-bottom: 1px solid rgba(101, 17, 212, 0.06);
}
.dev-term-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dev-term-title {
    margin-left: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.08em;
}
.dev-term-status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: #6d28d9;
}
.dev-term-status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #6d28d9;
    box-shadow: 0 0 6px #6d28d9;
    animation: devStatusPulse 2s ease-in-out infinite;
}
@keyframes devStatusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Terminal code body */
.dev-term-body {
    padding: 1.5rem;
    font-family: 'Courier New', 'Fira Code', monospace;
    font-size: 0.78rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dev-code-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.dev-code-ln {
    font-size: 0.65rem;
    color: rgba(101, 17, 212, 0.3);
    user-select: none;
    width: 16px;
    text-align: right;
    flex-shrink: 0;
    margin-top: 2px;
}
.dev-code-text { flex: 1; }

/* Syntax colors */
.c-kw  { color: #6d28d9; font-weight: 700; }   /* keyword: brand purple */
.c-fn  { color: #7c3aed; }   /* function name: medium violet */
.c-str { color: #059669; }   /* strings: rich emerald green */
.c-num { color: #ea580c; }   /* numbers: orange */
.c-cm  { color: #9ca3af; font-style: italic; }  /* comment: gray */
.c-pu  { color: #4b5563; }  /* punctuation: dark slate */
.c-var { color: #4f46e5; }   /* variables: deep indigo */
.c-cl  { color: #6d28d9; font-weight: 700; }   /* class / type */

/* Blinking cursor */
.dev-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #6d28d9;
    border-radius: 1px;
    vertical-align: middle;
    margin-left: 2px;
    animation: devCursorBlink 1.1s step-end infinite;
}
@keyframes devCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Terminal divider */
.dev-term-divider {
    height: 1px;
    background: rgba(101,17,212,0.05);
    margin: 0.5rem 0;
}

/* ---- Bottom metric strip inside card ---- */
.dev-term-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(101, 17, 212, 0.06);
    padding: 0.875rem 1.5rem;
    background: rgba(101, 17, 212, 0.02);
}
.dev-metric {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(101, 17, 212, 0.06);
}
.dev-metric:last-child { border-right: none; }
.dev-metric-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
}
.dev-metric-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- Floating orbit badges ---- */
.dev-orbit-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.875rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(101, 17, 212, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(101, 17, 212, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    z-index: 10;
}
.dev-orbit-badge:nth-child(1) { animation: devFloatA 3.2s ease-in-out infinite alternate; }
.dev-orbit-badge:nth-child(2) { animation: devFloatB 2.8s ease-in-out infinite alternate; }
@keyframes devFloatA {
    0%   { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes devFloatB {
    0%   { transform: translateY(0px) rotate(1deg); }
    100% { transform: translateY(-8px) rotate(-1deg); }
}

/* ---- Entrance animations (reuse from hero) ---- */
@keyframes devFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes devSlideRight {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}
.dev-anim-up   { animation: devFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.dev-anim-slide { animation: devSlideRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.dev-d1 { animation-delay: 0.1s; }
.dev-d2 { animation-delay: 0.22s; }
.dev-d3 { animation-delay: 0.36s; }
.dev-d4 { animation-delay: 0.5s; }
.dev-d5 { animation-delay: 0.64s; }
.dev-d6 { animation-delay: 0.78s; }

/* ---- Anchor navigation pills ---- */
.dev-anchor-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #4b5563;
    background: rgba(101,17,212,0.03);
    border: 1px solid rgba(101,17,212,0.08);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.01);
}
.dev-anchor-pill:hover {
    color: #6d28d9;
    background: rgba(101,17,212,0.08);
    border-color: rgba(101,17,212,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101,17,212,0.05);
}
.dev-anchor-pill-hot {
    color: #c2410c;
    border-color: rgba(234,88,12,0.15);
    background: rgba(234,88,12,0.03);
}
.dev-anchor-pill-hot:hover {
    color: #ea580c;
    background: rgba(234,88,12,0.08);
    border-color: rgba(234,88,12,0.25);
}
.dev-anchor-pill-vip {
    color: #6d28d9;
    border-color: rgba(109,40,217,0.15);
    background: rgba(109,40,217,0.03);
}
.dev-anchor-pill-vip:hover {
    color: #7c3aed;
    background: rgba(109,40,217,0.08);
    border-color: rgba(109,40,217,0.25);
    transform: translateY(-2px);
}

/* ---- Mobile fixes ---- */
@media (max-width: 639px) {
    .dev-hero-headline { font-size: clamp(2rem, 9vw, 2.75rem) !important; }
    .dev-hero-sub { font-size: 0.875rem; }
    .dev-btn-primary, .dev-btn-secondary { width: 100%; justify-content: center; }
    .dev-hero-watermark { font-size: clamp(4rem, 22vw, 8rem); opacity: 0.4; }
    .dev-orbit-badge { display: none; }
}

/* Light theme text styling overrides */
#dev-hero, #dev-choose, #dev-warning, #harga, #harga-product-systems, #harga-whale, #dev-process, #dev-portfolio, #kaizora-maintenance, #dev-stack, #dev-faq, #dev-cta {
    color: #374151;
}
.dcho-eyebrow, .price-eyebrow, .dwarn-eyebrow, .dent-eyebrow, .dql-eyebrow, .dp-eyebrow, .maint-eyebrow, .faq-eyebrow {
    color: #6d28d9 !important;
}
.dcho-title, .price-title, .dwarn-title, .dent-title, .dql-title, .dp-title, .maint-title, .faq-title {
    color: #111827 !important;
}
.dcho-subtitle, .price-subtitle, .dwarn-subtitle, .dent-subtitle, .dql-subtitle, .dp-subtitle, .maint-subtitle, .faq-subtitle {
    color: #4b5563 !important;
}
.dcho-card-title, .price-card-name, .price-group-title, .dent-title-text, .dql-title-text, .dp-step-title, .maint-tier-name, .faq-q {
    color: #111827 !important;
}
.dcho-card-desc, .price-card-desc, .price-group-sub, .dent-desc, .dql-desc, .dp-step-desc, .maint-tier-desc, .faq-a {
    color: #4b5563 !important;
}
.dcho-feat-text, .price-feat, .dent-feat-text, .dql-feat-text, .maint-feat-text {
    color: #374151 !important;
}
.dcho-tag {
    background: rgba(101,17,212,0.06) !important;
    border-color: rgba(101,17,212,0.15) !important;
    color: #6d28d9 !important;
}
.price-card, .dcho-card, .dcho-card-express, .dcho-card-premium, .price-card-featured, .price-card-enterprise, .maint-card, .faq-item {
    background: #ffffff !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
    box-shadow: 0 10px 30px rgba(101,17,212,0.02), 0 1px 3px rgba(101,17,212,0.01) !important;
}
.price-card:hover, .dcho-card:hover, .maint-card:hover {
    box-shadow: 0 20px 40px rgba(101,17,212,0.06) !important;
    border-color: rgba(101,17,212,0.2) !important;
}
.price-amount {
    color: #6d28d9 !important;
}
.price-btn-purple-ghost {
    background: rgba(101,17,212,0.04) !important;
    border: 1px solid rgba(101,17,212,0.18) !important;
    color: #6d28d9 !important;
}
.price-btn-purple-ghost:hover {
    background: rgba(101,17,212,0.1) !important;
    border-color: rgba(101,17,212,0.3) !important;
    color: #520db3 !important;
}
.price-btn-purple-solid {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(101,17,212,0.25) !important;
}
.price-btn-purple-solid:hover {
    box-shadow: 0 6px 20px rgba(101,17,212,0.35) !important;
    transform: translateY(-2px);
}

/* Perfect light theme style cleanups */
.dcho-card, .price-card, .maint-card, .dproc-step {
    background: #ffffff !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
}
.maint-desc, .maint-pkg-name, .maint-list-title, .maint-item, .maint-item span {
    color: #4b5563 !important;
}
.maint-item.excluded span {
    color: #9ca3af !important;
}
.maint-pkg-name {
    color: #111827 !important;
}
.dproc-step-title {
    color: #111827 !important;
}
.dproc-step-desc {
    color: #4b5563 !important;
}
.faq-q {
    color: #111827 !important;
}
.faq-a {
    color: #4b5563 !important;
}
.faq-item {
    background: #ffffff !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
}
.dwarn-card-title {
    color: #111827 !important;
}
.dwarn-card-desc {
    color: #4b5563 !important;
}

/* Perfect light theme specificity overrides */
.maint-title {
    color: #111827 !important;
}
.maint-subtitle {
    color: #4b5563 !important;
}
.maint-legend-pill {
    color: #4b5563 !important;
    border-color: rgba(101,17,212,0.15) !important;
}
.maint-price-currency {
    color: #6b7280 !important;
}
.maint-desc {
    color: #4b5563 !important;
}
.maint-list-title {
    color: #6b7280 !important;
}
.maint-item {
    color: #374151 !important;
}
.maint-item span {
    color: #374151 !important;
}
.maint-item.excluded {
    color: #9ca3af !important;
}
.maint-item.excluded span {
    color: #9ca3af !important;
}
.maint-response-badge {
    color: #6b7280 !important;
    background: #FAFAFB !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
}
.maint-cta-text {
    color: #111827 !important;
}
.maint-cta-sub {
    color: #6b7280 !important;
}
.maint-cta-btn {
    background: rgba(101,17,212,0.05) !important;
    border: 1px solid rgba(101,17,212,0.15) !important;
    color: #6d28d9 !important;
}
.maint-cta-btn:hover {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important;
    color: #ffffff !important;
}
.dfaq-item {
    background: #ffffff !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
}
.dfaq-question {
    color: #374151 !important;
}
.dfaq-item[open] .dfaq-question {
    color: #111827 !important;
}
.dfaq-answer {
    color: #4b5563 !important;
}
.dfaq-num {
    color: #6d28d9 !important;
}
.dfaq-title {
    color: #111827 !important;
}
.dfaq-desc {
    color: #4b5563 !important;
}
.dfaq-eyebrow {
    background: #FAFAFB !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
    color: #6d28d9 !important;
}
.dfaq-nudge {
    background: #ffffff !important;
    border: 1px solid rgba(101,17,212,0.08) !important;
}
.dfaq-nudge-label {
    color: #111827 !important;
}
.dfaq-nudge-text {
    color: #6d28d9 !important;
}


/* ===== CHOOSE YOUR WEAPON SECTION ===== */
#dev-choose {
    position: relative;
    padding: 6rem 0;
    background: #FAFAFB;
    overflow: hidden;
}

/* BG ambience */
#dev-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(101,17,212,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(59,130,246,0.07) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid dots */
#dev-choose::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.012) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 15%, transparent 100%);
}

/* Top line */
.dcho-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.25) 30%, rgba(101,17,212,0.25) 70%, transparent);
}

/* ---- Header ---- */
.dcho-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3.75rem;
}
.dcho-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dcho-eyebrow-line {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.55));
}
.dcho-eyebrow-line.right {
    background: linear-gradient(90deg, rgba(101,17,212,0.55), transparent);
}
.dcho-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.dcho-title span {
    background: linear-gradient(90deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dcho-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* ---- Cards grid ---- */
.dcho-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .dcho-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Base card ---- */
.dcho-card {
    position: relative;
    border-radius: 24px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(101,17,212,0.08);
    background: #ffffff;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.dcho-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(101,17,212,0.04), var(--card-glow, 0 0 0 transparent);
}

/* Animated top border */
.dcho-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-line);
    z-index: 10;
    transition: opacity 0.3s;
}

/* Inner blob */
.dcho-card::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--card-blob);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.4s;
}
.dcho-card:hover::after { opacity: 0.85; }

/* Decorative bg icon */
.dcho-bg-icon {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s;
}
.dcho-card:hover .dcho-bg-icon { opacity: 0.07; }

/* ---- Card: Premium (purple) ---- */
.dcho-card-premium {
    --card-line: linear-gradient(90deg, transparent, rgba(101,17,212,0.7) 40%, rgba(101,17,212,0.9) 60%, transparent);
    --card-glow: 0 0 80px rgba(101,17,212,0.12);
    --card-blob: radial-gradient(ellipse, rgba(101,17,212,0.15), transparent 70%);
    border-color: rgba(101,17,212,0.15);
}

/* ---- Card: Express (blue) ---- */
.dcho-card-express {
    --card-line: linear-gradient(90deg, transparent, rgba(101,17,212,0.7) 40%, rgba(101,17,212,0.9) 60%, transparent);
    --card-glow: 0 0 80px rgba(101,17,212,0.12);
    --card-blob: radial-gradient(ellipse, rgba(101,17,212,0.15), transparent 70%);
    border-color: rgba(101,17,212,0.15);
}

/* ---- Card inner content ---- */
.dcho-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Tag badge */
.dcho-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
    width: fit-content;
    margin-bottom: 1.25rem;
}
.dcho-tag-premium {
    background: rgba(101,17,212,0.06);
    border-color: rgba(101,17,212,0.15);
    color: #6d28d9;
}
.dcho-tag-express {
    background: rgba(101,17,212,0.06);
    border-color: rgba(101,17,212,0.15);
    color: #6d28d9;
}

/* Card title */
.dcho-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.625rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 0.3rem;
}
.dcho-card-title .name-accent-purple {
    background: linear-gradient(90deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dcho-card-title .name-accent-blue {
    background: linear-gradient(90deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quote / hook */
.dcho-hook {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 0.875rem;
    padding-left: 0.875rem;
    border-left: 2px solid var(--hook-border, rgba(101,17,212,0.4));
}

/* Description */
.dcho-desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Feature list */
.dcho-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
    flex: 1;
}
.dcho-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.82rem;
    color: #4b5563;
    line-height: 1.45;
    font-weight: 500;
}
.dcho-feat-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* CTA button */
.dcho-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.dcho-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.05);
    opacity: 0;
    transition: opacity 0.2s;
}
.dcho-btn:hover::before { opacity: 1; }
.dcho-btn:hover { transform: translateY(-2px); }

.dcho-btn-premium {
    background: linear-gradient(135deg, #6d28d9, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(101,17,212,0.25);
}
.dcho-btn-premium:hover {
    box-shadow: 0 8px 32px rgba(101,17,212,0.35);
}

.dcho-btn-express {
    background: linear-gradient(135deg, #6d28d9, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(101,17,212,0.25);
}
.dcho-btn-express:hover {
    box-shadow: 0 8px 32px rgba(101,17,212,0.35);
}

/* ---- VS divider (desktop) ---- */
.dcho-vs {
    display: none;
}
@media (min-width: 768px) {
    .dcho-vs {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid rgba(101,17,212,0.15);
        backdrop-filter: blur(12px);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.7rem;
        font-weight: 800;
        color: #6b7280;
        letter-spacing: 0.06em;
        z-index: 10;
        box-shadow: 0 4px 16px rgba(101,17,212,0.1);
    }
}

/* ---- Bottom note ---- */
.dcho-note {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 2.25rem;
    font-size: 0.78rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}



/* ===== DEV WARNING SECTION ===== */
#dev-warning {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

/* BG — dark red tint for danger mood */
#dev-warning::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 50% 0%, rgba(239,68,68,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(220,38,38,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 70%, rgba(239,68,68,0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid dots */
#dev-warning::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 15%, transparent 100%);
}

/* Top line — red tint */
.dwarn-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.15) 30%, rgba(220,38,38,0.1) 70%, transparent);
}

/* ---- Header ---- */
.dwarn-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3.5rem;
}

.dwarn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.22);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ef4444;
    margin-bottom: 1.375rem;
}
.dwarn-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #f87171;
    box-shadow: 0 0 8px rgba(248,113,113,0.8);
    animation: dwarnDotPulse 1.6s ease-in-out infinite;
}
@keyframes dwarnDotPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(248,113,113,0.5); transform: scale(1); }
    50%       { box-shadow: 0 0 14px rgba(248,113,113,0.95); transform: scale(1.2); }
}

.dwarn-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.dwarn-title .bomb {
    display: inline-block;
    animation: dwarnBombShake 3s ease-in-out infinite;
}
@keyframes dwarnBombShake {
    0%, 90%, 100% { transform: rotate(0deg); }
    92%           { transform: rotate(-8deg); }
    94%           { transform: rotate(8deg); }
    96%           { transform: rotate(-5deg); }
    98%           { transform: rotate(5deg); }
}
.dwarn-title .hl-red {
    background: linear-gradient(90deg, #f87171, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dwarn-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- Cards grid ---- */
.dwarn-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
}
@media (min-width: 768px) {
    .dwarn-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Base card ---- */
.dwarn-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    background: rgba(239, 68, 68, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.12);
    backdrop-filter: blur(12px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

/* Top red accent line */
.dwarn-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.6) 40%, rgba(248,113,113,0.6) 60%, transparent);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 10;
}

/* Inner red glow blob */
.dwarn-card::after {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(239,68,68,0.12), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s;
}

.dwarn-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239,68,68,0.28);
    box-shadow: 0 10px 30px rgba(239,68,68,0.03), 0 0 60px rgba(239,68,68,0.06);
    background: rgba(239, 68, 68, 0.05);
}
.dwarn-card:hover::before { opacity: 1; }
.dwarn-card:hover::after  { opacity: 1; }

/* Icon circle */
.dwarn-icon-wrap {
    position: relative;
    z-index: 2;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.375rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #f87171;
    flex-shrink: 0;
}
.dwarn-card:hover .dwarn-icon-wrap {
    transform: scale(1.12);
    background: rgba(239,68,68,0.14);
    border-color: rgba(239,68,68,0.35);
    box-shadow: 0 0 24px rgba(239,68,68,0.2);
}

/* Card number */
.dwarn-card-num {
    position: absolute;
    top: 1rem; right: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(239,68,68,0.2);
    letter-spacing: 0.06em;
    z-index: 2;
}

/* Card title */
.dwarn-card-title {
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    transition: color 0.2s;
}
.dwarn-card:hover .dwarn-card-title { color: #b91c1c; }

/* Card desc */
.dwarn-card-desc {
    position: relative;
    z-index: 2;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.75;
    transition: color 0.25s;
}
.dwarn-card:hover .dwarn-card-desc { color: #7f1d1d; }

/* Stat highlight inside desc */
.dwarn-stat {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #f87171;
    letter-spacing: -0.01em;
}

/* ---- Bottom CTA strip ---- */
.dwarn-cta-strip {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    text-align: center;
}
@media (min-width: 768px) {
    .dwarn-cta-strip {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
}
.dwarn-strip-text {
    flex: 1;
}
.dwarn-strip-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.dwarn-strip-sub {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.6;
}
.dwarn-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.625rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(101,17,212,0.25);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dwarn-strip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(101,17,212,0.35);
}


/* ===== PRICING SECTION ===== */
#harga {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

#harga::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 0% 30%, rgba(101,17,212,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 100% 70%, rgba(101,17,212,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
#harga::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 100%);
}

.price-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.25) 30%, rgba(101,17,212,0.25) 70%, transparent);
}

/* ---- Section header ---- */
.price-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4.5rem;
}
.price-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.price-eyebrow-line {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.55));
}
.price-eyebrow-line.right {
    background: linear-gradient(90deg, rgba(101,17,212,0.55), transparent);
}
.price-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.875rem;
}
.price-title span {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
}

/* ---- Group block ---- */
.price-group {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
    scroll-margin-top: 6rem;
}
.price-group:last-child { margin-bottom: 0; }

/* Group label row */
.price-group-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.price-group-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.price-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.price-group-sub {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 1px;
}
.price-group-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.04), transparent);
}

/* ---- Cards grid ---- */
.price-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 680px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .price-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.price-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .price-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .price-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.price-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .price-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .price-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Base price card ---- */
.price-card {
    position: relative;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--pc-line, linear-gradient(90deg, transparent, rgba(101,17,212,0.5), transparent));
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}
.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101,17,212,0.15);
    box-shadow: 0 24px 48px rgba(0,0,0,0.45), var(--pc-glow, 0 0 0 transparent);
}
.price-card:hover::before { opacity: 1; }

/* Featured (highlighted) card */
.price-card-featured {
    border-color: var(--pc-border, rgba(101,17,212,0.3));
    background: rgba(15, 10, 35, 0.9);
}
.price-card-featured::before { opacity: 1 !important; }
.price-card-featured::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--pc-blob);
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* Featured badge */
.price-featured-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    padding: 0.3rem 0.875rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

/* Card inner content z */
.price-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Card name */
.price-card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #374151;
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
}
.price-card-desc {
    font-size: 0.72rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

/* Price display */
.price-amount-wrap {
    margin-bottom: 1.375rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.875rem;
    letter-spacing: -0.03em;
    line-height: 1;
}
.price-amount-custom {
    font-size: 1.5rem;
    color: #4b5563;
}

/* Feature list */
.price-feats {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    margin-bottom: 1.5rem;
}
.price-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #374151;
    line-height: 1.45;
}
.price-feat strong { color: #111827; font-weight: 700; }
.price-feat-check {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* CTA button */
.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.price-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.05);
    opacity: 0; transition: opacity 0.2s;
}
.price-btn:hover::before { opacity: 1; }
.price-btn:hover { transform: translateY(-2px); }

/* Purple variants */
.price-btn-purple-solid {
    background: linear-gradient(135deg, #6d28d9, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(101,17,212,0.25);
}
.price-btn-purple-solid:hover { box-shadow: 0 8px 28px rgba(101,17,212,0.35); }

.price-btn-purple-ghost {
    background: rgba(101,17,212,0.04);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
}
.price-btn-purple-ghost:hover {
    background: rgba(101,17,212,0.08);
    border-color: rgba(101,17,212,0.3);
    color: #520db3;
}


.price-btn-purple-ghost {
    background: rgba(101,17,212,0.04);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
}
.price-btn-purple-ghost:hover {
    background: rgba(101,17,212,0.08);
    border-color: rgba(101,17,212,0.3);
    color: #520db3;
}

/* Enterprise dimmed state */
.price-card-enterprise {
    opacity: 0.72;
    transition: all 0.35s;
}
.price-card-enterprise:hover { opacity: 1; }


/* ===== PRODUCT SYSTEMS SECTION ===== */
#harga-product-systems {
    position: relative;
    padding: 5rem 0;
    background: #FAFAFB;
    overflow: hidden;
}
#harga-product-systems::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 50% 10%, rgba(101,17,212,0.02) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(101,17,212,0.02) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.dprod-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.25) 30%, rgba(101,17,212,0.25) 70%, transparent);
}
.dprod-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
}
.dprod-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6d28d9;
    margin-bottom: 1rem;
    background: rgba(101,17,212,0.06);
    border: 1px solid rgba(101,17,212,0.15);
    padding: 0.3rem 0.875rem;
    border-radius: 999px;
}
.dprod-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6d28d9;
    box-shadow: 0 0 8px #6d28d9;
    animation: dprodDotPulse 1.5s ease-in-out infinite;
}
@keyframes dprodDotPulse {
    0%,100%{box-shadow:0 0 4px #6d28d9}
    50%{box-shadow:0 0 12px rgba(101,17,212,0.7)}
}
.dprod-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #111827;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.dprod-title span {
    background: linear-gradient(90deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dprod-sub {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}
/* Product card grid */
.dprod-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(101,17,212,0.05);
    border: 1px solid rgba(101,17,212,0.08);
    border-radius: 22px;
    overflow: hidden;
}
@media (min-width: 640px) { .dprod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .dprod-grid { grid-template-columns: repeat(4, 1fr); } }

.dprod-card {
    background: #ffffff;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.dprod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.dprod-card:hover { background: rgba(101,17,212,0.02); }
.dprod-card:hover::before { opacity: 1; }

.dprod-icon {
    font-size: 1.875rem;
    line-height: 1;
}
.dprod-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #111827;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.dprod-desc {
    font-size: 0.73rem;
    color: #4b5563;
    line-height: 1.6;
    flex: 1;
}
.dprod-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #6d28d9;
    letter-spacing: -0.02em;
}
.dprod-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.875rem;
    border-radius: 8px;
    background: rgba(101,17,212,0.06);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
    margin-top: auto;
}
.dprod-btn:hover {
    background: rgba(101,17,212,0.12);
    border-color: rgba(101,17,212,0.3);
    color: #520db3;
    transform: translateY(-1px);
}
.dprod-btn svg { width:10px;height:10px;fill:none;stroke:currentColor;stroke-width:2.5; }

/* ===== ENTERPRISE WHALE BANNER ===== */
#harga-whale {
    position: relative;
    padding: 3rem 0 5rem;
    background: #FAFAFB;
    overflow: hidden;
}
#harga-whale::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(109,40,217,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 30%, rgba(124,58,237,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 35% 40% at 90% 70%, rgba(192,132,252,0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.dent-banner {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    border: 1px solid rgba(101,17,212,0.12);
    background: linear-gradient(145deg, #ffffff, #fafafa);
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(101,17,212,0.06),
        0 0 1px rgba(101,17,212,0.1),
        inset 0 1px 0 rgba(255,255,255,0.6);
}
/* Animated rainbow top bar */
.dent-banner-topbar {
    height: 3px;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
}

/* Side glow decorations */
.dent-banner-glow-l {
    position: absolute;
    top: -60px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,17,212,0.08), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.dent-banner-glow-r {
    position: absolute;
    bottom: -40px; right: -60px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.06), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.dent-banner-inner {
    position: relative;
    z-index: 2;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .dent-banner-inner { grid-template-columns: 1fr auto; gap: 4rem; }
}

.dent-left {}

.dent-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(101,17,212,0.08), rgba(139,92,246,0.05));
    border: 1px solid rgba(101,17,212,0.2);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6d28d9;
    margin-bottom: 1.5rem;
}
.dent-vip-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 8px #6d28d9;
    animation: dentVipPulse 1.8s ease-in-out infinite;
}
@keyframes dentVipPulse {
    0%,100%{box-shadow:0 0 5px #6d28d9}
    50%{box-shadow:0 0 14px rgba(101,17,212,0.8)}
}

.dent-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: #111827;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.dent-headline span {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dent-sub {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 1.75rem;
}
.dent-sub strong { color: #6d28d9; font-weight: 600; }

/* Tech pills row */
.dent-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.dent-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(101,17,212,0.04);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
}
.dent-tech-pill::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #8b5cf6;
    flex-shrink: 0;
}

/* Right CTA */
.dent-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}
.dent-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    box-shadow:
        0 8px 30px rgba(101,17,212,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.dent-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.dent-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(101,17,212,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.dent-cta-btn:hover::before { opacity: 1; }
.dent-cta-btn svg { width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2.5;flex-shrink:0; }

.dent-cta-note {
    font-size: 0.7rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}
.dent-cta-note strong { color: #6d28d9; }


/* ===== DEV CARA KERJA SECTION ===== */
#dev-process {
    position: relative;
    padding: 6rem 0;
    background: #FAFAFB;
    overflow: hidden;
}

/* BG ambience */
#dev-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 15% 30%, rgba(101,17,212,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(101,17,212,0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid dots */
#dev-process::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
}

/* Top separator */
.dproc-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.25) 30%, rgba(101,17,212,0.15) 70%, transparent);
}

/* ---- Header ---- */
.dproc-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}
.dproc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    background: rgba(101,17,212,0.05);
    border: 1px solid rgba(101,17,212,0.25);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(168,85,247,0.9);
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dproc-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168,85,247,0.7);
    animation: dprocDotPulse 2s ease-in-out infinite;
}
@keyframes dprocDotPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(168,85,247,0.5); }
    50%       { box-shadow: 0 0 12px rgba(168,85,247,0.95); }
}
.dproc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.dproc-title span {
    background: linear-gradient(90deg, #6d28d9, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dproc-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto;
}

/* ---- Connector line (desktop) ---- */
.dproc-connector-wrap {
    position: relative;
    z-index: 2;
}
.dproc-connector {
    display: none;
}
@media (min-width: 768px) {
    .dproc-connector {
        display: block;
        position: absolute;
        top: 44px; /* center of number circle */
        left: calc(12.5% + 28px);
        right: calc(12.5% + 28px);
        height: 2px;
        background: linear-gradient(90deg, rgba(101,17,212,0.2), rgba(139,92,246,0.2));
        z-index: 1;
    }
    /* Animated travelling dot */
    .dproc-connector::after {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        width: 6px; height: 6px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 0 10px rgba(101,17,212,0.9), 0 0 4px white;
        animation: dprocTravelDot 4s linear infinite;
    }
    @keyframes dprocTravelDot {
        0%   { left: 0%;   opacity: 0; }
        5%   { opacity: 1; }
        95%  { opacity: 1; }
        100% { left: 100%; opacity: 0; }
    }
}

/* ---- Steps grid ---- */
.dproc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .dproc-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ---- Step card ---- */
.dproc-step {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(101,17,212,0.02);
}
/* Top accent line */
.dproc-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6d28d9, transparent);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}
/* Inner glow blob */
.dproc-step::after {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,17,212,0.12), transparent 70%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s;
}
.dproc-step:hover {
    transform: translateY(-8px);
    border-color: rgba(101,17,212,0.25);
    box-shadow: 0 20px 40px rgba(101,17,212,0.06);
}
.dproc-step:hover::before { opacity: 1; }
.dproc-step:hover::after  { opacity: 1; }

/* Number circle */
.dproc-num-wrap {
    position: relative;
    z-index: 2;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(101,17,212,0.04);
    border: 1px solid rgba(101,17,212,0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.dproc-step:hover .dproc-num-wrap {
    transform: scale(1.1);
    background: #6d28d9;
    border-color: #6d28d9;
    box-shadow: 0 8px 24px rgba(101,17,212,0.3);
}
.dproc-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: #6d28d9;
    transition: color 0.3s;
}
.dproc-step:hover .dproc-num {
    color: #ffffff;
}

/* Step icon under number */
.dproc-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(101,17,212,0.15);
    transition: all 0.3s;
}
.dproc-step:hover .dproc-icon {
    background: #6d28d9;
    border-color: #ffffff;
    box-shadow: 0 4px 10px rgba(101,17,212,0.3);
}
.dproc-icon svg {
    stroke: #6d28d9;
    transition: stroke 0.3s;
}
.dproc-step:hover .dproc-icon svg {
    stroke: #ffffff;
}

.dproc-step-title {
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
}

.dproc-step-desc {
    position: relative;
    z-index: 2;
    font-size: 0.82rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ---- Decorative "step N" tag (revealed on hover) ---- */
.dproc-tag {
    position: relative;
    z-index: 2;
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: rgba(101,17,212,0.05);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dproc-step:hover .dproc-tag {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Bottom CTA strip ---- */
.dproc-cta-strip {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    text-align: center;
}
@media (min-width: 640px) {
    .dproc-cta-strip {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
}
.dproc-cta-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    letter-spacing: -0.01em;
}
.dproc-cta-sub {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.25rem;
}
.dproc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.625rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(101,17,212,0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.dproc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(101,17,212,0.45);
}


/* ===== DEV PORTFOLIO SECTION ===== */
#dev-portfolio {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

/* BG ambience */
#dev-portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 55% at 10% 30%, rgba(101,17,212,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 90% 70%, rgba(101,17,212,0.03) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid dots */
#dev-portfolio::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
}

/* Top separator */
.dpf-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(101,17,212,0.15) 35%, rgba(101,17,212,0.1) 65%, transparent);
}

/* ---- Header ---- */
.dpf-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3.5rem;
}
.dpf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6d28d9;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dpf-eyebrow-line {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, transparent, #6d28d9);
}
.dpf-eyebrow-line.right {
    background: linear-gradient(90deg, #6d28d9, transparent);
}
.dpf-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.dpf-title span {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dpf-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 420px;
    margin: 0 auto;
}

/* ---- Cards grid ---- */
.dpf-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .dpf-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Card base ---- */
.dpf-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(101,17,212,0.01);
}
/* Top accent line */
.dpf-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6d28d9, transparent);
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 10;
}
.dpf-card:hover {
    transform: translateY(-8px);
    border-color: rgba(101,17,212,0.25);
    box-shadow: 0 20px 40px rgba(101,17,212,0.06);
}
.dpf-card:hover::before { opacity: 1; }

/* ---- Thumbnail ---- */
.dpf-thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #fafafb;
}
.dpf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    opacity: 0.95;
}
.dpf-card:hover .dpf-thumb img {
    transform: scale(1.07);
    opacity: 1;
}

/* Gradient overlay on thumb */
.dpf-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(101,17,212,0.04) 0%, transparent 100%);
}

/* Category chip on thumb */
.dpf-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(101,17,212,0.06);
    border: 1px solid rgba(101,17,212,0.2);
    color: #6d28d9;
    backdrop-filter: blur(8px);
    z-index: 5;
}
.dpf-chip-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #6d28d9;
    box-shadow: 0 0 5px rgba(101,17,212,0.5);
}

/* Result badge (bottom right of thumb) */
.dpf-result-badge {
    position: absolute;
    bottom: 0.875rem;
    right: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.8rem;
    border-radius: 99px;
    font-size: 0.62rem;
    font-weight: 800;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.2);
    color: #6d28d9;
    box-shadow: 0 4px 12px rgba(101,17,212,0.08);
    backdrop-filter: blur(8px);
    z-index: 5;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dpf-card:hover .dpf-result-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Card body ---- */
.dpf-body {
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dpf-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #111827;
    letter-spacing: -0.015em;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
    line-height: 1.25;
}
.dpf-card:hover .dpf-card-title { color: #6d28d9; }

.dpf-card-desc {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* Read more arrow */
.dpf-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #6d28d9;
    transition: gap 0.25s, color 0.2s;
    margin-top: auto;
}
.dpf-card:hover .dpf-card-arrow {
    gap: 0.625rem;
    color: #520db3;
}
.dpf-card-arrow svg {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    stroke: currentColor;
}
.dpf-card:hover .dpf-card-arrow svg { transform: translateX(3px); }

/* ---- CTA row ---- */
.dpf-cta-row {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.dpf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2.25rem;
    border-radius: 12px;
    background: rgba(101,17,212,0.04);
    border: 1px solid rgba(101,17,212,0.15);
    color: #6d28d9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dpf-cta-btn:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101,17,212,0.2);
}
.dpf-cta-btn svg {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dpf-cta-btn:hover svg { transform: translateX(4px); }
.dpf-cta-note {
    font-size: 0.72rem;
    color: #6b7280;
}


/* ================================================================
   KAIZORA MAINTENANCE — PREMIUM REDESIGN
   Visual: Color-coded tiers, feature matrix, animated accents
   ================================================================ */
#kaizora-maintenance {
    position: relative;
    padding: 8rem 0 6rem;
    background-color: #FAFAFB;
    border-top: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
}

/* Ambient glow */
#kaizora-maintenance::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse 50% 60% at 15% 20%, rgba(6,182,212,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 85% 80%, rgba(101,17,212,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(249,115,22,0.04) 0%, transparent 60%);
}

/* Grid overlay */
#kaizora-maintenance::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 15%, transparent 92%);
}

/* ---- Section Header ---- */
.maint-header {
    position: relative; z-index: 2;
    text-align: center; margin-bottom: 5rem;
}
.maint-eyebrow {
    display: inline-flex; align-items: center; gap: 0.625rem;
    font-size: 0.625rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.22em; color: #6b7280; margin-bottom: 1.25rem;
    padding: 0.35rem 1rem; border-radius: 99px;
    background: #FAFAFB; border: 1px solid rgba(101,17,212,0.08);
}
.maint-eyebrow-line { width: 24px; height: 1px; background: rgba(0,0,0,0.05); }
.maint-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #111827; letter-spacing: -0.04em; line-height: 1.08;
}
.maint-title span {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.maint-subtitle {
    font-size: 0.9rem; color: #4b5563; line-height: 1.85;
    max-width: 600px; margin: 1rem auto 0;
}

/* ---- Tier legend strip ---- */
.maint-legend {
    position: relative; z-index: 2;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
    margin-bottom: 3.5rem;
}
.maint-legend-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.75rem; border-radius: 99px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    border: 1px solid; color: #4b5563;
    transition: all 0.25s;
}
.maint-legend-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

/* ---- Cards Grid ---- */
.maint-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1280px; margin: 0 auto;
}
@media (min-width: 640px)  { .maint-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .maint-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---- Base Card ---- */
.maint-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(101,17,212,0.08);
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    display: flex; flex-direction: column;
    backdrop-filter: blur(14px);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.maint-card:hover {
    transform: translateY(-8px);
    border-color: rgba(101,17,212,0.15);
    box-shadow: 0 20px 40px rgba(101,17,212,0.04);
}

/* Animated top beam */
.maint-card-beam {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--maint-color) 40%, var(--maint-color2, var(--maint-color)) 60%, transparent);
    opacity: 0.55;
    transition: opacity 0.4s;
}
.maint-card:hover .maint-card-beam { opacity: 1; }

/* Inner blob glow */
.maint-card-blob {
    position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 240px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--maint-blob, rgba(6,182,212,0.15)), transparent 70%);
    pointer-events: none; z-index: 0;
    filter: blur(40px);
    opacity: 0.4;
    transition: opacity 0.4s;
}
.maint-card:hover .maint-card-blob { opacity: 0.7; }

/* Card body */
.maint-card-inner {
    position: relative; z-index: 2;
    padding: 1.75rem 1.625rem 1.5rem;
    display: flex; flex-direction: column; flex: 1;
}

/* Tier badge */
.maint-tier-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.25rem 0.65rem; border-radius: 99px;
    font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
    border: 1px solid var(--maint-border, rgba(6,182,212,0.3));
    background: var(--maint-bg, rgba(6,182,212,0.07));
    color: var(--maint-color);
    margin-bottom: 1rem; width: fit-content;
}
.maint-tier-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--maint-color);
    box-shadow: 0 0 6px var(--maint-color);
    animation: maintDotPulse 2s ease-in-out infinite;
}
@keyframes maintDotPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Package name */
.maint-pkg-name {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem;
    color: #111827; margin-bottom: 0.2rem; letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Target websites */
.maint-target-sites {
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    margin-bottom: 1rem;
}
.maint-target-site {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
    padding: 0.2rem 0.5rem; border-radius: 5px;
    background: #FAFAFB; border: 1px solid rgba(101,17,212,0.08);
    color: #6b7280;
    transition: all 0.3s;
}
.maint-card:hover .maint-target-site {
    border-color: var(--maint-border);
    color: var(--maint-color);
    background: var(--maint-bg);
}

/* Price display */
.maint-price-block {
    display: flex; align-items: baseline; gap: 0.2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.maint-price-currency {
    font-size: 0.85rem; font-weight: 700; color: #4b5563;
}
.maint-price-num {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 2.1rem;
    color: var(--maint-color); letter-spacing: -0.04em; line-height: 1;
}
.maint-price-period {
    font-size: 0.72rem; font-weight: 500; color: #6b7280;
}

/* Description */
.maint-desc {
    font-size: 0.78rem; color: #4b5563;
    line-height: 1.7; margin-bottom: 1.375rem;
}

/* Feature list */
.maint-list-section { margin-bottom: 1.125rem; }
.maint-list-title {
    font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.12em; color: #6b7280; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.maint-list-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.06), transparent);
}
.maint-list { display: flex; flex-direction: column; gap: 0.55rem; }
.maint-item {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.76rem; color: #374151; line-height: 1.5;
}
.maint-item.excluded { color: #9ca3af; }
.maint-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.maint-item .maint-icon.check { stroke: var(--maint-color); fill: none; stroke-width: 3; }
.maint-item .maint-icon.xmark { stroke: rgba(0,0,0,0.12); fill: none; stroke-width: 2.5; }

.maint-spacer { flex: 1; min-height: 1rem; }

/* Response badge at bottom */
.maint-response-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.875rem; border-radius: 10px;
    background: #FAFAFB; border: 1px solid rgba(101,17,212,0.08);
    font-size: 0.68rem; font-weight: 700;
    color: #4b5563;
    margin-top: 1rem; width: fit-content;
    transition: all 0.3s;
}
.maint-response-badge svg { flex-shrink: 0; }
.maint-card:hover .maint-response-badge {
    background: var(--maint-bg);
    border-color: var(--maint-border);
    color: var(--maint-color);
}

/* ---- CTA footer strip ---- */
.maint-cta-strip {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.875rem; margin-top: 4rem; text-align: center;
}
@media (min-width: 640px) {
    .maint-cta-strip { flex-direction: row; justify-content: space-between; text-align: left; }
}
.maint-cta-text {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 1.125rem; color: #111827; letter-spacing: -0.02em;
}
.maint-cta-sub {
    font-size: 0.78rem; color: #6b7280; margin-top: 0.25rem; line-height: 1.5;
}
.maint-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.625rem; border-radius: 12px;
    background: rgba(101,17,212,0.05); border: 1px solid rgba(101,17,212,0.15); color: #6d28d9;
    color: #6d28d9; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700; text-decoration: none;
    backdrop-filter: blur(8px); white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.maint-cta-btn:hover {
    background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.35);
    color: rgba(103,232,249,0.95); transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6,182,212,0.18);
}


/* ========================================================
   DEV TECH STACK SECTION
   ======================================================== */
#dev-stack {
    position: relative;
    padding: 4rem 0;
    background: #FAFAFB;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#dev-stack::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(101,17,212,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dstk-label-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
}
.dstk-label-line {
    flex: 1; max-width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,40,217,0.1));
}
.dstk-label-line.right {
    background: linear-gradient(90deg, rgba(109,40,217,0.1), transparent);
}
.dstk-label-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6d28d9;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dstk-label-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(109,40,217,0.5);
    flex-shrink: 0;
}

/* Pills grid */
.dstk-pills {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.dstk-pill {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(109,40,217,0.08);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
    box-shadow: 0 4px 12px rgba(109,40,217,0.01);
}
.dstk-pill:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109,40,217,0.25);
}
.dstk-pill img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(1) brightness(0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.dstk-pill:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}
.dstk-pill-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #374151;
    transition: color 0.3s;
    white-space: nowrap;
}
.dstk-pill:hover .dstk-pill-name {
    color: #ffffff;
}


/* ========================================================
   DEV FAQ SECTION
   ======================================================== */
#dev-faq {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}
#dev-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 20%, rgba(109,40,217,0.03) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 0% 80%, rgba(109,40,217,0.02) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
#dev-faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(109,40,217,0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,40,217,0.005) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 100%);
}

.dfaq-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,40,217,0.15) 35%, rgba(109,40,217,0.1) 65%, transparent);
}

/* Two-column layout */
.dfaq-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .dfaq-inner { grid-template-columns: 1fr 1.8fr; gap: 5rem; }
}

/* Left aside */
.dfaq-aside { position: relative; }
@media (min-width: 1024px) {
    .dfaq-aside { position: sticky; top: 6rem; }
}
.dfaq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6d28d9;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dfaq-eyebrow-line {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, transparent, #6d28d9);
}
.dfaq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.dfaq-title span {
    display: block;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dfaq-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 320px;
}
.dfaq-nudge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(109,40,217,0.04);
    border: 1px solid rgba(109,40,217,0.15);
    color: #6d28d9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 300px;
}
.dfaq-nudge:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(109,40,217,0.2);
}
.dfaq-nudge-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(109,40,217,0.08);
    border: 1px solid rgba(109,40,217,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: inherit;
    transition: all 0.3s;
}
.dfaq-nudge:hover .dfaq-nudge-icon {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #ffffff;
}
.dfaq-nudge-label {
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #9ca3af; margin-bottom: 2px;
    transition: color 0.3s;
}
.dfaq-nudge:hover .dfaq-nudge-label {
    color: rgba(255,255,255,0.7);
}
.dfaq-nudge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    color: #6d28d9; line-height: 1.2;
    transition: color 0.3s;
}
.dfaq-nudge:hover .dfaq-nudge-text {
    color: #ffffff;
}

/* Right accordion */
.dfaq-list {
    display: flex; flex-direction: column; gap: 0.75rem;
    position: relative; z-index: 2;
}
.dfaq-item {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(109,40,217,0.08);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.dfaq-item[open] {
    border-color: rgba(109,40,217,0.25);
    box-shadow: 0 10px 30px rgba(109,40,217,0.03);
}
.dfaq-summary {
    list-style: none;
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer; user-select: none;
    transition: background 0.2s;
}
.dfaq-summary::-webkit-details-marker { display: none; }
.dfaq-summary:hover { background: rgba(109,40,217,0.01); }
.dfaq-item[open] .dfaq-summary {
    background: rgba(109,40,217,0.02);
    border-bottom: 1px solid rgba(109,40,217,0.06);
}
.dfaq-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem; font-weight: 800;
    color: rgba(109,40,217,0.35); letter-spacing: 0.06em;
    flex-shrink: 0; width: 22px; text-align: right;
}
.dfaq-item[open] .dfaq-num { color: #6d28d9; }
.dfaq-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    color: #374151;
    line-height: 1.4; flex: 1;
    letter-spacing: -0.01em; transition: color 0.2s;
}
.dfaq-item[open] .dfaq-question { color: #6d28d9; }
.dfaq-chevron {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(109,40,217,0.04);
    border: 1px solid rgba(109,40,217,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #6b7280;
}
.dfaq-item[open] .dfaq-chevron {
    background: #6d28d9;
    border-color: #6d28d9;
    color: #ffffff;
    transform: rotate(180deg);
}
.dfaq-answer {
    padding: 1.125rem 1.5rem 1.375rem;
    padding-left: calc(1.5rem + 22px + 1rem);
    font-size: 0.83rem;
    color: #4b5563;
    line-height: 1.8;
}


/* ========================================================
   DEV CTA SECTION
   ======================================================== */
#dev-cta {
    position: relative;
    padding: 6rem 0 7rem;
    background: #FAFAFB;
    overflow: hidden;
}
#dev-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 110%, rgba(37,99,235,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 35% 40% at 5% 15%, rgba(101,17,212,0.02) 0%, transparent 55%),
        radial-gradient(ellipse 35% 40% at 95% 15%, rgba(6,182,212,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.dcta-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,40,217,0.15) 30%, rgba(109,40,217,0.1) 70%, transparent);
}

/* Card */
.dcta-card {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(109,40,217,0.12);
    text-align: center;
    padding: 4.5rem 2rem;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(109,40,217,0.04);
}
@media (min-width: 768px) { .dcta-card { padding: 5.5rem 4rem; } }

.dcta-card-bg {
    position: absolute; inset: 0;
    background: #ffffff;
    z-index: 0;
}

/* Blobs */
.dcta-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none; z-index: 1;
    animation: dctaBlobDrift 8s ease-in-out infinite alternate;
}
.dcta-blob-1 {
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(109,40,217,0.03) 0%, transparent 70%);
    top: -100px; left: -60px;
}
.dcta-blob-2 {
    width: 320px; height: 320px;
    background: radial-gradient(ellipse, rgba(109,40,217,0.02) 0%, transparent 70%);
    bottom: -80px; right: -40px;
    animation-delay: -4s; animation-direction: alternate-reverse;
}
@keyframes dctaBlobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(16px, -16px) scale(1.07); }
}

/* Grid overlay */
.dcta-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(109,40,217,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,40,217,0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none; z-index: 2;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Watermark */
.dcta-watermark {
    position: absolute;
    bottom: -2rem; right: -0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(6rem, 16vw, 14rem);
    line-height: 1; letter-spacing: -0.05em;
    background: linear-gradient(180deg, rgba(109,40,217,0.04) 0%, transparent 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none; pointer-events: none; z-index: 3;
    white-space: nowrap;
}

/* Content */
.dcta-content { position: relative; z-index: 5; }

/* Urgency pill */
.dcta-urgency {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 1rem; border-radius: 99px;
    background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.18);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: #ef4444; margin-bottom: 1.75rem;
}
.dcta-urgency-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239,68,68,0.4);
    animation: dctaUrgencyPulse 1.5s ease-in-out infinite;
}
@keyframes dctaUrgencyPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(239,68,68,0.3); transform: scale(1); }
    50%       { box-shadow: 0 0 12px rgba(239,68,68,0.6); transform: scale(1.2); }
}

/* Headline */
.dcta-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3.25rem);
    color: #111827;
    line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1.125rem;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.dcta-headline span {
    background: linear-gradient(90deg, #6d28d9 0%, #8b5cf6 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dcta-sub {
    font-size: 0.925rem; color: #4b5563;
    line-height: 1.75; max-width: 460px;
    margin: 0 auto 2.75rem;
}

/* Buttons */
.dcta-buttons {
    display: flex; flex-direction: column;
    gap: 0.875rem; justify-content: center; align-items: center;
    margin-bottom: 2.25rem;
}
@media (min-width: 480px) { .dcta-buttons { flex-direction: row; } }

.dcta-btn-primary {
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.925rem 2.25rem; border-radius: 14px;
    background: #6d28d9;
    color: white; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none; letter-spacing: 0.01em;
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; overflow: hidden; white-space: nowrap;
}
.dcta-btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity 0.3s;
}
.dcta-btn-primary:hover {
    background: #520cb3;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(109, 40, 217, 0.35);
}
.dcta-btn-primary:hover::before { opacity: 1; }

.dcta-btn-secondary {
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.925rem 2.25rem; border-radius: 14px;
    background: rgba(109,40,217,0.04);
    border: 1px solid rgba(109,40,217,0.12);
    color: #6d28d9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.dcta-btn-secondary:hover {
    background: rgba(109,40,217,0.08);
    border-color: rgba(109,40,217,0.3);
    color: #6d28d9;
    transform: translateY(-3px);
}

/* Trust badges */
.dcta-trust {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 0.625rem;
}
.dcta-trust-badge {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.3rem 0.75rem; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    background: #FAFAFB;
    border: 1px solid rgba(109,40,217,0.08);
    color: #6b7280; white-space: nowrap;
}


/* ============================================================
   MOBILE OPTIMIZATIONS — max-width: 639px
   Semua rule di bawah hanya aktif di layar mobile (< 640px).
   Tidak ada perubahan pada tampilan desktop / tablet.
   ============================================================ */
@media (max-width: 639px) {

    /* ── GLOBAL ── */
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    /* ── HERO SECTION ── */
    #dev-hero { min-height: 100svh; padding: 0; }
    .dev-hero-content { padding-top: 6rem !important; padding-bottom: 3.5rem !important; }

    /* Sembunyikan panel kanan (terminal) di mobile — terlalu lebar */
    .dev-hero-visual { display: none; }

    /* Pastikan kolom kiri memenuhi layar penuh */
    #dev-hero .grid { grid-template-columns: 1fr !important; }

    /* Watermark lebih kecil supaya tidak overflow */
    .dev-hero-watermark {
        font-size: clamp(4.5rem, 28vw, 7rem) !important;
        bottom: -1.5rem;
        left: -0.5rem;
        opacity: 0.25 !important;
    }

    /* Badge lebih compact */
    .dev-hero-page-badge { font-size: 0.6rem; padding: 0.35rem 0.75rem 0.35rem 0.4rem; }

    /* Headline size adjustment */
    .dev-hero-headline { font-size: clamp(1.875rem, 8.5vw, 2.5rem) !important; line-height: 1.1; }

    /* Sub text */
    .dev-hero-sub { font-size: 0.85rem; line-height: 1.75; max-width: 100%; }

    /* Anchor pills — biar bisa scroll horizontal jika banyak */
    .dev-anchor-pills {
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
    }
    .dev-anchor-pill {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.7rem !important;
    }

    /* Tombol hero full-width */
    .dev-hero-buttons { flex-direction: column !important; gap: 0.75rem; width: 100%; }
    .dev-btn-primary, .dev-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Stats row — 3 kolom tetap, tapi ukuran lebih kecil */
    .dev-hero-stats { gap: 0; flex-wrap: nowrap; }
    .dev-stat { padding-right: 1rem; margin-right: 1rem; }
    .dev-stat-num { font-size: 1.375rem; }
    .dev-stat-label { font-size: 0.62rem; }


    /* ── CHOOSE YOUR WEAPON ── */
    #dev-choose { padding: 4rem 0; }
    .dcho-header { margin-bottom: 2.5rem; }
    .dcho-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .dcho-subtitle { font-size: 0.82rem; }
    .dcho-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .dcho-card { padding: 1.75rem 1.5rem; border-radius: 20px; }
    .dcho-note { font-size: 0.75rem; padding: 0.875rem 1rem; border-radius: 12px; }


    /* ── WARNING SECTION ── */
    #dev-warning { padding: 4rem 0; }
    .dwarn-header { margin-bottom: 2.5rem; }
    .dwarn-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .dwarn-subtitle { font-size: 0.82rem; }
    .dwarn-grid { grid-template-columns: 1fr !important; gap: 0.875rem; }
    .dwarn-card { padding: 1.625rem 1.375rem; border-radius: 16px; }
    .dwarn-card-num { font-size: 0.55rem; }
    .dwarn-icon-wrap { width: 54px; height: 54px; margin-bottom: 1.125rem; }

    /* CTA strip bawah warning */
    .dwarn-cta-strip {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
        padding: 1.375rem 1.25rem;
        border-radius: 14px;
    }
    .dwarn-strip-btn { width: 100%; justify-content: center; }


    /* ── PRICING SECTION ── */
    #harga { padding: 4rem 0; }
    .price-header { margin-bottom: 3rem; }
    .price-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .price-subtitle { font-size: 0.82rem; }

    /* Group label */
    .price-group-label { gap: 0.75rem; flex-wrap: nowrap; align-items: flex-start; }
    .price-group-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
    .price-group-title { font-size: 1.1rem; }
    .price-group-sub { font-size: 0.72rem; line-height: 1.5; }
    .price-group-line { display: none; } /* hilangkan garis di mobile agar tidak terlalu padat */

    /* Price cards — semua 1 kolom di mobile */
    .price-grid-2,
    .price-grid-3,
    .price-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 0.875rem;
    }

    /* Kartu harga */
    .price-card { padding: 1.5rem; border-radius: 16px; }
    .price-card-name { font-size: 0.95rem; }
    .price-card-desc { font-size: 0.7rem; margin-bottom: 1rem; }
    .price-amount { font-size: 1.625rem !important; }
    .price-amount-wrap { margin-bottom: 1.125rem; padding-bottom: 1rem; }
    .price-feat { font-size: 0.76rem; gap: 0.45rem; }
    .price-feat-check { width: 18px !important; height: 18px !important; flex-shrink: 0; }

    /* Tombol di pricing card */
    .price-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.82rem;
        text-align: center;
        border-radius: 10px;
    }

    /* Featured badge */
    .price-featured-badge { font-size: 0.55rem; padding: 0.25rem 0.7rem; }

    /* Group margin */
    .price-group { margin-bottom: 3.5rem; scroll-margin-top: 4.5rem; }


    /* ── PRODUCT SYSTEMS ── */
    #harga-product-systems { padding: 3.5rem 0; }
    .dprod-header { margin-bottom: 2rem; }
    .dprod-title { font-size: clamp(1.5rem, 6.5vw, 2.25rem); }
    .dprod-sub { font-size: 0.82rem; }

    /* Grid produk — 2 kolom tetap tapi padding lebih kecil */
    .dprod-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        border-radius: 16px;
    }
    .dprod-card {
        padding: 1.25rem 1rem;
        gap: 0.625rem;
    }
    .dprod-icon { font-size: 1.5rem; }
    .dprod-name { font-size: 0.8rem; }
    .dprod-desc { font-size: 0.68rem; display: none; } /* sembunyikan desc di mobile agar tidak terlalu padat */
    .dprod-price { font-size: 0.9rem; }
    .dprod-btn { padding: 0.35rem 0.6rem; font-size: 0.62rem; border-radius: 6px; }


    /* ── ENTERPRISE BANNER ── */
    #harga-whale { padding: 2rem 0 4rem; }
    .dent-banner { border-radius: 20px; }
    .dent-banner-inner {
        padding: 2rem 1.5rem !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .dent-headline { font-size: clamp(1.5rem, 6.5vw, 2.25rem); }
    .dent-sub { font-size: 0.82rem; margin-bottom: 1.25rem; }
    .dent-tech-row { gap: 0.4rem; }
    .dent-tech-pill { font-size: 0.62rem; padding: 0.25rem 0.6rem; }
    .dent-right { display: flex; flex-direction: column; align-items: stretch; }
    .dent-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }
    .dent-cta-note { text-align: center; font-size: 0.78rem; margin-top: 0.75rem; }





    /* ── PROCESS SECTION ── */
    #dev-process { padding: 4rem 0; }
    .dproc-header { margin-bottom: 2.5rem; }
    .dproc-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .dproc-subtitle { font-size: 0.82rem; }

    /* Steps mobile — horizontal layout (icon + teks bersebelahan) */
    .dproc-grid { grid-template-columns: 1fr !important; gap: 0.875rem; }
    .dproc-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 1.25rem 1.25rem;
        gap: 1rem;
        border-radius: 16px;
    }
    .dproc-num-wrap {
        width: 52px; height: 52px;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }
    .dproc-num { font-size: 1.1rem; }
    .dproc-step-title { font-size: 0.9rem; margin-bottom: 0.35rem; }
    .dproc-step-desc { font-size: 0.76rem; line-height: 1.65; }
    .dproc-tag { display: none; } /* sembunyikan hover-tag di mobile */

    /* CTA strip process */
    .dproc-cta-strip {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
        padding: 1.375rem 1.25rem;
        border-radius: 14px;
    }
    .dproc-cta-btn { width: 100%; justify-content: center; }


    /* ── PORTFOLIO SECTION ── */
    #dev-portfolio { padding: 4rem 0; }
    .dpf-header { margin-bottom: 2.5rem; }
    .dpf-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .dpf-subtitle { font-size: 0.82rem; }
    .dpf-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .dpf-thumb { height: 180px; }
    .dpf-body { padding: 1.125rem 1.25rem 1.25rem; }
    .dpf-card-title { font-size: 0.95rem; }
    .dpf-card-desc { font-size: 0.75rem; }
    .dpf-result-badge { opacity: 1 !important; transform: translateY(0) !important; } /* selalu tampil di mobile, bukan hanya hover */
    .dpf-cta-row { gap: 0.625rem; }
    .dpf-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.825rem 1.5rem;
    }


    /* ── MAINTENANCE SECTION ── */
    #kaizora-maintenance { padding: 5rem 0 4rem; }
    .maint-header { margin-bottom: 3rem; }
    .maint-title { font-size: clamp(1.75rem, 7.5vw, 2.5rem); }
    .maint-subtitle { font-size: 0.82rem; }
    .maint-legend { gap: 0.4rem; }
    .maint-legend-pill { font-size: 0.6rem; padding: 0.25rem 0.6rem; }

    /* Grid maintenance — 1 kolom di mobile */
    .maint-grid { grid-template-columns: 1fr !important; gap: 1rem; max-width: 100%; }
    .maint-card-inner { padding: 1.5rem 1.375rem 1.25rem; }
    .maint-pkg-name { font-size: 1.15rem; }
    .maint-price-num { font-size: 1.875rem; }
    .maint-desc { font-size: 0.76rem; }
    .maint-item { font-size: 0.74rem; }

    /* CTA strip maintenance */
    .maint-cta-strip {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    .maint-cta-btn { width: 100%; justify-content: center; }


    /* ── TECH STACK SECTION ── */
    #dev-stack { padding: 3rem 0; }
    .dstk-pills { gap: 0.5rem; }
    .dstk-pill {
        padding: 0.5rem 0.875rem;
        border-radius: 10px;
        gap: 0.5rem;
    }
    .dstk-pill img { height: 20px; }
    .dstk-pill-name { font-size: 0.72rem; }


    /* ── FAQ SECTION ── */
    #dev-faq { padding: 4rem 0; }
    .dfaq-inner { gap: 2rem; }
    .dfaq-aside { position: static !important; } /* non-sticky di mobile */
    .dfaq-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
    .dfaq-desc { font-size: 0.82rem; max-width: 100%; }
    .dfaq-nudge { max-width: 100%; }
    .dfaq-summary { padding: 1rem 1.125rem; gap: 0.75rem; }
    .dfaq-question { font-size: 0.82rem; }
    .dfaq-answer {
        padding: 1rem 1.125rem 1.25rem;
        padding-left: calc(1.125rem + 22px + 0.75rem);
        font-size: 0.8rem;
    }


    /* ── CTA SECTION ── */
    #dev-cta { padding: 4rem 0 5rem; }
    .dcta-card {
        padding: 3rem 1.5rem !important;
        border-radius: 20px;
    }
    .dcta-headline { font-size: clamp(1.625rem, 7vw, 2.5rem); }
    .dcta-sub { font-size: 0.85rem; max-width: 100%; margin-bottom: 2rem; }

    /* Tombol CTA full width di mobile */
    .dcta-buttons { flex-direction: column !important; gap: 0.75rem; align-items: stretch !important; }
    .dcta-btn-primary, .dcta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }

    /* Trust badges wrap lebih baik */
    .dcta-trust { gap: 0.5rem; }
    .dcta-trust-badge { font-size: 0.63rem; padding: 0.275rem 0.625rem; }

    /* Watermark CTA lebih kecil */
    .dcta-watermark { font-size: clamp(4rem, 22vw, 8rem); }


    /* ── TOUCH TARGET IMPROVEMENTS ── */
    /* Semua link/button minimal 44×44px untuk touch */
    .dev-anchor-pill,
    .dev-btn-primary,
    .dev-btn-secondary,
    .price-btn,
    .dcta-btn-primary,
    .dcta-btn-secondary,
    .dcho-btn,
    .dfaq-summary,
    .dpf-cta-btn,
    .dproc-cta-btn,
    .maint-cta-btn,
    .dwarn-strip-btn {
        min-height: 44px;
    }

    /* ── OVERFLOW FIX ── */
    /* Pastikan tidak ada elemen yang menyebabkan horizontal scroll */
    #dev-hero,
    #dev-choose,
    #dev-warning,
    #harga,
    #harga-product-systems,
    #harga-whale,
    #dev-process,
    #dev-portfolio,
    #kaizora-maintenance,
    #dev-stack,
    #dev-faq,
    #dev-cta {
        overflow-x: hidden;
    }

    /* ── REDUCE HEAVY ANIMATIONS ── */
    /* Animasi float/blob bisa bikin berat di low-end mobile */
    .dcta-blob-1,
    .dcta-blob-2 { animation-duration: 14s; }
    .dent-banner-glow-l,
    .dent-banner-glow-r { display: none; } /* sembunyikan blur besar di mobile */
}

/* Extra small — iPhone SE, Galaksi A series kecil (< 380px) */
@media (max-width: 379px) {
    .dev-hero-headline { font-size: clamp(1.625rem, 9vw, 2rem) !important; }
    .dev-hero-sub { font-size: 0.8rem; }
    .dev-stat-num { font-size: 1.2rem; }
    .dev-stat-label { font-size: 0.58rem; }
    .dev-stat { padding-right: 0.75rem; margin-right: 0.75rem; }

    .price-card { padding: 1.25rem; }
    .price-amount { font-size: 1.45rem !important; }
    .dprod-card { padding: 1rem 0.75rem; }
    .dprod-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .dproc-step { padding: 1rem; }
    .dcta-card { padding: 2.5rem 1.25rem !important; }
    .maint-card-inner { padding: 1.25rem 1.125rem 1rem; }
    .maint-price-num { font-size: 1.625rem; }
}
