/* ===========================================================
   TotoVIP — Premium Casino Theme
   Gold × Crimson × Void | Cinzel Display + Manrope Body
=========================================================== */

:root {
  /* Color */
  --void: #02000a;
  --void-1: #050310;
  --void-2: #0a0618;
  --void-3: #120a26;
  --crimson: #b80f1f;
  --crimson-deep: #7a0814;
  --crimson-glow: #ff1f33;
  --gold: #d4a73c;
  --gold-deep: #a8841f;
  --gold-bright: #f5d57a;
  --gold-glow: rgba(212, 167, 60, 0.4);
  --ink: #f6f1e3;
  --ink-mute: rgba(246, 241, 227, 0.65);
  --ink-faint: rgba(246, 241, 227, 0.4);
  --line: rgba(212, 167, 60, 0.18);
  --line-strong: rgba(212, 167, 60, 0.35);
  --glass: rgba(10, 6, 24, 0.6);
  --glass-strong: rgba(10, 6, 24, 0.85);

  /* Typography */
  --display: 'Cinzel', 'Times New Roman', serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gutter: clamp(1rem, 3vw, 2.5rem);
  --section-y: clamp(3rem, 8vw, 6rem);

  /* Other */
  --radius: 4px;
  --radius-lg: 12px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.6s var(--easing);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--void);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-bright); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ATMOSPHERIC BACKGROUND */
.void-bg {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(184, 15, 31, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(212, 167, 60, 0.10), transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(18, 10, 38, 0.8), transparent 70%),
    linear-gradient(180deg, var(--void) 0%, var(--void-1) 40%, var(--void-2) 100%);
}
.gradient-mesh { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform; }
.mesh-blob.b1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -15%; left: -10%; animation: meshFloat 22s ease-in-out infinite; }
.mesh-blob.b2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--crimson) 0%, transparent 70%); bottom: -15%; right: -10%; animation: meshFloat 26s ease-in-out infinite; animation-delay: -8s; opacity: 0.25; }
.mesh-blob.b3 { width: 450px; height: 450px; background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%); top: 40%; left: 55%; animation: meshFloat 30s ease-in-out infinite; animation-delay: -15s; opacity: 0.2; }
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.15); }
  66% { transform: translate(-60px, 90px) scale(0.85); }
}
.cursor-glow { position: fixed; width: 32px; height: 32px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 167, 60, 0.5) 0%, transparent 70%); pointer-events: none; transform: translate(-50%, -50%); z-index: 9999; mix-blend-mode: screen; transition: width 0.3s, height 0.3s, opacity 0.3s; opacity: 0; }
.cursor-glow.active { opacity: 1; }
.cursor-glow.lg { width: 60px; height: 60px; background: radial-gradient(circle, rgba(245, 213, 122, 0.7) 0%, transparent 70%); }
@media (hover: none) { .cursor-glow { display: none; } }

.starfield { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.star { position: absolute; width: 2px; height: 2px; background: var(--gold-bright); border-radius: 50%; opacity: 0; animation: starDrift linear infinite, starTwinkle 3s ease-in-out infinite; }
.star.large { width: 3px; height: 3px; box-shadow: 0 0 6px var(--gold-glow); }
@keyframes starDrift {
  0% { transform: translateY(-10vh) translateX(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(110vh) translateX(20px); opacity: 0; }
}
@keyframes starTwinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.floating-3d { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; perspective: 1800px; }
.shape-3d { position: absolute; opacity: 0.13; will-change: transform; }
.shape-3d.diamond { width: 50px; height: 50px; border: 1px solid var(--gold); }
.shape-3d.hexagon { width: 60px; height: 60px; border: 1px solid var(--crimson-glow); opacity: 0.1; }
.shape-3d.ring { width: 80px; height: 80px; border: 1px solid var(--gold); border-radius: 50%; opacity: 0.08; }
.shape-3d.s1 { left: 8%; animation: float3d-up 28s linear infinite; }
.shape-3d.s2 { left: 25%; animation: float3d-up 35s linear infinite; animation-delay: -10s; }
.shape-3d.s3 { right: 12%; animation: float3d-up 32s linear infinite; animation-delay: -18s; }
.shape-3d.s4 { right: 28%; animation: float3d-up 40s linear infinite; animation-delay: -5s; }
.shape-3d.s5 { left: 45%; animation: float3d-up 38s linear infinite; animation-delay: -22s; }
.shape-3d.s6 { right: 5%; animation: float3d-up 30s linear infinite; animation-delay: -14s; }
@keyframes float3d-up {
  0% { transform: translateY(110vh) rotateX(0deg) rotateY(0deg) rotateZ(0deg); opacity: 0; }
  10% { opacity: 0.15; } 90% { opacity: 0.15; }
  100% { transform: translateY(-30vh) rotateX(720deg) rotateY(360deg) rotateZ(180deg); opacity: 0; }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 2.5em 0 1em; color: var(--gold-bright); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin: 2em 0 0.6em; color: var(--gold); }
p { margin: 0 0 1.2em; color: var(--ink-mute); }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--gold); font-style: italic; }

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

/* HEADER / NAV */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(2, 0, 10, 0.92) 0%, rgba(2, 0, 10, 0.7) 80%, transparent 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 0.85rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand-img { height: 42px; width: auto; max-width: 100%; display: block; transition: opacity 0.3s ease; }
.brand-img:hover { opacity: 0.85; }
.brand-img-footer { height: 50px; margin-bottom: 0.8rem; }
@media (max-width: 640px) { .brand-img { height: 36px; } }
.nav-links { display: flex; gap: 0.4rem; align-items: center; }
.nav-link { font-size: 0.85rem; font-weight: 500; color: var(--ink-mute); padding: 0.55rem 0.9rem; letter-spacing: 0.03em; transition: color 0.3s, background 0.3s; border-radius: var(--radius); }
.nav-link:hover { color: var(--gold-bright); background: rgba(212, 167, 60, 0.08); }
.nav-link.is-active { color: var(--gold-bright); }
.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.2rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--void);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  border-radius: var(--radius); position: relative; overflow: hidden;
  transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 167, 60, 0.25); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212, 167, 60, 0.45); color: var(--void); }
.nav-toggle { display: none; }

/* BREADCRUMB */
.crumb { padding-top: 6rem; padding-bottom: 0; font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.crumb a { color: var(--ink-mute); }
.crumb a:hover { color: var(--gold); }
.crumb .sep { margin: 0 0.7rem; opacity: 0.5; }

/* HERO */
.hero { position: relative; padding: 3rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 4rem; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-label::before { content: ''; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero h1 { margin-bottom: 1.5rem;
  background: linear-gradient(110deg, var(--gold-deep) 0%, var(--gold-bright) 25%, var(--ink) 50%, var(--gold-bright) 75%, var(--gold-deep) 100%);
  background-size: 250% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: liquidShimmer 8s ease-in-out infinite; }
@keyframes liquidShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 250% 50%; } }
.hero-tagline { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--ink-mute); margin-bottom: 2rem; max-width: 580px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.stat { text-align: left; perspective: 800px; }
.stat-num { font-family: var(--display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; color: var(--gold-bright); line-height: 1; margin-bottom: 0.4rem; display: block; transition: transform 0.4s var(--easing); transform-style: preserve-3d; }
.stat:hover .stat-num { transform: translateY(-4px) translateZ(20px) scale(1.05); }
.stat-label { font-size: 0.7rem; color: var(--ink-faint); letter-spacing: 0.15em; text-transform: uppercase; line-height: 1.4; }

/* Hero Banner 3D */
.hero-banner { position: relative; max-width: 560px; margin: 0 auto; width: 100%; perspective: 1500px; animation: bannerEntrance 1.2s var(--easing) both; }
@keyframes bannerEntrance { from { opacity: 0; transform: perspective(1500px) rotateY(-25deg) translateZ(-100px); } to { opacity: 1; transform: perspective(1500px) rotateY(0) translateZ(0); } }
.banner-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 167, 60, 0.15), rgba(184, 15, 31, 0.1));
  padding: 1px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line-strong);
  transition: transform 0.4s var(--easing), box-shadow 0.5s ease;
  transform-style: preserve-3d; will-change: transform; }
.banner-frame::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, transparent 30%, transparent 70%, var(--crimson-glow) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 2; }
.banner-frame:hover { box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold), 0 0 40px rgba(212, 167, 60, 0.25); }
.banner-img { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; border-radius: calc(var(--radius-lg) - 1px); }
.banner-corner { position: absolute; width: 16px; height: 16px; border: 2px solid var(--gold); z-index: 3; pointer-events: none; opacity: 0.8; transform: translateZ(20px); }
.banner-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.banner-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.banner-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.banner-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.banner-shine { position: absolute; inset: 0; border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(105deg, transparent 30%, rgba(245, 213, 122, 0.18) 50%, transparent 70%);
  animation: bannerShine 6s ease-in-out infinite; pointer-events: none; z-index: 1; }
@keyframes bannerShine { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

/* SECTION EYEBROW */
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; position: relative; padding-left: 2.5rem; }
.section-eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 2rem; height: 1px; background: var(--gold); }

/* ENROLLMENT (DAFTAR FORM) */
.enrollment { padding: var(--section-y) 0; position: relative; }
.enrollment::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.enroll-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }

.enroll-card { background: linear-gradient(180deg, rgba(18, 10, 38, 0.6) 0%, rgba(10, 6, 24, 0.7) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); position: relative;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04); }
.enroll-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, var(--gold-glow), transparent 40%, transparent 60%, var(--gold-glow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.5; }
.form-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.form-title { font-family: var(--display); font-size: 1.5rem; color: var(--gold-bright); margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.85rem; color: var(--ink-faint); }
.form-field { margin-bottom: 1.2rem; transition: opacity 0.3s var(--easing), max-height 0.4s var(--easing); }
.form-field[hidden] { display: none !important; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.4rem; text-transform: uppercase; }
.form-field label .req { color: var(--crimson-glow); margin-left: 2px; }
.form-field input[type="text"], .form-field input[type="number"], .form-field input[type="email"], .form-field input[type="tel"], .form-field select {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  background: rgba(5, 3, 16, 0.8); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; appearance: none; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a73c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field select option { background: var(--void-1); color: var(--ink); }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--gold); background: rgba(10, 6, 24, 0.95); box-shadow: 0 0 0 3px rgba(212, 167, 60, 0.15); }
.form-field .hint { display: block; margin-top: 0.4rem; font-size: 0.72rem; color: var(--ink-faint); font-style: italic; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; padding: 1.1rem; font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--void);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  border-radius: var(--radius); cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 8px 24px rgba(212, 167, 60, 0.3); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212, 167, 60, 0.5); }
.form-submit:active { transform: translateY(0); }
.form-trust { margin-top: 1.5rem; text-align: center; font-size: 0.75rem; color: var(--ink-faint); line-height: 1.5; }
.form-trust .lock-icon { display: inline-block; vertical-align: middle; margin-right: 4px; }

.enroll-aside { padding: 1rem 0; }
.benefit { display: flex; gap: 1rem; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.benefit:last-child { border-bottom: none; }
.benefit-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 167, 60, 0.15) 0%, rgba(184, 15, 31, 0.1) 100%);
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-body h4 { font-family: var(--body); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--ink); }
.benefit-body p { font-size: 0.88rem; margin: 0; color: var(--ink-mute); }

/* CONTENT SECTION */
.content { padding: var(--section-y) 0; position: relative; }
.content-prose { font-size: 1.02rem; line-height: 1.85; }
.content-prose h2 { margin-top: 3rem; margin-bottom: 1rem; padding-top: 1rem; position: relative; }
.content-prose h2::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 1px; background: var(--gold); }
.content-prose p { margin-bottom: 1.3em; color: var(--ink-mute); }
.content-prose ol, .content-prose ul { margin: 1.5em 0; padding-left: 0; }
.content-prose ol li, .content-prose ul li { position: relative; padding-left: 2.5rem; margin-bottom: 0.8em; color: var(--ink-mute); }
.content-prose ol { counter-reset: prose-counter; }
.content-prose ol li { counter-increment: prose-counter; }
.content-prose ol li::before { content: counter(prose-counter, decimal-leading-zero); position: absolute; left: 0; top: 0; font-family: var(--display); font-weight: 600; font-size: 0.85rem; color: var(--gold); width: 1.8rem; }
.content-prose ul li::before { content: ''; position: absolute; left: 0.4rem; top: 0.7em; width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); }
.content-prose strong { color: var(--ink); }
.content-prose a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(212, 167, 60, 0.3); text-underline-offset: 3px; transition: text-decoration-color 0.3s, color 0.3s; }
.content-prose a:hover { color: var(--gold-bright); text-decoration-color: var(--gold-bright); }

/* CONTENT TABLES (from content .txt files) */
.content-prose .info-table, .content-prose .comparison-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  background: linear-gradient(180deg, rgba(18, 10, 38, 0.4) 0%, rgba(10, 6, 24, 0.6) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  font-size: 0.95rem;
}
.content-prose .info-table thead, .content-prose .comparison-table thead {
  background: linear-gradient(135deg, rgba(212, 167, 60, 0.12), rgba(184, 15, 31, 0.08));
}
.content-prose .info-table th, .content-prose .comparison-table th {
  padding: 0.9rem 1.2rem; text-align: left;
  font-family: var(--display); font-weight: 600; font-size: 0.85rem;
  color: var(--gold-bright); letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}
.content-prose .info-table td, .content-prose .comparison-table td {
  padding: 0.85rem 1.2rem; color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.content-prose .info-table tr:last-child td, .content-prose .comparison-table tr:last-child td {
  border-bottom: none;
}
.content-prose .info-table tr:hover td, .content-prose .comparison-table tr:hover td {
  background: rgba(212, 167, 60, 0.04);
}
.content-prose .info-table td strong, .content-prose .comparison-table td strong {
  color: var(--gold-bright);
}

/* BANTUAN BLOCK */
.content-prose .bantuan-block {
  margin: 2rem 0; padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 10, 38, 0.5) 0%, rgba(10, 6, 24, 0.65) 100%);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
}
.content-prose .bantuan-block li {
  padding-left: 2rem; margin-bottom: 0.7em;
}
.content-prose .bantuan-block li::before {
  content: '✦'; left: 0; top: 0; border: none; transform: none;
  color: var(--gold); font-size: 0.9rem; width: 1.5rem; height: auto;
}

/* PRODUK LAIN BLOCK */
.content-prose .produk-lain {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
  margin: 2rem 0; padding: 0;
}
.content-prose .produk-lain li {
  padding: 1rem 1.2rem; padding-left: 1.2rem; margin: 0;
  background: linear-gradient(135deg, rgba(18, 10, 38, 0.6) 0%, rgba(10, 6, 24, 0.7) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  font-size: 0.9rem;
}
.content-prose .produk-lain li::before { display: none; }
.content-prose .produk-lain li:hover {
  border-color: var(--gold); transform: translateY(-2px);
}
.content-prose .produk-lain li a {
  font-weight: 600; color: var(--gold-bright); text-decoration: none;
}

/* CTA BLOCK */
.content-prose .cta-block {
  text-align: center; margin: 3rem 0;
}
.content-prose .cta-primary, .content-prose a.cta-primary {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2rem; font-family: var(--display); font-size: 0.95rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--void); text-decoration: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  border-radius: var(--radius); transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(212, 167, 60, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.content-prose .cta-primary:hover, .content-prose a.cta-primary:hover {
  transform: translateY(-2px); color: var(--void);
  box-shadow: 0 12px 32px rgba(212, 167, 60, 0.5);
}

/* DISCLAIMER */
.content-prose .disclaimer {
  margin-top: 3rem; padding: 1.2rem 1.5rem;
  font-size: 0.85rem; color: var(--ink-faint); font-style: italic;
  background: rgba(18, 10, 38, 0.3); border-left: 2px solid var(--gold-deep);
  border-radius: var(--radius);
}
.content-prose .disclaimer em { color: var(--ink-faint); font-style: italic; }

/* SECTION HEADING (from content) */
.content-prose .section-heading {
  color: var(--gold-bright);
}

/* FAQ section in content */
.content-prose .faq-section {
  margin-top: 2rem;
}
.content-prose .faq-section h3 {
  font-family: var(--body); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); margin: 1.5rem 0 0.4rem;
  padding-left: 1.5rem; position: relative;
}
.content-prose .faq-section h3::before {
  content: 'Q'; position: absolute; left: 0; top: 0.1em;
  font-family: var(--display); font-weight: 700; font-size: 0.9rem;
  color: var(--gold);
}
.content-prose .faq-section p {
  padding-left: 1.5rem; position: relative;
  color: var(--ink-mute); font-size: 0.95rem;
}

/* HIGHLIGHT BOX */
.highlight-box { margin: 2.5rem 0; padding: 2rem; border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(212, 167, 60, 0.08), transparent),
    linear-gradient(180deg, rgba(18, 10, 38, 0.4) 0%, rgba(10, 6, 24, 0.5) 100%);
  position: relative; }
.highlight-box::before { content: '✦'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px;
  background: var(--void); border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }

/* CTA OUTRO */
.cta-outro { margin: 4rem 0 2rem; padding: 3rem 2rem; text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(184, 15, 31, 0.12), transparent),
    linear-gradient(180deg, rgba(18, 10, 38, 0.6) 0%, rgba(10, 6, 24, 0.8) 100%);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); position: relative; }
.cta-outro::before, .cta-outro::after { content: ''; position: absolute; width: 60px; height: 1px; background: var(--gold); top: 50%; }
.cta-outro::before { left: -10px; } .cta-outro::after { right: -10px; }
.cta-button { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.5rem; padding: 1rem 2rem;
  font-family: var(--display); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--void); text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
  border-radius: var(--radius); transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(212, 167, 60, 0.3); }
.cta-button:hover { transform: translateY(-2px); color: var(--void); box-shadow: 0 12px 32px rgba(212, 167, 60, 0.5); }

/* FOOTER */
.site-footer { margin-top: var(--section-y); padding: 4rem 0 1.5rem; border-top: 1px solid var(--line); background: rgba(2, 0, 10, 0.6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 320px; }
.footer-tagline { font-size: 0.9rem; color: var(--ink-mute); margin-top: 0.8rem; line-height: 1.6; }
.footer-col h5 { font-family: var(--body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--ink-mute); padding: 0.35rem 0; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: 50%; padding: 0; transition: border-color 0.3s, background 0.3s, transform 0.3s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(212, 167, 60, 0.1); transform: translateY(-2px); padding: 0; }
.footer-social svg { width: 16px; height: 16px; color: var(--gold); }
.trust-bar { display: flex; flex-wrap: wrap; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.08em; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); }
.footer-bottom { text-align: center; font-size: 0.78rem; color: var(--ink-faint); padding-top: 1rem; }
.footer-bottom a { color: var(--gold); }

/* LIVE CHAT */
.live-chat { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--void); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(212, 167, 60, 0.4), 0 0 0 2px rgba(212, 167, 60, 0.15);
  transition: transform 0.3s, box-shadow 0.3s; }
.live-chat:hover { transform: translateY(-2px); color: var(--void);
  box-shadow: 0 12px 32px rgba(212, 167, 60, 0.5), 0 0 0 4px rgba(212, 167, 60, 0.2); }
.live-chat .pulse { width: 8px; height: 8px; background: var(--crimson-glow); border-radius: 50%; position: relative; }
.live-chat .pulse::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--crimson-glow); animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--easing), transform 1s var(--easing); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-banner { max-width: 100%; order: -1; }
  .enroll-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--void-1); border-left: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 5rem 1.5rem 2rem; gap: 0.5rem; transition: right 0.4s var(--easing); }
  .nav-links.open { right: 0; }
  .nav-link { padding: 0.8rem 1rem; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .live-chat { bottom: 1rem; right: 1rem; padding: 0.7rem 1.1rem; font-size: 0.78rem; }
  .nav-cta { display: none; }
  .content-prose .info-table, .content-prose .comparison-table { font-size: 0.85rem; }
  .content-prose .info-table th, .content-prose .info-table td,
  .content-prose .comparison-table th, .content-prose .comparison-table td { padding: 0.6rem 0.8rem; }
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
