.elementor-12 .elementor-element.elementor-element-9eee98e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-1f412a7 *//* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --primary-blue: #0f172a; 
    --brand-blue: #1e40af;    
    --brand-orange: #f97316;  
    --orange-hover: #ea580c;
    --text-dark: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 15px;
}

.btn-orange {
    background-color: var(--brand-orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline:hover {
    background-color: #eff6ff;
}

/* --- LOGO DI TENGAH --- */
.logo {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 24px;
}

.logo span {
    color: var(--brand-orange);
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-coming-soon {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--brand-orange);
    color: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- FOOTER --- */
footer {
    padding: 30px 0;
    background-color: var(--primary-blue);
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .logo { font-size: 28px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn { width: 100%; }
}/* End custom CSS */