.elementor-3861 .elementor-element.elementor-element-c154113{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3861 .elementor-element.elementor-element-bdd798b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:64px;--padding-bottom:64px;--padding-left:32px;--padding-right:32px;}/* Start custom CSS for html, class: .elementor-element-9d6a1b9 *//* === SETUP UTAMA & VARIABEL === */
#bf-about-root {
    --c-bg: #050510;
    --c-cyan: #00f3ff;
    --c-purple: #bc13fe;
    --c-white: #ffffff;
    --c-gray: #9ca3af;
    
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-white);
    width: 100%;
    overflow: hidden;
    line-height: 1.5;
    position: relative; /* Penting untuk containment */
}

#bf-about-root * { box-sizing: border-box; }

/* Utility Fonts & Colors */
.bf-font-display { font-family: 'Black Ops One', cursive; text-transform: uppercase; }
.bf-text-cyan { color: var(--c-cyan); }

/* === BACKGROUND GRID === */
.bf-bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* === HERO SECTION === */
.bf-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Badge (Authorized Distributor) */
.bf-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 50px;
    color: var(--c-cyan);
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}
.bf-dot { width: 6px; height: 6px; background: var(--c-cyan); border-radius: 50%; box-shadow: 0 0 8px var(--c-cyan); }

/* Judul Utama */
.bf-hero h1 {
    position: relative;
    font-size: 64px; 
    line-height: 1; 
    margin: 0 0 25px 0;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    z-index: 2;
}

/* Deskripsi Paragraf */
.bf-hero p { 
    font-size: 20px; 
    color: var(--c-gray); 
    max-width: 680px; 
    margin: 0 auto; 
    font-weight: 400;
}

/* === EFEK GLITCH === */
.bf-glitch { position: relative; display: inline-block; }

.bf-glitch::before, .bf-glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--c-bg);
}
.bf-glitch::before {
    left: 2px; text-shadow: -1px 0 #bc13fe; 
    clip-path: inset(0 0 0 0); animation: glitch-1 3s infinite linear alternate-reverse;
}
.bf-glitch::after {
    left: -2px; text-shadow: 1px 0 #00f3ff; 
    clip-path: inset(0 0 0 0); animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    90% { clip-path: inset(10% 0 50% 0); }
    100% { clip-path: inset(80% 0 5% 0); }
}
@keyframes glitch-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(80% 0 5% 0); }
    90% { clip-path: inset(30% 0 20% 0); }
    100% { clip-path: inset(10% 0 80% 0); }
}

/* === DIVIDER GLOW === */
.bf-divider { 
    height: 1px; width: 100%; max-width: 800px; margin: 60px auto 0;
    background: radial-gradient(circle, var(--c-cyan) 0%, transparent 100%); 
    opacity: 0.3; 
}

/* === RESPONSIVE (MOBILE) === */
@media (max-width: 900px) {
    .bf-hero h1 { font-size: 42px; }
}/* End custom CSS */