/* ================= GLOBAL ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
color:#e5e7eb;
overflow-x:hidden;
}

/* TAMBAHKAN DI SINI */
img{
    max-width:100%;
    height:auto;
}

/* ================= GLOW TEXT GLOBAL ================= */

.glow-gold{
background: linear-gradient(90deg,#ffd700,#fff3b0,#ffd700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow:
0 0 6px rgba(255,215,0,0.7),
0 0 14px rgba(255,215,0,0.8),
0 0 28px rgba(255,215,0,0.9),
0 0 60px rgba(255,215,0,0.7);
animation: goldGlow 2.5s ease-in-out infinite alternate;
}

@keyframes goldGlow{
from{
text-shadow:
0 0 6px rgba(255,215,0,0.6),
0 0 16px rgba(255,215,0,0.7),
0 0 30px rgba(255,215,0,0.8);
}
to{
text-shadow:
0 0 12px rgba(255,215,0,0.9),
0 0 28px rgba(255,215,0,1),
0 0 60px rgba(255,215,0,0.95);
}
}

/* ================= NAVBAR ================= */
nav{
position:fixed;
top:0;
left:0;
width:100%;
padding:5px 6%;
display:flex;
justify-content:space-between;
align-items:center;
background: rgba(0,0,0,0);
backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
z-index:9999;
}

/* MENU */
nav ul{
display:flex;
list-style:none;
gap:30px;
margin-left:auto;
}

nav ul li a{
text-decoration:none;
color:#e5e7eb;
font-weight:500;
padding:8px 18px;
border-radius:30px;
transition:0.3s;
}

nav ul li a:hover,
nav ul li a.active{
color:#ffffff;
background:linear-gradient(90deg,#2563eb,#3b82f6,#60a5fa);
box-shadow:
0 0 8px rgba(59,130,246,0.6),
0 0 18px rgba(59,130,246,0.5),
0 0 30px rgba(96,165,250,0.6);
transform:translateY(-2px);
}

/* LOGO */
.logo{
display:flex;
align-items:center;
}

.logo img{
width:170px;
height:auto;
display:block;
}

@media(max-width:768px){
.logo img{
width:140px;
}
}

/* ================= PAGE HERO ================= */
.page-hero{
width:100%;
margin-top:110px;
min-height:40vh;
display:flex;
align-items:flex-start;
justify-content:flex-start;
background:
linear-gradient(rgba(11,15,23,0.6), rgba(11,15,23,0.7)),
url('/images/hero-bg.jpg')
padding:40px 0;
}

.hero-inner{
width:100%;
max-width:1200px;
margin:auto;
padding:0 8%;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

/* ===== GAMBAR PERFORMANCE (SUDAH DIPERKECIL) ===== */
.hero-image{
flex:0 0 auto;
display:flex;
justify-content:center;
align-items:center;
}

/* ===== HERO IMAGE KHUSUS PAGE-HERO (Strategy & Performance) ===== */
.page-hero .hero-image img{
    width:100%;
    max-width:200px;
    height:auto;
    animation:floatImage 6s ease-in-out infinite;
}

/* TEXT */
.hero-text{
flex:1;
}

.hero-text h1{
font-size:42px;
margin-bottom:20px;
}

.hero-text p{
opacity:0.85;
line-height:1.6;
}

/* subtle floating effect */
@keyframes floatImage{
0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}
}

/* ================= PERFORMANCE SECTION ================= */
.performance-section{
padding:120px 8%;
}

.section-title{
text-align:center;
margin:120px 0 50px 0;   /* atas kanan bawah kiri */
}

.grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:35px;
}

.card{
background:linear-gradient(145deg,#111827,#0f172a);
padding:40px 30px;
border-radius:18px;
transition:all 0.35s ease;
border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(198,167,94,0.3);
box-shadow:
0 10px 30px rgba(0,0,0,0.6),
0 0 25px rgba(198,167,94,0.15);
}

.card h3{
margin-bottom:15px;
font-size:18px;
}

.card p{
font-size:14px;
opacity:0.75;
line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
.hero-inner{
flex-direction:column;
text-align:center;
}

.hero-image{
margin-bottom:30px;
}

.grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.grid{
grid-template-columns:1fr;
}
.hero-text h1{
font-size:30px;
}
}

/* FIX SIZE LOGO DI HERO */
.hero .logo img{
   height:50px;
   width:auto;
}

@media(max-width:1200px){
.grid{
grid-template-columns:repeat(4, 1fr);
}
}

@media(max-width:768px){
.grid{
grid-template-columns:repeat(2, 1fr);
}
}

@media(max-width:500px){
.grid{
grid-template-columns:1fr;
}
}

@media(max-width:1200px){
.grid{
grid-template-columns:repeat(3, 1fr);
}
}

@media(max-width:900px){
.grid{
grid-template-columns:repeat(2, 1fr);
}
}

@media(max-width:600px){
.grid{
grid-template-columns:1fr;
}
}

@media(max-width:900px){
.hero-inner{
flex-direction:column;
text-align:center;
}

.hero-image{
    flex:0 0 auto;   /* ini penting */
    display:flex;
    justify-content:center;
}
}

/* ================= PRODUCTS ================= */

.product-card{
    display:block;
    background:#111722;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    transition:0.3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.product-info{
    padding:20px;
}

.product-info h3{
    margin-bottom:10px;
}

.product-info p{
    font-size:14px;
    opacity:0.8;
}

/* ================= CONTACT HERO ================= */

.contact-hero{
    margin-top:110px;
    min-height:40vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 10%;
    background:
    linear-gradient(rgba(11,15,23,0.7), rgba(11,15,23,0.9)),
    radial-gradient(circle at top right, rgba(198,167,94,0.15), transparent 60%),
    url('/images/hero-bg.jpg')
    background-size:cover;
    background-position:center;
}

/* supaya kontennya tersusun vertikal */
.contact-hero-content{
    max-width:900px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.contact-hero-content h1{
    font-size:42px;
    margin-bottom:15px;
}

/* BUTTON KHUSUS CONTACT */
.contact-hero .hero-buttons{
    margin-top:40px;
    display:flex;
    flex-direction:column;   /* supaya turun ke bawah */
    align-items:center;
    gap:20px;
}
.contact-hero-content span{
    color:#c6a75e;
}

.contact-hero-content p{
    opacity:0.8;
}

/* ================= CONTACT SECTION PREMIUM ================= */

.contact-section{
    padding:120px 8%;
    display:flex;
    justify-content:center;
}

.contact-container{
    width:100%;
    max-width:700px;
    padding:60px;
    border-radius:25px;
    backdrop-filter:blur(20px);
    box-shadow:
    0 0 40px rgba(0,0,0,0.6),
    0 0 60px rgba(198,167,94,0.08);
    border:1px solid rgba(198,167,94,0.15);
    text-align:center;
}

.contact-container h1{
    font-size:34px;
    margin-bottom:15px;
}

.contact-container p{
    margin-bottom:40px;
    opacity:0.7;
}

/* INPUT STYLE */

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background:#0f172a;
    color:#fff;
    font-size:15px;
    transition:0.3s;
}

.contact-form textarea{
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#c6a75e;
    box-shadow:0 0 15px rgba(198,167,94,0.3);
}

/* BUTTON UPGRADE */

.gold-glow-btn{
    display:inline-block;
    padding:30px 70px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    font-size:16px;
    color:#111;
    background:linear-gradient(120deg,#c6a75e,#ffd700,#c6a75e);
    transition:all 0.4s ease;
    box-shadow:
    0 0 10px rgba(255,215,0,0.6),
    0 0 25px rgba(255,215,0,0.5);

    width:auto;          /* penting */
    max-width:260px;     /* batasi panjang */
}

/* ================= PERFORMANCE SECTION ================= */

.performance-section{
    padding:60px 8%;
    background:linear-gradient(180deg,#0b0f17,#0f1624);
}

/* GRID LEBIH BALANCE */
.grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:35px;
}

/* CARD UPGRADE */
.card{
    background:linear-gradient(145deg,#111827,#0f172a);
    padding:40px 30px;
    border-radius:18px;
    transition:all 0.35s ease;
    border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(198,167,94,0.3);
    box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    0 0 25px rgba(198,167,94,0.15);
}

.card h3{
    margin-bottom:15px;
    font-size:18px;
}

.card p{
    font-size:14px;
    opacity:0.75;
    line-height:1.6;
}

/* HERO INNER LAYOUT */

.hero-inner{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:42px;
    margin-bottom:20px;
}

.hero-text p{
    opacity:0.85;
    line-height:1.6;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}


/* subtle floating effect */
@keyframes floatImage{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}


@media(max-width:900px){
.hero-container{
flex-direction:column;
text-align:center;
}

.hero-slider{
margin-top:30px;
}
}

/* ===== HERO SLIDER ===== */

.hero-slider{
    position:relative;
    width:520px;      /* BESARIN */
    height:300px;     /* BESARIN */
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

.hero-slider .slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 0.8s ease;
}

.hero-slider .slide.active{
    opacity:1;
}

.hero-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-slider .prev,
.hero-slider .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    border:none;
    color:#fff;
    font-size:18px;
    padding:6px 10px;
    cursor:pointer;
    border-radius:50%;
}

.hero-slider .prev{ left:10px; }
.hero-slider .next{ right:10px; }

/* ================= HERO BUTTONS ================= */

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.gold-glow-btn{
    display:inline-block;
    padding:16px 40px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    font-size:16px;
    color:#111;
    background:linear-gradient(120deg,#c6a75e,#ffd700,#c6a75e);
    transition:all 0.4s ease;
    box-shadow:
    0 0 10px rgba(255,215,0,0.6),
    0 0 25px rgba(255,215,0,0.5);
}

.gold-glow-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 0 20px rgba(255,215,0,0.9),
    0 0 45px rgba(255,215,0,0.8);
}

/* ================= MARKET CLOCK ================= */

.market-clock{
    padding:120px 8%;
    background:linear-gradient(180deg,#0b0f17,#0f1624);
    text-align:center;
}

.market-clock h2{
    font-size:36px;
    margin-bottom:60px;
}

.clock-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.clock-box{
    background:linear-gradient(145deg,#111827,#0f172a);
    padding:40px;
    border-radius:20px;
    width:260px;
    box-shadow:0 15px 40px rgba(0,0,0,0.6);
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s ease;
}

.clock-box:hover{
    transform:translateY(-8px);
    border-color:rgba(198,167,94,0.4);
    box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    0 0 30px rgba(198,167,94,0.2);
}

.clock-box h3{
    margin-bottom:20px;
    font-weight:500;
    opacity:0.8;
}

.clock-time{
    font-size:32px;
    font-weight:700;
    color:#c6a75e;
    letter-spacing:2px;
}

/* HILANGKAN BUTTON DI CONTACT-HERO KHUSUS INDEX */
.contact-hero .hero-buttons{
    display:none !important;
}

/* FORCE SHOW BUTTON DI CONTACT */

.contact-hero{
    min-height: 60vh; /* beri ruang lebih */
}

.contact-hero .hero-buttons{
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    z-index:10;
    position:relative;
}

.contact-hero .gold-glow-btn{
    display:inline-block !important;
}

.card-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover .card{
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.15);
}

p{
    margin-bottom:20px;
    line-height:1.7;
}

.sub-theme{
    font-size:18px;
    font-weight:600;
    margin-top:25px;
    margin-bottom:10px;
    color:#c6a75e;
}

/* ================= ARTICLE SECTION ================= */

.article-section {
    padding-top: 170px;
}

.article-container{
    max-width:900px;
    margin:auto;
}

.article-header{
    margin-bottom:60px;
}

.article-header h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.article-subtitle{
    font-size:18px;
    opacity:0.75;
}

.article-content p{
    line-height:1.8;
    margin-bottom:20px;
    opacity:0.85;
    font-size:16px;
}

/* THEME SUBTITLE */
.article-theme{
    margin-top:50px;
    margin-bottom:20px;
    font-size:22px;
    font-weight:700;
    background:linear-gradient(90deg,#ffd700,#fff3b0,#ffd700);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* BLOCKQUOTE STYLE */
.article-content blockquote{
    margin:40px 0;
    padding:20px 30px;
    border-left:4px solid #c6a75e;
    background:rgba(198,167,94,0.05);
    font-style:italic;
    opacity:0.9;
}

/* ===== INSTITUTIONAL BUTTON ===== */
.institutional-btn{
    display:inline-block;
    padding:16px 40px;
    border-radius:40px;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.15);
    color:#ffffff;
    font-weight:600;
    letter-spacing:0.5px;
    text-decoration:none;
    backdrop-filter: blur(6px);
    transition:all 0.4s ease;
}

/* Hover effect */
.institutional-btn:hover{
    background: linear-gradient(90deg,#1e3c72,#2a5298);
    border:1px solid rgba(255,255,255,0.25);
    box-shadow:0 0 25px rgba(42,82,152,0.6);
    transform:translateY(-2px);
}

/* ===== GLOBAL PRIMARY BUTTON (INSTITUTIONAL) ===== */
.primary-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    width:280px;              /* Lebar tetap */
    min-height:56px;          /* Tinggi minimum */
    padding:14px 20px;

    border-radius:40px;
    background: linear-gradient(135deg,#1e2a45,#2f4b7c);
    border:1px solid rgba(255,255,255,0.15);

    color:#ffffff;
    font-weight:600;
    font-size:15px;
    letter-spacing:0.5px;
    text-decoration:none;

    transition:all 0.4s ease;
}

/* Hover */
.primary-btn:hover{
    background: linear-gradient(135deg,#2f4b7c,#1e2a45);
    box-shadow:0 0 20px rgba(60,120,255,0.4);
    transform:translateY(-2px);
}

/* Responsive */
@media(max-width:768px){
    .primary-btn{
        width:100%;
        max-width:320px;
    }
}

/* ===== GLOBAL ARTICLE BUTTON POSITION ===== */

.article-button{
    text-align:center;
    margin:60px 0 80px;
}

.primary-btn{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(135deg,#2f3e66,#3f5c9a);
    color:#fff;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    border-radius:40px;
    letter-spacing:0.3px;
    transition:all 0.3s ease;
    box-shadow:0 0 20px rgba(80,120,255,0.25);
    max-width:320px;
    width:100%;
    text-align:center;
}

.primary-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 30px rgba(80,120,255,0.45);
}

/* Responsive */
@media(max-width:768px){
    .primary-btn{
        width:100%;
        max-width:320px;
    }
}

/* ===== ARTICLE CTA SECTION ===== */

.article-cta{
    text-align:center;
    margin:40px 0 60px;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:25px;
    margin-top:50px;
}

.article-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:22px 20px;
    background:linear-gradient(145deg,#0f1a2d,#182845);
    border-radius:18px;
    text-decoration:none;
    color:#ffffff;
    font-weight:600;
    font-size:16px;
    letter-spacing:0.3px;
    min-height:90px;
    transition:all 0.3s ease;
    box-shadow:0 0 25px rgba(0,0,0,0.4);
}

.article-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 35px rgba(80,120,255,0.4);
    background:linear-gradient(145deg,#14233c,#203a63);
}

/* PERFORMANCE MODE */
.performance-btn {
    background: linear-gradient(135deg, #1c2438, #24345a);
    border: 1px solid rgba(90,120,255,0.3);
}

.performance-btn:hover {
    background: linear-gradient(135deg, #24345a, #2f4d8f);
    box-shadow:
        0 0 15px rgba(90,120,255,0.4),
        0 0 30px rgba(90,120,255,0.2);
}

/* ================= PERFORMANCE SATIN MAROON ================= */

.performance-page .article-btn{
    background: linear-gradient(
        145deg,
        #3a0a12,
        #5a0f1a 40%,
        #7a1224 60%,
        #4b0d18
    );
    color:#ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    font-weight:600;
    letter-spacing:0.5px;

    box-shadow:
        inset 0 0 20px rgba(255,255,255,0.15),
        0 0 25px rgba(255,255,255,0.25),
        0 10px 30px rgba(0,0,0,0.6);

    position:relative;
    overflow:hidden;
    transition: all 0.4s ease;
}

/* Satin highlight effect */
.performance-page .article-btn::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-30%;
    width:160%;
    height:200%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.25),
        transparent 60%
    );
    transform: rotate(25deg);
    opacity:0.4;
    transition: all 0.6s ease;
}

.performance-page .article-btn:hover{
    transform: translateY(-6px);
    box-shadow:
        inset 0 0 25px rgba(255,255,255,0.2),
        0 0 40px rgba(255,255,255,0.35),
        0 20px 45px rgba(0,0,0,0.7);
}

.performance-page .article-btn:hover::before{
    left:100%;
    opacity:0.6;
}


/* ===============================
   MOBILE PREMIUM CLEAN VERSION
=================================*/
@media (max-width:768px){

    body{
        padding-top:65px;
    }

    /* ===== NAVBAR ===== */
    nav{
        padding:8px 5%;
    }

    .logo img{
        width:120px !important;
    }

    nav ul{
        gap:12px;
        font-size:13px;
    }

    /* ===== HERO CLEAN ===== */
    .page-hero{
        min-height:38vh !important;
        padding:80px 20px 30px 20px !important;
        background-position:center !important;
        background-size:cover !important;
        text-align:center;
    }

    .page-hero h1{
        font-size:22px !important;
        line-height:1.3;
        margin-bottom:12px;
    }

    .page-hero p{
        font-size:14px;
        opacity:0.8;
    }

    /* ===== GRID BUTTON CLEAN ===== */
    .grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:18px !important;
        padding:30px 20px 60px 20px;
    }

    .primary-btn,
    .article-btn{
        width:100% !important;
        text-align:center;
        padding:18px 20px !important;
        font-size:14px;
        border-radius:14px !important;
    }

    /* ===== CARD BUTTON PREMIUM SHADOW ===== */
    .article-btn{
        box-shadow:
        0 6px 20px rgba(0,0,0,0.5);
    }

}

/* ===== FIX HERO MOBILE FINAL ===== */
@media (max-width:768px){

    .page-hero{
        min-height:auto !important;
        height:auto !important;
        margin-top:90px !important;
        padding:60px 20px 30px 20px !important;
        display:block !important;
    }

    .hero-inner{
        flex-direction:column !important;
        align-items:center !important;
        gap:20px !important;
    }

    .page-hero .hero-image img{
        width:150px !important;
        max-width:150px !important;
        height:auto !important;
        margin:0 auto;
    }

}

/* ===== FIX INDEX HERO MOBILE ===== */
@media (max-width:768px){

    .hero{
        min-height:auto;
        padding-top:120px;
    }

    .hero-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .hero-visual{
        justify-content:center;
    }

    .mini-badge{
        width:100px !important;
        margin-left:0 !important;
    }

    .hero-buttons{
        margin-top:40px !important;
        gap:20px !important;
        justify-content:center;
    }

}

/* =========================================
   FINAL MOBILE STABLE FIX
========================================= */
@media (max-width:768px){

    body{
        padding-top:75px;
        overflow-x:hidden;
    }

    /* ===== NAVBAR STABLE ===== */
    nav{
        padding:10px 5%;
    }

    nav ul{
        gap:8px;
        flex-wrap:wrap;
        justify-content:flex-end;
    }

    nav ul li a{
        padding:6px 10px;
        font-size:12px;
    }

    .logo img{
        width:120px !important;
    }

    /* ===== INDEX HERO ===== */
    .hero{
        min-height:auto !important;
        padding-top:110px !important;
        padding-bottom:40px !important;
    }

    .hero-container{
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        gap:25px !important;
        padding:0 20px !important;
    }

    .robot-img{
        max-width:220px !important;
        transform:none !important;
    }

    .mini-badge-wrapper{
        position:static !important;
        margin-top:10px;
    }

    .mini-badge{
        width:90px !important;
        margin-left:0 !important;
    }

    .hero-right h1{
        font-size:22px !important;
        line-height:1.3;
    }

    .hero-right p{
        font-size:14px !important;
        line-height:1.6;
    }

    .hero-buttons{
        margin-top:30px !important;
        gap:15px !important;
        justify-content:center !important;
    }

    .gold-glow-btn{
        padding:10px 20px !important;
        font-size:13px !important;
    }

    /* ===== PAGE HERO (Strategy / Performance) ===== */
    .page-hero{
        margin-top:90px !important;
        padding:60px 20px 30px 20px !important;
        min-height:auto !important;
        display:block !important;
        text-align:center !important;
    }

    .hero-inner{
        flex-direction:column !important;
        align-items:center !important;
        gap:20px !important;
    }

    .page-hero .hero-image img{
        width:150px !important;
        max-width:150px !important;
    }

    .hero-text h1{
        font-size:24px !important;
    }

    .hero-text p{
        font-size:14px;
    }

    /* ===== GRID CLEAN STRUCTURE ===== */
    .grid{
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    /* ===== PERFORMANCE CARDS ===== */
    .card{
        padding:25px 20px !important;
    }

    /* ===== PRODUCT CARD IMAGE ===== */
    .product-card img{
        height:180px !important;
    }

    /* ===== HERO SLIDER FIX ===== */
    .hero-slider{
        width:100% !important;
        height:220px !important;
    }

    /* ===== MARKET CLOCK ===== */
    .clock-container{
        gap:20px !important;
    }

    .clock-box{
        width:100% !important;
        max-width:280px;
        padding:25px;
    }

    /* ===== ARTICLE SECTION ===== */
    .article-header h1{
        font-size:26px !important;
    }

    .article-content p{
        font-size:14px;
    }

}

@media (max-width:768px){

    html{
        font-size:14px;
    }

    body{
        padding-top:70px !important;
    }

    .hero{
        padding-top:90px !important;
    }

}

/* ================= FORCE REAL MOBILE SCALE ================= */
@media (max-width:768px){

    html, body{
        width:100% !important;
        overflow-x:hidden !important;
    }

    *{
        max-width:100% !important;
    }

    .hero-container,
    .stats,
    .slider-section{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    .hero-visual,
    .hero-right{
        min-width:unset !important;
        width:100% !important;
    }

    .hero-container{
        gap:20px !important;
    }

}

/* ===== FORCE MOBILE LAYOUT HARD FIX ===== */
@media (max-width:768px){

    body{
        display:block !important;
    }

    .hero,
    .stats,
    .slider-section{
        width:100% !important;
        max-width:100% !important;
    }

    .hero-container{
        display:flex !important;
        flex-direction:column !important;
        width:100% !important;
        max-width:100% !important;
    }

    .hero-visual,
    .hero-right{
        width:100% !important;
        min-width:0 !important;
    }

    nav ul{
        flex-wrap:wrap !important;
    }

}

.language-switch{
    display:flex;
    gap:12px;
    align-items:center;
    margin-left:20px;
}

.language-switch a {
    color: gold;
    text-decoration: none;
    margin: 0 5px;
}


/* ================= BACKGROUND SYSTEM ================= */


/* EN */
.bg-en{
background:
linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.60)),
url('/images/bg-en.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* ID */
.bg-id{
background:
linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.60)),
url('/images/bg-id.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* ZH */
.bg-zh{
background:
linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.60)),
url('/images/bg-zh.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* AR */
.bg-ar{
background:
linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.60)),
url('/images/bg-ar.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-text,
.page-hero,
.contact-hero{
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.language-switch a{
    margin:0 4px;       /* kecilkan jarak samping */
}

.language-switch{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
    font-weight:700;
}

@media (max-width:768px){
    .language-switch{
        width:100%;
        justify-content:center;
        margin-top:8px;
    }
}

/* ===== CLEAN BLUR FIX ===== */
.performance-section,
.article-section,
.article-container{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ===== FINAL ARTICLE STYLE CLEAN ===== */

.performance-section,
.article-section,
.article-container{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.article-content{
    background:#1f2422;   /* navy lebih muda dari background */
    padding:55px;
    border-radius:24px;
    color:#e5e7eb;        /* teks jadi terang */
    box-shadow:0 25px 60px rgba(0,0,0,0.40);
}

/* ============================= */
/* PERBAIKAN POSISI BAHASA HP  */
/* ============================= */
@media (max-width:768px){

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo{
        width:100%;
        text-align:center;
    }

    nav ul{
        width:100%;
        justify-content:center;
        margin-top:6px;
    }

    .language-switch{
        width:100%;
        justify-content:center;
        margin-top:6px;
    }
}

/* ===== NAV STACK MOBILE FIX ===== */

.language-switch{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
}

.language-switch a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:24px;           /* paksa tinggi sama */
    line-height:24px;      /* paksa rata */
    font-size:16px;
}

.language-switch .sep{
    display:flex;
    align-items:center;
    height:24px;
}

@media (max-width:768px){

    .robot-img{
        max-width:220px !important;
    }

}

@media (max-width:768px){
    .robot-img{
        transform:none !important;
        margin:0 auto !important;
        display:block !important;
    }
}

@media (max-width:768px){

    .hero-visual{
        justify-content:flex-start !important;
        padding-left:20px !important;
    }

}

@media (max-width:768px){

    nav{
        flex-direction:column !important;
        align-items:center !important;
    }

    .logo{
        width:100%;
        text-align:center;
        margin-bottom:6px;
    }

    nav ul{
        width:100%;
        justify-content:center !important;
        margin:6px 0;
    }

    .language-switch{
        width:100%;
        text-align:center;
        margin-top:6px;
        margin-left:0 !important;
    }

}

/* Tombol download EA Madison Gold MT5 */
.primary-btn {
    display:inline-block;
    padding:14px 40px;
    border-radius:50px;
    background:linear-gradient(135deg,#1e2b4a,#2e4372);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s ease;
}
.primary-btn:hover {
    transform:translateY(-3px);
}

#voiceButton{
position:fixed;
bottom:40px;
left:25px;

background:rgba(0,0,0,0.75);
color:#ffd700;

padding:12px 20px;
border-radius:30px;

font-weight:600;
font-size:14px;

cursor:pointer;

box-shadow:
0 0 10px rgba(255,215,0,0.5),
0 0 20px rgba(255,215,0,0.4);

z-index:9999;
transition:0.3s;
}

#voiceButton:hover{
transform:scale(1.05);
box-shadow:
0 0 15px rgba(255,215,0,0.8),
0 0 25px rgba(255,215,0,0.6);
}

/* ===== Video Section ===== */

.video-container{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:40px;
    flex-wrap:wrap;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.video-box{
    width:260px;
    text-align:center;
    cursor:pointer;
}

.video-box img{
    width:100%;
    border-radius:10px;
    transition:0.3s;
}

.video-box:hover img{
    transform:scale(1.05);
}

.video-box p{
    margin-top:8px;
    font-size:14px;
    color:white;
}

/* ===== Popup Video ===== */

.video-modal{
    display:none;
    position:fixed;
    z-index:999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
}

.video-content{
    position:relative;
    width:60%;
    margin:80px auto;
}

.close-btn{
    position:absolute;
    top:-35px;
    right:0;
    font-size:35px;
    color:white;
    cursor:pointer;
}


/* ===== Video Section Frame ===== */

.video-section{
    margin-top:60px;
}

.video-frame{
    max-width:1100px;
    margin:auto;
    padding:30px;
    border-radius:18px;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(6px);
    box-shadow:0 0 30px rgba(0,0,0,0.5);
}

/* ===== Title ===== */

.video-title{
    text-align:center;
    font-size:28px;
    color:#ffd700;
    margin-bottom:30px;
    letter-spacing:1px;
}

/* ===== Video Grid ===== */

.video-container{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
    margin-top:50px;
}

.video-box{
    width:220px;
    text-align:center;
    cursor:pointer;
    padding:10px;
    border-radius:12px;
    background:rgba(0,0,0,0.35);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:10px;
    transition:transform 0.3s ease;
}

.video-box:hover{
    transform:translateY(-6px);
    box-shadow:
        0 0 15px rgba(255,215,0,0.7),
        0 0 35px rgba(255,215,0,0.4);
}

.video-box:hover img{
    transform:scale(1.05);
}

.video-box p{
    margin-top:10px;
    font-size:14px;
    color:white;
}