/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080c14;
  --bg2: #0c111d;
  --bg3: #0d1320;
  --border: rgba(30,41,59,0.6);
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --cyan: #22d3ee;
  --green: #4ade80;
  --purple: #c084fc;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

::selection { background: rgba(59,130,246,.3); color: #93c5fd; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #020617; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(30,41,59,.4);
  background: rgba(8,12,20,.9);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
}

.brand-icon {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1320;
  border: 1px solid rgba(59,130,246,.3);
  border-radius: .5rem;
  color: #3b82f6;
  transition: border-color .3s;
}
.brand:hover .brand-icon { border-color: rgba(59,130,246,.8); }
.brand:hover .brand-name { color: #60a5fa; }

.ping-outer {
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  opacity: .75;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.ping-inner {
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.brand-name {
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .2s;
}
.brand-accent { color: var(--blue-light); }
.brand-sub {
  display: block;
  font-size: .5rem;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .quick-status { display: none; }
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border-radius: .375rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .025em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.nav-btn:hover { color: #f1f5f9; background: #0c1320; }
.nav-btn.active { color: #fff; background: rgba(16,23,38,.8); border-bottom: 2px solid #3b82f6; }
.nav-btn.active svg { color: #60a5fa; }
.nav-btn.nav-cta { background: #3b82f6; color: #fff; margin-left: .5rem; }
.nav-btn.nav-cta:hover { background: #2563eb; }
.nav-btn.nav-cta.active { background: #2563eb; }

.quick-status {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: monospace;
  font-size: .625rem;
}
.status-label { color: var(--text-dim); }
.status-badge {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .625rem;
  border-radius: 9999px;
  background: rgba(5,46,22,.6);
  border: 1px solid rgba(22,101,52,.5);
}
.status-dot {
  width: .375rem; height: .375rem;
  border-radius: 50%;
  background: #22c55e;
}
.status-dot.pulse { animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse {
  0%,100% { opacity:1; } 50% { opacity:.4; }
}
.status-text { color: #4ade80; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .5rem; }

.mobile-toggle {
  display: none;
  padding: .5rem;
  border-radius: .375rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}
.mobile-toggle:hover { color: #e2e8f0; background: #0d1320; }

@media (max-width: 1024px) { .mobile-toggle { display: flex; align-items: center; justify-content: center; } }

.mobile-menu {
  border-top: 1px solid rgba(30,41,59,.4);
  background: #080c14;
  padding: .75rem .5rem;
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .625rem 1rem;
  border-radius: .375rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .025em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
}
.mobile-nav-btn:hover, .mobile-nav-btn.active { color: #60a5fa; background: #0d1320; }

.mobile-status {
  padding: 1rem 1rem .5rem;
  border-top: 1px solid rgba(30,41,59,.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: .625rem;
  color: var(--text-dim);
  margin-top: .5rem;
}
.mobile-status-badge {
  display: flex;
  align-items: center;
  gap: .375rem;
  color: #4ade80;
  background: rgba(5,46,22,.3);
  padding: .125rem .5rem;
  border-radius: .25rem;
  border: 1px solid #14532d;
  font-size: .5rem;
}

/* ===================== MAIN / TABS ===================== */
main { flex: 1; }

.tab-content { display: none; animation: fadeIn .3s ease; }
.tab-content.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(30,41,59,.4);
  background: #080c14;
  padding: 4rem 1rem 7rem;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.hero-glow-left { top: 0; left: 25%; background: rgba(23,37,84,.15); }
.hero-glow-right { bottom: 0; right: 25%; background: rgba(8,47,73,.1); }

.hero-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: 9999px;
  background: rgba(23,37,84,.3);
  border: 1px solid rgba(59,130,246,.2);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .025em;
  color: #93c5fd;
  animation: fadeIn .6s ease;
}
.badge-dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: #22c55e;
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.15;
  animation: fadeIn .7s ease .15s both;
}

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeIn .7s ease .3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeIn .7s ease .45s both;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 32rem;
  margin: 3.5rem auto 0;
  background: rgba(12,17,29,.5);
  border: 1px solid rgba(30,41,59,.4);
  border-radius: .75rem;
  padding: 1rem;
  animation: fadeIn .8s ease .6s both;
}
.spec-item {
  text-align: center;
  padding: .5rem;
  border-right: 1px solid rgba(30,41,59,.5);
}
.spec-item:last-child { border-right: none; }
.spec-label { display: block; font-size: .5rem; font-family: monospace; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.spec-value { display: block; margin-top: .25rem; font-size: .875rem; font-weight: 800; color: #fff; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  background: #2563eb;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1px solid rgba(96,165,250,.2);
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 15px rgba(37,99,235,.15);
}
.btn-primary:hover { background: #3b82f6; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  background: #0d1320;
  color: #cbd5e1;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1px solid #1e293b;
  cursor: pointer;
  transition: background .2s;
}
.btn-secondary:hover { background: #141b2c; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: .5rem;
  background: rgba(30,41,59,.6);
  color: #cbd5e1;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1px solid rgba(51,65,85,.4);
  cursor: pointer;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(51,65,85,.6); }

.btn-primary-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1rem;
  border-radius: .5rem;
  background: #2563eb;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary-full:hover { background: #3b82f6; }

.btn-ghost-full {
  width: 100%;
  display: block;
  padding: .625rem 1rem;
  border-radius: .5rem;
  background: rgba(30,41,59,.5);
  color: #f1f5f9;
  font-size: .75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-align: center;
}
.btn-ghost-full:hover { background: rgba(51,65,85,.5); }

.btn-wa {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: .5rem;
  background: #25d366;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37,211,102,.2);
  flex-shrink: 0;
}
.btn-wa:hover { background: #1ebe5d; }

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 700;
  color: #60a5fa;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.link-btn:hover { color: #93c5fd; }

/* ===================== CONTAINER & LAYOUT ===================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ===================== BADGES ===================== */
.badge {
  display: inline-block;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #60a5fa;
  background: rgba(23,37,84,.4);
  border: 1px solid rgba(59,130,246,.3);
  padding: .25rem .75rem;
  border-radius: .25rem;
}
.badge-cyan { color: #22d3ee; background: rgba(8,47,73,.3); border-color: rgba(34,211,238,.2); }

/* ===================== STATS ===================== */
.stats-section {
  background: #0d1320;
  border-top: 1px solid rgba(30,41,59,.4);
  border-bottom: 1px solid rgba(30,41,59,.4);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(30,41,59,.6);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(30,41,59,.6); }
}
.stat-number { font-size: 1.875rem; font-weight: 800; }
.stat-label { font-size: .625rem; color: var(--text-muted); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-top: .25rem; }

/* ===================== SERVICES HOME ===================== */
.services-section { padding: 4rem 0; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30,41,59,.4);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-title { margin-top: .75rem; font-size: 1.25rem; font-weight: 800; color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #0c111d;
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.service-card:hover { border-color: rgba(59,130,246,.5); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon { font-size: 1.5rem; }
.service-online {
  font-size: .5rem;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(5,46,22,.2);
  border: 1px solid rgba(22,101,52,.2);
  padding: .125rem .5rem;
  border-radius: 9999px;
}
.service-name {
  margin-top: 1rem;
  font-weight: 800;
  color: #f1f5f9;
  font-size: .875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color .2s;
}
.service-card:hover .service-name { color: #60a5fa; }
.service-desc {
  margin-top: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.service-footer {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(30,41,59,.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: .625rem;
  color: var(--text-dim);
}
.service-open {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: .05em;
  transition: transform .2s;
}
.service-card:hover .service-open { transform: translateX(2px); }

/* ===================== FEATURES ===================== */
.features-section { background: #0c111d; padding: 4rem 0; }

.mb-12 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.mt-3 { margin-top: .75rem; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: rgba(16,23,38,.4);
  border: 1px solid rgba(30,41,59,.6);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(30,41,59,.95); }
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(59,130,246,.1);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,.2);
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-title { margin-top: 1rem; font-weight: 700; color: #f1f5f9; font-size: .875rem; }
.feature-desc { margin-top: .5rem; font-size: .75rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== CTA ===================== */
.cta-section {
  background: #0d1320;
  border-top: 1px solid rgba(30,41,59,.5);
  padding: 4rem 0;
  text-align: center;
}
.cta-inner { max-width: 36rem; margin: 0 auto; padding: 0 1rem; }
.cta-title { margin-top: 1rem; font-size: 1.5rem; font-weight: 800; color: #fff; }
@media (min-width: 768px) { .cta-title { font-size: 1.875rem; } }
.cta-desc { margin-top: .75rem; font-size: .75rem; color: var(--text-muted); line-height: 1.7; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===================== PAGE HEADER ===================== */
.page-header {
  border-bottom: 1px solid rgba(30,41,59,.4);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
.page-title { margin-top: 1rem; font-size: 1.875rem; font-weight: 800; color: #fff; }
.page-subtitle { margin-top: .5rem; font-size: .75rem; color: var(--text-muted); }

/* ===================== CARDS ===================== */
.card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 1.5rem;
}
.card-title { margin-top: .75rem; font-weight: 800; color: #fff; font-size: .875rem; }
.card-subtitle { font-family: monospace; font-size: .6875rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.body-text { font-size: .75rem; color: #cbd5e1; line-height: 1.7; }

/* ===================== TENTANG ===================== */
.tentang-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .tentang-grid { grid-template-columns: repeat(2, 1fr); } }

.tentang-left { display: flex; flex-direction: column; gap: 1rem; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.mini-stat {
  background: var(--bg2);
  border: 1px solid rgba(30,41,59,.6);
  border-radius: .75rem;
  padding: 1rem;
  text-align: center;
}
.mini-stat-num { font-size: 1.25rem; font-weight: 800; }
.mini-stat-label { font-size: .5625rem; color: var(--text-muted); margin-top: .25rem; text-transform: uppercase; font-weight: 600; font-family: monospace; letter-spacing: .05em; }

.topology-card {
  background: var(--bg2);
  border: 1px solid rgba(30,41,59,.6);
  border-radius: .75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.topo-header { z-index: 10; }
.topo-title { font-family: monospace; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #60a5fa; }
.topo-subtitle { font-size: .5625rem; color: var(--text-dim); font-family: monospace; margin-top: .125rem; }
.topo-diagram {
  position: relative;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  z-index: 10;
}
.topo-orbit {
  position: absolute;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 1px dashed rgba(59,130,246,.2);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.topo-center {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(37,99,235,.2);
  border: 1px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  font-weight: 800;
  color: #fff;
  z-index: 20;
  box-shadow: 0 0 20px rgba(59,130,246,.2);
}
.topo-node {
  position: absolute;
  padding: .25rem .625rem;
  border-radius: .25rem;
  background: #0d1320;
  border: 1px solid #1e293b;
  font-size: .5rem;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .375rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.topo-top { top: 0; }
.topo-bottom { bottom: 0; }
.topo-left { left: 0; }
.topo-right { right: 0; }
.node-dot { width: .375rem; height: .375rem; border-radius: 50%; flex-shrink: 0; }
.topo-footer { font-size: .5625rem; font-family: monospace; color: var(--text-dim); z-index: 10; text-align: center; }

.visi-misi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .visi-misi { grid-template-columns: repeat(2, 1fr); } }

.team-section { margin-top: 4rem; }
.team-title { font-size: 1.25rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-avatar {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.team-name { font-weight: 700; color: #f1f5f9; font-size: .875rem; }
.team-role { font-size: .5625rem; color: var(--text-dim); margin-top: .25rem; font-family: monospace; text-transform: uppercase; letter-spacing: .05em; }

/* ===================== LAYANAN ===================== */
.mb-14 { margin-bottom: 3.5rem; }
.subsection-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}
.dot-blue { width: .5rem; height: .5rem; border-radius: 50%; background: #3b82f6; flex-shrink: 0; }

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.service-detail-card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.layanan-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(30,41,59,.4);
  padding-top: 2.5rem;
}
@media (min-width: 768px) { .layanan-categories { grid-template-columns: repeat(3, 1fr); } }

.layanan-card {
  background: rgba(12,17,29,.4);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.layanan-icon { font-size: 1.5rem; }

.check-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .75rem;
  color: #cbd5e1;
}
.check-icon { color: #4ade80; flex-shrink: 0; font-size: .875rem; }

/* ===================== PORTFOLIO ===================== */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .filter-btns { justify-content: flex-start; } }

.filter-btn {
  padding: .375rem 1rem;
  border-radius: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .025em;
  background: #0f172a;
  color: var(--text-muted);
  border: 1px solid #1e293b;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { color: #fff; background: var(--bg2); }
.filter-btn.active { background: #2563eb; color: #fff; border-color: #2563eb; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  overflow: hidden;
  height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  transition: border-color .2s;
}
.portfolio-card:hover { border-color: rgba(51,65,85,.8); }

.portfolio-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: .5rem;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
.portfolio-cat {
  display: inline-block;
  font-size: .5625rem;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(8,47,73,.3);
  border: 1px solid rgba(34,211,238,.2);
  padding: .125rem .5rem;
  border-radius: .25rem;
  font-family: monospace;
}
.portfolio-title { margin-top: .75rem; font-weight: 800; color: #fff; font-size: .875rem; line-height: 1.3; }
.portfolio-desc { margin-top: .5rem; font-size: .75rem; color: var(--text-muted); line-height: 1.6; }
.portfolio-tags { display: flex; gap: .375rem; flex-wrap: wrap; }
.portfolio-tag {
  font-size: .5rem;
  font-family: monospace;
  padding: .125rem .5rem;
  background: #0f172a;
  color: var(--text-muted);
  border-radius: .25rem;
}

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 32.5rem;
  position: relative;
}
.pricing-card.pricing-featured {
  border: 2px solid #3b82f6;
  height: 33.75rem;
  box-shadow: 0 20px 60px rgba(59,130,246,.05);
}

.popular-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #fff;
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-tier { font-family: monospace; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.pricing-name { margin-top: .75rem; font-size: 1.25rem; font-weight: 800; color: #fff; }
.pricing-desc { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }
.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: .375rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(30,41,59,.4);
  border-bottom: 1px solid rgba(30,41,59,.4);
  margin: 1.5rem 0;
}
.pricing-price { font-size: 1.5rem; font-weight: 800; font-family: monospace; color: #fff; }
.pricing-period { font-size: .75rem; color: var(--text-dim); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: #cbd5e1;
}
.strikethrough { text-decoration: line-through; color: var(--text-dim) !important; }

.custom-quote-box {
  margin-top: 3.5rem;
  background: #0d1320;
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 2rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== BLOG ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  overflow: hidden;
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color .2s;
  text-align: left;
}
.blog-card:hover { border-color: rgba(51,65,85,.8); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-cat {
  font-size: .5625rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(23,37,84,.3);
  border: 1px solid rgba(59,130,246,.2);
  padding: .125rem .625rem;
  border-radius: .25rem;
  font-family: monospace;
}
.blog-date { font-family: monospace; font-size: .5625rem; color: var(--text-dim); }
.blog-title {
  margin-top: 1rem;
  font-weight: 800;
  color: #fff;
  font-size: .875rem;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s;
}
.blog-card:hover .blog-title { color: #60a5fa; }
.blog-desc {
  margin-top: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog-card-footer {
  padding: 0 1.5rem 1.5rem;
  font-family: monospace;
  font-size: .5625rem;
  color: #60a5fa;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.blog-card:hover .blog-chevron { transform: translateX(3px); }
.blog-chevron { transition: transform .2s; }

/* ===================== BLOG MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(2,6,23,.95);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-box {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  max-width: 36rem;
  width: 100%;
  padding: 1.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
}
.modal-close:hover { color: #fff; }
.modal-cat {
  display: inline-block;
  font-size: .5rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(23,37,84,.3);
  border: 1px solid rgba(59,130,246,.2);
  padding: .125rem .5rem;
  border-radius: .25rem;
  font-family: monospace;
}
.modal-title { margin-top: 1rem; font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1.3; }
.modal-meta { display: block; font-family: monospace; font-size: .5625rem; color: var(--text-dim); margin-top: .5rem; }
.modal-body {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(30,41,59,.5);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-text { font-size: .75rem; color: #cbd5e1; line-height: 1.7; }
.modal-code {
  background: #0f172a;
  border: 1px solid rgba(30,41,59,.8);
  border-radius: .375rem;
  padding: .75rem;
  font-family: monospace;
  font-size: .6875rem;
  color: var(--text-muted);
}
.modal-note { font-size: .75rem; color: #cbd5e1; line-height: 1.7; }

/* ===================== KONTAK ===================== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .kontak-grid { grid-template-columns: repeat(2, 1fr); } }

.kontak-left { display: flex; flex-direction: column; gap: 1.5rem; }

.wa-banner {
  background: linear-gradient(to right, rgba(16,185,129,.2), rgba(59,130,246,.1));
  border: 1px solid rgba(16,185,129,.2);
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-info-card {
  background: var(--bg2);
  border: 1px solid #1e293b;
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 2.25rem; height: 2.25rem;
  min-width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  border: 1px solid;
}
.contact-label { font-size: .5625rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; font-family: monospace; }
.contact-value { font-size: .75rem; font-weight: 700; color: #fff; margin-top: .125rem; }
.online-badge { font-size: .5625rem; color: #4ade80; display: block; margin-top: .25rem; }

.form-label { display: block; font-size: .75rem; font-weight: 600; color: var(--text-muted); margin-bottom: .375rem; }
.form-input {
  width: 100%;
  background: #080c14;
  border: 1px solid #1e293b;
  border-radius: .5rem;
  padding: .625rem 1rem;
  font-size: .75rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: rgba(59,130,246,.6); }
.form-input option { background: #080c14; }

.success-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(16,185,129,.2);
  border: 2px solid #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #4ade80;
  font-weight: 700;
  margin: 0 auto;
  animation: bounce 1s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(-5%); } 50% { transform: translateY(0); }
}

/* ===================== TECH TAGS ===================== */
.tech-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: 1rem; }
.tech-tag {
  font-size: .5rem;
  font-family: monospace;
  padding: .125rem .5rem;
  background: #0f172a;
  border: 1px solid #1e293b;
  color: var(--text-muted);
  border-radius: .25rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(30,41,59,.6);
  padding: 3rem 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-desc { font-size: .6875rem; color: var(--text-muted); line-height: 1.6; margin-top: .5rem; }
.footer-heading { font-size: .75rem; font-weight: 700; color: #cbd5e1; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .375rem; font-size: .6875rem; color: var(--text-muted); }
.footer-link { background: transparent; border: none; color: var(--text-muted); font-size: .6875rem; cursor: pointer; padding: 0; text-align: left; transition: color .2s; }
.footer-link:hover { color: #60a5fa; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30,41,59,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .625rem;
  color: var(--text-dim);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ===================== RESPONSIVE HELPERS ===================== */
.hidden-sm { display: none; }
@media (min-width: 768px) { .hidden-sm { display: inline; } }
