/* =========================================================
   FORGE — Shared Stylesheet (semua halaman pakai ini)
   ========================================================= */

:root {
  --bg: #07080c;
  --bg-soft: #0e1018;
  --card: #14161f;
  --card-hover: #1b1e2b;
  --line: #242838;
  --text: #f3f5fa;
  --muted: #97a0b3;
  --accent: #ff5722;
  --accent-2: #ff9a4c;
  --green: #2ee6a6;
  --blue: #5aa2ff;
  --purple: #9b6bff;
  --radius: 20px;
  --shadow: 0 30px 70px -28px rgba(0,0,0,.8);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display { font-family: 'Bebas Neue', sans-serif; letter-spacing: .5px; line-height: .95; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 18px; font-family: 'Inter';
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(42px, 6.5vw, 78px); margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 17px; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,.6);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s;
}
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(255,255,255,.12); border-color: transparent; }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 9998;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--green));
}

/* ---------- PAGE TRANSITION OVERLAY ---------- */
.page-fade {
  position: fixed; inset: 0; z-index: 9997; background: var(--bg);
  transform: scaleY(1); transform-origin: top; pointer-events: none;
}
.page-fade.out { animation: fadeUp .7s var(--ease) forwards; }
.page-fade.in { transform: scaleY(0); transform-origin: bottom; }
.page-fade.in.run { animation: fadeDown .6s var(--ease) forwards; }
@keyframes fadeUp { from { transform: scaleY(1); transform-origin: bottom; } to { transform: scaleY(0); transform-origin: bottom; } }
@keyframes fadeDown { from { transform: scaleY(1); transform-origin: top; } to { transform: scaleY(0); transform-origin: top; } }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 34px; transition: .35s var(--ease);
  background: transparent;
}
nav.scrolled { padding: 13px 34px; background: rgba(7,8,12,.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.logo { font-family: 'Bebas Neue'; font-size: 30px; letter-spacing: 3px; display: flex; align-items: center; gap: 11px; }
.logo b { color: var(--accent); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 19px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px -6px rgba(255,87,34,.7); animation: pulse 3s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  position: relative; color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; transition: .25s var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.nav-cta {
  background: var(--accent); color: #fff; border: none; padding: 11px 22px;
  border-radius: 999px; font-weight: 600; font-size: 14px; cursor: none; transition: .25s var(--ease);
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(255,87,34,.7); }
.burger { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
  nav { padding: 14px 20px; }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; border: none; cursor: none; font-weight: 600; font-size: 15px;
  padding: 16px 30px; border-radius: 999px; transition: .25s var(--ease);
  display: inline-flex; align-items: center; gap: 9px; overflow: hidden;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 34px -12px rgba(255,87,34,.8); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(255,87,34,.9); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-3px); }
@media (max-width: 900px) { .btn, .nav-cta { cursor: pointer; } }

/* magnetic wrapper */
.magnetic { display: inline-block; will-change: transform; }

/* ---------- ANIMATED BACKGROUND BLOBS ---------- */
.blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob.b1 { width: 480px; height: 480px; background: rgba(255,87,34,.45); top: -120px; right: -60px; animation: float1 16s var(--ease) infinite; }
.blob.b2 { width: 420px; height: 420px; background: rgba(90,162,255,.30); bottom: -140px; left: -80px; animation: float2 19s var(--ease) infinite; }
.blob.b3 { width: 360px; height: 360px; background: rgba(155,107,255,.25); top: 40%; left: 50%; animation: float3 22s var(--ease) infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,50px) scale(1.15); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,-40px) scale(1.1); } }
@keyframes float3 { 0%,100% { transform: translate(-50%,0) scale(1); } 50% { transform: translate(-30%,-60px) scale(1.2); } }

/* ---------- HERO / PAGE BACKGROUND PHOTO ---------- */
.bg-photo { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bg-photo img, .bg-photo video { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.bg-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 8%, rgba(7,8,12,.35) 55%, transparent 80%),
    linear-gradient(0deg, var(--bg) 4%, transparent 55%);
}
.page-head .bg-photo::after {
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 30%, var(--bg) 78%),
    linear-gradient(0deg, var(--bg) 6%, rgba(7,8,12,.4) 50%, transparent 90%);
}
.page-head .bg-photo img, .page-head .bg-photo video { opacity: .3; }

.grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: .3;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal.left { transform: translateX(-50px); }
.reveal.left.in { transform: none; }
.reveal.right { transform: translateX(50px); }
.reveal.right.in { transform: none; }
.reveal.zoom { transform: scale(.9); }
.reveal.zoom.in { transform: scale(1); }

/* title rise (hero & page head) — animasi blok, aman buat tag <br>/<span> */
.rise { opacity: 0; transform: translateY(42px); }
.rise.go { animation: riseUp 1s var(--ease) forwards; }
@keyframes riseUp { to { opacity: 1; transform: none; } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--bg-soft); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scrollX 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Bebas Neue'; font-size: 34px; letter-spacing: 2px; color: var(--muted); display: flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: "●"; color: var(--accent); font-size: 14px; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- CARDS / TILT ---------- */
.tilt { transition: transform .2s var(--ease); transform-style: preserve-3d; will-change: transform; }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--line); padding: 60px 0 40px; background: var(--bg-soft); position: relative; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h4 { font-family: 'Inter'; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.foot-grid a { display: block; color: var(--text); font-size: 15px; padding: 5px 0; opacity: .8; transition: .2s; }
.foot-grid a:hover { opacity: 1; color: var(--accent-2); padding-left: 6px; }
.foot-grid p { color: var(--muted); font-size: 14px; max-width: 280px; margin-top: 12px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; border-top: 1px solid var(--line); padding-top: 26px; }
.foot-bottom p { color: var(--muted); font-size: 13px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 130px; position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(58px, 9.5vw, 130px); overflow: hidden; }
.hero h1 .hl { color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hero p { color: var(--muted); font-size: 19px; max-width: 500px; margin: 24px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; }
.hero-stats .num { font-family: 'Bebas Neue'; font-size: 46px; color: var(--text); }
.hero-stats .lbl { color: var(--muted); font-size: 13px; max-width: 120px; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-stats { gap: 26px; } }

.hero-card {
  background: linear-gradient(160deg, var(--card), #10121b); border: 1px solid var(--line);
  border-radius: 26px; padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%,60% { left: -60%; } 100% { left: 130%; } }
.hero-card .tag { font-size: 12px; color: var(--green); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 7px; }
.hero-card .tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(46,230,166,.6); animation: ping 1.6s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(46,230,166,.6); } 100% { box-shadow: 0 0 0 10px transparent; } }
.hero-card h3 { font-size: 32px; margin: 8px 0 20px; }
.mini-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.mini-row:first-of-type { border-top: none; }
.mini-row .name { font-weight: 600; font-size: 15px; }
.mini-row .meta { color: var(--muted); font-size: 13px; }
.pill { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; background: rgba(255,87,34,.14); color: var(--accent-2); }
.pill.green { background: rgba(46,230,166,.12); color: var(--green); }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: .3s var(--ease); position: relative; overflow: hidden; }
.step:hover { transform: translateY(-8px); border-color: var(--accent); background-color: var(--card-hover); }
/* kartu dengan foto realistic sebagai background */
.step.photo { background-size: cover; background-position: center; }
.step.photo::before { content: ""; position: absolute; inset: 0; z-index: 0; transition: .3s var(--ease);
  background: linear-gradient(155deg, rgba(16,18,27,.78), rgba(8,9,14,.95)); }
.step.photo:hover::before { background: linear-gradient(155deg, rgba(16,18,27,.66), rgba(8,9,14,.9)); }
.step.photo > * { position: relative; z-index: 1; }
.step .n { font-family: 'Bebas Neue'; font-size: 72px; color: var(--line); position: absolute; top: 4px; right: 22px; transition: .3s; }
.step:hover .n { color: rgba(255,87,34,.22); }
.step .ico { font-size: 34px; margin-bottom: 16px; display: inline-block; }
.step:hover .ico { animation: wobble .6s var(--ease); }
@keyframes wobble { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
.step h3 { font-size: 22px; margin-bottom: 8px; font-family: 'Inter'; font-weight: 700; }
.step p { color: var(--muted); font-size: 15px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ---------- PAGE HEADER (sub pages) ---------- */
.page-head { padding: 170px 0 60px; position: relative; overflow: hidden; text-align: center; }
.page-head h1 { font-size: clamp(54px, 10vw, 120px); }
.page-head p { color: var(--muted); font-size: 18px; max-width: 600px; margin: 14px auto 0; }
.breadcrumb { color: var(--muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--accent-2); }

/* ---------- TABS / MOVES ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 36px; justify-content: center; }
.tab-btn { background: var(--card); border: 1px solid var(--line); color: var(--muted); padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; cursor: none; transition: .25s var(--ease); }
.tab-btn:hover { color: var(--text); border-color: #3a3f52; transform: translateY(-2px); }
.tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 900px) { .tab-btn { cursor: pointer; } }

.move-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.move-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s var(--ease); }
.move-card:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: var(--shadow); }
.move-thumb { height: 175px; display: grid; place-items: center; font-size: 60px; background: linear-gradient(135deg, #1c2030, #232838); position: relative; overflow: hidden; }
.move-thumb .ico-big { transition: .4s var(--ease); z-index: 0; }
.move-thumb .thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .6s var(--ease); }
.move-card:hover .thumb-img { transform: scale(1.1); }
.move-thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(7,8,12,.72) 0%, rgba(7,8,12,.08) 65%); }
.move-thumb .badge { position: absolute; top: 13px; left: 13px; z-index: 3; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 11px; border-radius: 999px; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); }
.move-thumb .play { position: absolute; right: 13px; bottom: 13px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,87,34,.9); display: grid; place-items: center; font-size: 15px; opacity: 0; transform: scale(.7); transition: .3s var(--ease); }
.move-card:hover .play { opacity: 1; transform: scale(1); }
.badge.beginner { color: var(--green); }
.badge.inter { color: var(--blue); }
.badge.adv { color: var(--accent-2); }
.move-body { padding: 20px 22px 24px; }
.move-body h4 { font-size: 19px; margin-bottom: 4px; }
.move-target { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.setrep { display: flex; gap: 10px; }
.chip { flex: 1; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 10px 4px; transition: .25s; }
.move-card:hover .chip { border-color: rgba(255,87,34,.3); }
.chip .v { font-family: 'Bebas Neue'; font-size: 28px; color: var(--accent-2); }
.chip .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- SCHEDULE ---------- */
.sched-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; }
.day-list { display: flex; flex-direction: column; gap: 11px; }
.day-btn { text-align: left; background: var(--card); border: 1px solid var(--line); color: var(--text); padding: 17px 19px; border-radius: 15px; cursor: none; transition: .25s var(--ease); display: flex; justify-content: space-between; align-items: center; }
.day-btn:hover { border-color: #3a3f52; transform: translateX(4px); }
.day-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: transparent; box-shadow: 0 14px 30px -12px rgba(255,87,34,.7); }
.day-btn .d { font-weight: 700; font-size: 15px; }
.day-btn .f { font-size: 12px; opacity: .8; }
.day-btn .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.day-btn.rest .dot { background: var(--muted); }
@media (max-width: 900px) { .day-btn { cursor: pointer; } .sched-layout { grid-template-columns: 1fr; } .day-list { flex-direction: row; overflow-x: auto; padding-bottom: 6px; } .day-btn { min-width: 140px; } }

.day-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; min-height: 420px; }
.day-panel .focus { font-family: 'Bebas Neue'; font-size: 42px; }
.day-panel .focus small { font-family: 'Inter'; font-size: 14px; color: var(--muted); font-weight: 500; display: block; letter-spacing: 0; }
.ex-table { margin-top: 24px; }
.ex-row { display: grid; grid-template-columns: 30px 1fr 70px 70px 92px; gap: 12px; align-items: center; padding: 15px 0; border-top: 1px solid var(--line); animation: rowIn .5s var(--ease) backwards; }
.ex-row.head { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; border-top: none; padding-bottom: 6px; animation: none; }
@keyframes rowIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.ex-row .exn { font-weight: 600; }
.ex-row .exmuscle { color: var(--muted); font-size: 12.5px; }
.ex-num { font-family: 'Bebas Neue'; font-size: 23px; color: var(--accent-2); text-align: center; }
.check { width: 23px; height: 23px; border-radius: 7px; border: 2px solid var(--line); cursor: none; display: grid; place-items: center; transition: .2s var(--ease); }
.check:hover { border-color: var(--green); }
.check.done { background: var(--green); border-color: var(--green); transform: scale(1.05); }
.check.done::after { content: "✓"; color: #053; font-weight: 800; font-size: 13px; }
@media (max-width: 900px) { .check { cursor: pointer; } .ex-row { grid-template-columns: 24px 1fr 48px 48px 60px; gap: 8px; font-size: 14px; } }
.rest-state { text-align: center; padding: 60px 10px; }
.rest-state .big { font-size: 70px; animation: pulse 2.5s var(--ease) infinite; }
.rest-state h3 { font-family: 'Bebas Neue'; font-size: 38px; margin: 10px 0; }
.rest-state p { color: var(--muted); max-width: 440px; margin: 0 auto; }

.progress-ring-wrap { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.progress-ring-wrap .lbl { font-size: 13px; color: var(--muted); }
.progress-ring-wrap .pct { font-family: 'Bebas Neue'; font-size: 30px; color: var(--green); }
.pbar { flex: 1; height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.pbar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), #6cf0c4); border-radius: 999px; transition: width .4s var(--ease); }

/* ---------- NUTRITION ---------- */
.nut-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.nut-main { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.nut-main h3 { font-size: 32px; margin-bottom: 6px; }
.macro-bars { margin-top: 22px; display: flex; flex-direction: column; gap: 20px; }
.macro .top { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.macro .top b { font-weight: 700; }
.bar { height: 11px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: 999px; transition: width 1.1s var(--ease); }
.bar.p i { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.bar.c i { background: linear-gradient(90deg, var(--blue), #8fc0ff); }
.bar.f i { background: linear-gradient(90deg, var(--green), #6cf0c4); }
.supp-list { display: flex; flex-direction: column; gap: 14px; }
.supp { background: var(--card); border: 1px solid var(--line); border-radius: 15px; padding: 20px 22px; transition: .25s var(--ease); }
.supp:hover { border-color: var(--accent); transform: translateX(5px); }
.supp .h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.supp h4 { font-size: 17px; }
.supp .rank { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.rank.must { background: rgba(46,230,166,.14); color: var(--green); }
.rank.opt { background: rgba(154,163,181,.14); color: var(--muted); }
.supp p { color: var(--muted); font-size: 13.5px; }
@media (max-width: 900px) { .nut-grid { grid-template-columns: 1fr; } }

.calc { background: linear-gradient(135deg, #161a26, #1c1320); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; margin-top: 24px; }
.calc h3 { font-size: 34px; margin-bottom: 6px; }
.calc p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.calc-inputs { display: flex; gap: 12px; flex-wrap: wrap; }
.field { flex: 1; min-width: 120px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 1px; }
.field input, .field select { width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: 13px 15px; border-radius: 12px; font-size: 15px; font-family: inherit; cursor: none; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.calc-out { text-align: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.calc-out .big { font-family: 'Bebas Neue'; font-size: 78px; color: var(--accent); line-height: 1; }
.calc-out .unit { color: var(--muted); font-size: 14px; }
.calc-out .hint { font-size: 13px; color: var(--muted); margin-top: 10px; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } .field input, .field select { cursor: auto; } }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 32px; max-width: 760px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-fill { position: absolute; left: 7px; top: 6px; width: 2px; background: linear-gradient(var(--accent), var(--accent-2)); height: 0; transition: height 1.2s var(--ease); }
.phase { position: relative; padding: 0 0 44px 26px; }
.phase::before { content: ""; position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); z-index: 2; transition: .3s; }
.phase.in::before { box-shadow: 0 0 0 6px rgba(255,87,34,.15); }
.phase .ph-time { font-size: 13px; color: var(--accent-2); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.phase h3 { font-size: 26px; margin: 6px 0 8px; font-family: 'Inter'; font-weight: 700; }
.phase p { color: var(--muted); font-size: 15px; }
.phase .ph-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.ph-tags span { font-size: 12px; background: var(--card); border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-box { background: linear-gradient(135deg, var(--accent), #c43d12); border-radius: 30px; padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-box::after { content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 42px 42px; }
.cta-box h2, .cta-box p, .cta-box .magnetic, .cta-box .btn-primary { position: relative; z-index: 2; }
.cta-box h2 { font-size: clamp(44px, 7vw, 86px); position: relative; }
.cta-box p { color: rgba(255,255,255,.92); font-size: 18px; margin: 14px 0 30px; position: relative; }
.cta-box .btn-primary { background: #fff; color: var(--accent); position: relative; }
.cta-box .btn-primary:hover { background: #0a0a0a; color: #fff; }

/* ---------- MODAL (video) ---------- */
.modal { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(6px); animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box { position: relative; z-index: 2; width: min(760px, 100%); background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; animation: popIn .4s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: none; } }
.modal-video { aspect-ratio: 16/9; background: #000; }
.modal-video iframe { width: 100%; height: 100%; border: 0; }
.modal-info { padding: 22px 26px; }
.modal-info h3 { font-size: 26px; }
.modal-info p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,.5); border: none; color: #fff; font-size: 18px; cursor: pointer; display: grid; place-items: center; }
.modal-close:hover { background: var(--accent); }
.modal-info .modal-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.modal-info .btn { padding: 12px 20px; font-size: 14px; }

/* ---------- GALLERY (foto realistic) ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 18px; margin-top: 54px; }
.g-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, #1c2030, #232838); }
.g-card.big { grid-row: span 2; }
.g-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); filter: saturate(1.05); }
.g-card:hover img { transform: scale(1.08); }
.g-card .g-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-size: 46px; }
.g-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 16px; z-index: 2;
  background: linear-gradient(transparent, rgba(7,8,12,.92)); font-family: 'Bebas Neue'; font-size: 26px; letter-spacing: 1px; }
.g-card figcaption small { display: block; font-family: 'Inter'; font-size: 12px; font-weight: 500; color: var(--accent-2); letter-spacing: 2px; text-transform: uppercase; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; } .g-card.big { grid-column: span 2; grid-row: span 1; } }

/* ===== FAQ CHATBOT ===== */
.faq-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none; cursor: pointer !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(255,87,34,.45);
  transition: transform .2s, box-shadow .2s;
}
.faq-btn:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(255,87,34,.65); }
.faq-btn svg { width: 26px; height: 26px; fill: #fff; pointer-events: none; }

.faq-win {
  position: fixed; bottom: 98px; right: 28px; z-index: 400;
  width: 340px; max-height: 510px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.65);
  transform: scale(.92) translateY(18px);
  opacity: 0; pointer-events: none;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.faq-win.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.faq-head {
  background: linear-gradient(135deg, var(--accent), #c43d12);
  padding: 15px 18px; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.faq-head-icon { font-size: 20px; }
.faq-head-text h4 { font-family: 'Bebas Neue'; font-size: 20px; color: #fff; letter-spacing: 1px; }
.faq-head-text p { font-size: 12px; color: rgba(255,255,255,.75); }
.faq-x {
  margin-left: auto; background: rgba(0,0,0,.2); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; font-size: 14px;
  cursor: pointer !important; display: grid; place-items: center; transition: background .2s;
}
.faq-x:hover { background: rgba(0,0,0,.45); }

.faq-body { flex: 1; overflow-y: auto; padding: 14px; }
.faq-body::-webkit-scrollbar { width: 4px; }
.faq-body::-webkit-scrollbar-track { background: transparent; }
.faq-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.faq-intro { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.faq-qs { display: flex; flex-direction: column; gap: 7px; }
.faq-q {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; cursor: pointer !important; font-size: 13.5px; font-weight: 500;
  color: var(--text); text-align: left; display: flex; align-items: center; gap: 8px; width: 100%;
  transition: border-color .2s, background .2s, transform .15s;
}
.faq-q:hover { border-color: var(--accent); background: rgba(255,87,34,.07); transform: translateX(3px); }
.faq-q-arrow { margin-left: auto; color: var(--muted); font-size: 17px; flex-shrink: 0; }

.faq-ans { display: none; flex-direction: column; gap: 13px; }
.faq-ans.show { display: flex; }
.faq-back {
  background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 13px; font-size: 12.5px; color: var(--muted);
  cursor: pointer !important; text-align: left; width: fit-content;
  transition: border-color .2s, color .2s;
}
.faq-back:hover { border-color: var(--accent); color: var(--accent); }
.faq-ans-q {
  font-weight: 700; font-size: 15px; color: var(--text); line-height: 1.4;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.faq-ans-a { font-size: 13.5px; line-height: 1.78; color: var(--muted); }

@media (max-width: 480px) {
  .faq-win { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
  .faq-btn { bottom: 20px; right: 16px; }
}

/* ===== JADWAL — RESET BUTTON ===== */
.reset-wrap { display: flex; justify-content: flex-end; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.btn-reset {
  background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-reset:hover { border-color: #e05;  color: #e05; background: rgba(238,0,85,.06); }
