.elementor-3806 .elementor-element.elementor-element-691beb7{--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-3806 .elementor-element.elementor-element-5e63cef{--display:flex;--padding-top:64px;--padding-bottom:64px;--padding-left:0px;--padding-right:0px;}.elementor-3806 .elementor-element.elementor-element-f1b19cf{--display:flex;--padding-top:64px;--padding-bottom:64px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6e9debd *//* === 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 */
/* Start custom CSS for html, class: .elementor-element-c1fe360 *//* === STEPS GRID CONTAINER === */
.bf-steps-container {
    font-family: 'Rajdhani', sans-serif;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    color: #fff;
}

/* Card Base Style */
.bf-step-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover Effects */
.bf-step-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 243, 255, 0.15);
}

.bf-step-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%;
    background: linear-gradient(to bottom, #00f3ff, transparent);
    opacity: 0; transition: 0.3s;
}
.bf-step-card:hover::before { opacity: 1; }

/* Number Style (01, 02, etc) */
.bf-step-num {
    position: absolute; top: -10px; right: 10px;
    font-size: 60px; font-family: 'Black Ops One', cursive;
    color: rgba(255,255,255,0.03);
    pointer-events: none; transition: 0.3s;
}
.bf-step-card:hover .bf-step-num { color: rgba(0, 243, 255, 0.1); }

/* Icon Wrapper */
.bf-step-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.bf-step-card:hover .bf-step-icon { transform: scale(1.1); }

/* Icon Color Variants */
.cyan { background: rgba(0, 243, 255, 0.1); border: 1px solid rgba(0, 243, 255, 0.2); color: #00f3ff; }
.purple { background: rgba(188, 19, 254, 0.1); border: 1px solid rgba(188, 19, 254, 0.2); color: #bc13fe; }
.amber { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: #f59e0b; }
.green { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); color: #22c55e; }
.blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); color: #3b82f6; }
.pink { background: rgba(236, 72, 153, 0.1); border: 1px solid rgba(236, 72, 153, 0.2); color: #ec4899; }

/* Text Styles */
.bf-step-card h3 {
    font-size: 20px; font-weight: 700; margin: 0 0 10px 0; color: #fff;
    font-family: 'Rajdhani', sans-serif;
}
.bf-step-card p {
    font-size: 14px; color: #9ca3af; line-height: 1.5; margin: 0;
}

/* === SPECIAL: FINAL STEP CARD === */
.bf-step-card.final {
    background: linear-gradient(135deg, rgba(15,15,26,1) 0%, rgba(0,50,60,0.3) 100%);
    border-color: rgba(0, 243, 255, 0.4);
}
.final-icon { background: #00f3ff; color: #000; box-shadow: 0 0 15px rgba(0,243,255,0.4); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .bf-steps-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bf-steps-container { grid-template-columns: 1fr; }
}/* End custom CSS */