/* ============================================
   PT BEAROSE RAKSAKA SOLUSI — Website Styles
   v2.0 — Dark Theme (matches brief mockup)
   May 2026
   ============================================ */

:root {
  --green:       #a6ce39;
  --green-bright:#bce049;
  --green-soft:  rgba(166,206,57,0.14);
  --green-glow:  rgba(166,206,57,0.30);
  --lime:        #CEE74D;

  --bg-0:        #0a0c10;   /* outer background */
  --bg-1:        #0f1217;   /* section background */
  --bg-2:        #161a21;   /* card surface */
  --bg-3:        #1d2129;   /* elevated card */
  --line:        rgba(255,255,255,0.08);
  --line-2:      rgba(255,255,255,0.14);

  --text:        #e8ecef;
  --text-muted:  #9aa3ad;
  --text-dim:    #5e6772;

  --light-bg:    #f7f9f3;   /* light pocket section bg */
  --light-card:  #ffffff;
  --light-text:  #1a1d20;
  --light-muted: #5e6772;

  --font-header: "Century Gothic", "Futura", "Avenir", "Inter", system-ui, sans-serif;
  --font-body:   "Aptos", "Inter", "Segoe UI", sans-serif;
  --font-mono:   "JetBrains Mono", "Consolas", "SF Mono", monospace;

  --maxw:   1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 6px 28px rgba(0,0,0,0.35);
  --shadow-glow: 0 12px 40px rgba(166,206,57,0.20);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .5em 0;
  color: var(--text);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,12,16,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 28px; filter: brightness(0) invert(1); }
.nav-menu {
  display: flex; gap: 36px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li > a {
  font-size: 14px; font-weight: 500;
  color: var(--text); padding: 8px 0;
  position: relative;
}
.nav-menu > li > a:hover { color: var(--green); }
.nav-menu > li > a.active { color: var(--green); }
.nav-menu > li > a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--green);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -16px; margin-top: 6px;
  min-width: 280px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .25s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-radius: 4px;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.dropdown a:hover { background: var(--green-soft); color: var(--green); }
.dropdown a.disabled { color: var(--text-dim); pointer-events: none; }
.dropdown a.disabled::after {
  content: 'Soon'; font-size: 10px; background: var(--bg-3);
  padding: 2px 8px; border-radius: 99px; color: var(--text-muted);
}
.nav-cta {
  background: var(--green); color: #0a0c10 !important;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.nav-cta:hover {
  background: var(--green-bright); transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.mobile-toggle {
  display: none; background: transparent; border: none;
  cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 80px; background: var(--bg-0);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 40%, rgba(166,206,57,0.10), transparent 60%),
    radial-gradient(circle at 78% 60%, rgba(206,231,77,0.05), transparent 50%);
  pointer-events: none;
}
.hero-grid-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--green-soft);
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  margin: 0 0 24px; max-width: 880px;
  color: var(--text);
}
.hero-title .accent { color: var(--green); }
.hero-title .line-block { display: block; }
.hero-sub {
  font-size: 1.0625rem; max-width: 660px;
  color: var(--text-muted); line-height: 1.65;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: 0.03em;
  cursor: pointer; transition: all .25s ease;
  border: 1px solid transparent;
  text-transform: none;
}
.btn-primary {
  background: var(--green); color: #0a0c10;
}
.btn-primary:hover {
  background: var(--green-bright); color: #0a0c10;
  transform: translateY(-1px); box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--line-2);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  font-size: 12px;
}
.btn-ghost:hover { color: var(--green); }
.btn-sm { padding: 8px 14px; font-size: 12px; }

/* ============ SECTIONS ============ */
section { padding: 80px 0; position: relative; }
.section-bg-light {
  background: var(--light-bg); color: var(--light-text);
}
.section-bg-light h1, .section-bg-light h2, .section-bg-light h3,
.section-bg-light h4, .section-bg-light h5 { color: var(--light-text); }
.section-eyebrow {
  display: inline-block; padding: 5px 12px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--green-soft); border-radius: 99px;
  margin-bottom: 16px;
}
.section-bg-light .section-eyebrow { background: rgba(166,206,57,0.18); }
.section-title {
  font-size: clamp(1.875rem, 3.2vw, 2.6rem);
  margin: 0 0 12px; line-height: 1.15;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 720px; margin: 0;
}
.section-bg-light .section-sub { color: var(--light-muted); }

/* ============ BUSINESS LINE CARDS ============ */
.lines-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 32px;
}
.line-card {
  background: var(--light-card); color: var(--light-text);
  border: 1px solid #e5e7e0;
  border-radius: var(--radius);
  padding: 28px; transition: all .25s ease;
  display: block; position: relative;
}
.line-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--green);
}
.line-card.disabled {
  background: #f0f1ec; color: var(--light-muted);
  opacity: 0.7; pointer-events: none;
}
.line-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  color: var(--light-muted); letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.line-card h3 {
  font-size: 1.375rem; margin: 0 0 8px;
  color: var(--light-text);
}
.line-card .line-tag {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; padding: 4px 10px;
  background: var(--green); color: #0a0c10;
  border-radius: 99px; letter-spacing: 0.1em;
}
.line-card.disabled .line-tag { background: #cfd2c8; color: var(--light-muted); }
.line-eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin: 14px 0 6px;
}
.line-card.disabled .line-eyebrow { color: var(--light-muted); }
.line-card p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--light-muted); margin: 0;
}
.line-cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.line-card.disabled .line-cta { color: var(--light-muted); }

/* ============ STATS BAND ============ */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 56px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  text-align: center; border-right: 1px solid var(--line);
  padding: 8px 16px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-header); font-size: 3.2rem;
  font-weight: 800; color: var(--green); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* ============ MARI DISKUSI CTA ============ */
.mari-cta {
  text-align: center; padding: 80px 0; background: var(--bg-0);
}
.mari-cta h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 12px;
}
.mari-cta .accent { color: var(--green); }
.mari-cta p { color: var(--text-muted); margin-bottom: 32px; }
.mari-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-1); color: var(--text-muted);
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand .footer-addr {
  font-size: 13px; line-height: 1.6; color: var(--text-muted);
  margin: 8px 0;
}
.footer-brand .footer-tagline {
  color: var(--green); font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-top: 14px;
}
.footer-col h4 {
  color: var(--text); font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 13px; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 11px; color: var(--text-dim);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}

/* ============ ABOUT PAGE ============ */
.about-hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.vm-card {
  background: var(--light-card); color: var(--light-text);
  border-radius: var(--radius); padding: 32px;
  border-top: 4px solid var(--green);
}
.vm-card .vm-label {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.vm-card h3 {
  font-size: 1.5rem; color: var(--light-text);
  line-height: 1.3; margin: 0;
}

.timeline-section { padding: 80px 0; }
.timeline {
  position: relative; max-width: 920px; margin: 40px auto 0;
  padding-left: 32px;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line-2);
}
.timeline-item {
  position: relative; padding-bottom: 36px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 8px;
  width: 18px; height: 18px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(166,206,57,0.18);
}
.timeline-year {
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.12em; margin-bottom: 6px;
}
.timeline-item h4 {
  font-size: 1.25rem; margin-bottom: 6px;
}
.timeline-item p {
  color: var(--text-muted); font-size: 14px; margin: 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.contact-cell {
  background: var(--light-card); color: var(--light-text);
  border-radius: var(--radius-sm); padding: 22px;
  border: 1px solid #e5e7e0;
}
.contact-cell .ci-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; color: var(--light-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-cell .ci-icon {
  width: 32px; height: 32px;
  background: var(--green-soft); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 16px;
}
.contact-cell strong { font-size: 14px; display: block; line-height: 1.4; }
.contact-cell a { color: var(--light-text); }
.contact-cell a:hover { color: var(--green); }

/* ============ CAPABILITIES (Industrial) ============ */
.cap-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 40px;
}
.cap-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px;
  transition: all .25s ease;
}
.cap-card:hover {
  border-color: var(--green); transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.cap-num {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.cap-card h4 {
  font-size: 14px; line-height: 1.3;
  margin: 0 0 8px;
}
.cap-card p {
  font-size: 12px; color: var(--text-muted);
  margin: 0; line-height: 1.5;
}

/* ============ DOWNLOAD PROFILE BOX ============ */
.profile-box {
  background: linear-gradient(135deg, var(--green-soft), rgba(206,231,77,0.06));
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin: 32px 0;
}
.profile-box .pb-info { flex: 1; min-width: 240px; }
.profile-box h4 {
  font-size: 1.125rem; margin: 0 0 4px;
}
.profile-box p {
  font-size: 13px; color: var(--text-muted); margin: 0;
}

/* ============ BRANDS GRID ============ */
.brands-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px; margin-top: 32px;
}
.brand-tile {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 12px;
  text-align: center;
  font-family: var(--font-header); font-weight: 700;
  font-size: 15px; color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: all .25s ease;
}
.brand-tile:hover { color: var(--green); border-color: var(--green); }

/* ============ FILTER TABS ============ */
.filter-section {
  background: var(--bg-1); padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.filter-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 7px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.filter-tab:hover { color: var(--text); border-color: var(--line-2); }
.filter-tab.active {
  background: var(--green); color: #0a0c10;
  border-color: var(--green);
}
.filter-meta {
  font-size: 12px; color: var(--text-muted); margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-meta a { color: var(--green); font-weight: 700; }

/* ============ PROJECT GRID ============ */
.project-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s ease; cursor: pointer;
  display: block;
}
.project-card:hover {
  transform: translateY(-4px); border-color: var(--green);
  box-shadow: var(--shadow-glow);
}
.project-cover {
  width: 100%; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--bg-3); position: relative;
}
.project-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.project-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; z-index: 2;
}
.project-badge {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; padding: 4px 10px;
  background: rgba(0,0,0,0.85); color: var(--text);
  border: 1px solid var(--line); border-radius: 99px;
  letter-spacing: 0.1em;
}
.project-badge.green { background: var(--green); color: #0a0c10; border-color: var(--green); }
.project-info { padding: 16px 18px; }
.project-info h4 {
  font-size: 0.9375rem; line-height: 1.35;
  margin: 0 0 6px;
}
.project-info .pi-client {
  font-size: 12px; color: var(--text-muted); margin: 0;
}

.year-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 32px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.year-stats .stat-item { padding: 24px 16px; }
.year-stats .stat-value { font-size: 2.4rem; }
.year-stats .stat-label { font-size: 10px; }

/* ============ PROJECT DETAIL ============ */
.detail-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted); letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }
.detail-num {
  font-family: var(--font-mono); font-size: 12px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.18em; margin-bottom: 8px;
}
.detail-title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  margin: 0 0 18px;
}
.detail-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.tag-pill {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; padding: 5px 12px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 99px; letter-spacing: 0.05em;
  color: var(--text-muted);
}
.tag-pill.green { background: var(--green); color: #0a0c10; border-color: var(--green); }

.detail-meta {
  display: flex; gap: 32px; flex-wrap: wrap; margin: 24px 0;
  padding: 20px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-item {
  display: flex; flex-direction: column;
}
.meta-item .ml-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 4px;
}
.meta-item .ml-value { font-size: 14px; font-weight: 600; }

/* ============ GALLERY ============ */
.gallery-section { padding: 56px 0; }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 160px; gap: 8px;
}
.gallery-item {
  background-size: cover; background-position: center;
  border-radius: var(--radius-sm); cursor: zoom-in;
  background-color: var(--bg-2);
  position: relative; overflow: hidden;
  transition: all .25s ease;
}
.gallery-item.hero-img {
  grid-row: span 2; grid-column: span 1;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .2s;
}
.gallery-item:hover::after { background: rgba(166,206,57,0.10); }
.gallery-caption {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.05em;
  background: rgba(0,0,0,0.55); padding: 3px 8px;
  border-radius: 4px; z-index: 2;
}
.gallery-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.gallery-nav .nav-btns { display: flex; gap: 8px; }

/* ============ BRIEF + SIDEBAR ============ */
.brief-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 48px; padding: 56px 0;
}
.brief-content h2 { font-size: 1.75rem; margin-bottom: 16px; }
.brief-content p {
  color: var(--text-muted); line-height: 1.7; margin: 0 0 14px;
}
.scope-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: 100px;
  align-self: start;
}
.scope-card h4 {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 18px;
}
.scope-list { list-style: none; padding: 0; margin: 0; }
.scope-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.scope-list li:last-child { border-bottom: none; }
.scope-list li::before {
  content: '✓'; color: var(--green); font-weight: 700;
  flex: 0 0 auto;
}

/* ============ CONSULTING — PROBLEM CARDS ============ */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 32px;
}
.problem-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px;
}
.problem-card .p-num {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.problem-card h4 { font-size: 14px; margin: 0 0 8px; }
.problem-card p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============ CONSULTING — 3 JALUR ============ */
.jalur-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.jalur-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  position: relative;
}
.jalur-card.highlighted {
  background: var(--green-soft); border-color: var(--green);
  transform: scale(1.02);
}
.jalur-card.highlighted::before {
  content: 'RECOMMENDED'; position: absolute; top: -12px; left: 24px;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; padding: 4px 12px;
  background: var(--green); color: #0a0c10;
  border-radius: 99px; letter-spacing: 0.15em;
}
.jalur-card .j-num {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; color: var(--green);
  letter-spacing: 0.15em; margin-bottom: 12px;
}
.jalur-card h4 {
  font-size: 1.25rem; margin: 0 0 14px;
}
.jalur-card ul {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.jalur-card li {
  padding: 6px 0 6px 18px; position: relative;
  font-size: 13px; color: var(--text-muted);
}
.jalur-card li::before {
  content: '→'; position: absolute; left: 0; color: var(--green);
}
.jalur-card .j-price {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text); padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ============ ARTICLES ============ */
.article-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 32px;
}
.article-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s ease; display: block;
}
.article-card:hover {
  border-color: var(--green); transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.article-cover {
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
}
.article-info { padding: 18px; }
.article-tag {
  display: inline-block; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; background: var(--green-soft);
  color: var(--green); border-radius: 99px;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.article-info h4 {
  font-size: 1rem; line-height: 1.35;
  margin: 0 0 10px;
}
.article-info p {
  font-size: 12.5px; color: var(--text-muted);
  line-height: 1.5; margin: 0 0 10px;
}
.article-meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.05em;
}

/* ============ RFQ / INQUIRY FORM ============ */
.form-section {
  background: var(--bg-1); padding: 64px 0;
}
.form-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  max-width: 880px; margin: 0 auto;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  margin-bottom: 6px; color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ============ ADMIN STUDIO ============ */
.studio-shell {
  display: grid; grid-template-columns: 240px 380px 1fr;
  min-height: 100vh; background: var(--bg-0);
}
.studio-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; padding: 0 16px;
  background: var(--bg-1); border-bottom: 1px solid var(--line);
  height: 48px; font-size: 12px;
  gap: 12px;
}
.studio-bar .url-bar {
  flex: 1; font-family: var(--font-mono);
  color: var(--text-muted); font-size: 11px;
}
.studio-pill {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 10px; border-radius: 99px;
  background: var(--green); color: #0a0c10; font-weight: 700;
  letter-spacing: 0.1em;
}

.studio-sidebar {
  background: var(--bg-1); border-right: 1px solid var(--line);
  padding: 20px 12px;
  overflow-y: auto;
}
.studio-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 16px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.studio-brand img { height: 22px; filter: brightness(0) invert(1); }
.studio-brand strong {
  font-family: var(--font-header); font-size: 12px;
  color: var(--text);
}
.studio-brand small {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); padding: 2px 8px; background: var(--bg-3);
  border-radius: 4px;
}
.studio-section { margin-bottom: 18px; }
.studio-label {
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px;
}
.studio-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 4px;
  font-size: 12.5px; color: var(--text-muted);
}
.studio-nav a:hover { background: var(--bg-2); color: var(--text); }
.studio-nav a.active { background: var(--green); color: #0a0c10; font-weight: 700; }
.studio-nav a .count {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  padding: 2px 7px; background: rgba(255,255,255,0.06);
  border-radius: 99px; color: var(--text-muted);
}
.studio-nav a.active .count { background: rgba(0,0,0,0.18); color: #0a0c10; }
.studio-user {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  padding: 10px; background: var(--bg-2); border-radius: 6px;
  display: flex; align-items: center; gap: 10px;
}
.studio-user .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #0a0c10;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}

.studio-list {
  background: var(--bg-1); border-right: 1px solid var(--line);
  overflow-y: auto;
}
.studio-list-head {
  position: sticky; top: 0; z-index: 5;
  padding: 16px; background: var(--bg-1);
  border-bottom: 1px solid var(--line);
}
.studio-list-head h3 {
  font-size: 13px; margin: 0 0 10px;
  font-family: var(--font-header);
  display: flex; align-items: center; justify-content: space-between;
}
.studio-search {
  width: 100%; padding: 8px 12px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 4px; color: var(--text); font-size: 12px;
}
.studio-tabs {
  display: flex; gap: 2px; padding: 12px 12px 0;
}
.studio-tabs .tab {
  padding: 5px 10px; font-size: 11px;
  font-family: var(--font-mono); color: var(--text-muted);
  cursor: pointer; border-bottom: 2px solid transparent;
  letter-spacing: 0.05em;
}
.studio-tabs .tab.active { color: var(--green); border-color: var(--green); }

.doc-item {
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .2s;
}
.doc-item:hover { background: var(--bg-2); }
.doc-item.selected { background: var(--green-soft); border-left: 3px solid var(--green); }
.doc-item .doc-num {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.doc-item .doc-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.doc-item .doc-sub { font-size: 11px; color: var(--text-muted); }
.doc-item .doc-status {
  display: inline-block; font-family: var(--font-mono); font-size: 9px;
  padding: 2px 7px; border-radius: 99px;
  font-weight: 700; letter-spacing: 0.1em; margin-top: 6px;
}
.doc-status.live { background: var(--green); color: #0a0c10; }
.doc-status.draft { background: var(--bg-3); color: var(--text-muted); }

.studio-editor {
  background: var(--bg-1); padding: 0;
  overflow-y: auto;
}
.editor-head {
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.editor-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--green); letter-spacing: 0.15em; margin-bottom: 4px;
}
.editor-head h2 { font-size: 1.25rem; margin: 0; }
.editor-meta {
  font-size: 11px; color: var(--text-muted);
  font-family: var(--font-mono); margin-top: 4px;
}
.editor-body { padding: 24px; }
.field-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px;
  margin-bottom: 14px;
}
.field-card h4 {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green); letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 14px;
}
.field-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px;
  display: block;
}
.field-value {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 4px; padding: 8px 12px;
  font-size: 13px; color: var(--text);
  margin-bottom: 10px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-mini {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-top: 8px;
}
.gallery-mini > div {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  background-color: var(--bg-3); border-radius: 4px;
}
.gallery-mini .drop {
  border: 2px dashed var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--text-muted); text-align: center; padding: 4px;
}

/* ============ SITEMAP PAGE ============ */
.sitemap-tree {
  background: var(--bg-1); border-radius: var(--radius);
  padding: 40px; margin-top: 32px; border: 1px solid var(--line);
}
.sitemap-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
}
.sitemap-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dot {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--bg-2); border: 1px solid var(--line);
}
.legend-dot.active { background: var(--green); border-color: var(--green); }
.legend-dot.soon { background: var(--bg-3); }
.legend-dot.dynamic { background: var(--green-soft); border-color: var(--green); }
.sitemap-node {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px;
  margin-bottom: 12px;
}
.sitemap-node .sn-path {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green); margin-bottom: 4px;
}
.sitemap-node h4 { font-size: 14px; margin: 0 0 4px; }
.sitemap-node p { font-size: 12px; color: var(--text-muted); margin: 0; }
.sitemap-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ============ RESPONSIVE ============ */
/* ============================================
   INTERACTIVE ANIMATIONS — v3.1
   Respects prefers-reduced-motion
   ============================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  z-index: 200; pointer-events: none;
  box-shadow: 0 0 8px var(--green);
  transition: width 0.08s linear;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #0a0c10 !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(166,206,57,0.45);
  z-index: 90;
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.10) rotate(-6deg);
  background: var(--green-bright); color: #0a0c10 !important;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(166,206,57,0.45), 0 0 0 0 rgba(166,206,57,0.55); }
  50%      { box-shadow: 0 10px 30px rgba(166,206,57,0.45), 0 0 0 22px rgba(166,206,57,0); }
}

/* Reveal-on-scroll base */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px);  }
.reveal.from-left.in, .reveal.from-right.in { transform: translateX(0); }

/* Hero text stagger reveal */
.hero-title .line-block {
  display: block;
  opacity: 0; transform: translateY(24px);
  animation: line-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line-block:nth-child(1) { animation-delay: 0.20s; }
.hero-title .line-block:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line-block:nth-child(3) { animation-delay: 0.50s; }
@keyframes line-rise { to { opacity: 1; transform: translateY(0); } }

.hero-content .eyebrow {
  opacity: 0; animation: fade-in 0.6s ease 0.05s forwards;
}
.hero-content .hero-sub {
  opacity: 0; animation: fade-in 0.6s ease 0.70s forwards;
}
.hero-content .hero-actions {
  opacity: 0; animation: fade-in 0.6s ease 0.85s forwards;
}
.breadcrumb {
  opacity: 0; animation: fade-in 0.5s ease 0.05s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* Hero mouse-tracked spotlight */
.hero { --mx: 50%; --my: 40%; }
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle 520px at var(--mx) var(--my),
    rgba(166,206,57,0.18) 0%, transparent 55%);
  pointer-events: none;
  transition: background-position 0.1s ease;
}
.hero-content { position: relative; z-index: 3; }

/* Header shrink on scroll */
.site-header {
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10,12,16,0.97);
  border-bottom-color: var(--line-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.site-header.scrolled .nav-wrap { height: 56px; transition: height 0.3s ease; }
.site-header .nav-wrap { transition: height 0.3s ease; }
.site-header .nav-logo img { transition: height 0.3s ease; }
.site-header.scrolled .nav-logo img { height: 24px; }

/* Nav link underline (animated draw) */
.nav-menu > li > a {
  position: relative; overflow: visible;
}
.nav-menu > li > a:not(.nav-cta)::before {
  content: ''; position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px; background: var(--green);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-menu > li > a:not(.nav-cta):hover::before { right: 0; }

/* Line cards — 3D tilt on hover (JS will compute) */
.line-card {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.line-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle 180px at var(--lx, 50%) var(--ly, 50%),
    rgba(166,206,57,0.10), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.line-card:hover::after { opacity: 1; }
.line-card:hover .line-num { transform: translateX(6px); }
.line-num { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.line-card .line-cta {
  position: relative; transition: gap 0.25s ease, color 0.25s ease;
}
.line-card:not(.disabled):hover .line-cta { gap: 10px; }

/* Magnetic buttons (JS-driven) */
.btn-primary, .btn-outline {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

/* Card stagger — apply via JS .reveal[data-stagger="N"] */
.reveal[data-stagger="1"] { transition-delay: 0.05s; }
.reveal[data-stagger="2"] { transition-delay: 0.10s; }
.reveal[data-stagger="3"] { transition-delay: 0.15s; }
.reveal[data-stagger="4"] { transition-delay: 0.20s; }
.reveal[data-stagger="5"] { transition-delay: 0.25s; }
.reveal[data-stagger="6"] { transition-delay: 0.30s; }

/* Brand-tile pop */
.brand-tile {
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.brand-tile:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--green); color: #0a0c10;
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(166,206,57,0.30);
}

/* Project card image zoom + overlay */
.project-card { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.25s ease; }
.project-cover {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.project-card:hover .project-cover {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.1);
}
.project-card:hover .project-badge.green {
  animation: badge-bounce 0.4s ease;
}
@keyframes badge-bounce {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.10); }
}

/* Article card cover zoom */
.article-cover {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-card:hover .article-cover { transform: scale(1.05); }

/* Stat count-up — initial state hidden number, counter restored by JS */
.stat-value {
  font-variant-numeric: tabular-nums;
}

/* Capability cards + Problem cards hover */
.cap-card, .problem-card {
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.cap-card:hover .cap-num, .problem-card:hover .p-num {
  letter-spacing: 0.18em;
}
.cap-num, .p-num {
  transition: letter-spacing 0.3s ease;
}

/* Jalur card — highlighted breathe */
.jalur-card.highlighted::before {
  animation: tag-breathe 2.6s ease-in-out infinite;
}
@keyframes tag-breathe {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 14px rgba(166,206,57,0.30); }
  50%      { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(166,206,57,0.45); }
}

/* Timeline dots — pulse on entry */
.timeline-item.in::before {
  animation: dot-pop 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dot-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.20); }
  100% { transform: scale(1); }
}

/* Filter tab hover */
.filter-tab { transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1); }
.filter-tab:hover { transform: translateY(-1px); }

/* Form input focus glow */
.form-group input, .form-group select, .form-group textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(166,206,57,0.20);
}

/* Section eyebrow hover (interactive) */
.section-eyebrow, .eyebrow {
  position: relative; overflow: hidden;
}
.section-eyebrow::before, .eyebrow::before {
  content: ''; position: absolute; left: -100%; top: 0; bottom: 0;
  width: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  animation: eyebrow-shine 4s ease-in-out infinite;
}
@keyframes eyebrow-shine {
  0%, 80% { left: -100%; }
  100% { left: 100%; }
}

/* Skewed accent on btn-primary */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -150%;
  width: 100%; height: 100%; transform: skewX(-25deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover::before { left: 150%; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title .line-block { opacity: 1 !important; transform: none !important; }
  .wa-float { animation: none; }
  .hero::before { display: none; }
}

/* ============ ERP MODULES ============ */
.erp-shell {
  display: grid; grid-template-columns: 240px 1fr;
  min-height: 100vh; background: var(--bg-0);
}
.erp-main { padding: 24px 32px; overflow-x: hidden; }
.erp-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.erp-head h1 {
  font-size: 1.5rem; margin: 0 0 4px;
}
.erp-head .erp-sub {
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.erp-actions { display: flex; gap: 8px; }
.erp-period {
  display: flex; gap: 4px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 3px;
}
.erp-period button {
  padding: 6px 12px; font-size: 11px;
  font-family: var(--font-mono); letter-spacing: 0.05em;
  background: transparent; color: var(--text-muted);
  border: none; cursor: pointer; border-radius: 4px;
}
.erp-period button.active {
  background: var(--green); color: #0a0c10; font-weight: 700;
}

/* KPI row */
.kpi-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.kpi-card-compact {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px;
}
.kpi-card-compact .kpi-label-c {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 6px;
}
.kpi-card-compact .kpi-value-c {
  font-family: var(--font-header); font-size: 1.5rem;
  font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 6px;
}
.kpi-card-compact .kpi-value-c.green { color: var(--green); }
.kpi-card-compact .kpi-delta-c {
  font-size: 11px; font-family: var(--font-mono);
  display: flex; align-items: center; gap: 4px;
}
.kpi-delta-c.up    { color: var(--green); }
.kpi-delta-c.down  { color: #e07a7a; }
.kpi-delta-c.flat  { color: var(--text-muted); }

/* Data tables */
.data-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 16px;
  overflow: hidden;
}
.data-card-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.data-card-head h3 {
  font-size: 13px; margin: 0;
  font-family: var(--font-header);
}
.data-card-head .head-sub {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.1em;
}
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.data-table thead {
  background: var(--bg-1);
}
.data-table th {
  text-align: left; padding: 10px 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.data-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover { background: rgba(255,255,255,0.02); }
.data-table .num {
  font-family: var(--font-mono); font-size: 12.5px;
  text-align: right; white-space: nowrap;
}
.data-table .num.positive { color: var(--green); }
.data-table .num.negative { color: #e07a7a; }
.data-table .col-id {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--green); white-space: nowrap;
}
.data-table .col-title { font-weight: 600; }
.data-table .col-sub {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
}

/* Status badges */
.pill {
  display: inline-block; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 99px;
  letter-spacing: 0.1em;
}
.pill-live   { background: var(--green); color: #0a0c10; }
.pill-progress { background: rgba(255,180,50,0.18); color: #f5b342; }
.pill-pending  { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.pill-closed   { background: var(--bg-3); color: var(--text-muted); }
.pill-quote    { background: rgba(100,150,255,0.18); color: #7eaeff; }
.pill-paid     { background: var(--green); color: #0a0c10; }
.pill-unpaid   { background: rgba(224,122,122,0.20); color: #e07a7a; }
.pill-partial  { background: rgba(255,180,50,0.18); color: #f5b342; }

/* Progress bar */
.progress-bar {
  width: 100%; height: 6px;
  background: var(--bg-3); border-radius: 99px;
  overflow: hidden; min-width: 80px;
}
.progress-bar > span {
  display: block; height: 100%;
  background: var(--green); border-radius: 99px;
}
.progress-bar.warn > span { background: #f5b342; }
.progress-bar.danger > span { background: #e07a7a; }

/* Mini bar chart */
.mini-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 60px; padding: 8px 0;
}
.mini-chart .bar {
  flex: 1; background: var(--green-soft);
  border-radius: 3px 3px 0 0; min-height: 4px;
  position: relative;
  transition: background .2s;
}
.mini-chart .bar:hover { background: var(--green); }
.mini-chart .bar.peak { background: var(--green); }

/* Two-column section in ERP */
.erp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.erp-grid.cols-3 { grid-template-columns: 2fr 1fr; }

/* Trend chart bars (taller) */
.trend-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 160px; padding: 16px;
  border-top: 1px solid var(--line);
}
.trend-chart .bar-wrap {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.trend-chart .bar {
  width: 100%; max-width: 36px;
  background: linear-gradient(180deg, var(--green), var(--green-soft));
  border-radius: 4px 4px 0 0; min-height: 6px;
  transition: opacity .2s;
}
.trend-chart .bar:hover { opacity: 0.85; }
.trend-chart .bar.muted {
  background: linear-gradient(180deg, var(--bg-3), rgba(60,60,70,0.3));
}
.trend-chart .bar-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.trend-chart .bar-value {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text); font-weight: 700;
  position: absolute; bottom: 100%; padding: 2px 4px;
  transform: translateY(-4px);
}

/* P&L Statement */
.pnl-table {
  width: 100%; border-collapse: collapse;
}
.pnl-table tr.section td {
  padding: 14px; background: var(--bg-1);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  border-top: 1px solid var(--green);
}
.pnl-table tr.subtotal td {
  border-top: 1px solid var(--line);
  font-weight: 700; padding: 14px;
}
.pnl-table tr.total td {
  border-top: 2px solid var(--green);
  background: var(--green-soft);
  padding: 16px 14px; font-weight: 700;
}
.pnl-table tr.total td .num { color: var(--green); font-size: 14px; }
.pnl-table td:first-child { padding-left: 24px; }
.pnl-table td:last-child  {
  text-align: right; font-family: var(--font-mono);
  font-size: 13px; white-space: nowrap;
}
.pnl-table tr.indent td:first-child { padding-left: 44px; color: var(--text-muted); font-size: 12.5px; }

/* Job header card */
.job-header {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 24px; margin-bottom: 16px;
}
.job-header h2 {
  font-size: 1.25rem; margin: 0 0 8px;
}
.job-header-meta {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.job-header-meta .item-l {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 4px;
}
.job-header-meta .item-v {
  font-size: 14px; font-weight: 600;
}

/* Aging table */
.aging-table th, .aging-table td {
  text-align: center;
}
.aging-table td.col-id, .aging-table th:first-child,
.aging-table td:first-child { text-align: left; }
.aging-cell {
  font-family: var(--font-mono); font-size: 12px;
  padding: 4px 8px; border-radius: 4px;
  background: var(--bg-3); display: inline-block;
  min-width: 90px;
}
.aging-cell.warn   { background: rgba(255,180,50,0.18); color: #f5b342; }
.aging-cell.danger { background: rgba(224,122,122,0.20); color: #e07a7a; }

/* Search & filter row in ERP */
.erp-filter {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  padding: 12px 18px; border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.erp-filter select, .erp-filter input {
  padding: 7px 12px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 6px;
  color: var(--text); font-size: 12px;
  font-family: var(--font-body);
}
.erp-filter input:focus, .erp-filter select:focus {
  outline: none; border-color: var(--green);
}

/* Responsive */
@media (max-width: 1100px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .studio-shell { grid-template-columns: 200px 1fr 1fr; }
  .kpi-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .lines-grid, .why-grid, .cap-grid, .project-grid,
  .gallery-grid, .footer-grid, .about-hero-cards,
  .brief-grid, .problem-grid, .jalur-grid, .article-grid,
  .contact-grid, .stats-band, .year-stats, .form-row,
  .field-row, .brands-grid, .sitemap-row {
    grid-template-columns: 1fr;
  }
  .stats-band .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .studio-shell { grid-template-columns: 1fr; }
  .studio-sidebar { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
}
mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.05em;
}

/* ============ RFQ / INQUIRY FORM ============ */
.form-section {
  background: var(--bg-1); padding: 64px 0;
}
.form-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  max-width: 880px; margin: 0 auto;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  margin-bottom: 6px; color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ============ ADMIN STUDIO ============ */
.studio-shell {
  display: grid; grid-template-columns: 240px 380px 1fr;
  min-height: 100vh; background: var(--bg-0);
}
.studio-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; padding: 0 16px;
  background: var(--bg-1); border-bottom: 1px solid var(--line);
  height: 48px; font-size: 12px; gap: 12px;
}
.studio-bar .url-bar {
  flex: 1; font-family: var(--font-mono);
  color: var(--text-muted); font-size: 11px;
}
.studio-pill {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 10px; border-radius: 99px;
  background: var(--green); color: #0a0c10; font-weight: 700;
  letter-spacing: 0.1em;
}
.studio-sidebar {
  background: var(--bg-1); border-right: 1px solid var(--line);
  padding: 20px 12px; overflow-y: auto;
}
.studio-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 16px 8px;
  border-bottom: 1px solid var(--line); margin-bottom: 16px;
}
.studio-brand img { height: 22px; filter: brightness(0) invert(1); }
.studio-brand strong { font-family: var(--font-header); font-size: 12px; color: var(--text); }
.studio-brand small {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); padding: 2px 8px; background: var(--bg-3);
  border-radius: 4px;
}
.studio-section { margin-bottom: 18px; }
.studio-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: var(--text-dim); letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 10px;
}
.studio-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 4px;
  font-size: 12.5px; color: var(--text-muted);
}
.studio-nav a:hover { background: var(--bg-2); color: var(--text); }
.studio-nav a.active { background: var(--green); color: #0a0c10; font-weight: 700; }
.studio-nav a .count {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  padding: 2px 7px; background: rgba(255,255,255,0.06);
  border-radius: 99px; color: var(--text-muted);
}
.studio-nav a.active .count { background: rgba(0,0,0,0.18); color: #0a0c10; }
.studio-user {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  padding: 10px; background: var(--bg-2); border-radius: 6px;
  display: flex; align-items: center; gap: 10px;
}
.studio-user .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #0a0c10;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}
.studio-list { background: var(--bg-1); border-right: 1px solid var(--line); overflow-y: auto; }
.studio-list-head {
  position: sticky; top: 0; z-index: 5;
  padding: 16px; background: var(--bg-1);
  border-bottom: 1px solid var(--line);
}
.studio-list-head h3 {
  font-size: 13px; margin: 0 0 10px;
  font-family: var(--font-header);
  display: flex; align-items: center; justify-content: space-between;
}
.studio-search {
  width: 100%; padding: 8px 12px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 4px; color: var(--text); font-size: 12px;
}
.studio-tabs { display: flex; gap: 2px; padding: 12px 12px 0; }
.studio-tabs .tab {
  padding: 5px 10px; font-size: 11px;
  font-family: var(--font-mono); color: var(--text-muted);
  cursor: pointer; border-bottom: 2px solid transparent;
  letter-spacing: 0.05em;
}
.studio-tabs .tab.active { color: var(--green); border-color: var(--green); }
.doc-item { padding: 12px 16px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .2s; }
.doc-item:hover { background: var(--bg-2); }
.doc-item.selected { background: var(--green-soft); border-left: 3px solid var(--green); }
.doc-item .doc-num { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 3px; }
.doc-item .doc-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.doc-item .doc-sub { font-size: 11px; color: var(--text-muted); }
.doc-item .doc-status {
  display: inline-block; font-family: var(--font-mono); font-size: 9px;
  padding: 2px 7px; border-radius: 99px;
  font-weight: 700; letter-spacing: 0.1em; margin-top: 6px;
}
.doc-status.live { background: var(--green); color: #0a0c10; }
.doc-status.draft { background: var(--bg-3); color: var(--text-muted); }
.studio-editor { background: var(--bg-1); padding: 0; overflow-y: auto; }
.editor-head {
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.editor-head h2 { font-size: 1.25rem; margin: 0; }
.editor-meta { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); margin-top: 4px; }
.editor-body { padding: 24px; }
.field-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px; margin-bottom: 14px;
}
.field-card h4 {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--green); letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 14px;
}
.field-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px; display: block;
}
.field-value {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 4px; padding: 8px 12px;
  font-size: 13px; color: var(--text); margin-bottom: 10px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 8px; }
.gallery-mini > div {
  aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: var(--bg-3); border-radius: 4px;
}
.gallery-mini .drop {
  border: 2px dashed var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--text-muted); text-align: center; padding: 4px;
}

/* ============ SITEMAP ============ */
.sitemap-tree {
  background: var(--bg-1); border-radius: var(--radius);
  padding: 40px; margin-top: 32px; border: 1px solid var(--line);
}
.sitemap-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
}
.sitemap-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; background: var(--bg-2); border: 1px solid var(--line); }
.legend-dot.active { background: var(--green); border-color: var(--green); }
.legend-dot.soon { background: var(--bg-3); }
.legend-dot.dynamic { background: var(--green-soft); border-color: var(--green); }
.sitemap-node {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px;
}
.sitemap-node .sn-path { font-family: var(--font-mono); font-size: 10px; color: var(--green); margin-bottom: 4px; }
.sitemap-node h4 { font-size: 14px; margin: 0 0 4px; }
.sitemap-node p { font-size: 12px; color: var(--text-muted); margin: 0; }
.sitemap-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .studio-shell { grid-template-columns: 200px 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .lines-grid, .why-grid, .cap-grid, .project-grid,
  .gallery-grid, .footer-grid, .about-hero-cards,
  .brief-grid, .problem-grid, .jalur-grid, .article-grid,
  .contact-grid, .stats-band, .year-stats, .form-row,
  .field-row, .brands-grid, .sitemap-row {
    grid-template-columns: 1fr;
  }
  .stats-band .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .studio-shell { grid-template-columns: 1fr; }
  .studio-sidebar { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
}

/* ============================================
   INTERACTIVE ANIMATIONS — v3.1
   ============================================ */

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  z-index: 200; pointer-events: none;
  box-shadow: 0 0 8px var(--green);
  transition: width 0.08s linear;
}

.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #0a0c10 !important;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(166,206,57,0.45);
  z-index: 90;
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.10) rotate(-6deg);
  background: var(--green-bright); color: #0a0c10 !important;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(166,206,57,0.45), 0 0 0 0 rgba(166,206,57,0.55); }
  50%      { box-shadow: 0 10px 30px rgba(166,206,57,0.45), 0 0 0 22px rgba(166,206,57,0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-stagger="1"] { transition-delay: 0.05s; }
.reveal[data-stagger="2"] { transition-delay: 0.10s; }
.reveal[data-stagger="3"] { transition-delay: 0.15s; }
.reveal[data-stagger="4"] { transition-delay: 0.20s; }
.reveal[data-stagger="5"] { transition-delay: 0.25s; }
.reveal[data-stagger="6"] { transition-delay: 0.30s; }

.hero-title .line-block {
  display: block;
  opacity: 0; transform: translateY(24px);
  animation: line-rise 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line-block:nth-child(1) { animation-delay: 0.20s; }
.hero-title .line-block:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line-block:nth-child(3) { animation-delay: 0.50s; }
@keyframes line-rise { to { opacity: 1; transform: translateY(0); } }

.hero-content .eyebrow { opacity: 0; animation: fade-in 0.6s ease 0.05s forwards; }
.hero-content .hero-sub { opacity: 0; animation: fade-in 0.6s ease 0.70s forwards; }
.hero-content .hero-actions { opacity: 0; animation: fade-in 0.6s ease 0.85s forwards; }
.breadcrumb { opacity: 0; animation: fade-in 0.5s ease 0.05s forwards; }
@keyframes fade-in { to { opacity: 1; } }

.hero { --mx: 50%; --my: 40%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle 520px at var(--mx) var(--my),
    rgba(166,206,57,0.18) 0%, transparent 55%);
  pointer-events: none; transition: background 0.1s ease;
}
.hero-content { position: relative; z-index: 3; }

.site-header { transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.site-header.scrolled {
  background: rgba(10,12,16,0.97);
  border-bottom-color: var(--line-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.site-header.scrolled .nav-wrap { height: 56px; }
.site-header .nav-wrap { transition: height 0.3s ease; }
.site-header .nav-logo img { transition: height 0.3s ease; }
.site-header.scrolled .nav-logo img { height: 24px; }

.nav-menu > li > a { position: relative; overflow: visible; }
.nav-menu > li > a:not(.nav-cta)::before {
  content: ''; position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px; background: var(--green);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu > li > a:not(.nav-cta):hover::before { right: 0; }

.line-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease, border-color 0.25s ease;
  transform-style: preserve-3d; will-change: transform;
}
.line-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle 180px at var(--lx,50%) var(--ly,50%),
    rgba(166,206,57,0.10), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.line-card:hover::after { opacity: 1; }
.line-card .line-num { transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.line-card:hover .line-num { transform: translateX(6px); }
.line-card .line-cta { position: relative; transition: gap 0.25s ease, color 0.25s ease; }
.line-card:not(.disabled):hover .line-cta { gap: 10px; }

.btn-primary, .btn-outline {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.brand-tile {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, box-shadow 0.25s ease;
}
.brand-tile:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--green); color: #0a0c10;
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(166,206,57,0.30);
}

.project-card { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.25s ease; }
.project-cover {
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
}
.project-card:hover .project-cover {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.1);
}

.article-cover { transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.article-card:hover .article-cover { transform: scale(1.05); }

.stat-value { font-variant-numeric: tabular-nums; }

.cap-card, .problem-card {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s ease, box-shadow 0.3s ease;
}
.cap-num, .p-num { transition: letter-spacing 0.3s ease; }
.cap-card:hover .cap-num, .problem-card:hover .p-num { letter-spacing: 0.18em; }

.jalur-card.highlighted::before {
  animation: tag-breathe 2.6s ease-in-out infinite;
}
@keyframes tag-breathe {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 14px rgba(166,206,57,0.30); }
  50%      { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(166,206,57,0.45); }
}

.timeline-item.in::before {
  animation: dot-pop 0.7s cubic-bezier(0.16,1,0.3,1);
}
@keyframes dot-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.20); }
  100% { transform: scale(1); }
}

.filter-tab { transition: all 0.22s cubic-bezier(0.16,1,0.3,1); }
.filter-tab:hover { transform: translateY(-1px); }

.form-group input, .form-group select, .form-group textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(166,206,57,0.20);
}

.section-eyebrow, .eyebrow { position: relative; overflow: hidden; }
.section-eyebrow::before, .eyebrow::before {
  content: ''; position: absolute; left: -100%; top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  animation: eyebrow-shine 4s ease-in-out infinite;
}
@keyframes eyebrow-shine {
  0%, 80% { left: -100%; }
  100% { left: 100%; }
}

.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -150%;
  width: 100%; height: 100%; transform: skewX(-25deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transition: left 0.5s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover::before { left: 150%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title .line-block { opacity: 1 !important; transform: none !important; }
  .wa-float { animation: none; }
  .hero::before { display: none; }
}
