/* =========================================
   ULTRA-PREMIUM MED-TECH STYLE (FINAL 100%)
   ========================================= */
:root {
    --bg-dark: #050814;      
    --neon-red: #FF2A55;     
    --neon-blue: #00F0FF;    
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #8E9BAE;
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-main); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 16px; }

/* Background Glow */
.bg-glow { position: fixed; width: 50vw; height: 50vw; border-radius: 50%; filter: blur(150px); z-index: -1; opacity: 0.25; animation: float 20s infinite alternate ease-in-out; }
.glow-red { background: var(--neon-red); top: -20%; left: -10%; }
.glow-blue { background: var(--neon-blue); bottom: -20%; right: -10%; animation-delay: -10s; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(15vw, 15vh) scale(1.3); } }

/* Global Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-red { color: var(--neon-red) !important; }
.text-blue { color: var(--neon-blue) !important; }
.mt-4 { margin-top: 2rem; }
.section-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; margin-bottom: 10px; background: linear-gradient(to right, #fff, #8E9BAE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title span { background: var(--neon-red); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }

/* NAVBAR & LOGO */
.glass-nav { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1100px; background: rgba(5, 8, 20, 0.7); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 50px; z-index: 1000; padding: 10px 25px; transition: 0.4s; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.img-logo { height: 38px; width: auto; object-fit: contain; border-radius: 0; }
.logo-text { font-size: 1.35rem; font-weight: 300; letter-spacing: 1.5px; color: var(--text-main); line-height: 1; display: flex; align-items: center; gap: 6px; }
.logo-text b { font-weight: 800; color: var(--neon-red); }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; color: var(--text-muted);}
.nav-links a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer;}

/* BUTTONS */
.btn-neon { background: rgba(255, 42, 85, 0.1); border: 1px solid var(--neon-red); color: var(--neon-red) !important; padding: 8px 20px; border-radius: 30px; font-weight: 800 !important;}
.btn-neon:hover { background: var(--neon-red); color: #fff !important; box-shadow: 0 0 20px rgba(255, 42, 85, 0.6); }
.btn-glow-red { background: var(--neon-red); color: #fff; padding: 15px 35px; border-radius: 50px; font-weight: 800; font-size: 1rem; display: inline-flex; justify-content: center; align-items: center; gap: 10px; transition: 0.3s; border: none; cursor: pointer;}
.btn-glow-red:hover { box-shadow: 0 0 30px rgba(255, 42, 85, 0.6); transform: scale(1.05); }
.btn-glass { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 15px 35px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; transition: 0.3s; color: #fff; cursor: pointer;}
.btn-glass:hover { background: rgba(255,255,255,0.1); }

/* --- 1. HERO --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slider .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transform: scale(1.15); transition: opacity 1.5s ease-in-out; }
.hero-slider .slide.active { opacity: 1; animation: zoomOutAlive 6s linear forwards; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(5, 8, 20, 0.95) 0%, rgba(5, 8, 20, 0.4) 100%); z-index: 2; }
@keyframes zoomOutAlive { 0% { transform: scale(1.15); } 100% { transform: scale(1); } }

.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 3; }
.badge-glass { display: inline-block; padding: 8px 20px; background: rgba(0, 240, 255, 0.1); border: 1px solid var(--neon-blue); border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; color: var(--neon-blue); margin-bottom: 20px; backdrop-filter: blur(10px); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; text-shadow: 0 4px 20px rgba(0,0,0,0.5);}
.hero p { font-size: 1.1rem; color: #E0E6ED; max-width: 500px; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hero-action { display: flex; gap: 20px; }

/* Dashboard Widget */
.dashboard-widget { padding: 30px; border: 1px solid rgba(0, 240, 255, 0.2); background: rgba(0, 10, 30, 0.4); overflow: hidden; backdrop-filter: blur(10px); }
.widget-header { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 30px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px;}
.pulse-icon { animation: pulseHeart 1.5s infinite; }
.widget-body { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;}
.ecg-line { width: 100%; height: 60px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 100" preserveAspectRatio="none"><path d="M0,50 L100,50 L120,20 L140,90 L160,10 L180,70 L200,50 L500,50" fill="none" stroke="%2300F0FF" stroke-width="3"/></svg>') repeat-x; background-size: 200px 100%; animation: ecgMove 2s linear infinite; opacity: 0.8;}
@keyframes ecgMove { 0% { background-position: 0 0; } 100% { background-position: -200px 0; } }
@keyframes pulseHeart { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }
.widget-footer { display: flex; justify-content: space-between; }
.widget-footer p { font-size: 0.8rem; margin: 0; color: #ccc; }
.widget-footer h4 { font-size: 1.5rem; margin: 0; }

/* --- 2. ABOUT --- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 15px; }
.stats-container { display: flex; gap: 30px; flex-wrap: wrap; }
.stat-box h3 { font-size: 3rem; font-weight: 800; line-height: 1; }
.stat-box p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.about-img { position: relative; padding: 10px; }
.glass-badge { position: absolute; bottom: -20px; left: -20px; background: rgba(5,8,20,0.9); backdrop-filter: blur(10px); padding: 15px 25px; border-radius: 16px; border: 1px solid var(--glass-border); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* --- 3. LAYANAN BENTO --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { padding: 40px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; transition: box-shadow 0.3s, border-color 0.3s; transform-style: preserve-3d; }
.bento-card:hover { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.02); }
.col-span-2 { grid-column: span 2; }
.icon-large { font-size: 3.5rem; margin-bottom: 20px; }
.icon-medium { font-size: 2.5rem; margin-bottom: 20px; }
.bento-card h3 { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.3; }
.bento-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- 4. ARMADA --- */
.fleet-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px; align-items: center; }
.cyber-list { margin-top: 20px; }
.cyber-list li { margin-bottom: 15px; font-size: 1.05rem; display: flex; align-items: center; gap: 12px; color: var(--text-muted);}
.fleet-img-container { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--glass-border); }
.image-hover { transition: transform 0.5s; width: 100%; object-fit: cover; }
.fleet-img-container:hover .image-hover { transform: scale(1.05); }
.scanning-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--neon-blue); box-shadow: 0 0 15px var(--neon-blue); opacity: 0.6; animation: scan 3s infinite linear; }
@keyframes scan { 0% { top: -10px; } 100% { top: 100%; } }

/* --- 5. TIMELINE --- */
.timeline-cyber { display: flex; justify-content: space-between; align-items: flex-start; }
.time-step { width: 22%; display: flex; flex-direction: column; align-items: center; }
.time-icon { width: 70px; height: 70px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; color: var(--neon-red); margin-bottom: 15px; box-shadow: 0 0 20px rgba(255,42,85,0.1); }
.time-step h4 { font-size: 1.2rem; margin-bottom: 5px; }
.time-step p { font-size: 0.9rem; color: var(--text-muted); }
.time-line { flex-grow: 1; height: 2px; background: rgba(255,255,255,0.1); margin-top: 35px; position: relative; }
.time-line::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 50%; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); animation: flow 2s infinite linear; }
@keyframes flow { 0% { left: -50%; opacity: 0; } 50% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

/* --- 6. AREA TAGS --- */
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.cyber-tag { background: rgba(0, 240, 255, 0.05); border: 1px solid rgba(0, 240, 255, 0.2); padding: 10px 25px; border-radius: 30px; font-weight: 500; font-size: 1rem; color: #fff; transition: 0.3s; }
.cyber-tag i { margin-right: 5px; color: var(--neon-blue); }
.cyber-tag:hover { background: rgba(0, 240, 255, 0.15); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }

/* --- 7. ARTIKEL --- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.article-card { overflow: hidden; display: flex; flex-direction: column; cursor: pointer;}
.article-img { height: 200px; background-size: cover; background-position: center; border-bottom: 1px solid var(--glass-border); transition: 0.4s; }
.article-card:hover .article-img { transform: scale(1.05); }
.article-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; z-index: 2; background: var(--glass-bg); }
.article-date { font-size: 0.8rem; color: var(--neon-blue); margin-bottom: 10px; font-weight: 600; text-transform: uppercase;}
.article-body h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.article-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.read-more { background: transparent; border: none; color: #fff; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s; padding: 0;}
.read-more:hover { color: var(--neon-red); }

/* MODAL ARTIKEL */
.glass-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); justify-content: center; align-items: center; padding: 20px; opacity: 0; transition: opacity 0.3s ease; }
.glass-modal.show { display: flex; opacity: 1; }
.modal-content { max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; background: rgba(5,8,20,0.95); padding: 0; transform: translateY(50px); transition: transform 0.4s; border-radius: 20px; }
.glass-modal.show .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2rem; color: #fff; cursor: pointer; z-index: 10; background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.modal-img { width: 100%; height: 250px; background-size: cover; background-position: center; border-radius: 20px 20px 0 0; }
.modal-body { padding: 30px; }
.modal-body h2 { font-size: 1.8rem; margin: 10px 0 20px 0; line-height: 1.3; }
.modal-text p { font-size: 1rem; color: #ddd; margin-bottom: 15px; line-height: 1.7; }
.modal-text ul { margin-left: 20px; margin-bottom: 15px; color: #ddd; }
.modal-text li { margin-bottom: 8px; }

/* --- 8. TESTIMONI (SLIDER) --- */
.testi-carousel { overflow: hidden; position: relative; width: 100%; padding: 10px 0; }
.testi-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); gap: 30px; }
.testi-card { flex: 0 0 calc(50% - 15px); padding: 40px; text-align: left; }
.stars { color: #FFD700; margin-bottom: 15px; font-size: 1.2rem; }
.testi-card p { font-style: italic; font-size: 1.05rem; margin-bottom: 20px; color: #ccc; }
.testi-card h4 { color: var(--neon-blue); }

/* --- 9. FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; padding: 40px; }
.faq-item { border-bottom: 1px solid var(--glass-border); margin-bottom: 10px; }
.faq-btn { width: 100%; text-align: left; background: transparent; border: none; color: #fff; font-family: var(--font-main); font-size: 1.1rem; font-weight: 600; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-btn:hover, .faq-btn.active { color: var(--neon-blue); }
.faq-btn i { transition: transform 0.3s; }
.faq-btn.active i { transform: rotate(45deg); color: var(--neon-red); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.95rem; }

/* --- 10. KONTAK FORM --- */
.contact-bento { padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-header h2 { font-size: 2.5rem; margin-bottom: 10px; line-height: 1.2; }
.contact-header p { color: var(--text-muted); font-size: 1.1rem; }
.contact-direct p { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.cyber-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { position: relative; }
.full-width { grid-column: span 2; }
.cyber-form input, .cyber-form select { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); padding: 18px 20px; border-radius: 12px; color: white; font-family: var(--font-main); font-size: 1rem; outline: none; transition: 0.3s; }
.cyber-form select option { background: var(--bg-dark); }
.cyber-form input:focus, .cyber-form select:focus { border-color: var(--neon-red); box-shadow: 0 0 15px rgba(255, 42, 85, 0.2); }
.cyber-form label { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); transition: 0.3s; pointer-events: none; }
.cyber-form input:focus ~ label, .cyber-form input:valid ~ label, .cyber-form select:focus ~ label, .cyber-form select:valid ~ label { top: -8px; left: 10px; font-size: 0.8rem; background: var(--bg-dark); padding: 0 8px; color: var(--neon-red); border-radius: 4px; }

/* --- FOOTER --- */
footer { padding: 50px 0 20px; border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 40px; margin-bottom: 30px; text-align: left; }
.logo-footer-wrap { display: flex; align-items: center; gap: 12px; }
.img-logo-footer { height: 45px; width: auto; object-fit: contain; }
.logo-text-footer { font-size: 1.8rem; font-weight: 300; letter-spacing: 1px; color: var(--text-main); line-height: 1; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 15px; color: #fff; position: relative; }
.footer-col p { display: flex; align-items: center; gap: 10px; }
.footer-socials { display: flex; gap: 15px; margin-top: 10px; }
.footer-socials a { width: 40px; height: 40px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; }
.footer-socials a:hover { background: var(--neon-red); border-color: var(--neon-red); transform: translateY(-3px); }
.footer-line { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }
.copyright { font-size: 0.85rem; color: #777; }

/* Floating WA */
.floating-wa { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; z-index: 1000; box-shadow: 0 0 20px rgba(37,211,102,0.5); animation: pulseWA 2s infinite; transition: 0.3s; }
.floating-wa:hover { transform: scale(1.1); }
@keyframes pulseWA { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.8); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* --- ANIMATIONS --- */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.reveal { opacity: 0; transform: translateY(50px); transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: 0.2s; transition-delay: 0.1s;}
.delay-2 { animation-delay: 0.4s; transition-delay: 0.2s;}
.delay-3 { animation-delay: 0.6s; transition-delay: 0.3s;}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ==================================================
   RESPONSIVE MOBILE (FIXED LAYOUTS)
   ================================================== */
@media (max-width: 1024px) {
    .bento-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2 { grid-column: span 1; }
    .about-grid, .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin-bottom: 30px;}
    .hero-action { justify-content: center; }
    .stats-container { justify-content: center; }
    .fleet-showcase, .contact-bento { grid-template-columns: 1fr; gap: 30px; padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    /* Spasi & Teks Mobile */
    .section-padding { padding: 45px 0; }
    .section-title { font-size: 1.6rem; line-height: 1.2; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
    
    /* Navbar & Logo */
    .glass-nav { width: 92%; border-radius: 16px; top: 12px; padding: 12px 18px; background: rgba(5, 8, 20, 0.95); }
    .logo { gap: 8px; }
    .img-logo { height: 28px; } 
    .logo-text { font-size: 1.1rem; letter-spacing: 1px; }
    
    .hamburger { display: block; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: rgba(5, 8, 20, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; border-radius: 16px; border: 1px solid var(--glass-border); gap: 15px; transform: translateY(-20px); opacity: 0; pointer-events: none; transition: 0.3s; }
    .nav-links.active { transform: translateY(10px); opacity: 1; pointer-events: all; }
    
    /* === HERO FIX DI HP AGAR FOTO UTUH === */
    .hero { 
        padding-top: 110px; 
        padding-bottom: 50px; 
        min-height: auto; 
    }
    .hero-slider .slide { 
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: center top; /* Fokus ke area atas */
        background-color: var(--bg-dark); 
    }
    .hero-overlay {
        /* Gradasi overlay yang menutupi potongan bawah gambar agar menyatu dengan background */
        background: linear-gradient(180deg, rgba(5, 8, 20, 0.3) 0%, rgba(5, 8, 20, 0.9) 45%, rgba(5, 8, 20, 1) 100%);
    }
    
    .hero h1 { font-size: 1.8rem; min-height: auto; margin-bottom: 15px;}
    .hero p { font-size: 0.95rem; padding: 0 5px; margin-bottom: 25px; }
    .hero-action { flex-direction: column; gap: 10px; padding: 0 10px; }
    .btn-glow-red, .btn-glass { width: 100%; justify-content: center; padding: 14px; font-size: 0.95rem; }
    
    /* Dashboard Widget Mobile */
    .dashboard-widget { padding: 20px; margin: 0; }
    .widget-header { margin-bottom: 15px; padding-bottom: 10px; }
    .widget-footer h4 { font-size: 1.2rem; }
    .widget-body { height: 60px; margin-bottom: 10px; }

    /* PENGATURAN FOTO AGAR TIDAK MAKAN TEMPAT DI HP */
    .about-img img, .fleet-img-container img { max-height: 200px; object-fit: cover; width: 100%; }
    .glass-badge { position: relative; bottom: 0; left: 0; margin-top: 10px; justify-content: center; font-size: 0.8rem; padding: 10px; }

    /* === ARTIKEL HORIZONTAL & KECIL DI HP === */
    .article-grid { grid-template-columns: 1fr; gap: 12px; }
    .article-card { flex-direction: row; align-items: center; padding: 10px; height: 110px;}
    .article-img { width: 100px; height: 100%; border-radius: 12px; border-bottom: none; flex-shrink: 0; }
    .article-body { padding: 0 10px 0 15px; background: transparent; justify-content: center; }
    .article-date { font-size: 0.7rem; margin-bottom: 4px; }
    .article-body h3 { font-size: 0.95rem; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-body p { display: none; } /* Deskripsi disembunyikan di HP */
    .read-more { font-size: 0.8rem; margin-top: auto; }

    /* Grids & Cards Lainnya */
    .bento-grid { grid-template-columns: 1fr; gap: 15px; }
    .bento-card { padding: 20px; text-align: left; }
    .icon-large, .icon-medium { font-size: 2.2rem; margin-bottom: 12px; }
    .bento-card h3 { font-size: 1.1rem; }
    .bento-card p { font-size: 0.85rem; }
    
    /* Timeline Mobile */
    .timeline-cyber { flex-direction: column; gap: 15px; align-items: flex-start; }
    .time-step { width: 100%; flex-direction: row; align-items: center; text-align: left; gap: 12px; }
    .time-icon { width: 45px; height: 45px; font-size: 1.1rem; margin: 0; flex-shrink: 0; }
    .time-line { display: none; }
    .time-step h4 { font-size: 1rem; margin-bottom: 2px; }
    .time-step p { font-size: 0.8rem; }
    
    /* Stats */
    .stats-container { gap: 10px; justify-content: center; }
    .stat-box { width: 48%; background: var(--glass-bg); padding: 12px; border-radius: 12px; border: 1px solid var(--glass-border); text-align: center; }
    .stat-box h3 { font-size: 1.8rem; }
    .stat-box p { font-size: 0.75rem; }

    /* Testimoni Auto-Slide (Mobile) */
    .testi-track { gap: 0; } 
    .testi-card { flex: 0 0 100%; padding: 30px 20px; }

    /* Tags & Form */
    .area-tags { gap: 8px; }
    .cyber-tag { font-size: 0.8rem; padding: 6px 14px; }
    .cyber-form { grid-template-columns: 1fr; gap: 12px; }
    .full-width { grid-column: span 1; }
    .contact-bento { padding: 25px 15px; text-align: center; }
    .contact-header h2 { font-size: 1.5rem; }
    .contact-header p { font-size: 0.9rem; }
    .faq-container { padding: 15px; }
    .faq-btn { font-size: 0.95rem; padding: 15px 0; }
    .faq-content p { font-size: 0.85rem; }
    
    /* Modal Artikel Mobile */
    .modal-content { max-width: 95%; max-height: 85vh; border-radius: 15px; }
    .modal-img { height: 180px; border-radius: 15px 15px 0 0; }
    .modal-body { padding: 20px; }
    .modal-body h2 { font-size: 1.4rem; }
    .modal-text p { font-size: 0.9rem; }
    
    /* Footer Mobile */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 25px; }
    .logo-footer-wrap { justify-content: center; margin-bottom: 15px; }
    .img-logo-footer { height: 35px; }
    .logo-text-footer { font-size: 1.4rem; }
    .footer-col p { justify-content: center; font-size: 0.85rem; }
    .footer-socials { justify-content: center; }
    
    /* Floating WA */
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
}