/* ============================================================
 style.css — Clean Light Theme (UMKM Friendly)
 zulhamdatatech.my.id
 v36 — Cleaned up: no duplicated selectors, minimal !important
 ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
 --bg-white: #ffffff;
 --bg-50:  #f8fafc;
 --bg-100: #f1f5f9;
 --bg-150: #e9edf2;
 --bg-200: #e2e8f0;
 --bg-300: #cbd5e1;

 --bg-glass: rgba(255, 255, 255, 0.85);

 --accent: #0891b2;
 --accent-hover: #0e7490;
 --accent-light: #ecfeff;
 --accent-glow: rgba(8, 145, 178, 0.08);

 --warm: #d97706;
 --warm-hover: #b45309;
 --warm-light: #fffbeb;
 --warm-glow: rgba(217, 119, 6, 0.08);

 --green: #059669;
 --green-light: #ecfdf5;
 --green-glow: rgba(5, 150, 105, 0.08);

 --text-900: #0f172a;
 --text-800: #1e293b;
 --text-700: #334155;
 --text-600: #475569;
 --text-500: #64748b;
 --text-400: #94a3b8;

 --border: #e2e8f0;
 --border-hover: #0891b2;
 --border-light: #f1f5f9;

 --radius: 12px;
 --radius-lg: 20px;
 --radius-xl: 28px;

 --font-display: 'Inter', sans-serif;
 --font-mono: 'JetBrains Mono', monospace;
 --font-body: 'Inter', sans-serif;

 --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
 --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
 --shadow: 0 4px 24px rgba(0,0,0,0.06);
 --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
 --shadow-card: 0 2px 12px rgba(0,0,0,0.04);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
 background: var(--bg-white);
 color: var(--text-700);
 font-family: var(--font-body);
 line-height: 1.65;
 overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.85; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; letter-spacing: -0.02em; color: var(--text-900); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }
p { color: var(--text-600); font-size: 1rem; line-height: 1.7; }
p strong { color: var(--text-800); }
.mono { font-family: var(--font-mono); color: var(--accent); font-size: 0.82rem; letter-spacing: 0.03em; }
.section-label {
 font-family: var(--font-mono);
 font-size: 0.72rem;
 letter-spacing: 0.15em;
 color: var(--accent);
 text-transform: uppercase;
 margin-bottom: 0.6rem;
 display: block;
 font-weight: 500;
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
section { position: relative; z-index: 1; }
.section-pad { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 560px; margin: 0.75rem auto 0; font-size: 1.05rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
 display: inline-flex; align-items: center; gap: 0.4rem;
 padding: 0.7rem 1.6rem;
 border-radius: 10px; border: none; cursor: pointer;
 font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
 transition: var(--transition); text-decoration: none;
}
.btn-primary {
 background: var(--accent); color: #fff;
 box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(8,145,178,0.2); opacity: 1; }
.btn-warm {
 background: var(--warm); color: #fff;
 box-shadow: 0 0 20px var(--warm-glow);
}
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(217,119,6,0.2); opacity: 1; }
.btn-outline {
 background: transparent;
 border: 1.5px solid var(--border); color: var(--text-700);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); opacity: 1; }
.btn-outline-warm {
 background: transparent;
 border: 1.5px solid var(--warm); color: var(--warm);
}
.btn-outline-warm:hover { background: var(--bg-50); transform: translateY(-2px); opacity: 1; }
.btn-wa {
 background: #25d366; color: #fff;
 box-shadow: 0 0 16px rgba(37,211,102,0.2);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(37,211,102,0.3); opacity: 1; }
.btn-ghost {
 background: var(--bg-100); color: var(--text-700);
 border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-200); border-color: var(--accent); opacity: 1; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }

/* ── NAV ──────────────────────────────────────────────────── */
.navbar {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 padding: 0.9rem 0;
 background: transparent;
 transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
 background: var(--bg-glass);
 backdrop-filter: blur(20px);
 box-shadow: 0 1px 0 var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
 font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
 color: var(--text-900);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text-600); font-size: 0.88rem; font-weight: 500; }
.nav-links a:hover { color: var(--text-900); opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text-900); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* Mobile Nav */
.mobile-menu {
 display: none;
 position: fixed; top: 0; left: 0; right: 0; bottom: 0;
 background: var(--bg-white); z-index: 99;
 flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-900); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
 position: fixed; top: 1rem; right: 1rem; z-index: 110;
 background: none; border: none; font-size: 2rem; color: #0f172a; cursor: pointer;
 width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-video-wrap {
 position: relative;
 min-height: 100vh;
 display: flex; align-items: center;
 overflow: hidden;
}
.hero-video-bg {
 position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video {
 width: 100%; height: 100%; object-fit: cover;
}
.hero-video-bg::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(
   135deg,
   rgba(255,255,255,0.65) 0%,
   rgba(255,255,255,0.40) 50%,
   rgba(8,145,178,0.06) 100%
 );
 pointer-events: none;
}
.hero-video-fallback {
 position: absolute; inset: 0; z-index: -1;
 background:
   radial-gradient(ellipse 70% 55% at 60% 40%, rgba(8,145,178,0.03) 0%, transparent 70%),
   radial-gradient(ellipse 50% 60% at 20% 80%, rgba(217,119,6,0.02) 0%, transparent 60%),
   var(--bg-50);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 5rem 0 3rem; }
.hero-badge {
 display: inline-flex; align-items: center; gap: 0.4rem;
 padding: 0.35rem 0.9rem; border-radius: 999px;
 border: 1px solid var(--accent);
 background: var(--accent-light);
 font-family: var(--font-mono); font-size: 0.76rem; color: var(--accent);
 margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-title { margin-bottom: 1rem; }
.hero-title .highlight {
 background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.05rem; color: var(--text-600); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.stat-item {
 display: flex; flex-direction: column; align-items: center; justify-content: center;
 width: 110px; height: 110px;
 background: rgba(255,255,255,0.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
 border-radius: 50%; text-align: center;
}
.stat-item h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); font-weight: 800; margin-bottom: 0; line-height: 1.2; }
.stat-item p { font-size: 0.65rem; color: var(--text-500); margin: 0; line-height: 1.2; max-width: 70px; }

/* ── UNTUK KAMU SPLIT ────────────────────────────────────── */
#untuk-kamu { background: var(--bg-50); padding: 4rem 0; }
.split-header { text-align: center; margin-bottom: 2.5rem; }
.split-header h2 { margin-bottom: 0.5rem; }
.split-header p { color: var(--text-500); font-size: 0.95rem; }
.split-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1.5rem;
 align-items: stretch;
}
.split-card {
 background: var(--bg-white);
 border: 1px solid var(--border);
 border-radius: var(--radius-xl);
 padding: 2.5rem;
 position: relative;
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
 box-shadow: var(--shadow-card);
}
.split-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.split-card::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
 background: linear-gradient(90deg, var(--accent) 0%, var(--warm) 100%);
}
.split-card-header { margin-bottom: 1.5rem; }
.split-card-header h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.split-card-header p { font-size: 0.88rem; color: var(--text-500); }
.split-badge {
 display: inline-block;
 padding: 0.3rem 1rem; border-radius: 8px;
 font-family: var(--font-display); font-size: 0.82rem;
 font-weight: 600;
 margin-bottom: 0.75rem;
 text-align: center;
}
.split-badge.umkm { background: var(--bg-50); color: var(--warm); border: 1px solid rgba(217,119,6,0.2); }
.split-badge.startup { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(8,145,178,0.2); }

.split-services { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.split-service-item {
 display: flex;
 align-items: center;
 gap: 0.8rem;
 padding: 0.9rem 1.1rem;
 background: var(--bg-50);
 border: 1px solid var(--border-light);
 border-radius: var(--radius);
 transition: var(--transition);
 cursor: pointer;
}
.split-service-item:hover {
 border-color: var(--accent);
 background: var(--accent-light);
 transform: translateX(3px);
}
.split-service-item .icon {
 width: 40px; height: 40px; border-radius: 10px;
 display: flex; align-items: center; justify-content: center;
 font-size: 1.1rem; flex-shrink: 0;
}
.split-service-item .icon.cyan { background: var(--accent-light); border: 1px solid rgba(8,145,178,0.15); }
.split-service-item .icon.warm { background: var(--bg-50); border: 1px solid rgba(217,119,6,0.15); }
.split-service-item .icon.green { background: var(--green-light); border: 1px solid rgba(5,150,105,0.15); }
.split-service-item .text { flex: 1; }
.split-service-item .text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.1rem; }
.split-service-item .text p { font-size: 0.78rem; color: var(--text-500); }
.split-service-item .arrow { color: var(--text-400); font-size: 0.9rem; transition: var(--transition); }
.split-service-item:hover .arrow { color: var(--accent); transform: translateX(3px); }

/* ── Warm bg for UMKM service items (overrides) ───────── */
.split-service-item.warm-bg {
 background: #f8e4d4;
 border: 1px solid rgba(217,119,6,0.25);
}
.split-service-item.warm-bg:hover {
 background: #f8e4d4;
 border: 2px solid #d97706;
}

/* ── Hover UMKM items ─────────────────────────────────── */
.item-umkm:hover {
 background: #fdf4ea;
 border: 2px solid #d97706;
}

/* ── Startup bg ──────────────────────────────────────── */
.split-service-item.startup-bg {
 background: var(--accent-light) !important;
 border: 1px solid rgba(8,145,178,0.2);
}
.split-service-item.startup-bg:hover {
 background: var(--accent-light) !important;
 border: 2px solid var(--accent);
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about { background: var(--bg-white); }
#contact { background: var(--bg-50); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; font-size: 0.95rem; max-width: 480px; }
.about-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.cert-badge {
 display: inline-flex; align-items: center; gap: 0.35rem;
 padding: 0.3rem 0.7rem; border-radius: 6px;
 background: var(--bg-50); border: 1px solid var(--border);
 font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-600);
}
.cert-badge i { color: var(--accent); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-item {
 display: flex; align-items: flex-start; gap: 0.8rem;
 padding: 1rem; background: var(--bg-50); border-radius: var(--radius);
 border: 1px solid var(--border-light);
}
.why-item .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.15rem; }
.why-item .text h4 { font-size: 0.85rem; margin-bottom: 0.1rem; }
.why-item .text p { font-size: 0.78rem; color: var(--text-500); margin: 0; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info p { font-size: 0.95rem; margin-bottom: 1rem; }
.contact-channels { display: flex; flex-direction: column; gap: 0.75rem; }
.channel-item {
 display: flex; align-items: center; gap: 0.75rem;
 padding: 0.75rem 1rem; background: var(--bg-white); border-radius: var(--radius);
 border: 1px solid var(--border);
}
.channel-icon { width: 36px; text-align: center; }
.channel-text { font-size: 0.85rem; font-weight: 600; color: var(--text-800); }
.channel-text a { font-weight: 400; font-size: 0.82rem; display: block; color: var(--accent); }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-form { background: var(--bg-white); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-700); margin-bottom: 0.3rem; }
.form-group input, .form-group textarea {
 width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: 8px;
 font-family: var(--font-body); font-size: 0.88rem;
 transition: var(--transition); background: var(--bg-50);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { margin-top: 0.5rem; }
#form-message { margin-top: 0.75rem; font-size: 0.85rem; color: var(--green); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--bg-100); padding: 3rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-500); line-height: 1.6; }
.footer-col h4 { font-size: 0.92rem; color: var(--text-900); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { font-size: 0.85rem; color: var(--text-500); }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.78rem; color: var(--text-400); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-50); border: 1px solid var(--border); color: var(--text-500); font-size: 0.87rem; transition: var(--transition); }
.social-links a:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }

/* ── SCROLL TOP ───────────────────────────────────────────── */
#scroll-top {
 position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
 width: 44px; height: 44px; border-radius: 50%;
 background: var(--text-900); color: #fff; border: none;
 font-size: 1.3rem; cursor: pointer; opacity: 0; pointer-events: none;
 transform: translateY(20px); transition: var(--transition);
 box-shadow: var(--shadow);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes pulse {
 0%, 100% { opacity: 1; }
 50% { opacity: 0.4; }
}

/* ============================================================
 RESPONSIVE — Mobile-first breakpoints
 ============================================================ */

/* ── Tablet / small desktop (≤900px) ────────────────────── */
@media (max-width: 900px) {
 .nav-links, .nav-cta { display: none; }
 .nav-burger { display: block; position: relative; z-index: 100; }
 .split-grid { grid-template-columns: 1fr; }
 .about-inner { grid-template-columns: 1fr; gap: 2rem; }
 .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
 .footer-inner { grid-template-columns: 1fr 1fr; }
 .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤768px) ────────────────────────────────────── */
@media (max-width: 768px) {
 /* Hero actions stacked */
 .hero-actions { flex-direction: column; align-items: stretch; gap: 0.5rem; }
 .hero-actions .btn-lg {
   font-size: 0.78rem;
   padding: 0.6rem 1rem;
   justify-content: center;
   text-align: center;
 }
 .hero-actions .btn-lg i { flex-shrink: 0; }
 /* tighter mobile buttons */
 .hero-actions .btn-lg.hero-tight {
   font-size: 0.7rem;
   padding: 0.5rem 0.25rem 0.5rem 0.3rem;
   gap: 0.25rem;
 }

 /* Stats circles */
 .hero-stats { justify-content: center; }
 .stat-item { width: 90px; height: 90px; }
 .stat-item h4 { font-size: 1.1rem; }
 .stat-item p { font-size: 0.55rem; max-width: 60px; }

 /* Nav logo mobile */
 .nav-logo { font-size: 0.95rem; }
 .nav-logo img { height: 36px; }

 /* Footer */
 .footer-col li a { white-space: nowrap; font-size: 0.78rem; }
 .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
 .footer-brand { grid-column: 1 / -1; }
 .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

 /* Contact */
 .contact-form { padding: 1.5rem; }
}

/* ── Small mobile (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
 .hero-content { padding: 4rem 0 2rem; }
 .hero-sub { font-size: 0.92rem; }
 .stat-item { width: 80px; height: 80px; }
 .stat-item h4 { font-size: 1rem; }
 .stat-item p { font-size: 0.5rem; max-width: 55px; }
 .split-card { padding: 1.5rem; }
 .why-grid { grid-template-columns: 1fr; }
}

/* ── Mobile hero buttons extra tight (legacy override) ──── */
@media (max-width: 768px) {
 .hero-actions .btn-lg {
   font-size: 0.7rem;
   padding: 0.5rem 0.25rem 0.5rem 0.3rem;
   gap: 0.25rem;
 }
}

/* ── Tech Stack Scroller ── */
.tech-stack-section {
  background: var(--bg-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.tech-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tech-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.tech-item .icon { font-size: 1.6rem; width: 2.2rem; text-align: center; flex-shrink: 0; }
.tech-item .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-700);
  letter-spacing: 0.01em;
}
.tech-divider {
  color: var(--text-300);
  font-size: 1.2rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Hover pause */
.tech-track-wrapper:hover .tech-track {
  animation-play-state: paused;
}
/* Slow on mobile */
@media (max-width: 640px) {
  .tech-item { padding: 0.75rem 1.2rem; }
  .tech-item .icon { font-size: 1.3rem; width: 1.8rem; }
  .tech-item .tech-svg { width: 22px; height: 22px; }
.tech-item .tech-svg { vertical-align: middle; flex-shrink: 0; }
  .tech-item .label { font-size: 0.82rem; }
  .tech-track { animation-duration: 45s; }
}
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
  display: flex;
}
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
  width: 100%;
  height: 100%;
  object-fit: contain;
}
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
  background: rgba(255,255,255,0.2);
}
/* Tombol play overlay */
  cursor: pointer;
}
  height: 56px;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
/* ── Fix video play button visibility ── */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
}
  font-size: 1.5rem;
  color: #fff;
  margin-left: 3px;
}
  background: rgba(8,145,178,0.8);
  border-color: #fff;
}

  width: 100%;
  height: 100%;
  cursor: pointer;
}
  height: 100%;
  object-fit: cover;
  display: block;
}
  margin-left: 4px;
}
  background: rgba(8,145,178,0.85);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
/* Overlay bottom */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  pointer-events: none;
}
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}
/* Modal */
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
  display: flex;
}
  position: relative;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
}
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}
  opacity: 1;
  background: rgba(200,0,0,0.7);
}
@media (max-width: 640px) {
}

  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
  width: 100%;
}
  width: 100%;
  cursor: pointer;
}
  width: 100%;
  height: auto;
  display: block;
}
/* Play button */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(0,0,0,0.55);
  border: 3px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: #fff;
  font-size: 1.6rem;
  padding: 0;
  line-height: 1;
  outline: none;
}
  margin-left: 4px;
}
  background: rgba(8,145,178,0.85);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
/* Overlay bottom */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  pointer-events: none;
}
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}
/* Modal */
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
  display: flex;
}
  position: relative;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
}
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}
  opacity: 1;
  background: rgba(200,0,0,0.7);
}
@media (max-width: 640px) {
}

/* Startup video */
.startup-video-wrap {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}
.startup-video-inner {
  line-height: 0;
}
.startup-video-inner video {
  width: 100%;
  height: auto;
  display: block;
}
.startup-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 0;
  outline: none;
  transition: all 0.2s;
}
.startup-play-btn i { margin-left: 3px; }
.startup-play-btn:hover {
  background: rgba(8,145,178,0.8);
  transform: translate(-50%, -50%) scale(1.05);
}
.startup-video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  pointer-events: none;
}
.startup-video-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}
.video-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal-overlay.active { display: flex; }
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-modal-content video {
  width: 100%;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-close:hover { background: rgba(200,0,0,0.6); }
