/* ============================================================
   ZEXEL CODE ID — STYLESHEET
   Theme: futuristic dark, glassmorphism, neon cyan/blue glow
   ============================================================ */

:root {
  --bg-deep: #05070a;
  --bg: #0b0f17;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --cyan: #00f2fe;
  --blue: #4facfe;
  --text: #cbd5e1;
  --text-bright: #f1f5f9;
  --text-dim: #64748b;
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue));
  --glow-cyan: rgba(0, 242, 254, 0.35);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, .logo { font-family: "Plus Jakarta Sans", sans-serif; color: var(--text-bright); font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { text-wrap: pretty; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

::selection { background: var(--cyan); color: #05070a; }

/* ---------- Utilities ---------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-icon { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gradient);
  color: #04121a;
  box-shadow: 0 0 22px var(--glow-cyan), inset 0 0 0 1px rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px var(--glow-cyan), 0 8px 30px rgba(79,172,254,0.25);
}
.btn-outline {
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--cyan);
  background: rgba(0, 242, 254, 0.05);
}
.btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(0, 242, 254, 0.12);
  box-shadow: 0 0 26px rgba(0, 242, 254, 0.2);
}
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 254, 0.35);
  background: rgba(0, 242, 254, 0.07);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  font-family: "Inter", system-ui, sans-serif;
  text-shadow:
    0 0 6px rgba(0, 242, 254, 0.5),
    0 0 16px rgba(0, 242, 254, 0.28);
  animation: badgeNeon 3s ease-in-out infinite alternate;
}
.badge-emoji {
  display: inline-block;
  margin-inline: 0.18em;
  filter: drop-shadow(0 0 5px var(--glow-cyan)) drop-shadow(0 0 13px rgba(0, 242, 254, 0.5));
}
@keyframes badgeNeon {
  0% {
    text-shadow:
      0 0 4px rgba(0, 242, 254, 0.35),
      0 0 12px rgba(0, 242, 254, 0.18);
  }
  100% {
    text-shadow:
      0 0 9px rgba(0, 242, 254, 0.75),
      0 0 26px rgba(0, 242, 254, 0.42);
  }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 110;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(5, 7, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.02rem;
}
.logo-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-accent { color: var(--cyan); }
.logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 14px var(--glow-cyan);
  animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 10px var(--glow-cyan); }
  50% { box-shadow: 0 0 22px var(--glow-cyan); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a:not(.btn) {
  position: relative;
  color: var(--text);
  transition: color 0.25s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.28s ease;
  box-shadow: 0 0 10px var(--glow-cyan);
}
.nav-links a:not(.btn):hover { color: var(--text-bright); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 3;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
}
.orb-cyan {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,242,254,0.45), transparent 70%);
  top: -140px; right: -120px;
  animation: float-orb 9s ease-in-out infinite;
}
.orb-blue {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(79,172,254,0.4), transparent 70%);
  bottom: -160px; left: -140px;
  animation: float-orb 11s ease-in-out infinite reverse;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.08); }
}

/* --- Aceternity Spotlight System --- */
.spotlight-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.spotlight-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.spotlight-grid.active {
  opacity: 1;
}
.spotlight-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(0, 242, 254, 0.04) 35%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform, left, top;
}
.spotlight-radial.active {
  opacity: 1;
}

/* Mobile fallback — static centered glow + touch tracking */
@media (max-width: 768px) {
  .spotlight-grid {
    opacity: 1;
    background-image:
      linear-gradient(rgba(0, 242, 254, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 242, 254, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  }
  .spotlight-radial {
    opacity: 1 !important;
    width: 400px;
    height: 400px;
  }
}

.hero-content {
  position: relative;
  text-align: left;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}
.hero-left { min-width: 0; }
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 1.4rem 0 1.2rem;
  letter-spacing: -0.02em;
  position: relative;
}
.hero-title .gradient-text {
  text-shadow:
    0 0 7px rgba(0, 242, 254, 0.6),
    0 0 20px rgba(0, 242, 254, 0.4),
    0 0 42px rgba(0, 242, 254, 0.3),
    0 0 80px rgba(79, 172, 254, 0.2);
  animation: neonPulse 3s ease-in-out infinite alternate;
}
@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 7px rgba(0, 242, 254, 0.5),
      0 0 20px rgba(0, 242, 254, 0.3),
      0 0 42px rgba(0, 242, 254, 0.2),
      0 0 80px rgba(79, 172, 254, 0.15);
  }
  100% {
    text-shadow:
      0 0 10px rgba(0, 242, 254, 0.8),
      0 0 30px rgba(0, 242, 254, 0.6),
      0 0 60px rgba(0, 242, 254, 0.4),
      0 0 100px rgba(79, 172, 254, 0.3);
  }
}
.hero-sub {
  max-width: 620px;
  margin-inline: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.6rem;
}
@media (min-width: 992px) {
  .hero-stats { grid-column: 1 / -1; }
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.45rem;
  padding: 0 0.6rem;
}
.stat strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.9rem;
  font-variant-numeric: tabular-nums;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px var(--glow-cyan));
}
.stat span {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 215px;
}

@media (max-width: 768px) {
  .hero { padding: 110px 0 64px; }
  .hero-content { gap: 2.2rem; }
  .hero-cta { margin-top: 2rem; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.2rem;
  }
  .hero-stats .stat { padding: 0.9rem 0.5rem; }
  .stat strong { font-size: 1.55rem; }
  .stat span { max-width: 300px; letter-spacing: 0.1em; }
}

/* ---------- Code Editor Widget (hero kanan) ---------- */
.hero-right {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
}
.code-editor {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #0a0f1e;
  border: 1px solid rgba(0, 242, 254, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 26px 64px -22px rgba(0, 242, 254, 0.3),
    0 14px 34px -16px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-align: left;
}
.code-editor-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #0d1424;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.code-editor-dots { display: flex; gap: 8px; flex-shrink: 0; }
.cpoint { width: 12px; height: 12px; border-radius: 50%; }
.cpoint.red { background: #ff5f57; }
.cpoint.yellow { background: #febc2e; }
.cpoint.green { background: #28c840; }
.code-editor-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ccd9f0;
  font-size: 12.5px;
}
.ts-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #04101f;
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  padding: 2px 5px;
  border-radius: 4px;
  flex-shrink: 0;
}
.ts-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ts-close { margin-left: auto; color: var(--text-dim); font-size: 16px; line-height: 1; }
.code-editor-actions { color: var(--text-dim); font-size: 16px; letter-spacing: 1px; }
.code-editor-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px 20px 24px;
  overflow-x: auto;
  line-height: 1.85;
  font-size: 13px;
}
.code-line { display: flex; gap: 12px; }
.code-line code {
  white-space: pre;
  font-family: inherit;
  color: #cbd5e1;
}
.code-lno {
  flex-shrink: 0;
  width: 20px;
  text-align: right;
  color: #33506f;
  user-select: none;
}
/* Syntax highlighting — palette gelap senada tema */
.tok-k { color: #c792ea; font-weight: 600; }   /* keyword */
.tok-c { color: #7dd3fc; }                     /* tipe / kelas */
.tok-f { color: #f5d76e; }                     /* nama fungsi */
.tok-s { color: #a8e05f; }                     /* string */
.tok-p { color: #7fdbca; }                     /* properti */
.tok-pun { color: #89ddff; }                   /* tanda baca */

/* Kursor ketik (typewriter) — garis tipis ala caret editor */
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 1px;
  background: var(--cyan);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--glow-cyan);
  vertical-align: text-bottom;
  animation: typeBlink 0.85s step-end infinite;
}
@keyframes typeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Editor mobile — tampil lebih ramping biar kode nggak kebanyakan kena-scroll */
@media (max-width: 560px) {
  .code-editor-body {
    font-size: 13px;
    padding: 18px 16px 22px;
    line-height: 1.85;
  }
  .code-line { gap: 12px; }
  .code-editor-bar { padding: 10px 14px; }
  .code-editor-tab {
    font-size: 11.5px;
    padding: 4px 8px;
  }
}

/* ---------- Sections ---------- */
.section { padding: 70px 0; position: relative; background: var(--bg); }
.section-alt {
  background: var(--bg);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.4rem; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.07);
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.12), inset 0 0 14px rgba(0, 242, 254, 0.05);
  font-family: "Inter", system-ui, sans-serif;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  margin: 0.7rem 0 0.9rem;
  letter-spacing: -0.01em;
}
.section-title .gradient-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-title .gradient-text,
  h2 > .gradient-text,
  h3 > .gradient-text {
    white-space: normal;
  }
}
.section-desc { color: var(--text-dim); line-height: 1.75; }

/* ---------- About / Solo Developer ---------- */
.section-about .section-desc { max-width: 720px; margin-left: auto; margin-right: auto; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
  margin-top: 0.6rem;
}
.about-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.about-card-emoji { font-size: 1.7rem; line-height: 1; }
.about-card h3 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
}
.about-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-dim);
}
.about-note {
  margin-top: 1.7rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dim);
}
@media (max-width: 560px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Steps "Gimana Mulai" ---------- */
.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.steps-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}
.steps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  color: #04131a;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .steps-row { flex-direction: column; align-items: stretch; }
  .steps-item { border-radius: 14px; justify-content: flex-start; }
}

/* ---------- Grain halus (biar gak serasa "AI-perfect") ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}
.project-card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(0, 242, 254, 0.13),
    inset 0 0 0 1px rgba(0, 242, 254, 0.12);
}
.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1420, #101b2e);
}
.project-media img,
.project-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-media img,
.project-card:hover .project-media video { transform: scale(1.06); }
.media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,242,254,0.14), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(79,172,254,0.14), transparent 55%),
    linear-gradient(135deg, #0a111c, #0e1830);
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.media-placeholder span {
  font-size: 1.6rem;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px var(--glow-cyan));
}
.project-media.no-asset img,
.project-media.no-asset video { display: none; }
.project-media.no-asset .media-placeholder { display: flex; }
.media-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.project-card:hover .media-shine { transform: translateX(120%); }
.project-body { padding: 1.4rem 1.5rem 1.6rem; }
.project-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.9rem; color: var(--text); margin-bottom: 1.1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 172, 254, 0.35);
  background: rgba(79, 172, 254, 0.08);
  color: var(--blue);
  transition: all 0.25s ease;
}
.project-card:hover .tag {
  border-color: rgba(0, 242, 254, 0.5);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.12);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,242,254,0.1);
}
.pricing-card.popular {
  border-color: rgba(0, 242, 254, 0.55);
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 44px rgba(0, 242, 254, 0.14);
}
.pricing-card.popular:hover {
  box-shadow: 0 0 64px rgba(0, 242, 254, 0.24), 0 20px 50px rgba(0,0,0,0.5);
}
.popular-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  white-space: nowrap;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1207;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.4);
  animation: shimmer-gold 2s ease-in-out infinite;
}
.plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.pricing-card h3 { font-size: 1.25rem; line-height: 1.35; margin-bottom: 0.9rem; }
.plan-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px var(--glow-cyan));
  margin-bottom: 0.7rem;
}
.plan-ideal { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.4rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.92rem;
}
.check {
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 10px var(--glow-cyan);
}

/* ---------- Contact CTA ---------- */
.contact-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.5rem) 2rem;
  border-radius: 26px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  background:
    radial-gradient(circle at 50% 0%, rgba(0,242,254,0.1), transparent 60%),
    var(--surface);
  backdrop-filter: blur(14px);
}
.contact-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 0.9rem;
}
.contact-card p {
  max-width: 520px;
  margin: 0 auto 2.2rem;
  color: var(--text);
}
.orb-contact {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,242,254,0.22), transparent 70%);
  top: -180px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  animation: float-orb 8s ease-in-out infinite;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.4), rgba(124, 58, 237, 0.4), transparent);
}
.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.16;
}
.footer-orb-a {
  width: 430px; height: 430px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.6), transparent 70%);
  right: -120px; bottom: -140px;
}
.footer-orb-b {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
  left: -100px; top: 40px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 2.2rem 2.4rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 242, 254, 0.04));
  position: relative;
  overflow: hidden;
}
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 140px at 85% 0%, rgba(0, 242, 254, 0.1), transparent 70%);
  pointer-events: none;
}
.footer-cta h3 {
  margin: 0 0 0.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
}
.footer-cta p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 560px;
}
.footer-cta .btn { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-col-brand .logo { margin-bottom: 0.2rem; }
.footer-col-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 300px;
}
.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin: 0;
  padding-bottom: 0.7rem;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  display: inline-block;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.footer-col ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer-col ul a:hover { color: var(--cyan); }
.footer-col ul a:hover::after { transform: scaleX(1); }

.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.15rem; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 254, 0.22);
  background: rgba(0, 242, 254, 0.05);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-chip svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(0, 242, 254, 0.18);
}
.footer-btm-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { font-size: 0.8rem; color: var(--text-dim); margin: 0; }
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-status .pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.footer-status .pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: fpulse 2s ease-out infinite;
}
@keyframes fpulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.footer-actions { display: flex; align-items: center; gap: 0.7rem; }
.footer-social { display: flex; gap: 0.6rem; align-items: center; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 254, 0.25);
  background: rgba(0, 242, 254, 0.06);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-pill:hover {
  border-color: rgba(0, 242, 254, 0.55);
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
  background: rgba(0, 242, 254, 0.1);
}
.social-pill.ig {
  border-color: rgba(225, 48, 108, 0.28);
  background: rgba(225, 48, 108, 0.06);
  color: #f5a0c2;
}
.social-pill.ig:hover {
  border-color: rgba(225, 48, 108, 0.55);
  box-shadow: 0 0 16px rgba(225, 48, 108, 0.3);
  background: rgba(225, 48, 108, 0.12);
}
.to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.to-top svg { width: 16px; height: 16px; }
.to-top:hover {
  color: var(--cyan);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.8rem; }
}
@media (max-width: 640px) {
  .footer-cta { padding: 1.7rem 1.5rem; }
  .footer-cta h3 { font-size: 1.2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-btm-left { justify-content: center; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Security (Selebelum Publish) ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1rem;
}
.security-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.4rem;
  border-radius: 18px;
}
.security-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.07);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.security-ic svg { width: 22px; height: 22px; }
.security-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-bright);
}
.security-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-dim);
}
.security-note {
  margin: 1.6rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hamburger { display: none !important; }

  /* Overlay */
  .nav-overlay {
    display: none;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 90;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Drawer */
  .nav-links {
    display: none;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(85vw, 380px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem 0 0;
    background: rgba(7, 9, 14, 0.97);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border-left: 1px solid rgba(0, 242, 254, 0.12);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 242, 254, 0.03);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links::before {
    content: 'ZEXELCODE ID';
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem 1.25rem;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--text-bright);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.5rem;
  }
  .nav-links::after {
    content: '© 2026 Zexel Code ID';
    display: block;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: auto;
  }
  .nav-links.open { transform: translateX(0); }

  /* Drawer links */
  .nav-links a:not(.btn) {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.15rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
    transition: color 0.2s, background 0.2s, padding-left 0.25s, border-color 0.25s;
    position: relative;
  }
  .nav-links a:not(.btn)::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.1);
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .nav-links a:nth-child(1):not(.btn)::before { content: '🏠'; }
  .nav-links a:nth-child(2):not(.btn)::before { content: '⚡'; }
  .nav-links a:nth-child(3):not(.btn)::before { content: '🧠'; }
  .nav-links a:nth-child(4):not(.btn)::before { content: '💼'; }
  .nav-links a:nth-child(5):not(.btn)::before { content: '💰'; }
  .nav-links a:nth-child(6):not(.btn)::before { content: '📞'; }
  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn):active {
    color: var(--cyan);
    background: rgba(0, 242, 254, 0.04);
    padding-left: 2rem;
    border-color: rgba(0, 242, 254, 0.08);
  }
  .nav-links a:not(.btn):hover::before,
  .nav-links a:not(.btn):active::before {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
  }
  .nav-links a:not(.btn):last-of-type {
    border-bottom: none;
  }

  /* CTA button in drawer */
  .nav-cta {
    margin: 1.25rem 1.5rem 0 !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 1rem !important;
    text-align: center;
    border-radius: 14px !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
  }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .nav-links { width: 100vw; }
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ================================================================
   SERVICES SECTION — macOS Terminal Window + Glassmorphism
   ================================================================ */

/* --- Terminal Card Container --- */
.terminal-card {
  background: #0B0F17;
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.terminal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* --- Window Header Bar --- */
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #161922;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.terminal-header.popular-header {
  background: #1a1f2e;
  border-bottom-color: rgba(0, 242, 254, 0.1);
}

/* --- Window Dots --- */
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.terminal-dot.red { background: #FF5F56; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #27C93F; }

/* --- Window Title --- */
.terminal-title {
  flex: 1;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-right: 24px; /* offset for dots symmetry */
}

/* --- Terminal Body --- */
.terminal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Command Prompt Line --- */
.terminal-prompt {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  width: fit-content;
}
.terminal-prompt-user { color: #27C93F; font-weight: 700; }
.terminal-prompt-sep { color: rgba(255,255,255,0.3); }
.terminal-prompt-path { color: #5EAFFF; font-weight: 600; }
.terminal-prompt-end { color: rgba(255,255,255,0.5); margin-left: 4px; }
.terminal-prompt-cursor {
  display: inline-block;
  width: 6px;
  height: 14px;
  background: var(--cyan);
  margin-left: 6px;
  animation: terminal-blink 1s step-end infinite;
  box-shadow: 0 0 6px rgba(0, 242, 254, 0.6);
  vertical-align: middle;
}
@keyframes terminal-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Service Label --- */
.terminal-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* --- Price --- */
.terminal-price {
  font-size: 2.4rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 30px rgba(0, 240, 255, 0.2);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.terminal-price-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.3rem;
  text-shadow: none;
  display: inline-block;
  line-height: 1.3;
}

/* --- Price Note --- */
.terminal-price-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

/* --- Description --- */
.terminal-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- Feature List --- */
.terminal-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  flex: 1;
}
.terminal-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.45;
}
.terminal-check {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  opacity: 0.8;
  margin-top: 1px;
}

/* --- Maintenance Badge --- */
.terminal-maintenance {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- "Kenapa perlu?" collapsible --- */
.why-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  border: 1px dashed rgba(0, 242, 254, 0.35);
  background: rgba(0, 242, 254, 0.04);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.why-toggle:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.6);
}
.why-toggle-label { text-align: left; }
.why-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.why-toggle.open .why-icon { transform: rotate(45deg); }
.why-panel {
  margin-top: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 242, 254, 0.18);
  background: rgba(0, 242, 254, 0.05);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
}
.why-benefit { margin: 0 0 0.3rem; }
.why-group { margin-top: 0.8rem; }
.why-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.why-list li {
  display: flex;
  gap: 0.5rem;
  line-height: 1.5;
  color: var(--text);
}
.why-check {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 1px;
}
.why-example { margin: 0; color: var(--text-dim); }
.why-example-label {
  display: block;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.why-example-text { font-size: 0.82rem; }

/* --- Panduan Awam (EDU) --- */
.section-edu { background: linear-gradient(180deg, var(--bg), rgba(0, 242, 254, 0.035), var(--bg)); }
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
  align-items: start;
}
.edu-item {
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.edu-item:hover { border-color: rgba(0, 242, 254, 0.35); }
@media (max-width: 640px) {
  .edu-grid { grid-template-columns: 1fr; }
}

/* --- CTA Button --- */
.terminal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  width: 100%;
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--cyan);
  background: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}
.terminal-btn:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.terminal-btn-icon {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  opacity: 0.7;
}
.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Popular Variant --- */
.terminal-card.popular {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.12), 0 8px 32px rgba(0, 0, 0, 0.4);
}
.terminal-card.popular:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 45px rgba(251, 191, 36, 0.2), 0 12px 40px rgba(0, 0, 0, 0.5);
}
.terminal-card.popular .terminal-header {
  border-bottom-color: rgba(251, 191, 36, 0.12);
}
.terminal-card.popular .terminal-price {
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.2);
}
.terminal-card.popular .terminal-btn.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1207;
  border: none;
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.25);
}
.terminal-card.popular .terminal-btn.btn-primary:hover {
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.4), 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  .terminal-body { padding: 1.2rem; }
  .terminal-price { font-size: 2rem; }
  .terminal-label { font-size: 0.85rem; }
  .terminal-features li { font-size: 0.82rem; }
  .terminal-header { padding: 10px 14px; }
  .terminal-dot { width: 10px; height: 10px; }
}

/* ---------- Popular Project Badge ---------- */
.popular-project {
  border: 1px solid rgba(0, 255, 200, 0.3) !important;
  position: relative;
}
.popular-badge-project {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.4);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer-gold {
  0%, 100% { box-shadow: 0 0 14px rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 0 24px rgba(251, 191, 36, 0.7); }
}

/* ---------- CTA Section Enhanced ---------- */
.contact-card {
  position: relative;
  overflow: hidden;
}
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-particle {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 5s ease-in infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-400px) scale(0); opacity: 0; }
}

.cta-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  pointer-events: none;
}
.float-emoji {
  animation: emojiFloat 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.float-emoji:nth-child(2) { top: 15%; left: 8%; }
.float-emoji:nth-child(3) { top: 25%; right: 10%; }
.float-emoji:nth-child(4) { bottom: 20%; left: 12%; }
.float-emoji:nth-child(5) { bottom: 30%; right: 8%; }
.float-emoji:nth-child(6) { top: 50%; left: 5%; }
.float-emoji:nth-child(7) { top: 60%; right: 5%; }

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-btn-pulse {
  position: relative;
  overflow: hidden;
}
.cta-btn-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* ---------- Mobile Footer ---------- */
@media (max-width: 768px) {
  .footer-grid { gap: 2rem 1.5rem; }
}

/* ---------- Contact CTA actions & payment badges ---------- */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.4rem;
}

.contact-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px dashed rgba(0, 242, 254, 0.35);
  background: rgba(0, 242, 254, 0.05);
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 1.4rem auto 0;
}
/* Opsi alternatif: biarkan border, artinya pakai class ini buat versi tanpa garis putus-putus */
.contact-payments-clean {
  border: none;
  background: transparent;
  padding: 0.3rem 0.4rem;
}
.contact-payments-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  margin: 0.45rem auto 0;
  max-width: 100%;
}

.pay-logo {
  height: 30px;
  width: auto;
  padding: 5px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  object-fit: contain;
  display: inline-block;
}

@media (max-width: 520px) {
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-actions .btn { width: 100%; }
  .contact-payments { margin-top: 1rem; }
}

/* ---------- Panduan Awam — chat window Zexel AI ---------- */
.edu-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.ai-chat {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(0, 242, 254, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
}
.ai-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.35);
}
.ai-chat-avatar svg { width: 22px; height: 22px; }
.ai-chat-id { display: flex; flex-direction: column; gap: 0.15rem; }
.ai-chat-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
}
.ai-chat-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
  animation: aiPulse 1.6s ease-in-out infinite;
}
@keyframes aiPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.ai-chat-body { padding: 1.2rem 1.2rem 1.4rem; }

.chat-conv { display: flex; flex-direction: column; gap: 0.9rem; }
.chat-row { display: flex; align-items: flex-start; }
.chat-row-user { justify-content: flex-end; }
.chat-row-bot { justify-content: flex-start; }
.chat-bubble {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  max-width: 88%;
}
.chat-row-user .chat-bubble { flex-direction: row-reverse; }
.chat-msg {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.65;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chat-row-user .chat-msg {
  background: rgba(0, 242, 254, 0.09);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #d9f6ff;
  box-shadow: 0 12px 28px rgba(0, 242, 254, 0.1), 0 4px 10px rgba(0, 0, 0, 0.25);
}
.chat-row-bot .chat-msg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.chat-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.chat-name-bot { color: var(--cyan); }
.chat-body { margin: 0; font-size: 0.95rem; line-height: 1.7; }
.chat-row-user .chat-body { font-weight: 500; }
.chat-row-bot .chat-body { color: var(--text); }
.chat-trail {
  position: relative;
  width: 2px;
  height: 24px;
  margin: 0.3rem auto;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.1), rgba(0, 242, 254, 0.5));
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.35);
}
.chat-trail::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.9);
}
@media (max-width: 640px) {
  .ai-chat-body { padding: 0.8rem 0.8rem 1rem; }
  .chat-bubble { max-width: 94%; }
}

