/* Hero */
.about-hero { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 60%, rgba(9,9,11,1) 100%); }
.about-hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 60px; }
.about-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; margin: 0; }

/* Content */
.about-content { background: #09090b; padding: 60px 24px 100px; }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text .tag { color: #ef4444; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-top: 10px; line-height: 1.15; padding-bottom: 16px; border-bottom: 3px solid #ef4444; display: inline-block; }
.about-text .desc { color: #a1a1aa; margin-top: 20px; line-height: 1.8; font-size: 15px; text-align: justify; }
.about-text .about-stats { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.about-text .about-stat { padding: 14px 20px; border-radius: 12px; background: rgba(69,10,10,0.35); border: 1px solid rgba(185,28,28,0.25); }
.about-text .about-stat .val { color: #f87171; font-weight: 900; font-size: 20px; }
.about-text .about-stat .lbl { color: #71717a; font-size: 11px; margin-top: 4px; }

/* Right side */
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-logo-wrap { text-align: center; align-self: center; }
.about-logo-wrap img { max-width: 250px; height: auto; display: block; margin: 0 auto; }

/* Terminal */
.terminal-wrap { width: 100%; border-radius: 20px; padding: 40px; background: linear-gradient(135deg, #18181b, #09090b); border: 1px solid rgba(39,39,42,0.6); position: relative; overflow: hidden; }
.terminal-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(185,28,28,0.15); }
.terminal-circle-1 { width: 100px; height: 100px; top: 20px; right: 20px; }
.terminal-circle-2 { width: 60px; height: 60px; bottom: 30px; left: 20px; }
.terminal { position: relative; z-index: 2; width: 100%; border-radius: 12px; padding: 20px; background: rgba(0,0,0,0.85); border: 1px solid rgba(63,63,70,0.6); font-family: 'Courier New', monospace; font-size: 14px; }
.terminal-dots { display: flex; gap: 8px; margin-bottom: 16px; }
.terminal-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; } .dot-yellow { background: #eab308; } .dot-green { background: #22c55e; }
.terminal-line { margin-top: 6px; }
.t-red { color: #ef4444; } .t-gray { color: #52525b; } .t-blue { color: #60a5fa; } .t-white { color: #e4e4e7; } .t-muted { color: #71717a; }
.t-cursor { animation: blink 1s infinite; } @keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }

/* Visi Misi */
.visimisi { background: #000; padding: 80px 24px; }
.visimisi-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.visimisi-card { padding: 40px; border-radius: 20px; background: #18181b; border: 1px solid #27272a; }
.visimisi-card .tag { color: #ef4444; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.visimisi-card h3 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.visimisi-card p { color: #a1a1aa; font-size: 15px; line-height: 1.8; margin: 0; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-right { order: -1; }
  .visimisi-grid { grid-template-columns: 1fr; }
}
