/* ============================================================
   PRATAMAPEDIA — MAIN STYLESHEET
   Premium Dark UI · Glassmorphism · 3D Animations · GPU-Composited
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* ── Base surfaces ── */
  --bg:         #0A0A0F;
  --bg-card:    #0e0e15;
  --bg-glass:   rgba(255,255,255,0.032);
  --bg-glass-2: rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.065);
  --border-h:   rgba(255,255,255,0.14);

  /* ── Typography ── */
  --text-1: #F8F8F2;
  --text-2: #9A9AA8;
  --text-3: #4E4E5A;

  /* ── Brand palette — warm amber/rose (not AI purple) ── */
  --a1: #F59E0B;            /* amber — growth, energy, money         */
  --a2: #EF4444;            /* rose-red — action, urgency            */
  --a3: #3B82F6;            /* electric blue — trust, CTA only       */

  /* ── Gradients ── */
  --grad:     linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --grad-rev: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
  --grad-3:   linear-gradient(135deg, #F59E0B 0%, #EF4444 55%, #3B82F6 100%);

  /* ── Radii ── */
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-f: 9999px;

  /* ── Easing ── */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --reveal: cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Shadows ── */
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(245,158,11,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--a1); border-radius: var(--r-f); }
::selection { background: rgba(245,158,11,.28); color: var(--text-1); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

/* ── GRADIENT TEXT ────────────────────────────────────────── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATED BLOBS ───────────────────────────────────────── */
.blob-container {
  position: fixed; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .055;
  animation: blob-float 22s ease-in-out infinite;
  will-change: transform;
}
.blob--1 { width: 700px; height: 700px; background: #F59E0B; top: -250px; left: -250px; animation-delay: 0s; opacity: .04; }
.blob--2 { width: 550px; height: 550px; background: #EF4444; top: 50%; right: -180px; animation-delay: -7.3s; opacity: .035; }
.blob--3 { width: 450px; height: 450px; background: #3B82F6; bottom: -120px; left: 30%; animation-delay: -14.6s; opacity: .03; }

@keyframes blob-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%       { transform: translate3d(28px, -28px, 0) scale(1.04); }
  66%       { transform: translate3d(-18px, 18px, 0) scale(.97); }
}

/* CSS Floating particles (injected by JS) */
@keyframes particle-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .6; }
  50%       { transform: translate3d(var(--p-amp, 40px), -30px, 0); opacity: .9; }
}

/* Noise texture — subtle grain, not overwhelming */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad); z-index: 10001;
  transition: width .05s linear;
  box-shadow: 0 0 8px rgba(245,158,11,.5);
}

main { position: relative; z-index: 2; }

/* ── PAGE LOADER ──────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .7s ease, visibility .7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  font-size: 38px; font-weight: 900; letter-spacing: -.05em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
}
/* Shimmer scan line on loader */
.loader-logo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loader-scan 1.4s ease-in-out infinite;
  background-clip: text;
}
@keyframes loader-scan {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(300%) skewX(-12deg); }
}

.loader-bar {
  width: 160px; height: 2px; background: rgba(255,255,255,.07); border-radius: var(--r-f); overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; width: 40%; height: 100%;
  background: var(--grad);
  animation: loader-progress 1.6s var(--ease) infinite;
}
@keyframes loader-progress {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor {
  display: none;
  width: 10px; height: 10px; background: var(--a1); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  mix-blend-mode: screen;
  transition: transform .12s var(--ease);
  will-change: left, top;
}
.cursor-ring {
  display: none;
  width: 38px; height: 38px; border: 1.5px solid rgba(245,158,11,.4); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transition: width .3s var(--spring), height .3s var(--spring), border-color .3s;
  will-change: left, top;
}
.cursor.hovering      { transform: scale(2.2); }
.cursor-ring.hovering { width: 54px; height: 54px; border-color: rgba(245,158,11,.7); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(9,9,11,.88);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.3);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar__logo  { font-size: 20px; font-weight: 900; letter-spacing: -.035em; }
.navbar__logo .grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: filter .3s;
}
.navbar__logo:hover .grad { filter: brightness(1.2); }

.navbar__nav { display: flex; align-items: center; gap: 28px; }
.navbar__nav a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .15s; position: relative; padding-bottom: 2px;
}
.navbar__nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.navbar__nav a:hover { color: var(--text-1); }
.navbar__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* WhatsApp button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-size: 14px; font-weight: 600;
  border-radius: var(--r-f);
  transition: transform .4s var(--spring), box-shadow .3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-wa::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform .5s var(--reveal);
}
.btn-wa:hover::before { transform: translateX(200%) skewX(-12deg); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-wa svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile toggle */
.navbar__toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: var(--bg-glass-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-1);
  transition: background .2s, border-color .2s;
}
.navbar__toggle:hover { background: rgba(255,255,255,.1); border-color: var(--border-h); }
.navbar__toggle svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  background: rgba(9,9,11,.97); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 8px;
  animation: menu-slide-in .3s var(--reveal) both;
}
.mobile-menu.open { display: flex; }
@keyframes menu-slide-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.mobile-menu a {
  font-size: 22px; font-weight: 700; color: var(--text-2);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color .15s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--text-1); padding-left: 8px; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--a1);
  margin-bottom: 16px; padding: 6px 16px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.22);
  border-radius: var(--r-f);
}
.section-title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-2);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 96px; position: relative; overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  will-change: transform;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 80px 0;
}
.hero__content { z-index: 2; }

/* Hero eyebrow badge */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--a1); margin-bottom: 24px;
  padding: 8px 16px; background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.22);
  border-radius: var(--r-f);
  opacity: 0; transform: translateY(20px);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; background: var(--a1); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245,158,11,.6);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.7); }
}

/* Hero title */
.hero__title {
  font-size: clamp(40px, 7vw, 88px); font-weight: 900;
  letter-spacing: -.038em; line-height: .98;
  margin-bottom: 24px;
}
.hero__title .line { display: block; }

/* Split word reveal — each word slides up with staggered delay */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewY(3deg);
  transition: opacity .7s var(--reveal), transform .7s var(--reveal);
}
.hero__title .word.revealed {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}
.hero__title .word:nth-child(1) { transition-delay: .0s; }
.hero__title .word:nth-child(2) { transition-delay: .08s; }
.hero__title .word:nth-child(3) { transition-delay: .16s; }
.hero__title .word:nth-child(4) { transition-delay: .24s; }
.hero__title .word:nth-child(5) { transition-delay: .32s; }
.hero__title .word:nth-child(6) { transition-delay: .40s; }

/* Hero subtitle */
.hero__sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-2);
  line-height: 1.75; margin-bottom: 40px; max-width: 480px;
  opacity: 0; transform: translateY(20px);
}

/* Hero trust badge */
.hero__trust {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.07); border: 1px solid rgba(74,222,128,.2);
  border-radius: var(--r-f); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #4ade80;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
}
.hero__trust .trust-dot {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74,222,128,.6);
}

/* Hero CTAs */
.hero__actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: var(--grad); color: #fff;
  font-size: 15px; font-weight: 600; border-radius: var(--r-f);
  transition: transform .4s var(--spring), box-shadow .3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.16);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .55s var(--reveal);
}
.btn-primary:hover::before { transform: translateX(250%) skewX(-15deg); }
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(239,68,68,.38); }
.btn-primary svg    { width: 18px; height: 18px; transition: transform .3s var(--spring); }
.btn-primary:hover svg { transform: translateX(5px); }

/* Secondary CTA button */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  background: var(--bg-glass-2); color: var(--text-1);
  font-size: 15px; font-weight: 500; border-radius: var(--r-f);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1); border-color: var(--border-h);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-secondary svg { width: 16px; height: 16px; }

/* ── HERO VISUAL — floating cards ────────────────────────── */
.hero__visual {
  position: relative; display: flex; align-items: center;
  justify-content: center; min-height: 500px;
  perspective: 1200px;
}

/* Orbital rings with glowing orb */
.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  animation: ring-spin linear infinite;
  will-change: transform;
}
.hero__ring:nth-child(1) { width: 380px; height: 380px; animation-duration: 28s; }
.hero__ring:nth-child(2) { width: 490px; height: 490px; animation-duration: 40s; animation-direction: reverse; }
.hero__ring:nth-child(3) { width: 600px; height: 600px; animation-duration: 55s; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Glowing orbs on rings — amber/rose palette */
.hero__ring:nth-child(1)::after {
  content: '';
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--a1);
  box-shadow: 0 0 16px 4px rgba(245,158,11,.7);
}
.hero__ring:nth-child(2)::after {
  content: '';
  position: absolute; bottom: -4px; right: 20%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--a2);
  box-shadow: 0 0 14px 4px rgba(239,68,68,.6);
}
.hero__ring:nth-child(3)::after {
  content: '';
  position: absolute; top: 20%; right: -4px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--a3);
  box-shadow: 0 0 12px 3px rgba(59,130,246,.5);
}

/* Hero dashboard wrapper — 3D perspective container */
.hero__dashboard {
  position: relative; z-index: 2;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Central 3D glass panel */
.hero__panel {
  position: relative;
  width: 340px;
  background: rgba(255,255,255,.038);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  transform: perspective(1200px) rotateX(-6deg) rotateY(5deg);
  transform-style: preserve-3d;
  box-shadow:
    0 32px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: panel-float 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity .6s var(--reveal);
}
.hero__panel.visible { opacity: 1; }
@keyframes panel-float {
  0%, 100% { transform: perspective(1200px) rotateX(-6deg) rotateY(5deg) translateY(0px); }
  50%       { transform: perspective(1200px) rotateX(-6deg) rotateY(5deg) translateY(-10px); }
}

/* Panel header */
.hero__panel-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero__panel-icon {
  width: 36px; height: 36px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.hero__panel-icon svg,
.hero__panel-icon img { width: 36px; height: 36px; }
.hero__panel-title {
  font-size: 14px; font-weight: 700; color: var(--text-1); letter-spacing: -.01em;
}
.hero__panel-sub {
  font-size: 11px; color: var(--text-3); margin-top: 1px;
}

/* Panel main number */
.hero__panel-metric {
  text-align: center; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 18px;
}
.hero__panel-num {
  font-size: 42px; font-weight: 900; letter-spacing: -.045em; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.hero__panel-change {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: #4ade80;
  background: rgba(74,222,128,.12); padding: 3px 8px; border-radius: var(--r-f);
}

/* Mini bar chart */
.hero__panel-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 48px; margin-bottom: 16px;
}
.hero__panel-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(245,158,11,.15);
  transition: background .3s;
}
.hero__panel-bar.active { background: var(--grad); }

/* Platform row list */
.hero__panel-platforms {
  display: flex; flex-direction: column; gap: 8px;
}
.hero__panel-platform {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
}
.hero__panel-platform-icon {
  width: 24px; height: 24px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.hero__panel-platform-icon svg,
.hero__panel-platform-icon img { width: 24px; height: 24px; }
.hero__panel-platform-name { font-size: 12px; font-weight: 600; color: var(--text-2); flex: 1; }
.hero__panel-platform-val {
  font-size: 12px; font-weight: 700; color: var(--text-1);
}

/* Floating satellite badges */
.hero__badge {
  position: absolute;
  background: rgba(14,14,21,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  opacity: 0;
  white-space: nowrap;
}
.hero__badge.visible { opacity: 1; }

.hero__badge-1 {
  top: -20px; right: -30px;
  animation: badge-float-1 5s ease-in-out infinite .3s;
}
.hero__badge-2 {
  bottom: 40px; left: -40px;
  animation: badge-float-2 6.5s ease-in-out infinite .8s;
}
.hero__badge-3 {
  top: 50%; right: -50px;
  transform: translateY(-50%);
  animation: badge-float-3 7s ease-in-out infinite 1.2s;
}

@keyframes badge-float-1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}
@keyframes badge-float-2 {
  0%, 100% { transform: translateY(0px) rotate(1.5deg); }
  50%       { transform: translateY(-12px) rotate(-2deg); }
}
@keyframes badge-float-3 {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50%       { transform: translateY(calc(-50% - 8px)) translateX(4px); }
}

.hero__badge-icon {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--text-1);
}
.hero__badge-icon svg { width: 16px; height: 16px; }
.hero__badge-val {
  font-size: 14px; font-weight: 900; letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-top: 2px;
}
.hero__badge-label { font-size: 10px; color: var(--text-3); }

/* Legacy mini-card support (mobile fallback) */
.hero__cards {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero__mini-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 20px 18px; text-align: center;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 0; transform: translateY(20px) scale(.94);
  will-change: transform;
  position: relative; overflow: hidden;
}
.hero__mini-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 20%),
    rgba(255,255,255,var(--glow-opacity, 0)) 0%,
    transparent 65%
  );
  pointer-events: none; border-radius: inherit;
  transition: background .1s;
}
.hero__mini-card:nth-child(even) { margin-top: 24px; }
.hero__mini-card__icon {
  width: 40px; height: 40px; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); overflow: hidden;
}
.hero__mini-card__icon svg,
.hero__mini-card__icon img { width: 40px; height: 40px; border-radius: var(--r-sm); }
.hero__mini-card__label {
  font-size: 11px; color: var(--text-3); margin-bottom: 3px;
  text-transform: uppercase; letter-spacing: .06em;
}
.hero__mini-card__val { font-size: 15px; font-weight: 800; color: var(--text-1); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  padding: 52px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.008);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,.06), transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; opacity: 0; transform: translateY(24px); }
.stat-val {
  font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--text-2); font-weight: 500; }
/* Counter animation — applied by JS when in view */
.stat-val.counting { transition: none; }

/* ── FEATURED PRODUCTS ────────────────────────────────────── */
.featured-section { padding: 88px 0; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.featured-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
  will-change: transform;
  /* dynamic glow */
  --glow-x: 50%; --glow-y: 0%; --glow-opacity: 0;
}
/* Reflective surface overlay */
.featured-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(255,255,255,var(--glow-opacity)) 0%,
    transparent 60%
  );
  z-index: 3; transition: background .08s;
}
.featured-card:hover { border-color: rgba(245,158,11,.25); box-shadow: var(--shadow-lg), 0 0 40px rgba(245,158,11,.12); }
.featured-card__glow {
  position: absolute; top: 0; left: 0; right: 0; height: 220px;
  pointer-events: none; z-index: 0;
}
.featured-card__platform-icon {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.55);
  /* Prevent body text from visually bleeding through */
  isolation: isolate;
}
.featured-card__platform-icon svg,
.featured-card__platform-icon img { width: 44px; height: 44px; }
.featured-card__img {
  width: 100%;
  height: 200px;
  min-height: 200px;           /* prevents collapse when image is missing */
  object-fit: cover;
  display: block;
  /* Gradient placeholder shown when no image src or image fails to load */
  background: linear-gradient(145deg, #111118 0%, #18181f 40%, #0e0e15 100%);
  transition: transform .6s var(--reveal); position: relative; z-index: 1;
}
.featured-card:hover .featured-card__img { transform: scale(1.07); }
.featured-card__body { padding: 24px; position: relative; z-index: 2; }
.featured-card__platform-name {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.featured-card__name   { font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.featured-card__price  {
  font-size: 26px; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px; letter-spacing: -.025em; display: inline-block;
}

/* ── SERVICES / TABS ──────────────────────────────────────── */
.services-section { padding: 80px 0 96px; }
.tabs-scroll { overflow-x: auto; scrollbar-width: none; }
.tabs-scroll::-webkit-scrollbar { display: none; }

#platform-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--r-f); width: fit-content;
  margin: 0 auto 52px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.tab-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: var(--r-f);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: all .3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.tab-btn:hover { color: var(--text-1); background: var(--bg-glass-2); }
.tab-btn.active {
  background: var(--bg-card); color: var(--text-1);
  border: 1px solid var(--border-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
/* Tab press effect */
.tab-btn:active { transform: scale3d(.97, .97, 1); }

/* Tab icon — SVG brand logos */
.tab-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tab-icon svg,
.tab-icon img { width: 24px; height: 24px; border-radius: 6px; }

/* Tab ripple */
.tab-ripple {
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,.08);
  animation: tab-ripple-anim .4s ease both;
  pointer-events: none;
}
@keyframes tab-ripple-anim {
  from { opacity: .8; transform: scale3d(.6,.6,1); }
  to   { opacity: 0; transform: scale3d(1.2,1.2,1); }
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: pan-in .5s var(--reveal) both; }
@keyframes pan-in {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale3d(.99,.99,1); }
  to   { opacity: 1; transform: none; }
}

/* Panel header */
.panel-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px; padding: 24px 32px;
  background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--r-lg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.panel-platform-badge {
  width: 72px; height: 72px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.panel-platform-badge svg { width: 72px; height: 72px; }
.panel-title    { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 6px; }
.panel-subtitle { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* Category block */
.categories-wrapper { display: flex; flex-direction: column; gap: 52px; }
.category-block { }
.category-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }

/* Category icon — SVG line art */
.cat-icon-svg {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,.09); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-md);
  color: var(--a1);
}
.cat-icon-svg svg { width: 20px; height: 20px; }
.cat-name { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 4px; }
.cat-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* Packages grid */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

/* ── PACKAGE CARDS — 3D Tilt ─────────────────────────────── */
.package-card {
  position: relative; padding: 28px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .3s, box-shadow .3s;
  overflow: hidden;
  will-change: transform;
  --glow-x: 50%; --glow-y: 50%; --glow-opacity: 0;
}
/* Reflective light overlay */
.package-card::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(255,255,255,var(--glow-opacity)) 0%,
    transparent 65%
  );
  z-index: 2;
}
/* Top gradient line on hover */
.package-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.package-card:hover { border-color: rgba(245,158,11,.3); box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(245,158,11,.1); }
.package-card:hover::after { transform: scaleX(1); }

/* Featured / Terpopuler card */
.package-card--featured {
  border-color: rgba(245,158,11,.25);
  background: linear-gradient(135deg, rgba(245,158,11,.07), rgba(239,68,68,.04));
}

/* Best-seller badge */
.badge-best {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; background: var(--grad); padding: 4px 10px; border-radius: var(--r-f);
}

.pkg-qty   { font-size: 22px; font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.pkg-price {
  font-size: 20px; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 22px;
}

/* ── ORDER BUTTON ─────────────────────────────────────────── */
.btn-order {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px;
  background: rgba(245,158,11,.08); color: var(--text-1);
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-md); border: 1px solid rgba(245,158,11,.24);
  transition: all .4s var(--spring); position: relative; overflow: hidden;
}
.btn-order::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0; transition: opacity .3s;
}
.btn-order:hover  { border-color: rgba(245,158,11,.55); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.22); }
.btn-order:hover::before { opacity: .18; }
.btn-order__t { position: relative; z-index: 1; }
.btn-order__i { width: 14px; height: 14px; position: relative; z-index: 1; transition: transform .3s var(--spring); flex-shrink: 0; }
.btn-order:hover .btn-order__i { transform: translateX(5px); }

/* Featured order button (full gradient) */
.btn-order--featured {
  background: var(--grad); border-color: transparent; color: #fff;
  width: auto; padding: 12px 24px;
}
.btn-order--featured::before { display: none; }
.btn-order--featured:hover  { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(239,68,68,.4); opacity: .92; }

/* ── BENEFITS SECTION ─────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.benefit-card {
  padding: 32px; background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  will-change: transform;
  --glow-x: 50%; --glow-y: 50%; --glow-opacity: 0;
}
/* Reflective overlay */
.benefit-card::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(255,255,255,var(--glow-opacity)) 0%,
    transparent 60%
  );
  z-index: 0;
}
/* Bottom gradient accent on hover */
.benefit-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.benefit-card:hover { border-color: var(--border-h); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.benefit-card:hover::after { transform: scaleX(1); }

.ben-icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,.09); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--a1);
  transition: all .3s; position: relative; z-index: 1;
}
.ben-icon svg { width: 20px; height: 20px; }
.benefit-card:hover .ben-icon { background: rgba(245,158,11,.18); box-shadow: 0 0 22px rgba(245,158,11,.22); }
.ben-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; position: relative; z-index: 1; }
.ben-desc  { font-size: 14px; color: var(--text-2); line-height: 1.75; position: relative; z-index: 1; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-glass); transition: border-color .3s;
}
.faq-item.open { border-color: rgba(245,158,11,.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--text-1); cursor: pointer; background: none;
}
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--bg-glass-2); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--spring), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(245,158,11,.16); }
.faq-icon svg { width: 12px; height: 12px; color: var(--text-2); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .55s var(--reveal), padding .3s;
  padding: 0 24px; font-size: 14px; color: var(--text-2); line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 22px; }

/* ── CONTACT CTA ──────────────────────────────────────────── */
.contact-section { padding: 80px 0 96px; }
.cta-card {
  position: relative; padding: 80px 56px; border-radius: var(--r-xl);
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 0%,  rgba(245,158,11,.14), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(239,68,68,.09), transparent 50%);
}
.cta-title {
  font-size: clamp(30px, 5vw, 54px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.cta-sub { font-size: 18px; color: var(--text-2); margin-bottom: 44px; position: relative; z-index: 1; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.contact-info { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-2); }
.contact-info-item svg { width: 18px; height: 18px; }
.contact-info-item strong { color: var(--text-1); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { padding: 56px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo {
  font-size: 22px; font-weight: 900; letter-spacing: -.035em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
}
.footer-desc { font-size: 14px; color: var(--text-2); line-height: 1.75; max-width: 290px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.soc-link {
  width: 38px; height: 38px;
  background: var(--bg-glass-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: all .3s var(--spring);
}
.soc-link:hover { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.32); color: var(--text-1); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(245,158,11,.15); }
.soc-link svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-2); transition: color .15s, padding-left .2s; }
.footer-links a:hover { color: var(--text-1); padding-left: 4px; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-copy span { color: var(--a1); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale3d(.98,.98,1);
  transition: opacity .75s var(--reveal), transform .75s var(--reveal);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .45s; }

[data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .65s var(--reveal), transform .65s var(--reveal);
}
[data-stagger].revealed > *:nth-child(1) { opacity:1;transform:none;transition-delay:.00s }
[data-stagger].revealed > *:nth-child(2) { opacity:1;transform:none;transition-delay:.09s }
[data-stagger].revealed > *:nth-child(3) { opacity:1;transform:none;transition-delay:.18s }
[data-stagger].revealed > *:nth-child(4) { opacity:1;transform:none;transition-delay:.27s }
[data-stagger].revealed > *:nth-child(5) { opacity:1;transform:none;transition-delay:.36s }
[data-stagger].revealed > *:nth-child(6) { opacity:1;transform:none;transition-delay:.45s }

/* ── PLATFORM GRADIENT CLASSES ────────────────────────────── */
.grad-ig-luar  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.grad-ig-indo  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.grad-tiktok   { background: linear-gradient(135deg,#69C9D0,#EE1D52,#010101); }
.grad-youtube  { background: linear-gradient(135deg,#ff0000,#cc0000); }
.grad-shopee   { background: linear-gradient(135deg,#f85606,#f53d2d); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__sub          { margin: 0 auto 40px; }
  .hero__actions      { justify-content: center; }
  .hero__visual       { display: none; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .featured-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section            { padding: 64px 0; }
  .section-header     { margin-bottom: 40px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle     { display: flex; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .featured-grid      { grid-template-columns: 1fr; }
  #platform-tabs      { border-radius: var(--r-lg); }
  .tab-btn            { padding: 8px 12px; }
  .tab-label          { display: none; }
  .tab-icon           { width: 28px; height: 28px; }
  .tab-icon svg,
  .tab-icon img       { width: 28px; height: 28px; }
  .panel-header       { flex-direction: column; text-align: center; padding: 20px; }
  .packages-grid      { grid-template-columns: 1fr; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .cta-card           { padding: 48px 24px; }
  .contact-info       { flex-direction: column; gap: 16px; }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions > * { justify-content: center; }
}
