/* ========================================
   NUGAS.IN — STYLE.CSS
   Gen Z Modern · Purple Aesthetic
   ======================================== */

/* ===== VARIABLES ===== */
:root {
  --pr: #6D28D9;
  --pr-l: #7C3AED;
  --pr-d: #5B21B6;
  --ac: #A855F7;
  --ac-l: #C4B5FD;
  --neon: #E879F9;
  --dark: #1E1B4B;
  --dark2: #130D3A;
  --txt: #1F2937;
  --muted: #6B7280;
  --white: #fff;
  --bg: #FAFAFA;
  --bg-p: #F5F3FF;
  --bg-pe: #EDE9FE;
  --border: rgba(109,40,217,0.15);
  --shd: 0 20px 60px rgba(109,40,217,0.15);
  --shd-sm: 0 4px 20px rgba(109,40,217,0.1);
  --r: 20px;
  --r-sm: 12px;
  --r-lg: 32px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ff-h: 'Syne', sans-serif;
  --ff-b: 'Plus Jakarta Sans', sans-serif;
}

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

/* ===== BG FX ===== */
.bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: blobAnim 10s ease-in-out infinite;
}
.b1 { width: 700px; height: 700px; background: radial-gradient(#7C3AED, #A855F7); top: -250px; left: -200px; animation-delay: 0s; }
.b2 { width: 500px; height: 500px; background: radial-gradient(#E879F9, #6D28D9); top: 40%; right: -150px; animation-delay: -4s; }
.b3 { width: 400px; height: 400px; background: radial-gradient(#C4B5FD, #6D28D9); bottom: -150px; left: 25%; animation-delay: -7s; }
.grid-layer {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(109,40,217,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
@keyframes blobAnim {
  0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 60% 40% 50% 70%; }
  20% { transform: translate(40px,-30px) scale(1.1) rotate(8deg); border-radius: 50% 60% 40% 60%; }
  40% { transform: translate(-25px,35px) scale(0.92) rotate(-5deg); border-radius: 70% 50% 60% 40%; }
  60% { transform: translate(15px,-15px) scale(1.06) rotate(4deg); border-radius: 40% 60% 50% 70%; }
  80% { transform: translate(-10px,20px) scale(0.98) rotate(-2deg); border-radius: 60% 40% 70% 50%; }
}

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(109,40,217,0.08);
  transition: all var(--tr);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 30px rgba(109,40,217,0.1);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; gap: 28px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-h); font-size: 1.45rem; font-weight: 700;
  color: var(--dark); flex-shrink: 0;
}
.logo em { color: var(--pr); font-style: normal; }
.logo-mark {
  position: relative;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  flex-shrink: 0;
}
.logo-mark.sm { width: 32px; height: 32px; font-size: 0.85rem; }
.logo-tick {
  position: absolute; bottom: -4px; right: -4px;
  width: 15px; height: 15px;
  background: #10B981; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.45rem; color: #fff; border: 2px solid #fff;
}
.nav-menu {
  display: flex; align-items: center; gap: 2px; flex: 1;
    display: flex;
  gap: 20px;
  margin-left: auto;
}
.nav-lnk {
  padding: 8px 13px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r-sm);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap; background: none; font-family: inherit;
  position: relative;
  overflow: hidden;
}
.nav-lnk::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pr), var(--ac));
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-50%);
}
.nav-lnk:hover, .nav-lnk.active { color: var(--pr); background: var(--bg-p); }
.nav-lnk:hover::after, .nav-lnk.active::after { width: 60%; }
.drop-btn { display: flex; align-items: center; gap: 6px; }
.chev { font-size: 0.65rem; transition: transform var(--tr); }
.has-drop { position: relative; }
.has-drop.open .chev { transform: rotate(180deg); }

/* ===== MEGA DROPDOWN ===== */
.mega-drop {
  position: absolute;
  top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: 480px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-radius: var(--r);
  box-shadow: 0 24px 70px rgba(109,40,217,0.22), 0 0 0 1px rgba(109,40,217,0.1);
  opacity: 0; pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
  transform-origin: top center;
}
.mega-drop.show {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  animation: dropDownPremium 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes dropDownPremium {
  0% { opacity: 0; transform: translateX(-50%) translateY(-30px) scale(0.92); filter: blur(4px); }
  60% { opacity: 1; transform: translateX(-50%) translateY(4px) scale(1.01); filter: blur(0px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); filter: blur(0px); }
}
.mega-drop.show .mega-card {
  animation: cardSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.mega-drop.show .mega-card:nth-child(1) { animation-delay: 0.05s; }
.mega-drop.show .mega-card:nth-child(2) { animation-delay: 0.1s; }
.mega-drop.show .mega-card:nth-child(3) { animation-delay: 0.15s; }
.mega-drop.show .mega-card:nth-child(4) { animation-delay: 0.2s; }
.mega-drop.show .mega-card:nth-child(5) { animation-delay: 0.25s; }
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Arrow */
.mega-drop::before {
  content: ''; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: #fff;
  border-top: 1px solid rgba(109,40,217,0.1);
  border-left: 1px solid rgba(109,40,217,0.1);
}
.mega-inner { padding: 18px; }
.mega-ttl {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin-bottom: 10px; padding: 0 4px;
}
.mega-list { display: flex; flex-direction: column; gap: 4px; }
.mega-card {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 12px; border-radius: var(--r-sm);
  transition: all var(--tr); text-align: left; width: 100%;
  font-family: inherit; cursor: pointer; position: relative; overflow: hidden;
}
.mega-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--bg-p), transparent);
  opacity: 0; transition: opacity var(--tr);
  border-radius: var(--r-sm);
}
.mega-card:hover { 
  transform: translateX(8px) scale(1.03);
  background: linear-gradient(120deg, var(--bg-p), rgba(109,40,217,0.08));
  box-shadow: 0 8px 25px rgba(109,40,217,0.12);
}
.mega-card:hover::before { opacity: 1; }
.mega-card:hover .mc-ico { background: linear-gradient(135deg, var(--pr), var(--ac)); color: #fff; transform: scale(1.12) rotate(-8deg); box-shadow: 0 6px 20px rgba(109,40,217,0.3); }
.mega-card:hover .mc-arr { opacity: 1; transform: translateX(0); }

/* Mega More Card - Gen Z Style */
.mega-card.mega-more {
  background: linear-gradient(135deg, rgba(109,40,217,0.05), rgba(168,85,247,0.05));
  border: 1.5px dashed rgba(109,40,217,0.25);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.mega-card.mega-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.mega-card.mega-more:hover::after {
  transform: translateX(100%);
}
.mega-card.mega-more:hover {
  background: linear-gradient(135deg, rgba(109,40,217,0.08), rgba(168,85,247,0.08));
  border-style: solid;
  border-color: var(--pr);
  box-shadow: 0 8px 30px rgba(109,40,217,0.15);
}
.mega-card.mega-more .mc-ico {
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff;
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(109,40,217,0); }
}
.mega-card.mega-more .mc-arr {
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.7; }
}
.mc-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-p); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pr); font-size: 0.95rem;
  transition: all var(--tr); position: relative; z-index: 1;
}
.mc-info { flex: 1; position: relative; z-index: 1; }
.mc-info b { display: block; font-size: 0.875rem; font-weight: 600; color: var(--txt); }
.mc-info small { font-size: 0.75rem; color: var(--muted); }
.mc-arr {
  color: var(--pr); font-size: 0.75rem; flex-shrink: 0;
  opacity: 0; transform: translateX(-8px);
  transition: all var(--tr); position: relative; z-index: 1;
}

/* ===== NAV CTA ===== */
.btn-cta {
  margin-left: 20px;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff; border-radius: 100px;
  font-size: 0.855rem; font-weight: 600;
  flex-shrink: 0; box-shadow: 0 4px 18px rgba(109,40,217,0.35);
  transition: all var(--tr);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(109,40,217,0.45); }

/* ===== HAMBURGER ===== */
.hmbgr {
  display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto;
}
.hmbgr span {
  display: block; width: 22px; height: 2px;
  background: var(--pr); border-radius: 2px; transition: all var(--tr);
}
.hmbgr.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hmbgr.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hmbgr.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 24px 44px;
  background: linear-gradient(155deg, #F5F3FF 0%, #EDE9FE 45%, #F5F3FF 100%);
  position: relative; z-index: 1;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(109,40,217,0.04);
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(168,85,247,0.05);
}
.hero-wrap {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px;
  align-items: center;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(109,40,217,0.08);
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--pr);
  margin-bottom: 20px;
  animation: chipPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
  position: relative;
  overflow: hidden;
}
.hero-chip i { color: #F59E0B; }
@keyframes chipPop {
  0% { transform: scale(0.8) translateY(10px); opacity: 0; }
  70% { transform: scale(1.05) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.hero-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,0.1), transparent);
  transform: translateX(-100%);
  animation: shimmerSlide 3s ease-in-out infinite;
}
@keyframes shimmerSlide {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.hero-h1 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800; line-height: 1.18;
  color: var(--dark); margin-bottom: 18px;
}
.shine-txt {
  background: linear-gradient(135deg, var(--pr) 0%, var(--neon) 60%, var(--ac) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shineMove 3s ease-in-out infinite;
}
@keyframes shineMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  font-size: 0.975rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 24px; max-width: 460px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
}
.hero-pills span {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #faf7f7;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: var(--txt);
  box-shadow: var(--shd-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pillPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  overflow: hidden;
}
.hero-pills span:nth-child(1) { animation-delay: 0.1s; }
.hero-pills span:nth-child(2) { animation-delay: 0.2s; }
.hero-pills span:nth-child(3) { animation-delay: 0.3s; }
@keyframes pillPop {
  0% { transform: scale(0.8) translateY(10px); opacity: 0; }
  70% { transform: scale(1.06) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.hero-pills span:hover { 
  border-color: var(--pr);
  color: var(--pr);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 25px rgba(109,40,217,0.18);
  z-index: 2;
}
.hero-pills span i { color: var(--pr);
 }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff; border-radius: 100px;
  font-weight: 600; font-size: 0.925rem;
  box-shadow: 0 6px 22px rgba(109,40,217,0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ac), var(--pr));
  opacity: 0; transition: opacity var(--tr);
}
.btn-primary:hover { 
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(109,40,217,0.5);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary.sm { padding: 10px 20px; font-size: 0.855rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: #fff; color: var(--pr);
  border: 2px solid var(--pr); border-radius: 100px;
  font-weight: 600; font-size: 0.925rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 1;
}
.btn-outline:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(109,40,217,0.3);
}
.btn-outline:hover::before {
  width: 300%; height: 300%;
}
.btn-outline > * { position: relative; z-index: 2; }

/* ===== HERO VISUAL ===== */
.hero-vis {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  flex-direction: column;
  min-height: 320px;
}
.notif-float {
  position: absolute; top: 0; right: 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px rgba(109,40,217,0.2);
  border: 1px solid rgba(109,40,217,0.12);
  z-index: 10; white-space: nowrap;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.nf-check {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
}
.notif-float strong { display: block; font-size: 0.78rem; color: var(--txt); font-weight: 600; }
.nf-stars { color: #F59E0B; font-size: 0.82rem; letter-spacing: 1px; }

/* Laptop Mockup */
.laptop {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(109,40,217,0.28));
  animation: lapFloat 4s ease-in-out infinite;
}
@keyframes lapFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  75% { transform: translateY(-6px) rotate(0deg); }
}
.lap-top { width: 340px; }
.lap-screen {
  width: 100%; height: 220px;
  background: linear-gradient(160deg, #1E1B4B, #2D1B69);
  border-radius: 14px 14px 4px 4px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #3D2A7A;
  position: relative; overflow: hidden;
}
.screen-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(168,85,247,0.25), transparent 70%);
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.screen-logo {
  display: flex; align-items: center; justify-content: center;
  z-index: 1; position: relative;
  width: 100%; height: 100%;
}
.screen-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 8px 24px rgba(168,85,247,0.4)); }
}
.lap-hinge { height: 10px; width: 55%; margin: 0 auto; background: linear-gradient(to bottom, #2D2D2D, #1A1A1A); border-radius: 0 0 4px 4px; }
.lap-base { height: 12px; background: linear-gradient(to bottom, #2A2A2A, #1A1A1A); border-radius: 4px 4px 10px 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.35); }

/* Prodi Ring */
.prodi-ring {
  position: relative;
  width: 340px;
  height: 52px;
  margin: 12px auto 0;
}
.prodi-ring .book {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -44px;
  margin-top: -12px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  animation: prodiOrbit 16s linear infinite;
  pointer-events: none;
  will-change: transform, opacity, filter;
}
.bk1 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.bk2 { background: linear-gradient(135deg, #6D28D9, #A855F7); }
.bk3 { background: linear-gradient(135deg, #2563EB, #4F46E5); }
.bk4 { background: linear-gradient(135deg, #0891B2, #2563EB); }
.bk5 { background: linear-gradient(135deg, #059669, #10B981); }
.bk6 { background: linear-gradient(135deg, #D97706, #F59E0B); }
.bk7 { background: linear-gradient(135deg, #DC2626, #EF4444); }
.bk8 { background: linear-gradient(135deg, #7C2D12, #B45309); }
.bk9 { background: linear-gradient(135deg, #9333EA, #C084FC); }
.bk10 { background: linear-gradient(135deg, #DB2777, #F472B6); }

/* Stagger delays for 10 books */
.prodi-ring .book:nth-child(1)  { animation-delay: 0s; }
.prodi-ring .book:nth-child(2)  { animation-delay: -1.6s; }
.prodi-ring .book:nth-child(3)  { animation-delay: -3.2s; }
.prodi-ring .book:nth-child(4)  { animation-delay: -4.8s; }
.prodi-ring .book:nth-child(5)  { animation-delay: -6.4s; }
.prodi-ring .book:nth-child(6)  { animation-delay: -8s; }
.prodi-ring .book:nth-child(7)  { animation-delay: -9.6s; }
.prodi-ring .book:nth-child(8)  { animation-delay: -11.2s; }
.prodi-ring .book:nth-child(9)  { animation-delay: -12.8s; }
.prodi-ring .book:nth-child(10) { animation-delay: -14.4s; }

@keyframes prodiOrbit {
  0%   { transform: translateX(-150px) translateY(10px) scale(0.5); opacity: 0.15; filter: blur(2px); }
  15%  { transform: translateX(-80px) translateY(-10px) scale(0.82); opacity: 0.65; filter: blur(0.3px); }
  35%  { transform: translateX(0) translateY(-18px) scale(1); opacity: 1; filter: blur(0); }
  55%  { transform: translateX(80px) translateY(-10px) scale(0.82); opacity: 0.65; filter: blur(0.3px); }
  70%  { transform: translateX(150px) translateY(10px) scale(0.5); opacity: 0.15; filter: blur(2px); }
  82%  { transform: translateX(80px) translateY(24px) scale(0.38); opacity: 0.05; filter: blur(3px); }
  90%  { transform: translateX(0) translateY(30px) scale(0.3); opacity: 0; filter: blur(4px); }
  96%  { transform: translateX(-80px) translateY(24px) scale(0.38); opacity: 0.05; filter: blur(3px); }
  100% { transform: translateX(-150px) translateY(10px) scale(0.5); opacity: 0.15; filter: blur(2px); }
}

/* Deco dots */
.deco-dot {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  animation: dotFloat 3s ease-in-out infinite;
}
.d1 { width: 12px; height: 12px; top: 10%; left: 5%; opacity: 0.6; animation-delay: 0s; }
.d2 { width: 8px; height: 8px; bottom: 20%; left: 10%; opacity: 0.4; animation-delay: -1s; }
.d3 { width: 16px; height: 16px; top: 50%; left: 0; opacity: 0.3; animation-delay: -2s; }
@keyframes dotFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

/* ===== SECTION HEADER ===== */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(109,40,217,0.09);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--pr); text-transform: uppercase; margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.sec-tag::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,0.15), transparent);
  animation: tagShimmer 3s ease-in-out infinite;
}
@keyframes tagShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.sec-title {
  font-family: var(--ff-h);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--dark);
}
.sec-title::after {
  content: ''; display: block;
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--pr), var(--ac));
  border-radius: 2px; margin: 12px auto 0;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0; transform: translateY(30px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed { 
  opacity: 1; 
  transform: translateY(0) scale(1);
}

/* Orbit cards bypass scroll reveal */
.stat-card[data-reveal],
.stat-card[data-reveal].revealed {
  opacity: unset;
  transform: unset;
  transition: none;
}
[data-reveal="stagger"] {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ===== SERVICES ===== */
.serv-sec {
  padding: 96px 24px;
  background:
    radial-gradient(circle at 20% 30%, rgba(237,233,254,0.6) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(221,214,254,0.5) 0%, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f5f3ff 50%, #ffffff 100%);
  position: relative; z-index: 1;
  overflow: hidden;
}
.serv-sec::before,
.serv-sec::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.serv-sec::before {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #A78BFA 0%, #7C3AED 60%);
  top: -140px; left: -120px;
  opacity: 0.35;
  animation: blobDrift1 14s ease-in-out infinite;
}
.serv-sec::after {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #E879F9 0%, #C4B5FD 60%);
  bottom: -120px; right: -100px;
  opacity: 0.3;
  animation: blobDrift2 18s ease-in-out infinite;
}
.serv-sec .wrap {
  position: relative;
  z-index: 1;
}
.serv-sec .wrap::before {
  content: '';
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}
.serv-sec .wrap::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--pr);
  border-radius: 50%;
  opacity: 0.3;
  top: 15%; left: 20%;
  box-shadow:
    140px 90px 0 rgba(168,85,247,0.28),
    320px -50px 0 rgba(109,40,217,0.22),
    90px 220px 0 rgba(232,121,249,0.28),
    480px 170px 0 rgba(124,58,237,0.22),
    -70px 320px 0 rgba(168,85,247,0.2),
    250px 340px 0 rgba(109,40,217,0.18);
  animation: particleFloat1 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.08); }
  66% { transform: translate(25px, -45px) scale(0.92); }
}
@keyframes particleFloat1 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-35px) translateX(20px) rotate(180deg); opacity: 0.5; }
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .serv-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .serv-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .serv-grid { grid-template-columns: 1fr; gap: 14px; }
}
.serv-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.5);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(109,40,217,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.serv-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(109,40,217,0.15), 0 0 0 1px rgba(168,85,247,0.25) inset;
  border-color: rgba(168,85,247,0.35);
  background: rgba(255, 255, 255, 0.88);
}
.serv-card:hover .sc-visual i {
  animation: visualFloatFast 1.5s ease-in-out infinite;
}
@keyframes visualFloatFast {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  25% { transform: translateY(-8px) scale(1.1) rotate(-3deg); }
  75% { transform: translateY(-4px) scale(1.05) rotate(3deg); }
}
.serv-card.premium-card {
  position: relative;
  overflow: hidden;
}
.serv-card.premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}
.serv-card.premium-card:hover::before {
  left: 100%;
}
.serv-card.premium-card .sc-visual {
  position: relative;
  overflow: hidden;
}
.serv-card.premium-card .sc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.serv-card.premium-card:hover .sc-visual::after {
  opacity: 1;
}
.serv-card.compact .sc-body { padding: 16px; }
.serv-card.compact .sc-ico { 
  width: 36px; height: 36px; 
  font-size: 0.9rem; 
  margin-bottom: 10px; 
}
.serv-card.compact h3 { font-size: 0.95rem; }
.serv-card.compact p { 
  font-size: 0.75rem; 
  line-height: 1.5; 
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.serv-card.compact .sc-feats { 
  display: none; 
}
.serv-card.compact .sc-cta { 
  padding: 8px 14px; 
  font-size: 0.75rem; 
}
.serv-card.compact .sc-visual,
.serv-card.compact .sc-image {
  height: 100px;
}
.serv-card.compact .sc-visual i {
  font-size: 2.5rem;
}
.sc-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.serv-card:hover .sc-image {
  transform: scale(1.05);
}
.sc-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sc-img.writing { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.sc-img.website { background: linear-gradient(135deg, #1E1B4B, #2D1B69); }
.sci-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sci-icon {
  font-size: 5rem; opacity: 0.18;
  position: absolute; color: var(--pr);
}
.sci-icon.light { color: #fff; }
.sci-lines {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,0.5); border-radius: 12px;
  padding: 20px 24px; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 30px rgba(109,40,217,0.12);
}
.scl {
  height: 8px; width: 160px; background: rgba(109,40,217,0.25);
  border-radius: 4px; animation: lineShim 2s ease-in-out infinite;
}
.scl.short { width: 100px; animation-delay: -0.5s; }
.scl.short2 { width: 130px; animation-delay: -1s; }
@keyframes lineShim {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
.web-mock {
  position: relative; z-index: 1;
  width: 200px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.wm-bar { height: 8px; background: rgba(168,85,247,0.7); border-radius: 4px; margin-bottom: 8px; }
.wm-hero {
  height: 55px; border-radius: 7px;
  background: linear-gradient(135deg, rgba(109,40,217,0.5), rgba(168,85,247,0.5));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.48rem; font-weight: 800; color: #fff;
  letter-spacing: 0.06em; margin-bottom: 8px; text-align: center;
  line-height: 1.5;
}
.wm-line { height: 6px; background: rgba(255,255,255,0.18); border-radius: 3px; margin-bottom: 5px; }
.wm-line.short { width: 65%; }
.wm-btn { height: 18px; width: 55%; background: rgba(168,85,247,0.65); border-radius: 9px; margin-top: 8px; }
.sc-body {
  padding: 20px; flex: 1;
  display: flex; flex-direction: column;
}
@media (max-width: 1024px) {
  .sc-body { padding: 16px; }
  .sc-body h3 { font-size: 1rem; }
  .sc-body p { font-size: 0.8rem; }
  .sc-feats { gap: 6px; }
  .sc-feats li { font-size: 0.75rem; }
  .sc-cta { padding: 10px 16px; font-size: 0.8rem; }
  .sc-visual, .sc-image { height: 140px; }
  .sc-visual i { font-size: 3.5rem; }
}
@media (max-width: 640px) {
  .serv-card { cursor: pointer; }
  .sc-body { padding: 16px; position: relative; }
  .sc-body h3 { font-size: 1rem; margin-bottom: 0; }
  .sc-ico { 
    width: 38px; height: 38px; 
    font-size: 1rem; 
    margin-bottom: 10px; 
  }
  .sc-body p { 
    font-size: 0.82rem; 
    line-height: 1.55; 
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), 
                opacity 0.3s ease 0.1s, 
                margin 0.3s ease;
    margin-bottom: 0;
    margin-top: 0;
  }
  .sc-feats { 
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), 
                opacity 0.3s ease 0.1s,
                margin 0.3s ease;
    margin-bottom: 0;
    gap: 6px;
  }
  .sc-feats li { font-size: 0.78rem; }
  .sc-cta { 
    padding: 10px 16px; 
    font-size: 0.8rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), 
                opacity 0.3s ease 0.1s,
                margin 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-p);
    color: var(--pr);
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .serv-card.expanded .sc-toggle {
    transform: rotate(180deg);
    background: var(--pr);
    color: #fff;
  }
  .serv-card.expanded .sc-body p {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 10px;
    margin-top: 4px;
  }
  .serv-card.expanded .sc-feats {
    display: flex;
    max-height: 300px;
    opacity: 1;
    margin-bottom: 14px;
  }
  .serv-card.expanded .sc-cta {
    max-height: 60px;
    opacity: 1;
    margin-top: auto;
    margin-bottom: 4px;
  }
  .sc-visual, .sc-image { height: 90px; }
  .sc-visual i { font-size: 2.2rem; }
}
.sc-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; margin-bottom: 14px;
}
.sc-toggle {
  display: none;
}
.sc-ico.purple { background: rgba(109,40,217,0.1); color: var(--pr); }
.sc-ico.blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.sc-ico.teal { background: rgba(20,184,166,0.1); color: #14B8A6; }
.sc-ico.indigo { background: rgba(99,102,241,0.1); color: #6366F1; }
.sc-ico.orange { background: rgba(249,115,22,0.1); color: #F97316; }
.sc-ico.gold { background: rgba(234,179,8,0.1); color: #EAB308; }
.sc-ico.cyan { background: rgba(6,182,212,0.1); color: #06B6D4; }
.sc-ico.lime { background: rgba(132,204,22,0.1); color: #84CC16; }
.sc-ico.rose { background: rgba(244,63,94,0.1); color: #F43F5E; }
.sc-ico.amber { background: rgba(245,158,11,0.1); color: #F59E0B; }
.sc-ico.pink { background: rgba(236,72,153,0.1); color: #EC4899; }
.sc-ico.slate { background: rgba(100,116,139,0.1); color: #64748B; }
.sc-ico.emerald { background: rgba(16,185,129,0.1); color: #10B981; }
.sc-ico.violet { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.sc-ico.navy { background: rgba(30,58,138,0.1); color: #1E3A8A; }
.sc-ico.crimson { background: rgba(220,38,38,0.1); color: #DC2626; }
.sc-ico.sky { background: rgba(14,165,233,0.1); color: #0EA5E9; }
.sc-ico.yellow { background: rgba(250,204,21,0.1); color: #EAB308; }
.sc-ico.coral { background: rgba(255,127,80,0.1); color: #FF7F50; }
.sc-ico.red { background: rgba(239,68,68,0.1); color: #EF4444; }
.sc-ico.mint { background: rgba(52,211,153,0.1); color: #34D399; }
.sc-ico.dark { background: rgba(30,27,75,0.1); color: #1E1B4B; }

/* Service Card Visual Styles */
.sc-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
.sc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.sc-visual i { position: relative; z-index: 1; animation: visualFloat 4s ease-in-out infinite; }
@keyframes visualFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}
.purple-gradient { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.blue-gradient { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.teal-gradient { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.indigo-gradient { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.orange-gradient { background: linear-gradient(135deg, #F97316, #EA580C); }
.gold-gradient { background: linear-gradient(135deg, #EAB308, #CA8A04); }
.cyan-gradient { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.lime-gradient { background: linear-gradient(135deg, #84CC16, #65A30D); }
.rose-gradient { background: linear-gradient(135deg, #F43F5E, #E11D48); }
.amber-gradient { background: linear-gradient(135deg, #F59E0B, #D97706); }
.pink-gradient { background: linear-gradient(135deg, #EC4899, #DB2777); }
.slate-gradient { background: linear-gradient(135deg, #64748B, #475569); }
.emerald-gradient { background: linear-gradient(135deg, #10B981, #059669); }
.violet-gradient { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.navy-gradient { background: linear-gradient(135deg, #1E3A8A, #1E40AF); }
.crimson-gradient { background: linear-gradient(135deg, #DC2626, #B91C1C); }
.sky-gradient { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.yellow-gradient { background: linear-gradient(135deg, #FDE047, #EAB308); }
.coral-gradient { background: linear-gradient(135deg, #FF7F50, #FF6347); }
.red-gradient { background: linear-gradient(135deg, #EF4444, #DC2626); }
.mint-gradient { background: linear-gradient(135deg, #34D399, #10B981); }
.dark-gradient { background: linear-gradient(135deg, #312E81, #1E1B4B); }
.sc-body h3 {
  font-family: var(--ff-h); font-size: 1.22rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.sc-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; }
.sc-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex: 1; }
.sc-feats li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.855rem; color: var(--txt);
}
.sc-feats li i { color: #10B981; font-size: 0.875rem; flex-shrink: 0; }
.sc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff; border-radius: 100px;
  font-weight: 600; font-size: 0.855rem;
  transition: all var(--tr); align-self: flex-start;
  box-shadow: 0 4px 16px rgba(109,40,217,0.3);
}
.sc-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 26px rgba(109,40,217,0.42); }

/* ===== STATS ===== */
.stats-sec {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative; overflow: hidden; z-index: 1;
}
.stats-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(168,85,247,0.14), transparent 60%);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 240px;
}
.stat-card {
  position: absolute;
  width: 220px;
  text-align: center; padding: 28px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: statOrbit 18s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: -1.5s; }
.stat-card:nth-child(3) { animation-delay: -3s; }
.stat-card:nth-child(4) { animation-delay: -4.5s; }
.stat-card:nth-child(5) { animation-delay: -6s; }
.stat-card:nth-child(6) { animation-delay: -7.5s; }
.stat-card:nth-child(7) { animation-delay: -9s; }
.stat-card:nth-child(8) { animation-delay: -10.5s; }
.stat-card:nth-child(9) { animation-delay: -12s; }
.stat-card:nth-child(10) { animation-delay: -13.5s; }
.stat-card:nth-child(11) { animation-delay: -15s; }
.stat-card:nth-child(12) { animation-delay: -16.5s; }
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168,85,247,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 20px 40px rgba(109,40,217,0.2);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover .stat-ico { 
  transform: scale(1.15) rotate(8deg); 
  box-shadow: 0 8px 25px rgba(109,40,217,0.3);
}
.stat-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin: 0 auto 14px;
}
.stat-ico.purple { background: rgba(109,40,217,0.22); color: #C4B5FD; }
.stat-ico.indigo { background: rgba(79,70,229,0.22); color: #A5B4FC; }
.stat-ico.violet { background: rgba(124,58,237,0.22); color: #DDD6FE; }
.stat-ico.fuchsia { background: rgba(232,121,249,0.22); color: #F0ABFC; }
.stat-ico.teal { background: rgba(20,184,166,0.22); color: #5EEAD4; }
.stat-ico.rose { background: rgba(244,63,94,0.22); color: #FDA4AF; }
.stat-ico.amber { background: rgba(245,158,11,0.22); color: #FCD34D; }
.stat-ico.emerald { background: rgba(16,185,129,0.22); color: #6EE7B7; }
.stat-ico.cyan { background: rgba(6,182,212,0.22); color: #67E8F9; }
.stat-ico.sky { background: rgba(14,165,233,0.22); color: #7DD3FC; }
.stat-ico.lime { background: rgba(132,204,22,0.22); color: #BEF264; }
.stat-ico.orange { background: rgba(249,115,22,0.22); color: #FDBA74; }
.stat-card strong {
  display: block; font-family: var(--ff-h); font-size: 0.975rem;
  font-weight: 700; color: #fff; margin-bottom: 6px;
}
.stat-card p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

@keyframes statOrbit {
  0%   { transform: translateX(-520px) translateY(18px) scale(0.42); opacity: 0.12; filter: blur(3px); z-index: 1; }
  12%  { transform: translateX(-240px) translateY(-8px) scale(0.72); opacity: 0.65; filter: blur(0.4px); z-index: 2; }
  22%  { transform: translateX(0) translateY(-18px) scale(1); opacity: 1; filter: blur(0); z-index: 4; }
  32%  { transform: translateX(240px) translateY(-8px) scale(0.72); opacity: 0.65; filter: blur(0.4px); z-index: 2; }
  45%  { transform: translateX(520px) translateY(18px) scale(0.42); opacity: 0.12; filter: blur(3px); z-index: 1; }
  58%  { transform: translateX(240px) translateY(32px) scale(0.32); opacity: 0.03; filter: blur(4px); z-index: 0; }
  72%  { transform: translateX(0) translateY(38px) scale(0.28); opacity: 0; filter: blur(5px); z-index: 0; }
  85%  { transform: translateX(-240px) translateY(32px) scale(0.32); opacity: 0.03; filter: blur(4px); z-index: 0; }
  100% { transform: translateX(-520px) translateY(18px) scale(0.42); opacity: 0.12; filter: blur(3px); z-index: 1; }
}

/* ===== FAQ ===== */
.faq-sec {
  padding: 96px 24px;
  background: var(--bg-p);
  position: relative; z-index: 1;
}
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: #fff; border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden; transition: all var(--tr);
}
.faq-item:hover { 
  border-color: rgba(109,40,217,0.35); 
  box-shadow: 0 12px 35px rgba(109,40,217,0.12);
  transform: translateX(6px) scale(1.01);
}
.faq-q {
  width: 100%; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; font-family: inherit;
  font-size: 0.925rem; font-weight: 600; color: var(--txt);
  cursor: pointer; transition: all 0.3s ease; background: none; border: none;
}
.faq-q:hover { color: var(--pr); }
.faq-ic {
  flex-shrink: 0; width: 30px; height: 30px;
  background: var(--bg-p); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--pr);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item.open .faq-ic { background: var(--pr); color: #fff; transform: rotate(135deg) scale(1.1); }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
}
.faq-ans p {
  padding: 0 22px 18px;
  font-size: 0.875rem; color: var(--muted); line-height: 1.72;
}
.faq-item.open .faq-ans { max-height: 300px; }
.faq-item.open { 
  border-color: rgba(109,40,217,0.3);
  box-shadow: 0 8px 25px rgba(109,40,217,0.1);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(160deg, #0F0A2A, #1E1B4B);
  padding: 80px 24px 40px;
  position: relative; overflow: hidden; z-index: 1;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), transparent);
}

/* Footer Background Image */
.footer-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-bg-img {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 55%;
  max-width: 600px;
  opacity: 0.08;
  object-fit: contain;
  animation: footerFloat 8s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes footerFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(2deg) scale(1.02); }
}
.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,10,42,0.92) 0%, rgba(30,27,75,0.88) 50%, rgba(15,10,42,0.95) 100%);
  z-index: 1;
}
.site-footer .wrap {
  position: relative;
  z-index: 2;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
.foot-brand .logo { color: #fff; margin-bottom: 14px; display: inline-flex; }
.foot-brand p { font-size: 0.855rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.foot-col h4 {
  font-family: var(--ff-h); font-size: 0.82rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.foot-col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.855rem; color: rgba(255,255,255,0.45);
  padding: 6px 0; transition: all var(--tr);
}
.foot-col a:hover { color: var(--ac-l); transform: translateX(4px); }
.foot-col a i { color: var(--ac); font-size: 0.875rem; }
.foot-bottom {
  padding-top: 22px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem; color: rgba(255,255,255,0.28);
}

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 22px 14px 18px; border-radius: 100px;
  font-weight: 600; font-size: 0.875rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.45), 0 4px 8px rgba(37,211,102,0.25);
  transition: all var(--tr); overflow: hidden;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 50px rgba(37,211,102,0.6), 0 6px 12px rgba(37,211,102,0.3); }
.wa-float i { font-size: 1.45rem; flex-shrink: 0; }
.wa-ring {
  position: absolute; inset: 0; border-radius: 100px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 130px 24px 70px;
  text-align: center;
  background: linear-gradient(155deg, #F5F3FF, #EDE9FE);
  position: relative; z-index: 1;
}
.page-hero .sec-tag { margin-bottom: 16px; display: inline-block; }
.page-ttl {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--dark);
  margin-bottom: 14px;
}
.page-sub { font-size: 1rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ===== KEUNGGULAN PAGE ===== */
.keung-content { padding: 60px 24px 100px; background: linear-gradient(180deg, #F5F3FF 0%, #fff 100%); }
.keung-section {
  max-width: 860px; margin: 0 auto 60px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 48px 44px;
  box-shadow: var(--shd-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s ease-out both;
}
.keung-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(109,40,217,0.15);
  border-color: rgba(109,40,217,0.25);
}
.keung-section:nth-child(2) { animation-delay: 0.15s; }
.keung-section:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.keung-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--bg-p);
}
.keung-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(109,40,217,0.3);
}
.keung-icon.diamond {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  animation-delay: 0.5s;
}
.keung-icon.target {
  background: linear-gradient(135deg, #EC4899, #F59E0B);
  animation-delay: 1s;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(109,40,217,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(109,40,217,0.45); }
}
.keung-title {
  font-family: var(--ff-h);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.keung-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 16px;
}
.keung-text p:last-child { margin-bottom: 0; }
.keung-cta {
  text-align: center;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}
.keung-cta .btn-primary {
  padding: 16px 36px;
  font-size: 1rem;
  animation: ctaGlow 2s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 6px 22px rgba(109,40,217,0.35); }
  50% { box-shadow: 0 8px 35px rgba(109,40,217,0.6), 0 0 20px rgba(168,85,247,0.3); }
}

/* Legacy styles */
.keung-wrap { max-width: 820px; margin: 0 auto; padding: 70px 24px; }
.keung-quote {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--border); padding: 44px 40px;
  position: relative; margin-bottom: 48px;
  box-shadow: var(--shd-sm); text-align: center;
  font-size: 1.05rem; color: var(--txt); line-height: 1.9;
}
.keung-quote::before {
  content: '\201C'; position: absolute;
  top: -14px; left: 28px;
  font-size: 5rem; color: var(--ac-l);
  font-family: Georgia, serif; line-height: 1;
}
.keung-quote::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(109,40,217,0.02), transparent);
  pointer-events: none;
}
.keung-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 48px;
}
.keung-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: #fff; border-radius: var(--r);
  border: 1px solid var(--border); transition: all var(--tr);
}
.keung-card:hover { border-color: var(--pr); transform: translateY(-4px); box-shadow: var(--shd-sm); }
.kc-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.kc-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.kc-info p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.keung-cta-wrap { text-align: center; }

/* ===== CARA ORDER PAGE - PREMIUM ===== */
.order-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(155deg, #F5F3FF 0%, #EDE9FE 50%, #DDD6FE 100%);
  position: relative; overflow: hidden;
}
.order-hero::before {
  content: ''; position: absolute;
  top: 20%; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(109,40,217,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}
.order-hero-content {
  text-align: center;
  position: relative; z-index: 1;
  animation: slideUpFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.order-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--pr);
  margin-bottom: 20px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(109,40,217,0.1); }
}

/* Progress Line */
.order-progress {
  max-width: 800px; margin: 50px auto 0;
  position: relative; z-index: 1;
}
.progress-line {
  height: 4px;
  background: rgba(109,40,217,0.1);
  border-radius: 2px;
  position: relative;
  margin-bottom: 30px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pr), var(--ac));
  border-radius: 2px;
  animation: fillProgress 1.5s ease-out 0.5s forwards;
}
@keyframes fillProgress {
  to { width: 100%; }
}
.progress-steps {
  display: flex; justify-content: space-between;
}
.p-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: all 0.5s ease;
}
.p-step.active, .p-step:hover {
  opacity: 1;
  transform: scale(1.1);
}
.p-dot {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--pr);
  box-shadow: 0 4px 15px rgba(109,40,217,0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.p-step.active .p-dot {
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff;
  animation: stepPulse 2s ease-in-out infinite;
  border-color: var(--ac-l);
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(109,40,217,0); }
}
.p-step span { font-size: 0.75rem; font-weight: 600; color: var(--dark); }

/* Steps Section */
.order-steps-sec {
  padding: 60px 24px;
  background: linear-gradient(180deg, #fff 0%, #F5F3FF 100%);
}
.order-step-card {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 0;
  box-shadow: 0 10px 40px rgba(109,40,217,0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: stepCardIn 0.8s ease-out backwards;
}
.order-step-card:nth-child(1) { animation-delay: 0.1s; }
.order-step-card:nth-child(3) { animation-delay: 0.2s; }
.order-step-card:nth-child(5) { animation-delay: 0.3s; }
.order-step-card:nth-child(7) { animation-delay: 0.4s; }
.order-step-card:nth-child(9) { animation-delay: 0.5s; }
@keyframes stepCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.order-step-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(109,40,217,0.15);
  border-color: rgba(109,40,217,0.3);
}
.order-step-card.reverse {
  grid-template-columns: 200px 1fr 100px;
}
.step-number {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.s-num {
  font-family: var(--ff-h);
  font-size: 4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.s-pulse {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid rgba(109,40,217,0.2);
  border-radius: 50%;
  animation: numberPulse 3s ease-out infinite;
}
@keyframes numberPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.step-content {
  text-align: left;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  animation: iconBounce 2s ease-in-out infinite;
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.step-icon.gold { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }
.step-icon.purple { background: linear-gradient(135deg, var(--pr), var(--ac)); color: #fff; }
.step-icon.green { background: linear-gradient(135deg, #10B981, #059669); color: #fff; }
.step-icon.blue { background: linear-gradient(135deg, #3B82F6, #2563EB); color: #fff; }
.step-content h3 {
  font-family: var(--ff-h);
  font-size: 1.5rem; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.step-content > p {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}

/* Format Box */
.format-box {
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px dashed var(--pr-l);
}
.format-line {
  display: flex; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(109,40,217,0.1);
}
.format-line:last-child { border-bottom: none; }
.f-label {
  font-weight: 700; color: var(--pr);
  min-width: 100px;
}
.f-value {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Step Action Button */
.step-action {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.step-action:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}
.step-action i:first-child { font-size: 1.3rem; }

/* Step Features */
.step-features {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.step-features li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(109,40,217,0.05);
  border-radius: 100px;
  font-size: 0.85rem; color: var(--txt);
}
.step-features li i { color: var(--pr); }

/* Payment Methods */
.payment-methods {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pm-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem; color: var(--muted);
  transition: all 0.3s ease;
}
.pm-badge:hover {
  border-color: var(--pr);
  color: var(--pr);
  transform: translateY(-2px);
}

/* Preview Showcase */
.preview-showcase {
  position: relative;
  display: flex; justify-content: center;
  margin: 20px 0;
}
.prev-screen {
  width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  animation: screenFloat 3s ease-in-out infinite;
}
@keyframes screenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.prev-header {
  padding: 10px;
  background: linear-gradient(90deg, var(--pr), var(--ac));
  display: flex; gap: 6px;
}
.prev-header span {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
.prev-content { padding: 15px; }
.prev-line {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 8px;
  animation: lineShimmer 2s ease-in-out infinite;
}
.prev-line.short { width: 60%; }
.prev-img {
  height: 50px;
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  border-radius: 6px;
  margin: 12px 0;
}
.check-badge {
  position: absolute;
  bottom: -10px; right: calc(50% - 50px);
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  animation: checkPop 0.5s ease-out 1s backwards;
}
@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.step-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Payment Flow */
.payment-flow {
  display: flex; align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pf-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #F5F3FF, #fff);
  border-radius: var(--r);
  min-width: 80px;
  transition: all 0.3s ease;
}
.pf-item:hover { transform: translateY(-5px); }
.pf-item i {
  width: 40px; height: 40px;
  background: var(--pr);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.pf-item span { font-size: 0.75rem; font-weight: 600; color: var(--dark); }
.pf-arrow { color: var(--pr); font-size: 1.2rem; }

/* Delivery Options */
.delivery-options {
  display: flex; justify-content: center; gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.do-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r);
  transition: all 0.3s ease;
}
.do-card:hover {
  border-color: var(--pr);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(109,40,217,0.15);
}
.do-card i {
  font-size: 1.8rem;
  color: var(--pr);
}
.do-card span { font-size: 0.8rem; font-weight: 600; color: var(--dark); }

/* Final CTA */
.final-cta {
  text-align: center;
  margin-top: 24px;
}
.final-cta .btn-primary.pulse {
  animation: btnPulse 2s ease-in-out infinite;
  padding: 16px 36px;
  font-size: 1rem;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(109,40,217,0.35); }
  50% { box-shadow: 0 8px 35px rgba(109,40,217,0.6), 0 0 30px rgba(168,85,247,0.4); }
}

/* Step Visuals */
.step-visual {
  position: relative;
  height: 180px;
  display: flex; align-items: center; justify-content: center;
}

/* Floating Cards Visual */
.floating-card {
  position: absolute;
  padding: 12px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(109,40,217,0.15);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
  animation: floatCard 3s ease-in-out infinite;
}
.floating-card i { color: var(--pr); font-size: 1.1rem; }
.floating-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.floating-card:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
.floating-card:nth-child(3) { bottom: 0; left: 20%; animation-delay: 1s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Coin Stack Visual */
.coin-stack {
  position: relative;
  width: 80px; height: 100px;
}
.coin {
  position: absolute;
  width: 60px; height: 15px;
  background: linear-gradient(90deg, #F59E0B, #FBBF24, #F59E0B);
  border-radius: 50%;
  left: 10px;
  box-shadow: 0 4px 10px rgba(245,158,11,0.3);
}
.coin.c1 { bottom: 0; }
.coin.c2 { bottom: 12px; animation: coinStack 1s ease-out 0.3s backwards; }
.coin.c3 { bottom: 24px; animation: coinStack 1s ease-out 0.6s backwards; }
@keyframes coinStack {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.percent-badge {
  position: absolute;
  top: -10px; right: -20px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--ff-h);
  font-weight: 800; font-size: 0.9rem;
  animation: badgeBounce 2s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(239,68,68,0.4);
}
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Eye Animation */
.eye-animation {
  position: relative;
  width: 100px; height: 60px;
}
.eye {
  width: 80px; height: 50px;
  background: #fff;
  border: 3px solid var(--pr);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  animation: eyeBlink 4s ease-in-out infinite;
}
@keyframes eyeBlink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}
.pupil {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--pr);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pupilMove 3s ease-in-out infinite;
}
@keyframes pupilMove {
  0%, 100% { left: 50%; }
  25% { left: 30%; }
  75% { left: 70%; }
}
.scan-line {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ac), transparent);
  animation: scanMove 2s ease-in-out infinite;
}
@keyframes scanMove {
  0% { left: 0; }
  100% { left: 100%; }
}

/* Payment Success Visual */
.payment-success {
  position: relative;
  width: 100px; height: 100px;
}
.payment-success > i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.8rem;
  z-index: 2;
}
.success-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border: 3px solid #10B981;
  border-radius: 50%;
  opacity: 1;
  animation: ringExpand 2s ease-out infinite;
}
.success-ring.delay { animation-delay: 0.5s; }
@keyframes ringExpand {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Rocket Visual */
.rocket-container {
  position: relative;
  width: 120px; height: 150px;
}
.rocket {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--pr);
  animation: rocketFly 2s ease-in-out infinite;
}
@keyframes rocketFly {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}
.rocket-flame {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 40px;
  background: linear-gradient(to top, #F59E0B, transparent);
  border-radius: 50%;
  animation: flameFlicker 0.3s ease-in-out infinite alternate;
}
@keyframes flameFlicker {
  from { transform: translateX(-50%) scaleY(1); opacity: 1; }
  to { transform: translateX(-50%) scaleY(0.7); opacity: 0.7; }
}
.clouds span {
  position: absolute;
  background: rgba(109,40,217,0.1);
  border-radius: 50%;
}
.clouds span:nth-child(1) { width: 40px; height: 20px; bottom: 0; left: 10px; }
.clouds span:nth-child(2) { width: 30px; height: 15px; bottom: 10px; right: 15px; }
.clouds span:nth-child(3) { width: 25px; height: 12px; bottom: 5px; left: 50%; }

/* Step Connector */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  opacity: 0.6;
}
.conn-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pr), var(--ac));
  animation: lineGrow 1s ease-out backwards;
}
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.conn-arrow {
  color: var(--pr);
  font-size: 1.2rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* CTA Section */
.order-cta-sec {
  padding: 80px 24px;
  background: linear-gradient(180deg, #F5F3FF 0%, #fff 100%);
}
.cta-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(109,40,217,0.1) 0%, transparent 60%);
  animation: ctaGlowRotate 10s linear infinite;
}
@keyframes ctaGlowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-box h2 {
  position: relative;
  font-family: var(--ff-h);
  font-size: 2rem; font-weight: 800;
  color: var(--dark); margin-bottom: 12px;
}
.cta-box > p {
  position: relative;
  color: var(--muted); margin-bottom: 30px;
}
.cta-buttons {
  position: relative;
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.btn-primary.lg, .btn-outline.lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .order-step-card,
  .order-step-card.reverse {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }
  .step-visual { display: none; }
  .s-num { font-size: 3rem; }
  .progress-steps { gap: 10px; }
  .p-step span { font-size: 0.65rem; }
}
@media (max-width: 640px) {
  .order-hero { padding: 120px 20px 60px; }
  .order-step-card,
  .order-step-card.reverse {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }
  .step-number { order: -1; margin-bottom: 16px; }
  .s-num { font-size: 2.5rem; }
  .step-content { text-align: center; }
  .step-icon { margin: 0 auto 16px; }
  .step-features { justify-content: center; }
  .payment-methods { justify-content: center; }
  .progress-line { display: none; }
  .progress-steps { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .order-badge { font-size: 0.75rem; padding: 6px 14px; }
  .cta-box { padding: 30px 20px; }
  .cta-box h2 { font-size: 1.5rem; }
}

/* Legacy styles compatibility */
.order-wrap { max-width: 720px; margin: 0 auto; padding: 70px 24px; }
.step-item {
  display: flex; gap: 20px; padding: 24px;
  background: #fff; border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: all var(--tr);
  position: relative;
}
.step-item:hover { border-color: rgba(109,40,217,0.3); box-shadow: var(--shd-sm); transform: translateX(6px); }
.step-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 42px; bottom: -14px;
  width: 2px; height: 14px;
  background: linear-gradient(to bottom, rgba(109,40,217,0.4), transparent);
}
.step-num-old {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-h); font-weight: 800; font-size: 1.1rem;
}
.step-content-old h3 {
  font-family: var(--ff-h); font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.step-content-old p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.step-note-old {
  background: var(--bg-p); border-radius: 8px;
  padding: 10px 13px; margin-top: 10px;
  font-size: 0.8rem; color: var(--pr); font-weight: 500;
  line-height: 1.8; border-left: 3px solid var(--pr);
}
.order-cta-old { text-align: center; margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { min-height: 200px; }
  .stat-card { width: 200px; padding: 20px 14px; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 16px; gap: 4px;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: all var(--tr);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(109,40,217,0.12); z-index: 900;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-lnk { width: 100%; padding: 12px 14px; }
  .hmbgr { display: flex; }
  .btn-cta { display: none; }
  .hero-wrap { grid-template-columns: 1fr; gap: 0; }
  .hero-vis { display: none; }
  .hero-text { text-align: center; }
  .hero-pills, .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 24px; }
  .serv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .mega-drop { width: 300px; }
  .keung-grid { grid-template-columns: 1fr; }
  .keung-section { padding: 32px 24px; margin-bottom: 40px; }
  .keung-header { flex-direction: column; text-align: center; gap: 16px; }
  .keung-icon { width: 50px; height: 50px; font-size: 1.25rem; }
  .keung-text p { font-size: 0.95rem; line-height: 1.85; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .stats-grid { min-height: 180px; }
  .stat-card { width: 170px; padding: 16px 10px; font-size: 0.9rem; }
  .stat-card strong { font-size: 0.9rem; }
  .stat-card p { font-size: 0.7rem; }
  .stat-ico { width: 42px; height: 42px; font-size: 1.1rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .keung-quote { padding: 30px 22px; font-size: 0.95rem; }
  .hero-pills span:nth-child(3) { display: none; }
}

/* ===== COMPACT SERVICE CARDS ===== */
.serv-card {
  flex-direction: row !important;
  padding: 14px 16px !important;
  min-height: unset !important;
  align-items: center !important;
  cursor: default !important;
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.45) !important;
  box-shadow: 0 2px 12px rgba(109,40,217,0.06) !important;
}
.serv-card:hover {
  transform: translateY(-5px) scale(1.015) !important;
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 14px 32px rgba(109,40,217,0.12) !important;
  border-color: rgba(168,85,247,0.3) !important;
}
.serv-card .sc-body {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between;
  width: 100%;
  padding: 0 !important;
  gap: 10px;
}
.serv-card .sc-ico,
.serv-card .sc-body > p,
.serv-card .sc-feats,
.serv-card .sc-visual,
.serv-card .sc-toggle {
  display: none !important;
}
.serv-card .sc-body h3 {
  font-size: 0.92rem !important;
  margin-bottom: 6px !important;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.serv-card .sc-cta {
  padding: 6px 12px !important;
  font-size: 0.72rem !important;
  align-self: flex-start !important;
  border-radius: 100px;
}
.sc-compact-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sc-compact-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(109,40,217,0.08);
  color: var(--pr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.82rem;
}
.sc-compact-arrow:hover {
  background: var(--pr);
  color: #fff;
  transform: scale(1.12) rotate(5deg);
}

/* Mobile: 2 column touch-friendly */
@media (max-width: 640px) {
  .serv-card {
    padding: 12px 14px !important;
    border-radius: 14px !important;
  }
  .serv-card .sc-body h3 {
    font-size: 0.78rem !important;
  }
  .serv-card .sc-cta {
    padding: 5px 9px !important;
    font-size: 0.62rem !important;
  }
  .sc-compact-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }
}

/* ===== SERVICE POPUP ===== */
.serv-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 13, 58, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.serv-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.serv-popup {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(109,40,217,0.22);
  max-width: 420px;
  width: 100%;
  padding: 28px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.serv-popup-overlay.active .serv-popup {
  transform: translateY(0) scale(1);
}
.serv-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-p);
  color: var(--pr);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--tr);
}
.serv-popup-close:hover {
  background: var(--pr);
  color: #fff;
}
.serv-popup h4 {
  font-family: var(--ff-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  padding-right: 40px;
}
.serv-popup-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.serv-popup-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.serv-popup-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--txt);
}
.serv-popup-feats li i {
  color: #10B981;
  font-size: 1rem;
  flex-shrink: 0;
}
.serv-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--pr), var(--ac));
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.855rem;
  transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(109,40,217,0.3);
}
.serv-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(109,40,217,0.42);
}

@media (max-width: 640px) {
  .serv-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .serv-card { padding: 10px 12px !important; }
  .sc-compact-left h3 { font-size: 0.82rem !important; }
  .serv-card .sc-cta { padding: 5px 10px !important; font-size: 0.65rem !important; }
  .sc-compact-arrow { width: 28px; height: 28px; font-size: 0.75rem; }
}
@media (max-width: 380px) {
  .serv-grid { grid-template-columns: 1fr !important; }
}
