/* ==========================================================================
   AXGES PREMIUM DESIGN SYSTEM — APPLE-INSPIRED
   ========================================================================== */

:root {
  /* Core Colors */
  --bg-dark: #050505;
  --bg-card: #0A0A0C;
  --bg-card-hover: #121216;
  
  --accent-yellow: #EAFF00;
  --accent-blue: #0050FF;
  --accent-cyan: #00E5FF;
  --accent-red: #FF3344;
  --accent-orange: #FF8800;
  
  /* Glows */
  --glow-yellow: rgba(234, 255, 0, 0.2);
  --glow-blue: rgba(0, 80, 255, 0.25);
  --glow-cyan: rgba(0, 229, 255, 0.25);
  --glow-red: rgba(255, 51, 68, 0.25);
  --glow-card: rgba(255, 255, 255, 0.02);
  
  /* Text */
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  
  /* Borders */
  --border-thin: 1px solid rgba(255, 255, 255, 0.08);
  --border-bright: 1px solid rgba(255, 255, 255, 0.15);
  --border-yellow: 1px solid rgba(234, 255, 0, 0.3);
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.25s var(--ease-premium);
  --trans-med: 0.5s var(--ease-premium);
  --trans-slow: 0.8s var(--ease-premium);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Layout Spacing */
  --container-width: 1200px;
  --container-narrow: 800px;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: initial; /* Lenis handles smoothing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Typography Editorial Scale */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(2.8rem, 6vw + 1rem, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.headline-xl {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.headline-lg {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.body-lg {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tracking-tight {
  letter-spacing: -0.03em;
}

.text-center { text-align: center; }
.text-glow-red { text-shadow: 0 0 20px var(--glow-red); }
.text-glow-blue { text-shadow: 0 0 20px var(--glow-blue); }
.text-neon-yellow { color: var(--accent-yellow) !important; text-shadow: 0 0 15px var(--glow-yellow); }
.text-gradient-yellow {
  background: linear-gradient(135deg, #FFF 20%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism Panel Base */
.glass-panel {
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.glass-panel:hover {
  background: rgba(18, 18, 22, 0.65);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s var(--ease-premium), background-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
  border: 1px solid transparent;
  font-family: var(--font-sans);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-md {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--accent-yellow);
  color: #000;
}
.btn-primary:hover {
  background: #f5ff60;
  transform: translateY(-2px);
}

.btn-glow:hover {
  box-shadow: 0 0 25px var(--glow-yellow);
}

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }

/* Tag Badge */
.tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-thin);
  border-radius: var(--radius-full);
  color: var(--accent-yellow);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ==========================================================================
   LOADING OVERLAY
   ========================================================================== */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s var(--ease-premium);
}

.loader-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loader-logo-container {
  margin-bottom: 30px;
}

.loader-logo {
  height: 48px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.loader-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}

#loader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-yellow);
  box-shadow: 0 0 8px var(--accent-yellow);
  transition: width 0.1s ease-out;
}

#loader-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FIXED CANVAS
   ========================================================================== */
#scrolly-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: #050505;
}

#scrolly-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.45;
}

.canvas-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 30%, rgba(5, 5, 5, 0.8) 85%);
  pointer-events: none;
}

/* ==========================================================================
   NAVBAR (APPLE STYLE)
   ========================================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium);
}

.hidden-nav {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.visible-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.header-container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 32px;
  display: block;
  transition: transform 0.3s var(--ease-premium);
}

.logo-img:hover {
  transform: scale(1.05);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--trans-fast);
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-nav {
  display: none;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 20px;
}

.mobile-nav-link {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
}

.mobile-nav-link.btn {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-nav.open {
    display: block;
  }
}

/* ==========================================================================
   SCROLLEYTELLING ZONE WRAPPER
   ========================================================================== */
#scrolly-wrapper {
  position: relative;
  z-index: 1;
}

.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
  box-sizing: border-box;
  background: var(--bg-dark);
  z-index: 2;
}

.section-subtitle {
  margin-bottom: 48px;
  max-width: 600px;
  color: var(--text-secondary);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 950px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.hero-scene-1 {
  pointer-events: none;
  z-index: 4;
}

.hero-scene-5 {
  pointer-events: none;
  z-index: 10; /* Sits on top of the canvas */
  top: 76%; /* Positioned lower in the viewport, below the funnel */
}

/* Line colors */
.scramble-headline {
  font-size: clamp(2.0rem, 4.2vw + 0.6rem, 3.4rem);
  line-height: 1.15;
}
.scramble-headline .line-white {
  color: #ffffff;
}
.scramble-headline .line-yellow {
  color: var(--accent-yellow);
  text-shadow: 0 0 15px var(--glow-yellow);
}
.scramble-headline span.word {
  display: inline-block;
  white-space: nowrap;
}

/* Character-by-character blur reveal */
.scramble-headline span.char {
  display: inline-block;
  opacity: 0;
  filter: blur(15px);
  transform: scale(0.9) translate3d(0, 8px, 0);
  will-change: opacity, filter, transform;
}

.hero-cta-wrapper {
  margin-top: 24px;
}

/* Premium CTA Button Micro Interaction */
.btn-audit-marketing {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #d4e600 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(234, 255, 0, 0.2);
  padding: 18px 40px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-audit-marketing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-audit-marketing:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 0 30px var(--glow-yellow), 0 8px 20px rgba(234, 255, 0, 0.4);
}

.btn-audit-marketing:hover::before {
  left: 100%;
  transition: 0.7s ease-in-out;
}

.btn-audit-marketing:active {
  transform: scale(0.98) translateY(-1px);
}

/* Funnel Nodes Styles */
.funnel-nodes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.funnel-node {
  position: absolute;
  padding: 12px 24px;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 255, 0, 0.25);
  box-shadow: 0 0 20px rgba(234, 255, 0, 0.05), inset 0 0 10px rgba(234, 255, 0, 0.05);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Updated 4 Funnel Nodes Placement */
.node-ai { left: 10%; top: 32%; }
.node-ads { left: 8%; top: 58%; }
.node-content { right: 10%; top: 32%; }
.node-crm { right: 8%; top: 58%; }

@media (max-width: 768px) {
  .funnel-node {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  .node-ai { left: 4%; top: 30%; }
  .node-ads { left: 2%; top: 56%; }
  .node-content { right: 4%; top: 30%; }
  .node-crm { right: 2%; top: 56%; }
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mouse-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite ease-in-out;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  20% { opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   2. MASALAH PELANGGAN
   ========================================================================== */
#masalah {
  position: relative;
}
.container-masalah {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.masalah-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.masalah-card {
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 4 / 2;
  overflow: hidden;
  border-radius: 32px;
  border: var(--border-thin);
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.masalah-card.active {
  border-color: rgba(234, 255, 0, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(234, 255, 0, 0.05);
}

.masalah-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.masalah-card.active .masalah-card-bg {
  transform: scale(1.05);
}

.masalah-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.masalah-card.active .masalah-card-overlay {
  opacity: 1;
}

.masalah-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  max-width: 650px;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.masalah-card.active .masalah-content {
  opacity: 1;
  transform: translateY(0);
}

.masalah-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}

.masalah-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.masalah-footer-text {
  margin-top: 80px;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   3. APA YANG KAMI BUAT / SERVIS
   ========================================================================== */
.servis-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.servis-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.servis-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.servis-icon i {
  width: 24px;
  height: 24px;
}

.blue-glow {
  background: rgba(0, 80, 255, 0.08);
  border-color: rgba(0, 80, 255, 0.2);
  box-shadow: 0 0 20px var(--glow-blue);
  color: var(--accent-cyan);
}

.yellow-glow {
  background: rgba(234, 255, 0, 0.08);
  border-color: rgba(234, 255, 0, 0.2);
  box-shadow: 0 0 20px var(--glow-yellow);
  color: var(--accent-yellow);
}

.cyan-glow {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 20px var(--glow-cyan);
  color: var(--accent-cyan);
}

.servis-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.servis-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servis-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.card-bottom-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  filter: blur(25px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-premium);
  opacity: 0.1;
}

.servis-card:hover .card-bottom-glow {
  opacity: 0.5;
}

#servis-marketing .card-bottom-glow { background: var(--accent-blue); }
#servis-design .card-bottom-glow { background: var(--accent-yellow); }
#servis-ads .card-bottom-glow { background: var(--accent-cyan); }

/* ==========================================================================
   4. INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.roi-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .roi-container-grid {
    grid-template-columns: 1fr;
  }
}

.roi-panel-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-header label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.slider-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-thin);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
}

.rate-indicator-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

#rate-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.badge-low {
  background: rgba(255, 51, 68, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(255, 51, 68, 0.2);
  box-shadow: 0 0 10px rgba(255, 51, 68, 0.1);
}

.badge-medium {
  background: rgba(255, 136, 0, 0.12);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 136, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.1);
}

.badge-high {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

/* Custom Input Sliders Skin */
.neon-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
}

.neon-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  border-radius: var(--radius-full);
}

.neon-slider::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
  transition: transform 0.1s;
}

.neon-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.neon-slider::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border: none;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow);
  cursor: pointer;
  transition: transform 0.1s;
}

.neon-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ROI Output Cards */
.roi-panel-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.roi-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 500px) {
  .roi-output-grid {
    grid-template-columns: 1fr;
  }
}

.output-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-color: rgba(255,255,255,0.06);
}

.output-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.output-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}

.output-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Output Glow variants */
.glow-card-blue:hover {
  border-color: rgba(0, 80, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 80, 255, 0.1);
}
.glow-card-orange:hover {
  border-color: rgba(255, 136, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 136, 0, 0.1);
}
.glow-card-green:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}
.glow-card-yellow:hover {
  border-color: rgba(234, 255, 0, 0.3);
  box-shadow: 0 10px 30px rgba(234, 255, 0, 0.15);
}

/* ROAS Card Styles & Kategori States (300ms transition) */
#roas-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.roas-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}

.roas-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

/* Rugi: Red Accent */
.roas-card-rugi {
  border-color: rgba(255, 51, 68, 0.3) !important;
  box-shadow: 0 10px 30px rgba(255, 51, 68, 0.15) !important;
}
.roas-card-rugi .roas-badge {
  background: rgba(255, 51, 68, 0.12);
  color: #FF3344;
  border: 1px solid rgba(255, 51, 68, 0.25);
}
.roas-card-rugi #out-roi {
  color: #FF3344 !important;
  text-shadow: 0 0 15px rgba(255, 51, 68, 0.25);
}

/* Pulang Modal: Orange Accent */
.roas-card-modal {
  border-color: rgba(255, 136, 0, 0.3) !important;
  box-shadow: 0 10px 30px rgba(255, 136, 0, 0.15) !important;
}
.roas-card-modal .roas-badge {
  background: rgba(255, 136, 0, 0.12);
  color: #FF8800;
  border: 1px solid rgba(255, 136, 0, 0.25);
}
.roas-card-modal #out-roi {
  color: #FF8800 !important;
  text-shadow: 0 0 15px rgba(255, 136, 0, 0.25);
}

/* Baik: Yellow Accent */
.roas-card-baik {
  border-color: rgba(234, 255, 0, 0.35) !important;
  box-shadow: 0 10px 30px rgba(234, 255, 0, 0.15) !important;
}
.roas-card-baik .roas-badge {
  background: rgba(234, 255, 0, 0.12);
  color: #EAFF00;
  border: 1px solid rgba(234, 255, 0, 0.3);
}
.roas-card-baik #out-roi {
  color: #EAFF00 !important;
  text-shadow: 0 0 15px rgba(234, 255, 0, 0.25);
}

/* Sangat Baik: Green Accent */
.roas-card-sangat-baik {
  border-color: rgba(0, 255, 136, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2) !important;
}
.roas-card-sangat-baik .roas-badge {
  background: rgba(0, 255, 136, 0.12);
  color: #00FF88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}
.roas-card-sangat-baik #out-roi {
  color: #00FF88 !important;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
}

/* Cemerlang: Emerald/Neon Green Accent */
.roas-card-cemerlang {
  border-color: rgba(0, 255, 162, 0.45) !important;
  box-shadow: 0 15px 35px rgba(0, 255, 162, 0.25) !important;
}
.roas-card-cemerlang .roas-badge {
  background: rgba(0, 255, 162, 0.15);
  color: #00FFB2;
  border: 1px solid rgba(0, 255, 162, 0.35);
}
.roas-card-cemerlang #out-roi {
  color: #00FFB2 !important;
  text-shadow: 0 0 20px rgba(0, 255, 162, 0.35);
}

#out-roi {
  font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1;
  margin: 6px 0;
  transition: color 0.3s ease;
}

.roas-desc {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}


.roi-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5. PORTFOLIO / CASE STUDY & TESTIMONI
   ========================================================================== */
.case-study-hero {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 64px;
}

.case-study-gradient-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-cyan));
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 900px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-details {
  padding: 48px;
}

@media (max-width: 500px) {
  .case-study-details {
    padding: 24px;
  }
}

.cs-company-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-yellow);
  text-transform: uppercase;
}

.cs-company-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 16px 0;
}

.cs-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 500px) {
  .cs-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.cs-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.cs-metric-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.cs-metric-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.case-study-result {
  background: rgba(234, 255, 0, 0.02);
  border-left: var(--border-thin);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 900px) {
  .case-study-result {
    border-left: none;
    border-top: var(--border-thin);
    padding: 32px;
  }
}

.cs-result-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--accent-yellow);
  filter: blur(50px);
  opacity: 0.08;
  pointer-events: none;
}

.cs-result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 500;
}

.cs-result-big {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.cs-result-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-header {
  margin-bottom: 32px;
}

/* Video testimonial cards */
.video-card {
  padding: 0;
  border-radius: var(--radius-md);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.thumbnail-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-premium);
}

.video-card:hover .thumbnail-bg {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(234, 255, 0, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(234, 255, 0, 0.4);
  transition: transform 0.3s var(--ease-premium), background-color 0.3s;
}

.play-btn i {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: scale(1.15);
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 70%, transparent 100%);
}

.video-quote {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

.video-author {
  font-size: 0.8rem;
  color: var(--accent-yellow);
  font-weight: 500;
  display: block;
}

/* Glow layout for video cards */
.video-card {
  transition: box-shadow 0.4s var(--ease-premium), border-color 0.4s;
}

.video-card:hover {
  border-color: rgba(234, 255, 0, 0.2);
  box-shadow: 0 0 20px rgba(234, 255, 0, 0.1);
}

/* ==========================================================================
   6. PROSES KERJA KAMI
   ========================================================================== */
#proses {
  position: relative;
}

.timeline-container {
  margin-top: 60px;
  position: relative;
  padding-left: 56px;
}

.timeline-svg-wrapper {
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 4px;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-step {
  position: relative;
  background: rgba(10, 10, 12, 0.4);
}

.step-number-bubble {
  position: absolute;
  left: -56px;
  top: 26px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 5;
  transition: background-color 0.4s, border-color 0.4s, color 0.4s, box-shadow 0.4s;
}

.timeline-step.active .step-number-bubble {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: #000;
  box-shadow: 0 0 15px var(--glow-yellow);
}

.timeline-step.active {
  border-color: rgba(255,255,255,0.2);
  background: rgba(18, 18, 22, 0.6);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   7. OUR CLIENT & GUARANTEE
   ========================================================================== */
.clients-slider-wrapper {
  margin-bottom: 80px;
  text-align: center;
}

.clients-slider-title {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 20px 0;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-mt {
  margin-top: 24px;
}

.marquee-track-left {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
  animation: marqueeLeft 35s linear infinite;
}

.marquee-track-right {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
  animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-card {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 40px !important;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
  box-shadow: none !important;
  flex-shrink: 0;
}

.client-logo-card:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: none !important;
}

.client-logo-card img {
  width: auto !important;
  max-width: 220px !important;
  height: 110px !important;
  object-fit: contain !important;
  filter: none !important;
  display: block;
}

/* Gold/Yellow Upgrade Guarantee Card */
.guarantee-card-gold {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(234, 255, 0, 0.05);
}

.guarantee-glow-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #FFE066 0%, #D4AF37 50%, #8C6200 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.guarantee-body-gold {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 44px;
  background: linear-gradient(180deg, rgba(20, 18, 10, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(25px);
}

@media (max-width: 768px) {
  .guarantee-body-gold {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
  }
}

.guarantee-icon-container-gold {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.guarantee-icon-gold {
  width: 36px;
  height: 36px;
  color: #D4AF37;
}

.guarantee-badge-gold {
  font-size: 0.75rem;
  color: #FFE066;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 8px;
}

.guarantee-content-gold h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.guarantee-content-gold p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   8. FAQ – SOALAN LAZIM
   ========================================================================== */
.faq-accordion-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-yellow);
  transition: transform 0.4s var(--ease-premium);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium);
}

.faq-content-inner {
  padding: 0 8px 24px 8px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   9. CTA AKHIR & PACKAGING DETAILS
   ========================================================================== */
.cta-inner-block {
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  border-color: rgba(255,255,255,0.06);
  background: rgba(10, 10, 12, 0.45);
}

@media (max-width: 768px) {
  .cta-inner-block {
    padding: 60px 24px;
  }
}

.cta-neon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 255, 0, 0.04) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-sub {
  margin-top: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-mega-cta {
  font-size: 1.2rem;
  padding: 20px 48px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  margin-bottom: 64px;
  box-shadow: 0 0 20px var(--glow-yellow);
}

.packaging-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 64px;
}

.package-info-label {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.package-info-label strong {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px var(--glow-yellow);
}

.squad-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s;
}

.squad-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 255, 0, 0.15);
}

.squad-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  margin-bottom: 16px;
}

.squad-icon i {
  width: 20px;
  height: 20px;
}

.squad-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.squad-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
#main-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
  position: relative;
  z-index: 5;
}

.footer-container-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-container-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

.footer-logo {
  height: 24px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-middle p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-links {
  font-size: 0.8rem;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--trans-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-links span {
  color: rgba(255,255,255,0.1);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--text-secondary);
  transition: var(--trans-fast);
}

.social-icons a:hover {
  color: var(--accent-yellow);
}

.social-icons i {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   TESTIMONIALS UPGRADES (VIDEOS, MODAL, MOBILE MENUS, YELLOW FORM)
   ========================================================================== */

/* Video Player */
.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-grid.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid.grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Fullscreen Video Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-premium), visibility 0.4s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-bright);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.modal-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
}

.modal-close-btn:hover {
  background: #ff3344;
  transform: scale(1.1);
}

/* Mobile Nav Menu CTA legibility fix */
.mobile-nav-link.btn.btn-primary {
  color: #000000 !important;
}

/* Striking Yellow Card & Booking Form Styling */
.cta-inner-block-yellow {
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  background: var(--accent-yellow);
  color: #000000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(234, 255, 0, 0.1);
  text-align: center;
}

.cta-inner-block-yellow h2,
.cta-inner-block-yellow .cta-sub {
  color: #000000 !important;
}

@media (max-width: 768px) {
  .cta-inner-block-yellow {
    padding: 50px 24px;
  }
}

.cta-neon-ring-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.booking-form {
  max-width: 800px;
  margin: 40px auto 60px auto;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

@media (max-width: 580px) {
  .booking-form {
    padding: 24px;
  }
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .booking-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.booking-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.booking-form input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* Conditional input wrapper */
.conditional-input-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium), margin-top 0.4s;
}

.conditional-input-wrapper.open {
  max-height: 60px;
  margin-top: 8px;
}

/* Form Submit Button */
.btn-dark-cta {
  background: #000000;
  color: var(--accent-yellow);
  width: 100%;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-dark-cta:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.btn-glow-dark:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}

/* Squad cards inside yellow cta block */
.squad-card-dark {
  padding: 24px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s;
}

.squad-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.2);
}

.squad-icon-dark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-bottom: 16px;
}

.squad-icon-dark i {
  width: 20px;
  height: 20px;
}

.squad-card-dark h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #000000;
}

.squad-card-dark p {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

/* Pricing Section and Iframe styling */
.pricing-section {
  background: var(--bg-dark);
  position: relative;
  z-index: 5;
  padding: 100px 0;
}

.pricing-header {
  margin-bottom: 48px;
}

.pricing-card-dark {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(234, 255, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.pricing-card-dark:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(234, 255, 0, 0.05);
}

.pricing-badge-gold {
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #FFE066 0%, #D4AF37 100%);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

@media (max-width: 580px) {
  .pricing-card-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.pricing-title-area h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-rate-area {
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .pricing-rate-area {
    text-align: left;
  }
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-yellow);
  text-shadow: 0 0 15px rgba(234, 255, 0, 0.2);
  line-height: 1;
  display: block;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  font-size: 1.02rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.pricing-features strong {
  color: var(--text-primary);
}

.check-icon-gold {
  color: var(--accent-yellow);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-pricing-action {
  width: 100%;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-align: center;
}

.pricing-disclaimer-small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-iframe-player {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.cta-limited-badge {
  display: inline-block;
  background: #000000;
  color: var(--accent-yellow);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-price-hook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-price-hook .price-old {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.45);
  text-decoration: line-through;
  font-weight: 700;
}

.cta-price-hook .price-free-badge {
  background: #000000;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Spinner Animation */
.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Custom Additions for problems images, multi-step form & pricing */
.masalah-card-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
@media (max-width: 580px) {
  .masalah-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .masalah-card-img {
    width: 100px;
    height: 100px;
  }
}

.pricing-rate-discount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 8px;
}
@media (max-width: 580px) {
  .pricing-rate-discount {
    align-items: flex-start;
  }
}
.pricing-original-team {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pricing-original-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-red);
  text-decoration: line-through;
  opacity: 0.85;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-row-datetime {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .form-row-datetime {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.form-navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.form-navigation-buttons .btn {
  flex: 1;
}
.btn-secondary-cta {
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}
.btn-secondary-cta:hover {
  background: rgba(0, 0, 0, 0.15);
  border-color: #000000;
  transform: translateY(-2px);
}

/* ==========================================================================
   UPDATED PORTFOLIO, SHORTS & TIMELINE STYLES
   ========================================================================== */

/* Success Cards Grid */
.hasil-kerja-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.hasil-kerja-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 12, 0.55);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
}

.hasil-kerja-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 255, 0, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hasil-kerja-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hasil-kerja-header .client-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.hasil-kerja-header .client-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  background: rgba(234, 255, 0, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(234, 255, 0, 0.15);
}

.client-image-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-thin);
}

.client-result-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Shorts Grid Layout */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 60px;
}

.short-card {
  padding: 10px;
  background: rgba(10, 10, 12, 0.45);
  border-radius: var(--radius-lg);
  border: var(--border-thin);
  display: flex;
  flex-direction: column;
}

.short-card .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.short-card .video-info {
  padding: 10px 4px 4px 4px;
  text-align: center;
}

.short-card .video-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Inline Shorts Player */
.inline-shorts-iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

/* Operations Timeline Sticky Scroll Styles */

.timeline-step {
  transition: transform 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium);
}

.timeline-step.active-step {
  border-color: rgba(234, 255, 0, 0.4);
  background-color: rgba(234, 255, 0, 0.04);
}

.timeline-step h3 {
  transition: color 0.4s ease;
}

.timeline-step.active-step h3 {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(234, 255, 0, 0.2);
}

@media (max-width: 1024px) {
  .hasil-kerja-grid {
    grid-template-columns: 1fr;
  }
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .shorts-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom CTA WhatsApp Button & Hero Button subtitle */
.hero-cta-sub {
  margin-top: 16px;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.cta-whatsapp-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px auto 24px auto;
  color: rgba(5, 5, 5, 0.55);
  max-width: 600px;
}

.cta-whatsapp-divider::before,
.cta-whatsapp-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1.5px solid rgba(5, 5, 5, 0.15);
}

.cta-whatsapp-divider:not(:empty)::before {
  margin-right: .8em;
}

.cta-whatsapp-divider:not(:empty)::after {
  margin-left: .8em;
}

.cta-whatsapp-divider span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-whatsapp-wrapper {
  margin-top: 16px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}


