/* ============================================================
   ASTROVE TECHNOLOGY — CSS v2 (Light Only — Blue & White)
   Fonts: Bebas Neue (display) · Instrument Serif (italic) · Cabinet Grotesk (body)
============================================================ */

/* ── TOKENS ── */
:root {
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-body: 'Cabinet Grotesk', sans-serif;

  /* ── LIGHT BLUE-WHITE THEME ── */
  --bg: #ffffff;
  --bg2: #f0f5ff;
  --bg3: #e6eeff;
  --surface: rgba(0, 80, 220, 0.05);
  --surface-hover: rgba(0, 80, 220, 0.09);
  --border: rgba(0, 80, 220, 0.12);
  --border-hi: rgba(0, 80, 220, 0.28);
  --text: #0d1b3e;
  --text-muted: #5a6e99;
  --text-dim: #b0bcd8;
  --accent: #0050dc;
  --accent-hi: #0036a0;
  --ink: #ffffff;
  --pill-bg: #0050dc;
  --pill-text: #ffffff;
  --cursor-color: #0050dc;
  --noise-opacity: 0.025;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 9px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--cursor-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s, opacity 0.3s;
}
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--cursor-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
body.cursor-hover #cursor {
  width: 60px; height: 60px;
  background: var(--cursor-color);
  opacity: 0.1;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.out { opacity: 0; visibility: hidden; }
.loader-center { text-align: center; }
.loader-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 32px;
}
.loader-progress {
  width: 220px; height: 2px;
  background: var(--border);
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 9px;
}
.loader-bar {
  height: 100%; width: 0;
  background: var(--accent);
  transition: width 0.05s linear;
  border-radius: 9px;
}
.loader-pct {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 20px; left: 50%; right: auto;
  transform: translateX(-50%);
  z-index: 1000;
  width: fit-content;
  transition: all 0.4s var(--ease);
}
a {
font-weight: 600;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  top: 16px;
  /* border: 0.5px solid var(--color-border, rgba(0,0,0,0.1)); */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.207);
  border-radius: 20px;
}
.nav-inner {
  padding: 10px 28px; /*← kanan kiri lebih lebar */
  min-width: 1100px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--border, rgba(0,0,0,0.1));
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--ease);
}
#navbar.scrolled .nav-inner {
  box-shadow: none;
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.05em;
  color: var(--text);
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nl {
  padding: 6px 14px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s, font-weight 0.2s, letter-spacing 0.2s;
}

.nl:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  letter-spacing: 0;
}

.nl.active {
  color: var(--accent);
  background: rgba(0, 80, 220, 0.08);
  font-weight: 600;
  letter-spacing: 0;
}

/* garis bawah kecil di active */
/*.nl.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 9px;
} */
/* .hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 6px; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text); border-radius: 9px; display: block;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg) translate(5.5px, -5.5px); } */

/* ── BUTTONS ── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px;
  background: var(--pill-bg); color: var(--pill-text);
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
  border: none;
}
.btn-pill:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 80, 220, 0.28); }
.btn-pill.full { width: 100%; justify-content: center; }
.btn-text-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  transition: color 0.2s;
}
.btn-text-link:hover { color: var(--accent); }
.tl-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn-text-link:hover .tl-arrow { transform: translateX(4px); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95em;
  letter-spacing: 0;
  color: var(--accent);
}
.section-desc {
  color: var(--text-muted); font-size: 1rem;
  max-width: 480px; margin-bottom: 60px;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 0 32px;
  background: linear-gradient(135deg, #ffffff 0%, #eef3ff 60%, #ddeaff 100%);
}

/* ── BLOB BIRU ── */
.hero-blob {
  position: absolute;
  top: -10%; right: -4%;
  width: 62%; height: 120%;
  z-index: 1;
  pointer-events: none;
}
.hero-blob svg {
  width: 100%; height: 100%;
}

/* ── NOISE ── */
.hero-noise {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
}

/* ── RINGS — warna putih biar keliatan di atas blob biru ── */
.abstract-ring {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 2;
}
.r1 {
  width: 700px; height: 700px;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: ringRotate 30s linear infinite;
}
.r2 {
  width: 400px; height: 400px;
  top: 50%; right: 50px;
  transform: translateY(-50%);
  border: 1px dashed rgba(255, 255, 255, 0.07);
  animation: ringRotate 20s linear infinite reverse;
}
@keyframes ringRotate { to { transform: translateY(-50%) rotate(360deg); } }

/* ── SPLINE — di atas blob ── */
.spline-wrap {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: flex-end;
  pointer-events: none; overflow: hidden;
}
.spline-wrap spline-viewer { width: 100%; height: 100%; }

/* ── KONTEN TEKS ── */
.hero-content {
  position: relative; z-index: 4;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow-line { flex: 0 0 40px; height: 1px; background: var(--accent); opacity: 0.35; }

.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.ht-line {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  line-height: 0.88; letter-spacing: 0.01em;
  color: var(--text);
  display: block; overflow: hidden;
}
.ht-line.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 9rem);
  line-height: 1; color: var(--accent);
  letter-spacing: -0.01em;
}

.hero-desc {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 420px; line-height: 1.75;
  margin-bottom: 30px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ── MARQUEE ── */
.hero-marquee-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5; overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  background: #ffffff;
}
.hero-marquee {
  display: flex; gap: 32px; width: max-content;
  animation: marqueeRun 20s linear infinite;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap;
}
.hero-marquee-wrap:hover .hero-marquee { animation-play-state: paused; }
@keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mx-dot { color: var(--accent); font-size: 0.6rem; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats-band {
  padding: 56px 32px;
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
}
.sb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.sb-item {
  flex: 1; min-width: 150px;
  text-align: center; padding: 24px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.sb-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
    background: rgba(0, 80, 220, 0.08);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.sb-row { display: flex; align-items: baseline; gap: 2px; }
.sb-num {
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--text);
}
.sb-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem; color: rgba(255,255,255,0.6);
  color: var(--text-muted);
}
.sb-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-top: 8px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-muted);
}
.sb-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.1); background: rgba(0, 0, 0, 0.08); }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-section { padding: 120px 0; }
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
}
.services-head .section-desc { margin-bottom: 0; }

.services-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center; gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.svc-row:last-child { border-bottom: 1px solid var(--border); }
.svc-row:hover { padding-left: 16px; border-color: var(--accent); background: var(--surface); border-radius: var(--r); }
.svc-row:hover .svc-arrow { transform: rotate(0deg); color: var(--accent); }

.svc-num {
  font-family: var(--font-display);
  font-size: 0.9rem; color: var(--text-dim);
  letter-spacing: 0.04em;
}
.svc-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.02em;
  color: var(--text); margin-bottom: 4px;
}
.svc-info p { font-size: 0.85rem; color: var(--text-muted); max-width: 380px; }
.svc-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: flex-end;
}
.svc-tags span {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.04em;
}
.svc-arrow {
  font-size: 1.2rem; color: var(--text-dim);
  transition: all 0.3s var(--ease);
  transform: rotate(-45deg);
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section { padding: 120px 0; overflow: hidden; background: var(--bg2); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.about-left .section-title { margin-bottom: 40px; }
.about-blob-wrap { position: relative; display: inline-block; }
.about-blob {
  width: 280px; height: 280px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, #ddeaff, #c0d4ff);
  border: 1px solid var(--border-hi);
  overflow: hidden;
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  33% { border-radius: 60% 40% 45% 55% / 45% 55% 45% 55%; }
  66% { border-radius: 50% 50% 60% 40% / 55% 45% 50% 50%; }
}
.blob-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blob-3d-placeholder { position: relative; width: 140px; height: 140px; }
.b3d-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(0, 80, 220, 0.3);
}
.b3d-r1 { inset: 0; animation: b3dSpin 6s linear infinite; }
.b3d-r2 { inset: 20px; animation: b3dSpin 4s linear infinite reverse; border-style: dashed; }
.b3d-r3 { inset: 40px; animation: b3dSpin 8s linear infinite; opacity: 0.5; }
.b3d-core {
  position: absolute; inset: 52px;
  border-radius: 50%;
  background: var(--accent); opacity: 0.25;
}
@keyframes b3dSpin { to { transform: rotate(360deg); } }
.about-badge {
  position: absolute; bottom: -10px; right: -10px;
  padding: 6px 18px;
  background: var(--accent); color: #ffffff;
  font-size: 0.75rem; font-weight: 700;
  border-radius: var(--r-pill);
}
.about-big-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400; line-height: 1.5;
  color: var(--text); margin-bottom: 20px;
}
.about-big-text em { font-family: var(--font-serif); font-style: italic; color: var(--accent); }
.about-body { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.about-pills span {
  padding: 6px 16px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  transition: all 0.2s;
}
.about-pills span:hover { background: var(--accent); color: #fff; }
.about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.ag-item {
  padding: 18px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.ag-item:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.ag-item:hover .ag-icon, .ag-item:hover span { color: #fff; }
.ag-icon { font-size: 1.4rem; margin-bottom: 6px; color: var(--accent); }
.ag-item span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }

.about-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;   /* 65% dari 280px blob = ~182px, proporsional */
  height: auto;
  object-fit: contain;
  z-index: 10;
  pointer-events: none;
}

/* ══════════════════════════════
   PORTFOLIO
══════════════════════════════ */
.portfolio-section { padding: 120px 0; }
.portfolio-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.portfolio-head .section-title { margin-bottom: 0; }
.portfolio-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.pf-btn {
  padding: 6px 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted); border-radius: var(--r-pill);
  cursor: pointer; font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s;
}
.pf-btn.active, .pf-btn:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.pm-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  grid-row: span 1;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.pm-card.tall { grid-row: span 2; }
.pm-card.wide { grid-column: span 2; }
.pm-card:hover { transform: translateY(-6px) scale(1.01); border-color: var(--accent); box-shadow: 0 16px 40px rgba(0,80,220,0.14); }
.pm-card:hover .pmc-overlay { opacity: 1; }

.pmc-visual {
  position: absolute;  /* tambah ini */
  inset: 0;            /* full cover card */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pmc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;  /* foto mulai dari atas */
  display: block;
  transition: transform 0.5s ease;  /* bonus: zoom in saat hover */
}

.pm-card:hover .pmc-visual img {
  transform: scale(1.05);  /* zoom halus saat hover */
}
.pv1 { background: linear-gradient(135deg, #c8d8f0 0%, #8ab0e8 100%); }
.pv2 { background: linear-gradient(135deg, #c8e8f0 0%, #7ad0e8 100%); }
.pv3 { background: linear-gradient(135deg, #d8ccf0 0%, #a890e0 100%); }
.pv4 { background: linear-gradient(135deg, #cce0f8 0%, #88b8f0 100%); }
.pv5 { background: linear-gradient(135deg, #ccecf8 0%, #80c8f0 100%); }
.pv6 { background: linear-gradient(135deg, #d4d8f8 0%, #9098e8 100%); }

.pv-inner { width: 100%; }
.pv-bar { height: 6px; background: rgba(0,50,180,0.15); border-radius: 3px; margin-bottom: 12px; width: 40%; }
.pv-lines { display: flex; flex-direction: column; gap: 5px; }
.pvl { height: 5px; background: rgba(0,50,180,0.1); border-radius: 3px; }
.pvl.w65 { width: 65%; } .pvl.w45 { width: 45%; }
.pvl.w70 { width: 70%; } .pvl.w50 { width: 50%; }
.pvl.w55 { width: 55%; } .pvl.w35 { width: 35%; }
.pvl.w60 { width: 60%; } .pvl.w40 { width: 40%; }
.pvl.w75 { width: 75%; }
.pv-cards { display: flex; gap: 6px; margin-top: 10px; }
.pvc { flex: 1; height: 40px; background: rgba(0,50,180,0.07); border-radius: 6px; }

.pmc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,100,0.92) 0%, rgba(0,30,100,0.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.pmc-cat {
  display: inline-block; margin-bottom: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(180,210,255,0.8);
}
.pmc-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: #fff;
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.pmc-overlay p { font-size: 0.78rem; color: rgba(200,220,255,0.65); margin-bottom: 14px; }
.pmc-btn {
  display: inline-block; padding: 8px 18px;
  background: #fff; color: var(--accent);
  font-size: 0.78rem; font-weight: 700;
  border-radius: var(--r-pill); border: none;
  transition: all 0.2s; align-self: flex-start;
}
.pmc-btn:hover { background: rgba(255,255,255,0.88); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,30,100,0.55);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 560px; width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 30px 80px rgba(0,50,180,0.18);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all 0.2s;
}
.modal-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
#modalContent h2 {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--text);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
#modalContent .mc-tag {
  display: inline-block; margin-bottom: 16px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
#modalContent p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
#modalContent .mc-stack { display: flex; flex-wrap: wrap; gap: 8px; }
#modalContent .mc-stack span {
  padding: 5px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: 0.75rem; color: var(--accent); font-weight: 600;
}

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing-section { padding: 120px 0; background: var(--bg2); }
.pricing-section .section-title { margin-bottom: 12px; }
.pricing-section .section-desc { margin-bottom: 64px; }
.pricing-quart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-range {
  display: block;
  font-size: 0.8rem;
  color: #aab4cc;
  margin-top: 2px;
}

/* Responsive — 4 kolom jadi 2 di tablet */
@media (max-width: 900px) {
  .pricing-quart { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-quart { grid-template-columns: 1fr; }
}
.pt-card {
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  gap: 28px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.pt-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,80,220,0.12); }
.pt-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}
.pt-card.featured * { color: #ffffff !important; }
.pt-card.featured .ptc-badge { background: rgba(255,255,255,0.2); color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }
.pt-card.featured li.off { opacity: 0.35; }
.ptc-badge {
  display: inline-block; padding: 4px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  align-self: flex-start;
}
.ptc-top h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--text); margin-bottom: 8px;
}
.ptc-price { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 6px; }
.ptc-price strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--text);
  letter-spacing: 0.02em;
}
.ptc-top p { font-size: 0.85rem; color: var(--text-muted); }
.pt-card ul { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pt-card li { font-size: 0.85rem; color: var(--text); padding-left: 16px; position: relative; }
.pt-card li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; transform: translateY(-50%); }
.pt-card li.on::before { background: var(--accent); }
.pt-card li.off { color: var(--text-dim); }
.pt-card li.off::before { background: var(--text-dim); }
.ptc-btn {
  display: block; text-align: center;
  padding: 13px;
  border: 1.5px solid var(--border-hi);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.ptc-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ptc-btn.filled {
  background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.4);
}
.ptc-btn.filled:hover { background: rgba(255,255,255,0.3); }
.old-price {
  display: block;
  font-size: .95rem; color: #aab4cc;
  text-decoration: line-through;
  margin-bottom: 6px;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-section { padding: 120px 0; overflow: hidden; }
.testi-section .section-title { margin-bottom: 48px; }
.testi-scroll-wrap { overflow: hidden; }
.testi-scroll {
  display: flex; gap: 20px;
  transition: transform 0.6s var(--ease);
}
.tc {
  flex: 0 0 calc(33.333% - 14px);
  padding: 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tc:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,80,220,0.08); }
.tc-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.tc p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.85rem; color: var(--text); }
.tc-author span { font-size: 0.75rem; color: var(--text-muted); }
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.tn-btn {
  width: 40px; height: 40px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 50%; font-size: 1rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.tn-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.tn-dots { display: flex; gap: 6px; }
.tn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-dim); border: none;
  transition: all 0.3s;
}
.tn-dot.active { background: var(--accent); width: 20px; border-radius: 3px; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-section { padding: 120px 0; background: var(--bg2); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.faq-left p { color: var(--text-muted); margin-top: 16px; }
.faq-item {
  border-top: 1px solid var(--border);
  transition: border-color 0.2s;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item.open { border-color: var(--accent); }
.fq-btn {
  width: 100%; padding: 22px 0;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
}
.fq-btn span:first-child { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.fq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border-hi); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; transition: all 0.3s var(--ease);
}
.faq-item.open .fq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.fq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .fq-body { max-height: 160px; }
.fq-body p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  position: relative; overflow: hidden;
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #eef3ff 0%, #ddeaff 100%);
}
.cta-marquee-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; overflow: hidden;
  opacity: 0.05; pointer-events: none;
}
.ctam {
  display: flex; gap: 48px; width: max-content;
  font-family: var(--font-display);
  font-size: 8rem; letter-spacing: 0.05em;
  white-space: nowrap; color: var(--accent);
  animation: ctaRun 16s linear infinite;
}
@keyframes ctaRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cta-content { position: relative; z-index: 2; }
.cta-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.9; letter-spacing: 0.01em;
  color: var(--text); margin-bottom: 16px;
}
.cta-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { padding: 120px 0; }
.contact-simple { text-align: center; }
.contact-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto 20px; }
.contact-cards {
  display: grid; gap: 20px;
  max-width: 900px; margin: 40px auto;
}
.contact-card {
  display: flex; align-items: center; gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text);
  background: #ffffff;
  transition: 0.35s;
  text-decoration: none;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,80,220,0.12);
}
.cc-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--surface);
  color: var(--accent);
}
.cc-info { flex: 1; text-align: left; }
.cc-label { font-size: .85rem; color: var(--text-muted); }
.cc-info h4 { margin: 6px 0; font-size: 1.2rem; color: var(--text); }
.cc-info p { opacity: .7; margin: 0 0 12px; color: var(--text-muted); font-size: 0.9rem; }
.cc-arrow { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.contact-cta { text-align: center; margin-top: 20px; }

/* Tombol ganda WA & Sosmed */
.cc-wa-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.cc-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid var(--border-hi);
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent);
  transition: all 0.25s;
  text-decoration: none;
}
.cc-wa-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0a0f1e; /* gelap navy, bisa ganti sesuai palette */
}
.footer-inner { display: flex; flex-direction: column; }
.footer-top { display: flex; gap: 80px; margin-bottom: 64px; flex-wrap: wrap; }

/* Brand col */
.ft-brand { flex: 0 0 260px; }
.ft-logo { margin-bottom: 20px; }
.ft-logo img { width: 220px; height: auto; display: block; }
.ft-brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px;
}

/* Socials — pakai icon sekarang */
.ft-socials { display: flex; gap: 8px; }
.ft-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: rgba(255,255,255,0.55);
  transition: all 0.25s;
  text-decoration: none;
}
.ft-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Links cols */
.ft-links { display: flex; gap: 64px; flex: 1; flex-wrap: wrap; }
.ftl-col { display: flex; flex-direction: column; gap: 12px; }
.ftl-col h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.ftl-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  text-decoration: none;
}
.ftl-col a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════
   CONTACT FAB
══════════════════════════════ */
.contact-fab { position: fixed; right: 30px; bottom: 30px; z-index: 9999; }
.contact-trigger {
  width: 68px; height: 68px;
  border: none; border-radius: 20px; cursor: pointer;
  background: linear-gradient(135deg, #0060ff, #0040cc);
  color: #fff; font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,80,255,.32);
  transition: .35s;
}
.contact-trigger:hover { transform: translateY(-5px) scale(1.05); }
.contact-menu {
  position: absolute; bottom: 85px; right: 0;
  width: 300px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: .35s;
  box-shadow: 0 20px 60px rgba(0,50,180,0.15);
}
.contact-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.contact-header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.contact-header strong { font-size: 15px; color: var(--text); }
.contact-header span { font-size: 12px; color: var(--text-muted); }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text);
  padding: 14px; border-radius: 16px;
  background: var(--surface);
  transition: .3s;
}
.contact-item:hover { background: var(--accent); color: #fff; transform: translateX(-4px); }
.contact-item:hover i, .contact-item:hover strong, .contact-item:hover span { color: #fff; }
.contact-item i { font-size: 22px; width: 24px; color: var(--accent); }
.contact-item strong { display: block; font-size: 14px; }
.contact-item span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* @media (max-width: 1100px) {
  .hero-content { max-width: 55%; }
}
@media (max-width: 900px) {
  .hero-content { max-width: 100%; }
  .spline-wrap { display: none; }
  .about-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-section .services-head { flex-direction: column; align-items: flex-start; }
  .portfolio-masonry { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .pm-card.wide { grid-column: span 1; }
  .pricing-trio { grid-template-columns: 1fr; max-width: 400px; }
  .tc { flex: 0 0 calc(50% - 10px); }
  .svc-row { grid-template-columns: 32px 1fr; gap: 16px; }
  .svc-tags, .svc-arrow { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 100px 32px 32px;
    gap: 8px; z-index: 999;
    justify-content: center;
  }
  .nav-links.open { display: flex; }
  .nl { font-size: 1.8rem; font-family: var(--font-display); letter-spacing: 0.06em; padding: 12px 0; color: var(--text); }
  .hamburger { display: flex; z-index: 1001; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .pm-card.tall, .pm-card.wide { grid-row: span 1; grid-column: span 1; }
  .tc { flex: 0 0 100%; }
  .about-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { flex-direction: column; gap: 40px; }
  .sb-inner { flex-direction: column; gap: 24px; }
  .sb-divider { width: 40px; height: 1px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cursor, #cursor-dot { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
} */