/* Styling specific for Product Pages */
    .hero-produk {
        padding: 5rem 0 3rem 0;
        background: linear-gradient(135deg, rgba(6,158,198,0.05) 0%, rgba(4,16,72,0.02) 100%);
        border-bottom: 1px solid rgba(6,158,198,0.05);
    }
    .hero-produk h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #0b1336;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
    }
   .text-highlight {
    color: #0099ff; /* Sesuaikan kode hex warna biru ini jika di home pakai warna biru lain */
   }
    .hero-produk .text-highlight {
        color: #069ec6;
    }
    .hero-produk .breadcrumb {
        margin-bottom: 1.5rem;
    }
    .hero-produk .breadcrumb-item, .hero-produk .breadcrumb-item a {
        color: #069ec6 !important;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .hero-produk .breadcrumb-item.active {
        color: #666 !important;
    }
    .hero-produk p {
        font-size: 1.05rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .section-produk {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    }

    /* Decorative Backgrounds */
    .bg-pattern-dots {
        background-image: radial-gradient(rgba(6, 158, 198, 0.15) 1px, transparent 1px);
        background-size: 24px 24px;
    }
    .bg-pattern-grid {
        background-image: linear-gradient(rgba(4, 16, 72, 0.03) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(4, 16, 72, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
    }
    .decor-blob-1 {
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(6, 158, 198, 0.15) 0%, rgba(255,255,255,0) 70%);
        top: -10%;
        left: -10%;
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }
    .decor-blob-2 {
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(4, 16, 72, 0.08) 0%, rgba(255,255,255,0) 70%);
        bottom: -20%;
        right: -15%;
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .decor-blob-3 {
        position: absolute;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(6, 158, 198, 0.15) 0%, rgba(255,255,255,0) 70%);
        bottom: -15%;
        right: -12%;
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .decor-blob-4 {
        position: absolute;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(6, 158, 198, 0.15) 0%, rgba(255,255,255,0) 70%);
        bottom: -10%;
        left: -10%;
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
}

    .section-title {
        font-size: clamp(1.3rem, 2.7vw, 1.7rem);
        font-weight: 800;
        color: #0b1336;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.05rem;
        color: #666;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto 3rem auto !important;
        text-align: center !important;
        display: block;
    }

    .section-solution-subtitle {
        font-size: 1.05rem;
        color: #666;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 !important;
        display: block;
    }

    /* Cards */
    .feature-card {
        background: #fff;
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 4px 15px rgba(4,16,72,0.05);
        border: 1px solid rgba(6,158,198,0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
        cursor: pointer;
    }
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #069ec6;
        z-index: -1;
        transition: opacity 0.4s ease;
        opacity: 0;
    }
    .feature-card:hover {
        box-shadow: 0 20px 40px rgba(6, 158, 198, 0.2);
        transform: translateY(-5px);
        border-color: rgba(6,158,198,0.2);
    }
    .feature-card:hover::before {
        opacity: 1;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        background: rgba(6, 158, 198, 0.08);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.4s ease;
    }
    .feature-card:hover .feature-icon {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.1) translateY(-5px);
    }
    .feature-icon img {
        max-width: 30px;
        max-height: 30px;
        object-fit: contain;
        transition: filter 0.4s ease;
    }
    .feature-card:hover .feature-icon img {
        filter: brightness(0) invert(1);
    }
    .feature-card h5 {
        font-weight: 700;
        color: #0b1336;
        margin-bottom: 0.75rem;
        transition: color 0.4s ease;
    }
    .feature-card p {
        color: #666;
        line-height: 1.6;
        margin: 0;
        transition: color 0.4s ease;
    }
    .feature-card:hover h5,
    .feature-card:hover p {
        color: #ffffff;
    }

    /* Use Case List */
    .bg-usecase {
        background: #f8f9fc;
    }
    .use-case-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .use-case-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }
    .use-case-list li .bx {
        color: #069ec6;
        font-size: 1.4rem;
        margin-right: 0.75rem;
        margin-top: 2px;
    }

    .img-neat {
        border-radius: 1.25rem;
        box-shadow: 0 10px 40px rgba(4,16,72,0.08);
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* CTA */
    .cta-modern {
        padding: 3.5rem 0;
        background: #069ec6;
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        margin: 2rem 0;
    }
    .cta-modern::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        border-radius: 50%;
    }
    .cta-modern h5 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    .cta-modern p {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    .cta-modern .btn-custom {
        background: #fff;
        color: #069ec6 !important;
        font-weight: 700;
        padding: 0.85rem 2.2rem;
        border-radius: 50px;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-decoration: none;
        display: inline-block;
    }
    .cta-modern .btn-custom:hover {
        background: #0b1336;
        color: #ffffff !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    }

    .splide:not(.is-initialized) .splide__slide:first-child {
        width: 100% !important;
    }

    /* ============================================
   CTA "Broadcast Hub" — light modern minimalist
   ============================================ */

.cta-broadcast {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    margin: 2rem 0;
    padding: 4rem 0;
    background: linear-gradient(160deg, #f4fbfd 0%, #eef2fb 60%, #f4fbfd 100%);
    border: 1px solid rgba(6,158,198,0.12);
    isolation: isolate;
}
.cta-broadcast::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(4,16,72,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4,16,72,0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.cta-broadcast::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(6,158,198,0.14) 0%, transparent 70%);
    top: -200px;
    right: -180px;
    pointer-events: none;
}
.cta-broadcast > .row {
    position: relative;
    z-index: 1;
}

/* Eyebrow */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #069ec6;
    background: rgba(6,158,198,0.08);
    border: 1px solid rgba(6,158,198,0.25);
    padding: 0.4rem 0.9rem 0.4rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 1.35rem;
}
.cta-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #069ec6;
    box-shadow: 0 0 0 4px rgba(6,158,198,0.2);
    flex-shrink: 0;
}

.cta-broadcast h2 {
    color: #0b1336;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}
.cta-broadcast .cta-copy {
    color: #5b6072;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 1.85rem;
}

/* Tag chips */
.cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.1rem;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0b1336;
    background: #fff;
    border: 1px solid rgba(4,16,72,0.1);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(4,16,72,0.04);
}
.cta-tag i { color: #069ec6; font-size: 1rem; }

/* Actions */
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #069ec6;
    color: #fff !important;
    font-weight: 700;
    padding: 0.9rem 1.85rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(6,158,198,0.25);
    transition: all 0.3s ease;
}
.btn-cta-primary:hover {
    background: #0b1336;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11,19,54,0.25);
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b1336 !important;
    font-weight: 600;
    padding: 0.4rem 0;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(11,19,54,0.25);
    transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
    color: #069ec6 !important;
    border-color: #069ec6;
}

/* ===== Visual: illustration with soft glow ===== */
.cta-visual {
    position: relative;
    display: inline-block;
}
.cta-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    max-width: 90%;
    background: radial-gradient(circle, rgba(6,158,198,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.cta-visual-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 4   60px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(4,16,72,0.12));
}

/* Responsive */
@media (max-width: 991px) {
    .cta-broadcast { padding: 3rem 0; text-align: center; }
    .cta-broadcast .cta-copy { margin-left: auto; margin-right: auto; }
    .cta-tags, .cta-actions { justify-content: center; }
    .cta-visual { margin-top: 1.5rem; }
    .cta-visual-img { max-height: 200px; }
}
